diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-22 14:04:35 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-26 14:17:55 +0100 |
commit | 91cc06bcab76dd4b9d07c221b4962283f0984c8e (patch) | |
tree | fafce57ec527b2586e599584a8e31028507aa23e /lib/uuid.c | |
parent | b92d0f78dc04f6f7dd8b67cb9ea1bc1dc3b51aa6 (diff) |
lib: support SMBIOS3 table in uuid_guid_get_str()
As we support installing SMBIOS3 tables in U-Boot we need to add this GUID
to the translation table used buy uuid_guid_get_str().
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
Diffstat (limited to 'lib/uuid.c')
-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 0be22bc05f7..2d7d99535e7 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -177,6 +177,10 @@ static const struct { SMBIOS_TABLE_GUID, }, { + "SMBIOS3 table", + SMBIOS3_TABLE_GUID, + }, + { "Runtime properties", EFI_RT_PROPERTIES_TABLE_GUID, }, |