diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2019-03-27 13:40:32 +0900 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-04-07 14:17:06 +0200 |
commit | bc8fc32855d27b2999ed6667af10123f341b3159 (patch) | |
tree | 9dce5e4efb45bb99f8c48fba987c74887c2e58bc /include/efi_loader.h | |
parent | 734d3252af9ceda43fbcfcc088e14911d969cdfc (diff) | |
download | u-boot-bc8fc32855d27b2999ed6667af10123f341b3159.tar.gz u-boot-bc8fc32855d27b2999ed6667af10123f341b3159.tar.bz2 u-boot-bc8fc32855d27b2999ed6667af10123f341b3159.zip |
efi_loader: boottime: add loaded image device path protocol to image handle
To meet UEFI spec v2.7a section 9.2, we should add
EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL to image handle,
instead of EFI_DEVICE_PATH_PROTOCOL.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 9f776021ab..cd6ceaccbf 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -135,6 +135,7 @@ extern const efi_guid_t efi_guid_event_group_reset_system; /* GUID of the device tree table */ extern const efi_guid_t efi_guid_fdt; extern const efi_guid_t efi_guid_loaded_image; +extern const efi_guid_t efi_guid_loaded_image_device_path; extern const efi_guid_t efi_guid_device_path_to_text_protocol; extern const efi_guid_t efi_simple_file_system_protocol_guid; extern const efi_guid_t efi_file_info_guid; |