From be10ebabbaa99df824ef6193d364a824e6e8bee4 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: Tim Crawford --- .../PlatformBootManager.c | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c index 0eb577313a..5bf3ee313e 100644 --- a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c +++ b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c @@ -260,21 +260,15 @@ PlatformBootManagerAfterConsole ( // PlatformRegisterFvBootOption (PcdGetPtr (PcdShellFile), L"UEFI Shell", LOAD_OPTION_ACTIVE); - if (FixedPcdGetBool (PcdBootManagerEscape)) { - Print ( - L"\n" - L"Esc or Down to enter Boot Manager Menu.\n" - L"ENTER to boot directly.\n" - L"\n" + // Show prompt at bottom center + BootLogoUpdateProgress ( + White, + Black, + L"Press ESC for Boot Options/Settings", + White, + 0, + 0 ); - } else { - Print ( - L"\n" - L"F2 or Down to enter Boot Manager Menu.\n" - L"ENTER to boot directly.\n" - L"\n" - ); - } } /**