aboutsummaryrefslogtreecommitdiff
path: root/src/interface
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2023-06-07 12:46:49 +0100
committerMichael Brown <mcb30@ipxe.org>2023-06-07 13:00:24 +0100
commit367e022b5e28cbdcbda525c0ccc2347d029efea2 (patch)
tree84a9e60b4b2a041aff006a786663630761ac1f09 /src/interface
parentb9a60fb0b745a9df7ecf7704b5a4881e022b0a9f (diff)
downloadipxe-367e022b5e28cbdcbda525c0ccc2347d029efea2.zip
ipxe-367e022b5e28cbdcbda525c0ccc2347d029efea2.tar.gz
ipxe-367e022b5e28cbdcbda525c0ccc2347d029efea2.tar.bz2
[efi] Add HttpBootDxe module GUID
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/interface')
-rw-r--r--src/interface/efi/efi_debug.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/interface/efi/efi_debug.c b/src/interface/efi/efi_debug.c
index 36f5a13..250bc01 100644
--- a/src/interface/efi/efi_debug.c
+++ b/src/interface/efi/efi_debug.c
@@ -47,6 +47,12 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
static EFI_DEVICE_PATH_TO_TEXT_PROTOCOL *efidpt;
EFI_REQUEST_PROTOCOL ( EFI_DEVICE_PATH_TO_TEXT_PROTOCOL, &efidpt );
+/** HttpBootDxe module GUID */
+static EFI_GUID efi_http_boot_dxe_guid = {
+ 0xecebcb00, 0xd9c8, 0x11e4,
+ { 0xaf, 0x3d, 0x8c, 0xdc, 0xd4, 0x26, 0xc9, 0x73 }
+};
+
/** IScsiDxe module GUID */
static EFI_GUID efi_iscsi_dxe_guid = {
0x86cddf93, 0x4872, 0x4597,
@@ -125,6 +131,8 @@ static struct efi_well_known_guid efi_well_known_guids[] = {
"HiiConfigAccess" },
{ &efi_hii_font_protocol_guid,
"HiiFont" },
+ { &efi_http_boot_dxe_guid,
+ "HttpBootDxe" },
{ &efi_http_protocol_guid,
"Http" },
{ &efi_http_service_binding_protocol_guid,