[SeaBIOS] Re: Git clone of SeaBIOS over HTTPS failing

2021-10-14 Thread Patrick Georgi via SeaBIOS
Hi Stefan,

thanks for the heads-up, it should be fixed now.


All the best,
Patrick

October 14, 2021 11:40 AM, "Stefan Hajnoczi"  wrote:

> Something is up with the seabios.git repo:
> 
> $ git clone https://git.seabios.org/seabios.git
> Cloning into 'seabios'...
> fatal: unable to access 'https://git.seabios.org/seabios.git/':
> Maximum (20) redirects followed
> 
> Stefan
___
SeaBIOS mailing list -- seabios@seabios.org
To unsubscribe send an email to seabios-le...@seabios.org


[SeaBIOS] Re: git repo https not working?

2019-07-16 Thread Patrick Georgi
Stefan Hajnoczi wrote:
> Down for everyone or just me? :-)
It was down for everyone due to a config error. Thanks for bringing it up, I 
fixed it.


Patrick
___
SeaBIOS mailing list -- seabios@seabios.org
To unsubscribe send an email to seabios-le...@seabios.org


[SeaBIOS] Re: Mailing list update

2019-01-10 Thread Patrick Georgi
Hi Kevin, Laszlo,

9. Januar 2019 19:38, "Kevin O'Connor"  schrieb:
> Patrick, can you confirm that we need to update the above links?
Yes, the links changed because the entire architecture changed.

I kept pipermail as a read-only copy so old links into the archive keep working 
(as far as possible: pipermail links are notoriously unreliable).

> Also, a few people asked if we could support the format of the older
> mail archives - is that possible?
It seems that mailman3 allows multiple message archive systems, with hyperkitty 
being the only one supported right now.

A pipermail-style backend that creates a plain html archive would certainly be 
a welcome addition, as Laszlo definitely isn't the only "dinosaur" (I'd propose 
some changes though: for example basing the URL on the hashed message-id, like 
hyperkitty does, instead of pipermail's plain counter, improves URL stability), 
but I'm not sure if my python-fu is up to the levels to quickly build something 
like that.

Once it exists, I'll happily integrate it, though.


Patrick
___
SeaBIOS mailing list -- seabios@seabios.org
To unsubscribe send an email to seabios-le...@seabios.org


[SeaBIOS] Fwd: [PATCH] Fix layoutrom step on i18n-equipped systems

2014-12-03 Thread Patrick Georgi
2014-12-03 11:16 GMT+01:00 Gerd Hoffmann :
>
> I suspect this isn't going to fly as each makefile line is run
> separately.

Correct. We discussed that on IRC. That's probably one of make's less
intuitive features. I also proposed to use a global export, but had no
opportunity to test it right then.

> How about this: [export LC_ALL globally in Makefile]
Tested-By: Patrick Georgi 


Thanks,
Patrick
--
Google Germany GmbH
ABC-Str. 19
20354 Hamburg

Registergericht und -nummer: Hamburg, HRB 86891
Sitz der Gesellschaft: Hamburg
Geschäftsführer: Graham Law, Christine Elizabeth Flores

___
SeaBIOS mailing list
SeaBIOS@seabios.org
http://www.seabios.org/mailman/listinfo/seabios

[SeaBIOS] [PATCH] Fix layoutrom step on i18n-equipped systems

2014-12-01 Thread Patrick Georgi
objdump output parsing expects C locale strings
and formatting. Make sure it gets what it requires.

Signed-off-by: Patrick Georgi 
---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index eecb8a1..9191509 100644
--- a/Makefile
+++ b/Makefile
@@ -158,9 +158,9 @@ $(OUT)romlayout16.lds: $(OUT)ccode32flat.o 
$(OUT)code32seg.o $(OUT)ccode16.o $(O
$(Q)$(CC) $(CFLAGS32FLAT) -c $(OUT)version.c -o $(OUT)version.o
$(Q)$(LD) $(LD32BIT_FLAG) -r $(OUT)ccode32flat.o $(OUT)version.o -o 
$(OUT)code32flat.o
$(Q)$(LD) $(LD32BIT_FLAG) -r $(OUT)ccode16.o $(OUT)romlayout.o -o 
$(OUT)code16.o
-   $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump
-   $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump
-   $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
+   $(Q)LC_ALL=C $(OBJDUMP) -thr $(OUT)code32flat.o > 
$(OUT)code32flat.o.objdump
+   $(Q)LC_ALL=C $(OBJDUMP) -thr $(OUT)code32seg.o > 
$(OUT)code32seg.o.objdump
+   $(Q)LC_ALL=C $(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
$(Q)$(PYTHON) ./scripts/layoutrom.py $(OUT)code16.o.objdump 
$(OUT)code32seg.o.objdump $(OUT)code32flat.o.objdump 
$(OUT)$(KCONFIG_AUTOHEADER) $(OUT)romlayout16.lds $(OUT)romlayout32seg.lds 
$(OUT)romlayout32flat.lds
 
 # These are actually built by scripts/layoutrom.py above, but by pulling them
-- 
2.1.0

___
SeaBIOS mailing list
SeaBIOS@seabios.org
http://www.seabios.org/mailman/listinfo/seabios


Re: [SeaBIOS] [Qemu-devel] KVM call agenda for 2013-05-28

2013-05-31 Thread Patrick Georgi
Am 31.05.2013 14:09, schrieb David Woodhouse:
> On Thu, 2013-05-30 at 09:20 -0700, Jordan Justen wrote:
>> On Thu, May 30, 2013 at 5:19 AM, David Woodhouse 
>> wrote:
>>> https://github.com/pgeorgi/edk2/tree/coreboot-pkg
>> Is the license on this actually BSD as the License.txt indicates?
Yes. All code is either Stefan's or my own work or taken from Tiano and
adapted. We will probably import some libpayload code, but that is
BSD-l, too.
>> Is this planned to be upstreamed?
Yes, once it's ready.
>> Does this support UEFI variables?
Not yet, planned.
>> Does this support UEFI IA32 / X64?
Both, no mixed mode.
> Those are questions for Patrick. 
HTH,
Patrick

___
SeaBIOS mailing list
SeaBIOS@seabios.org
http://www.seabios.org/mailman/listinfo/seabios