]> git.proxmox.com Git - mirror_edk2.git/commitdiff
UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt
authorSean Rhodes <sean@starlabs.systems>
Mon, 4 Jul 2022 19:39:15 +0000 (12:39 -0700)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Sat, 16 Jul 2022 02:57:38 +0000 (02:57 +0000)
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 <guo.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Maurice Ma <maurice.ma@intel.com>
Cc: Benjamin You <benjamin.you@intel.com>
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Guo Dong <guo.dong@intel.com>
UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c

index 0eb577313ae14d3925615cc635102040f1c181c0..b360e29dfe32fa101c65df8f1e760303c7c4a70f 100644 (file)
@@ -263,15 +263,15 @@ PlatformBootManagerAfterConsole (
   if (FixedPcdGetBool (PcdBootManagerEscape)) {\r
     Print (\r
       L"\n"\r
-      L"Esc or Down      to enter Boot Manager Menu.\n"\r
-      L"ENTER           to boot directly.\n"\r
+      L"    Esc or Down      to enter Boot Manager Menu.\n"\r
+      L"    ENTER           to boot directly.\n"\r
       L"\n"\r
       );\r
   } else {\r
     Print (\r
       L"\n"\r
-      L"F2 or Down      to enter Boot Manager Menu.\n"\r
-      L"ENTER           to boot directly.\n"\r
+      L"    F2 or Down      to enter Boot Manager Menu.\n"\r
+      L"    ENTER           to boot directly.\n"\r
       L"\n"\r
       );\r
   }\r