* [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode
@ 2022-07-04 19:39 Sean Rhodes
2022-07-04 19:39 ` [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Sean Rhodes
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Sean Rhodes @ 2022-07-04 19:39 UTC (permalink / raw)
To: devel; +Cc: Sean Rhodes, Guo Dong, Ray Ni, Maurice Ma, Benjamin You
Set PCDs ConOutRow, ConOutColumn, SetupConOutRow and SetupConOutColumn
to 0 to allow front page to full the screen.
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>
---
UefiPayloadPkg/UefiPayloadPkg.dsc | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc
index cfcf38578d..0923f9f1fa 100644
--- a/UefiPayloadPkg/UefiPayloadPkg.dsc
+++ b/UefiPayloadPkg/UefiPayloadPkg.dsc
@@ -504,8 +504,10 @@
## The PCD is used to specify the video vertical resolution of text setup.
gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|0
- gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|31
- gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|100
+ gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|0
+ gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|0
+ gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow|0
+ gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn|0
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseSize|0
gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbBase|0
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt
2022-07-04 19:39 [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sean Rhodes
@ 2022-07-04 19:39 ` Sean Rhodes
2022-07-16 1:12 ` [edk2-devel] " Guo Dong
2022-07-04 19:39 ` [PATCH 3/3] UefiPayloadPkg/PlatformBootManagerLib: Correct spacing in " Sean Rhodes
2022-07-05 9:02 ` [edk2-devel] [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sheng Lean Tan
2 siblings, 1 reply; 5+ messages in thread
From: Sean Rhodes @ 2022-07-04 19:39 UTC (permalink / raw)
To: devel; +Cc: Sean Rhodes, Guo Dong, Ray Ni, Maurice Ma, Benjamin You
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>
---
.../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.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt
2022-07-04 19:39 ` [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Sean Rhodes
@ 2022-07-16 1:12 ` Guo Dong
0 siblings, 0 replies; 5+ messages in thread
From: Guo Dong @ 2022-07-16 1:12 UTC (permalink / raw)
To: devel@edk2.groups.io, Rhodes, Sean; +Cc: Ni, Ray, Maurice Ma, You, Benjamin
Reviewed-by: Guo Dong <guo.dong@intel.com>
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Sean Rhodes
Sent: Monday, July 4, 2022 12:39 PM
To: devel@edk2.groups.io
Cc: Rhodes, Sean <sean@starlabs.systems>; Dong, Guo <guo.dong@intel.com>; Ni, Ray <ray.ni@intel.com>; Maurice Ma <maurice.ma@intel.com>; You, Benjamin <benjamin.you@intel.com>
Subject: [edk2-devel] [PATCH 2/3] 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>
---
.../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.34.1
-=-=-=-=-=-=
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#91044): https://edk2.groups.io/g/devel/message/91044
Mute This Topic: https://groups.io/mt/92172169/1781375
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [guo.dong@intel.com] -=-=-=-=-=-=
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 3/3] UefiPayloadPkg/PlatformBootManagerLib: Correct spacing in boot prompt
2022-07-04 19:39 [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sean Rhodes
2022-07-04 19:39 ` [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Sean Rhodes
@ 2022-07-04 19:39 ` Sean Rhodes
2022-07-05 9:02 ` [edk2-devel] [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sheng Lean Tan
2 siblings, 0 replies; 5+ messages in thread
From: Sean Rhodes @ 2022-07-04 19:39 UTC (permalink / raw)
To: devel; +Cc: Sean Rhodes, Guo Dong, Ray Ni, Maurice Ma, Benjamin You
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>
---
.../Library/PlatformBootManagerLib/PlatformBootManager.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c
index b360e29dfe..9364a5683d 100644
--- a/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c
+++ b/UefiPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.c
@@ -264,7 +264,7 @@ PlatformBootManagerAfterConsole (
Print (
L"\n"
L" Esc or Down to enter Boot Manager Menu.\n"
- L" ENTER to boot directly.\n"
+ L" ENTER to boot directly.\n"
L"\n"
);
} else {
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [edk2-devel] [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode
2022-07-04 19:39 [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sean Rhodes
2022-07-04 19:39 ` [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Sean Rhodes
2022-07-04 19:39 ` [PATCH 3/3] UefiPayloadPkg/PlatformBootManagerLib: Correct spacing in " Sean Rhodes
@ 2022-07-05 9:02 ` Sheng Lean Tan
2 siblings, 0 replies; 5+ messages in thread
From: Sheng Lean Tan @ 2022-07-05 9:02 UTC (permalink / raw)
To: Sean Rhodes, devel
[-- Attachment #1: Type: text/plain, Size: 56 bytes --]
Reviewed-by: Lean Sheng Tan< sheng.tan@9elements.com >
[-- Attachment #2: Type: text/html, Size: 444 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-07-16 1:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-04 19:39 [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sean Rhodes
2022-07-04 19:39 ` [PATCH 2/3] UefiPayloadPkg/PlatformBootManagerLib: Evenly space boot prompt Sean Rhodes
2022-07-16 1:12 ` [edk2-devel] " Guo Dong
2022-07-04 19:39 ` [PATCH 3/3] UefiPayloadPkg/PlatformBootManagerLib: Correct spacing in " Sean Rhodes
2022-07-05 9:02 ` [edk2-devel] [PATCH 1/3] UefiPayloadPkg: Allow full screen setup mode Sheng Lean Tan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox