grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v4 10/19] efinet: also use the firmware acceleration for http


From: Robbie Harwood
Subject: [PATCH v4 10/19] efinet: also use the firmware acceleration for http
Date: Mon, 9 Jan 2023 18:30:36 -0500

From: Peter Jones <pjones@redhat.com>

Signed-off-by: Peter Jones <pjones@redhat.com>
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
---
 grub-core/net/efi/net.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/grub-core/net/efi/net.c b/grub-core/net/efi/net.c
index 012dc654c5..9ea7ed141f 100644
--- a/grub-core/net/efi/net.c
+++ b/grub-core/net/efi/net.c
@@ -1307,7 +1307,10 @@ 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))
-- 
2.39.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]