[Concept,17/18] expo: Add a box around each item

Message ID 20251010034255.1099728-18-sjg@u-boot.org
State New
Headers
Series expo: Extend the boot menu |

Commit Message

Simon Glass Oct. 10, 2025, 3:42 a.m. UTC
  From: Simon Glass <sjg@chromium.org>

Some layouts show a box around each menu item. Add an item for that.
For now this is not used in the standard layout.

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

 boot/bootflow_internal.h | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

diff --git a/boot/bootflow_internal.h b/boot/bootflow_internal.h
index 8731e9950fd..dc5f587e83e 100644
--- a/boot/bootflow_internal.h
+++ b/boot/bootflow_internal.h
@@ -24,6 +24,7 @@ 
  * @ITEM_KEY: Keypress to select this item, e.g. "1"
  * @ITEM_PREVIEW: Preview image for the OS
  * @ITEM_VERSION_NAME: Distro's name for the version, e.g. 'Noble Numbat'
+ * @ITEM_BOX: Box around the item (normally hidden)
  */
 enum boomenu_id_t {
 	START,
@@ -66,6 +67,7 @@  enum boomenu_id_t {
 	ITEM_KEY = 900,
 	ITEM_PREVIEW = 1000,
 	ITEM_VERSION_NAME = 1100,
+	ITEM_BOX = 1200,
 
 	/* left margin for the main menu */
 	MARGIN_LEFT	 = 100,