diff options
| author | Vincent Stehlé <vincent.stehle@arm.com> | 2026-03-09 17:36:35 +0100 |
|---|---|---|
| committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2026-03-14 08:10:26 +0100 |
| commit | f63e95d1aa1ce6d4a2f6ab9e5d1631c8ef10dbee (patch) | |
| tree | 8d8cbb15ce576e45305e46c033d87f6094b08878 /lib | |
| parent | ca495f011f603e3f033e9a14100cc43ebb297c0b (diff) | |
lib: uuid: add EBBR 2.1 conformance profile GUID
Add support for printing the EFI_CONFORMANCE_PROFILE_EBBR_2_1_GUID as human
readable text.
This is compiled in only when CONFIG_CMD_EFIDEBUG and CONFIG_EFI_EPCT are
set.
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/uuid.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/uuid.c b/lib/uuid.c index 0a166320e07..3a666d0430d 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -254,6 +254,12 @@ static const struct { NULL, "EFI Conformance Profiles Table", EFI_CONFORMANCE_PROFILES_TABLE_GUID, }, +#if CONFIG_IS_ENABLED(EFI_ECPT) + { + NULL, "EFI EBBR 2.1 Conformance Profile", + EFI_CONFORMANCE_PROFILE_EBBR_2_1_GUID, + }, +#endif #ifdef CONFIG_EFI_RISCV_BOOT_PROTOCOL { NULL, "RISC-V Boot", |
