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(+) 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, -- 2.43.0