mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
efi_loader: define OsIndicationsSupported flags
These flags are expected to be set in OsIndicationsSupported variable if corresponding features are supported. See UEFI specification, section 8.5.4. In particular, capsule-related flags will be used in my capsule update patch. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Fix misspelled EFI_OS_INDICATIONS_BOOT_TO_FW_UI. Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
7be64b885a
commit
7cceef7bde
1 changed files with 10 additions and 0 deletions
|
@ -57,6 +57,16 @@ typedef u16 efi_form_id_t;
|
||||||
|
|
||||||
struct efi_event;
|
struct efi_event;
|
||||||
|
|
||||||
|
/* OsIndicationsSupported flags */
|
||||||
|
#define EFI_OS_INDICATIONS_BOOT_TO_FW_UI 0x0000000000000001
|
||||||
|
#define EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION 0x0000000000000002
|
||||||
|
#define EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED 0x0000000000000004
|
||||||
|
#define EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED 0x0000000000000008
|
||||||
|
#define EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED 0x0000000000000010
|
||||||
|
#define EFI_OS_INDICATIONS_START_OS_RECOVERY 0x0000000000000020
|
||||||
|
#define EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY 0x0000000000000040
|
||||||
|
#define EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH 0x0000000000000080
|
||||||
|
|
||||||
/* EFI Boot Services table */
|
/* EFI Boot Services table */
|
||||||
#define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42
|
#define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42
|
||||||
struct efi_boot_services {
|
struct efi_boot_services {
|
||||||
|
|
Loading…
Reference in a new issue