summaryrefslogtreecommitdiff
path: root/include/efi_config.h
diff options
context:
space:
mode:
authorMasahisa Kojima <masahisa.kojima@linaro.org>2022-09-12 11:33:54 +0300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-09-14 09:43:32 +0300
commitc416f1c0bcab87179661b367e469e51f35bd1841 (patch)
tree6726880fc8688317436dcfd255a1763ea98ff5f8 /include/efi_config.h
parentbb8498aad676dbb7c4d29ceee6e8f8f4dfef9b57 (diff)
downloadu-boot-c416f1c0bcab87179661b367e469e51f35bd1841.tar.xz
bootmenu: add removable media entries
UEFI specification requires booting from removal media using a architecture-specific default image name such as BOOTAA64.EFI. This commit adds the removable media entries into bootmenu, so that user can select the removable media and boot with default image. The bootmenu automatically enumerates the possible bootable media devices supporting EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, add it as new UEFI boot option(BOOT####) and update BootOrder variable. This automatically generated UEFI boot option has the dedicated guid in the optional_data to distinguish it from the UEFI boot option user adds manually. This optional_data is removed when the efi bootmgr loads the selected UEFI boot option. This commit also provides the BOOT#### variable maintenance feature. Depending on the system hardware setup, some devices may not exist at a later system boot, so bootmenu checks the available device in each bootmenu invocation and automatically removes the BOOT#### variable corrensponding to the non-existent media device. Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
Diffstat (limited to 'include/efi_config.h')
-rw-r--r--include/efi_config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/efi_config.h b/include/efi_config.h
index dddffe045e..098cac2115 100644
--- a/include/efi_config.h
+++ b/include/efi_config.h
@@ -93,5 +93,6 @@ efi_status_t eficonfig_select_file_handler(void *data);
efi_status_t eficonfig_get_unused_bootoption(u16 *buf,
efi_uintn_t buf_size, u32 *index);
efi_status_t eficonfig_append_bootorder(u16 index);
+efi_status_t eficonfig_generate_media_device_boot_option(void);
#endif