From b4dd94c217118d2dd999b8077afc66a478592ade Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Mon, 3 Feb 2020 10:51:54 -0700 Subject: [PATCH] UefiPayloadPkg: Show boot message as progress text Signed-off-by: Matt DeVillier --- .../PlatformBootManagerLib/PlatformBootManager.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c index 20be2d7789..541c5a3907 100644 --- a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c +++ b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c @@ -225,6 +225,16 @@ PlatformBootManagerAfterConsole ( // Register UEFI Shell // PlatformRegisterFvBootOption (PcdGetPtr (PcdShellFile), L"UEFI Shell", LOAD_OPTION_ACTIVE); + + // Show prompt at bottom center + BootLogoUpdateProgress ( + White, + Black, + L"Press ESC for Boot Options/Settings", + White, + 0, + 0 + ); } /**