7e98da058f
This change reorganizes and cleanups our patches to reduce the patch number from 314 patches to 187. That's achieved by dropping patches that are later reverted and squashing fixes for earlier patches that introduced features. There are no code changes and the diff with upstream is the same before and after the cleanup. Having fewer patches makes easier to manage the patchset and also will ease to rebase them on top of the latest grub-2.04 release. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Mon, 30 Jul 2018 14:06:42 -0400
|
|
Subject: [PATCH] efinet: also use the firmware acceleration for http
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
grub-core/net/efi/net.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/net/efi/net.c b/grub-core/net/efi/net.c
|
|
index 2bf15447fd5..f208d1b180c 100644
|
|
--- a/grub-core/net/efi/net.c
|
|
+++ b/grub-core/net/efi/net.c
|
|
@@ -1324,7 +1324,9 @@ grub_efi_net_boot_from_https (void)
|
|
&& (subtype == GRUB_EFI_URI_DEVICE_PATH_SUBTYPE))
|
|
{
|
|
grub_efi_uri_device_path_t *uri_dp = (grub_efi_uri_device_path_t *) dp;
|
|
- return (grub_strncmp ((const char*)uri_dp->uri, "https://", sizeof ("https://") - 1) == 0) ? 1 : 0;
|
|
+ grub_dprintf ("efinet", "url:%s\n", (const char *)uri_dp->uri);
|
|
+ return (grub_strncmp ((const char *)uri_dp->uri, "https://", sizeof ("https://") - 1) == 0 ||
|
|
+ grub_strncmp ((const char *)uri_dp->uri, "http://", sizeof ("http://") - 1) == 0);
|
|
}
|
|
|
|
if (GRUB_EFI_END_ENTIRE_DEVICE_PATH (dp))
|