aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2020-11-30 11:47:41 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2020-12-03 21:22:40 +0100
commit94e78200244c076e3343fd8105ffa77d73327025 (patch)
tree4c4236146ec40b34e7d84ae061c53a0a2f1625ab /cmd
parentc8d0fd582576ff7cc67d0053282430476201fd33 (diff)
downloadu-boot-94e78200244c076e3343fd8105ffa77d73327025.zip
u-boot-94e78200244c076e3343fd8105ffa77d73327025.tar.gz
u-boot-94e78200244c076e3343fd8105ffa77d73327025.tar.bz2
cmd: efidebug: Add support for TCG2 final events table
A previous commit is adding EFI_TCG2_PROTOCOL, which in it's eventlog support registers an EFI configuration table. Let's add the necessary GUID so 'efidebug table' command can display table names properly. Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/efidebug.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c
index 5288b99..70bb73b 100644
--- a/cmd/efidebug.c
+++ b/cmd/efidebug.c
@@ -278,6 +278,10 @@ static const struct {
"Runtime properties",
EFI_RT_PROPERTIES_TABLE_GUID,
},
+ {
+ "TCG2 Final Events Table",
+ EFI_TCG2_FINAL_EVENTS_TABLE_GUID,
+ },
};
/**