From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smarthost01a.sbp.mail.zen.net.uk (smarthost01a.sbp.mail.zen.net.uk [212.23.1.1]) by mx.groups.io with SMTP id smtpd.web09.76684.1656963562199550959 for ; Mon, 04 Jul 2022 12:39:22 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=permerror, err=parse error for token &{10 18 sdn.klaviyomail.com}: permanent DNS error (domain: starlabs.systems, ip: 212.23.1.1, mailfrom: sean@starlabs.systems) Received: from [217.155.46.38] (helo=starbook.lan) by smarthost01a.sbp.mail.zen.net.uk with esmtp (Exim 4.90_1) (envelope-from ) id 1o8Ruh-0001cq-TS; Mon, 04 Jul 2022 19:39:19 +0000 From: "Sean Rhodes" To: devel@edk2.groups.io Cc: Sean Rhodes , Guo Dong , Ray Ni , Maurice Ma , Benjamin You Subject: [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Date: Mon, 4 Jul 2022 20:39:15 +0100 Message-Id: <2f19f170c07d4f357814d000630629e546ee716b.1656963556.git.sean@starlabs.systems> X-Mailer: git-send-email 2.34.1 In-Reply-To: References: MIME-Version: 1.0 X-Originating-smarthost01a-IP: [217.155.46.38] Feedback-ID: 217.155.46.38 Content-Transfer-Encoding: quoted-printable 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 --- .../Library/PlatformBootManagerLib/PlatformBootManager.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootMana= ger.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)) {=0D Print (=0D L"\n"=0D - L"Esc or Down to enter Boot Manager Menu.\n"=0D - L"ENTER to boot directly.\n"=0D + L" Esc or Down to enter Boot Manager Menu.\n"=0D + L" ENTER to boot directly.\n"=0D L"\n"=0D );=0D } else {=0D Print (=0D L"\n"=0D - L"F2 or Down to enter Boot Manager Menu.\n"=0D - L"ENTER to boot directly.\n"=0D + L" F2 or Down to enter Boot Manager Menu.\n"=0D + L" ENTER to boot directly.\n"=0D L"\n"=0D );=0D }=0D --=20 2.34.1