> 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
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
> 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
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
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
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.