[Concept,18/18] expo: Add an image that indicates verification

Message ID 20251010034255.1099728-19-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>

Where an OS is verified by a vendor, add a way to show a suitable symbol
to indicate this.

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 dc5f587e83e..519c3ee782a 100644
--- a/boot/bootflow_internal.h
+++ b/boot/bootflow_internal.h
@@ -25,6 +25,7 @@ 
  * @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)
+ * @ITEM_VERIFIED: Indicates that the item is verified by the vendor
  */
 enum boomenu_id_t {
 	START,
@@ -68,6 +69,7 @@  enum boomenu_id_t {
 	ITEM_PREVIEW = 1000,
 	ITEM_VERSION_NAME = 1100,
 	ITEM_BOX = 1200,
+	ITEM_VERIFIED = 1300,
 
 	/* left margin for the main menu */
 	MARGIN_LEFT	 = 100,