diff options
| author | Vincent Stehlé <[email protected]> | 2025-10-13 16:21:09 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-10-18 12:00:16 +0200 |
| commit | 841a68788b75750f0cd259db70b404d5e0ab3408 (patch) | |
| tree | 2df6bd5830bb0e58ccb12d238af0f319dbfe74d9 /lib | |
| parent | ac59ac1b7cfe25dd09164cbe3b29c470474a8dad (diff) | |
lib: uuid: add efi debug image info table guid
Add the EFI Debug Image Info Table GUID to the translation table used by
uuid_guid_get_str().
This allows to print a human readable table name with `efidebug tables'
instead of "(unknown)".
Signed-off-by: Vincent Stehlé <[email protected]>
Cc: Tom Rini <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/uuid.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/uuid.c b/lib/uuid.c index 8d99b540d9f..e0f8d55438b 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -256,6 +256,10 @@ static const struct { RISCV_EFI_BOOT_PROTOCOL_GUID, }, #endif + { + NULL, "EFI Debug Image Info Table", + EFI_DEBUG_IMAGE_INFO_TABLE_GUID, + }, #endif /* CONFIG_CMD_EFIDEBUG */ #ifdef CONFIG_CMD_NVEDIT_EFI /* signature database */ |
