diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-07-04 12:39:15 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-07-16 02:57:38 +0000 |
commit | 07c8e5e59b117f2414d7c928d3f86c85574f1fc3 (patch) | |
tree | c0bc7fb1f1024a739b88b93f92a8059a5dc5bbc0 /UefiPayloadPkg | |
parent | 0d23c447d6f574cbe511414b70df14119099c70f (diff) | |
download | edk2-07c8e5e59b117f2414d7c928d3f86c85574f1fc3.tar.gz edk2-07c8e5e59b117f2414d7c928d3f86c85574f1fc3.tar.bz2 edk2-07c8e5e59b117f2414d7c928d3f86c85574f1fc3.zip |
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 <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>
Diffstat (limited to 'UefiPayloadPkg')
-rw-r--r-- | UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c | 8 |
1 files 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"
);
}
|