diff options
| author | Tom Rini <[email protected]> | 2020-08-11 08:56:52 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-08-11 08:56:52 -0400 |
| commit | b298720900752967dd46a5b54a5a303eb11eed95 (patch) | |
| tree | 8e4eb5c9089f1699a81c6f02efdc9a1cd0afa10a /include | |
| parent | c045207f96f7f7ae8c7f1341111a6010e636176b (diff) | |
| parent | 0ad64007feb93dced461647c75f782160b1c8ede (diff) | |
Merge tag 'efi-2020-10-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-10-rc3
Bugs in the UEFI sub-system are fixed:
* use the optional data of the BootXXXX variables as load options
* simplify function public_key_verify_signature()
* amend a copyright notice
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_loader.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 98944640bee..7f0ab1be56b 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -717,7 +717,10 @@ struct efi_load_option { efi_status_t efi_deserialize_load_option(struct efi_load_option *lo, u8 *data, efi_uintn_t *size); unsigned long efi_serialize_load_option(struct efi_load_option *lo, u8 **data); -efi_status_t efi_bootmgr_load(efi_handle_t *handle); +efi_status_t efi_set_load_options(efi_handle_t handle, + efi_uintn_t load_options_size, + void *load_options); +efi_status_t efi_bootmgr_load(efi_handle_t *handle, void **load_options); /** * efi_image_regions - A list of memory regions |
