Re: [edk2-devel] [PATCH 1/1] Ext4Pkg: Move unicode collation initialization to Start()

2023-02-18 Thread Marvin Häuser
> On 18. Feb 2023, at 16:14, Pedro Falcato wrote: > > Proper collation (and proper unicode handling in general) is AIUI > pretty hard and involves a lot of tables, etc. > So it makes total sense to me why one wants to "dynamically link" this > in using protocols instead of statically linking it

Re: [edk2-devel] [PATCH 1/1] Ext4Pkg: Move unicode collation initialization to Start()

2023-02-18 Thread Pedro Falcato
On Sat, Feb 18, 2023 at 12:31 PM Marvin Häuser wrote: > > > > On 17. Feb 2023, at 21:14, Pedro Falcato wrote: > > > > @@ -169,5 +170,20 @@ Ext4StrCmpInsensitive ( > > IN CHAR16 *Str2 > > ) > > { > > + ASSERT (gUnicodeCollationInterface != NULL); > > return gUnicodeCollationInterface->Stri

Re: [edk2-devel] [PATCH 1/1] Ext4Pkg: Move unicode collation initialization to Start()

2023-02-18 Thread Marvin Häuser
> On 17. Feb 2023, at 21:14, Pedro Falcato wrote: > > @@ -169,5 +170,20 @@ Ext4StrCmpInsensitive ( > IN CHAR16 *Str2 > ) > { > + ASSERT (gUnicodeCollationInterface != NULL); > return gUnicodeCollationInterface->StriColl (gUnicodeCollationInterface, > Str1, Str2); > } Off-topic (should

[edk2-devel] [PATCH v4 3/3] UsbNetworkPkg/UsbCdcNcm: Add USB Cdc NCM devices support

2023-02-18 Thread RichardHo [何明忠] via groups . io
This driver provides UEFI driver for USB CDC NCM device Signed-off-by: Richard Ho Cc: Andrew Fish Cc: Leif Lindholm Cc: Michael D Kinney Cc: Michael Kubacki Cc: Zhiguang Liu Cc: Liming Gao Cc: Rebecca Cran Reviewed-by: Tony Lo --- UsbNetworkPkg/UsbCdcNcm/UsbCdcNcm.inf| 42 + UsbNetw

[edk2-devel] [PATCH v4 2/3] UsbNetworkPkg/UsbCdcEcm: Add USB Cdc ECM devices support

2023-02-18 Thread RichardHo [何明忠] via groups . io
This driver provides UEFI driver for USB CDC ECM device Signed-off-by: Richard Ho Cc: Andrew Fish Cc: Leif Lindholm Cc: Michael D Kinney Cc: Michael Kubacki Cc: Zhiguang Liu Cc: Liming Gao Cc: Rebecca Cran Reviewed-by: Tony Lo --- UsbNetworkPkg/UsbCdcEcm/UsbCdcEcm.inf| 42 ++ UsbNet

Re: [edk2-devel] [Help] in Setting up EFI Shell in QEMU to allow for HTTP Requests

2023-02-18 Thread CrossedCarpet
Hello, Yes that was exactly the problem, someone helped me solve it on StackOverflow:  https://stackoverflow.com/questions/75452349/setting-up-the-efi-shell-in-qemu-to-allow-for-http-requests/75458138#75458138 I hadn't noticed those instructions in the readme though, thank you for that. Cheers.