diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-03-03 15:29:03 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:00:06 +0200 |
commit | bc4f9133edb4baf5f68689a03137bb2c336e2026 (patch) | |
tree | 53c7af9775ee69c14fc2cf69ecc37a545af23464 /include/efi_loader.h | |
parent | fc225e60822e3fd18a56b546eb683d6818d3f9c4 (diff) | |
download | u-boot-bc4f9133edb4baf5f68689a03137bb2c336e2026.tar.gz |
efi_loader: support device tree for bootefi selftest
The second argument of the bootefi command should always be usable to
specify a device tree. This was missing for bootefi selftest and
bootefi hello.
Proper error handling is added.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index b6335182ed..60f84dcf24 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -96,6 +96,8 @@ extern const efi_guid_t efi_guid_console_control; extern const efi_guid_t efi_guid_device_path; /* GUID of the EFI_DRIVER_BINDING_PROTOCOL */ extern const efi_guid_t efi_guid_driver_binding_protocol; +/* 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_device_path_to_text_protocol; extern const efi_guid_t efi_simple_file_system_protocol_guid; |