diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-08-07 17:49:39 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-08-08 19:03:24 +0200 |
commit | 0ad64007feb93dced461647c75f782160b1c8ede (patch) | |
tree | d42e685d39a74b5e8273dcd97347f24870126a2b /include/efi_loader.h | |
parent | 1064d04920beba5564c84fde1993dd39c809ed49 (diff) | |
download | u-boot-0ad64007feb93dced461647c75f782160b1c8ede.tar.gz |
efi_loader: set load options in boot manager
Up to now we used the value of the bootargs environment variable as load
options in the boot manager. This is not correct. The data has to be taken
from the Boot#### variable.
Let the boot manager copy the optional data of the EFI_LOAD_OPTION as load
options to the loaded image protocol.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index ad580bd226..7f0ab1be56 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -720,7 +720,7 @@ unsigned long efi_serialize_load_option(struct efi_load_option *lo, u8 **data); 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); +efi_status_t efi_bootmgr_load(efi_handle_t *handle, void **load_options); /** * efi_image_regions - A list of memory regions |