From 07c8e5e59b117f2414d7c928d3f86c85574f1fc3 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Mon, 4 Jul 2022 12:39:15 -0700 Subject: [PATCH] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Add 4 spaces before the boot prompt "F2 or Down..." so that the spacing is equadistant from the top, which is spaced with a `\n`, and the left. Cc: Guo Dong Cc: Ray Ni Cc: Maurice Ma Cc: Benjamin You Signed-off-by: Sean Rhodes Reviewed-by: Guo Dong --- .../Library/PlatformBootManagerLib/PlatformBootManager.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c index 0eb577313a..b360e29dfe 100644 --- a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c +++ b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c @@ -263,15 +263,15 @@ PlatformBootManagerAfterConsole ( if (FixedPcdGetBool (PcdBootManagerEscape)) { Print ( L"\n" - L"Esc or Down to enter Boot Manager Menu.\n" - L"ENTER to boot directly.\n" + L" Esc or Down to enter Boot Manager Menu.\n" + L" ENTER to boot directly.\n" L"\n" ); } else { Print ( L"\n" - L"F2 or Down to enter Boot Manager Menu.\n" - L"ENTER to boot directly.\n" + L" F2 or Down to enter Boot Manager Menu.\n" + L" ENTER to boot directly.\n" L"\n" ); } -- 2.39.2