Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/edk2/+/58781 )
Change subject: UefiPayloadPkg: Show boot menu prompt as progress text ......................................................................
UefiPayloadPkg: Show boot menu prompt as progress text
Signed-off-by: Matt DeVillier matt.devillier@gmail.com Change-Id: I005c1c8ab23d405410ca9ba01903995337ccb6e3 --- M UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c 1 file changed, 10 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/edk2 refs/changes/81/58781/1
diff --git a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c index 20be2d7..541c5a3 100644 --- a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c +++ b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c @@ -225,6 +225,16 @@ // 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 + ); }
/**