diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-02-19 20:48:49 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-02-26 19:32:09 +0100 |
commit | 76be687288dc618eabd1ef643488cd5bd93f84ff (patch) | |
tree | 62e1713fb51d8b3404d16bd8a2280820d02e41f7 /cmd | |
parent | 548ce227d3d852455c6395c0cec30af0cda77b09 (diff) | |
download | u-boot-76be687288dc618eabd1ef643488cd5bd93f84ff.zip u-boot-76be687288dc618eabd1ef643488cd5bd93f84ff.tar.gz u-boot-76be687288dc618eabd1ef643488cd5bd93f84ff.tar.bz2 |
efi_loader: implement EFI_RT_PROPERTIES_TABLE
UEFI spec 2.8 errata A replaces the RuntimeServicesSupported variable
defined in UEFI spec 2.8 by the configuration table
EFI_RT_PROPERTIES_TABLE. So let's follow suit.
Cc: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Tested-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/efidebug.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 576e95b3..510e258 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -264,6 +264,10 @@ static const struct { "SMBIOS table", SMBIOS_TABLE_GUID, }, + { + "Runtime properties", + EFI_RT_PROPERTIES_TABLE_GUID, + }, }; /** |