payloads/edk2: Increase non-full-screen menu size
When the edk2 full-screen setup option is not used, the default console size is 80x25, which is far to small to effectively navigate the menus, especially now with many boards implementing CFR for setup options. Increase the default size from 80x25 to 128x40, which is a good middle ground for both low-res laptop displays and large external monitors. TEST=build/boot edk2 with full-screen setup option disabled on Starlabs starlite_adl and byte_twl with displays of varying resolution. Change-Id: I5ddcd06a66989b45f8f6e39a102298dc73b06c6d Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/88594 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Benjamin Doron <benjamin.doron00@gmail.com> Reviewed-by: Alicja Michalska <ahplka19@gmail.com> Reviewed-by: Sean Rhodes <sean@starlabs.systems> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
parent
ac7487d766
commit
e977560e72
1 changed files with 5 additions and 0 deletions
5
payloads/external/edk2/Makefile
vendored
5
payloads/external/edk2/Makefile
vendored
|
|
@ -172,6 +172,11 @@ BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow=0
|
|||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn=0
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow=0
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn=0
|
||||
else
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow=40
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn=128
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow=40
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn=128
|
||||
endif
|
||||
|
||||
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemId="COREv4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue