diff options
author | Michael Brown <mcb30@ipxe.org> | 2023-06-07 12:48:55 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2023-06-07 13:00:24 +0100 |
commit | 12776acce5e62af39797e8b692de12369e11f6a2 (patch) | |
tree | b2b41c7995fe3703c60e5def4fda83678d6feb64 | |
parent | 367e022b5e28cbdcbda525c0ccc2347d029efea2 (diff) | |
download | ipxe-12776acce5e62af39797e8b692de12369e11f6a2.tar.gz |
[efi] Add UefiPxeBcDxe module GUID
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/interface/efi/efi_debug.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/interface/efi/efi_debug.c b/src/interface/efi/efi_debug.c index 250bc013d..1bec758fe 100644 --- a/src/interface/efi/efi_debug.c +++ b/src/interface/efi/efi_debug.c @@ -65,6 +65,12 @@ static EFI_GUID efi_iscsi4_dxe_guid = { { 0x84, 0x86, 0x08, 0x3c, 0x86, 0xb1, 0x82, 0xa7 } }; +/** UefiPxeBcDxe module GUID */ +static EFI_GUID efi_uefi_pxe_bc_dxe_guid = { + 0xb95e9fda, 0x26de, 0x48d2, + { 0x88, 0x07, 0x1f, 0x91, 0x07, 0xac, 0x5e, 0x3a } +}; + /** VlanConfigDxe module GUID */ static EFI_GUID efi_vlan_config_dxe_guid = { 0xe4f61863, 0xfe2c, 0x4b56, @@ -221,6 +227,8 @@ static struct efi_well_known_guid efi_well_known_guids[] = { "Udp6" }, { &efi_udp6_service_binding_protocol_guid, "Udp6Sb" }, + { &efi_uefi_pxe_bc_dxe_guid, + "UefiPxeBcDxe" }, { &efi_uga_draw_protocol_guid, "UgaDraw" }, { &efi_unicode_collation_protocol_guid, |