diff options
author | Simon Glass <sjg@chromium.org> | 2021-01-13 20:29:44 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-27 17:03:16 -0500 |
commit | 02d7a53ce6e31dc8f9f45949209468c16a025638 (patch) | |
tree | d143a6a7e6c3ac7673ffd9979f4eca48a40b4218 /common | |
parent | 9fe064646d2c9f3914cd5ceae51c34020aa77599 (diff) | |
download | u-boot-02d7a53ce6e31dc8f9f45949209468c16a025638.tar.gz |
bloblist: Add missing tag names
Add tag names for recently added types.
Fixes: d2cb7a22da0 (x86: Allow putting some tables in the bloblist)
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/bloblist.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/bloblist.c b/common/bloblist.c index e32f551e27..0e6448becb 100644 --- a/common/bloblist.c +++ b/common/bloblist.c @@ -33,6 +33,12 @@ static const char *const tag_name[] = { [BLOBLISTT_SPL_HANDOFF] = "SPL hand-off", [BLOBLISTT_VBOOT_CTX] = "Chrome OS vboot context", [BLOBLISTT_VBOOT_HANDOFF] = "Chrome OS vboot hand-off", + [BLOBLISTT_ACPI_GNVS] = "ACPI GNVS", + [BLOBLISTT_INTEL_VBT] = "Intel Video-BIOS table", + [BLOBLISTT_TPM2_TCG_LOG] = "TPM v2 log space", + [BLOBLISTT_TCPA_LOG] = "TPM log space", + [BLOBLISTT_ACPI_TABLES] = "ACPI tables for x86", + [BLOBLISTT_SMBIOS_TABLES] = "SMBIOS tables for x86", }; const char *bloblist_tag_name(enum bloblist_tag_t tag) |