[Concept,03/24] bloblist: Add a name for the EFI log

Message ID 20251018084117.1798704-4-sjg@u-boot.org
State New
Headers
Series bootctl: Expand bootctl to include a new UI |

Commit Message

Simon Glass Oct. 18, 2025, 8:40 a.m. UTC
  From: Simon Glass <sjg@chromium.org>

Add an entry for BLOBLISTT_EFI_LOG to the tag_name[] array, so that
'bloblist list' will show the tag as a string.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 common/bloblist.c | 1 +
 1 file changed, 1 insertion(+)
  

Patch

diff --git a/common/bloblist.c b/common/bloblist.c
index 790b0ea892d..d1d7ddb956a 100644
--- a/common/bloblist.c
+++ b/common/bloblist.c
@@ -63,6 +63,7 @@  static struct tag_name {
 	{ BLOBLISTT_U_BOOT_SPL_HANDOFF, "SPL hand-off" },
 	{ BLOBLISTT_VBE, "VBE" },
 	{ BLOBLISTT_U_BOOT_VIDEO, "SPL video handoff" },
+	{ BLOBLISTT_EFI_LOG, "EFI-call log" },
 
 	/* BLOBLISTT_VENDOR_AREA */
 };