Add support for printing the EFI_CONFORMANCE_PROFILE_EBBR_2_[234]_GUIDs as human readable text.
Signed-off-by: Vincent Stehlé <[email protected]> Cc: Tom Rini <[email protected]> --- lib/uuid.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/uuid.c b/lib/uuid.c index 16ca8f37751..18fe2a8a8f3 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -261,6 +261,18 @@ static const struct { NULL, "EFI EBBR 2.1 Conformance Profile", EFI_CONFORMANCE_PROFILE_EBBR_2_1_GUID, }, + { + NULL, "EFI EBBR 2.2 Conformance Profile", + EFI_CONFORMANCE_PROFILE_EBBR_2_2_GUID, + }, + { + NULL, "EFI EBBR 2.3 Conformance Profile", + EFI_CONFORMANCE_PROFILE_EBBR_2_3_GUID, + }, + { + NULL, "EFI EBBR 2.4 Conformance Profile", + EFI_CONFORMANCE_PROFILE_EBBR_2_4_GUID, + }, #endif #ifdef CONFIG_EFI_RISCV_BOOT_PROTOCOL { -- 2.53.0
