diff options
author | Heinrich Schuchardt | 2022-12-23 02:26:52 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2022-12-29 10:51:50 +0100 |
commit | eff6b7157c0094c02e790146c09a2f1b4bda410f (patch) | |
tree | f5f1b480eaf27068bdbc0d4d8a0877435a7c16dc | |
parent | 3ec07c99d8f2f711f801c31a1d7a20573d6f15bb (diff) |
efi_loader: set UEFI specification version to 2.10
Claim to implement UEFI 2.10 setting EFI_SPECIFICATION_VERSION accordingly.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 00c98e0984d..9bd70b0f18c 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -21,7 +21,7 @@ #include <pe.h> /* UEFI spec version 2.9 */ -#define EFI_SPECIFICATION_VERSION (2 << 16 | 90) +#define EFI_SPECIFICATION_VERSION (2 << 16 | 100) /* Types and defines for EFI CreateEvent */ enum efi_timer_delay { |