diff options
author | Michael Brown <mcb30@ipxe.org> | 2023-05-22 14:05:15 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2023-05-22 15:37:11 +0100 |
commit | a95439a5188d96988ad7031cace084a13fcede14 (patch) | |
tree | 8c909c4247197c0b3103de40d3d5587be0b2bd6b /src/interface/efi/efi_shim.c | |
parent | 95b8338f0d4674b9f8bb51adf6886212d2b97e4b (diff) | |
download | ipxe-a95439a5188d96988ad7031cace084a13fcede14.tar.gz |
WIP - EFI crutch
Diffstat (limited to 'src/interface/efi/efi_shim.c')
-rw-r--r-- | src/interface/efi/efi_shim.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/interface/efi/efi_shim.c b/src/interface/efi/efi_shim.c index 9b1b69e80..42faaa6dd 100644 --- a/src/interface/efi/efi_shim.c +++ b/src/interface/efi/efi_shim.c @@ -89,6 +89,11 @@ struct image_tag efi_shim __image_tag = { .name = "SHIM", }; +/** UEFI shim crutch image */ +struct image_tag efi_shim_crutch __image_tag = { + .name = "SHIMCRUTCH", +}; + /** Original GetMemoryMap() function */ static EFI_GET_MEMORY_MAP efi_shim_orig_map; |