diff options
| author | Heinrich Schuchardt <[email protected]> | 2020-08-07 17:47:13 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2020-08-08 19:03:24 +0200 |
| commit | 1064d04920beba5564c84fde1993dd39c809ed49 (patch) | |
| tree | ff82f9fd5ef885e6f2f9d567cacf882c8706ca44 /include | |
| parent | dd92aad81c8e3f3adaeaf0ca793fbfa06edec712 (diff) | |
efi_loader: factor out efi_set_load_options()
The bootefi bootmgr command has to set the load options for a loaded image
from the value of BootXXXX variable. If the boot manager is not used, the
value is set from the environment variable bootargs (or efi_selftest).
Factor out a common function efi_set_load_options().
Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_loader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 98944640bee..ad580bd2263 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -717,6 +717,9 @@ 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_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); /** |
