File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ $(obj)/UEFIPAYLOAD.fd tianocore: $(DOTCONFIG)
173
173
CONFIG_TIANOCORE_BOOT_TIMEOUT=$(CONFIG_TIANOCORE_BOOT_TIMEOUT ) \
174
174
CONFIG_TIANOCORE_CBMEM_LOGGING=$(CONFIG_TIANOCORE_CBMEM_LOGGING ) \
175
175
CONFIG_TIANOCORE_FOLLOW_BGRT_SPEC=$(CONFIG_TIANOCORE_FOLLOW_BGRT_SPEC ) \
176
+ CONFIG_TIANOCORE_FULL_SCREEN_SETUP=$(CONFIG_TIANOCORE_FULL_SCREEN_SETUP ) \
176
177
CONFIG_TIANOCORE_HAVE_EFI_SHELL=$(CONFIG_TIANOCORE_HAVE_EFI_SHELL ) \
177
178
CONFIG_TIANOCORE_PRIORITIZE_INTERNAL=$(CONFIG_TIANOCORE_PRIORITIZE_INTERNAL ) \
178
179
CONFIG_TIANOCORE_PS2_SUPPORT=$(CONFIG_TIANOCORE_PS2_SUPPORT ) \
Original file line number Diff line number Diff line change @@ -158,6 +158,14 @@ config TIANOCORE_FOLLOW_BGRT_SPEC
158
158
the Boot Logo 38.2% will be vertically centered 38.2% from
159
159
the top of the display.
160
160
161
+ config TIANOCORE_FULL_SCREEN_SETUP
162
+ bool "Use the full screen for the edk2 frontpage"
163
+ default y
164
+ help
165
+ Allow edk2 to use the full screen to display the frontpage
166
+ (aka "Boot Menu"). With this option disable, it will be
167
+ limited to 640x480.
168
+
161
169
config TIANOCORE_HAVE_EFI_SHELL
162
170
bool "Include EFI Shell"
163
171
default y
Original file line number Diff line number Diff line change @@ -84,10 +84,12 @@ endif
84
84
# EDKII has the below PCDs that are relevant to coreboot:
85
85
#
86
86
# Allows EDKII to use the full framebuffer
87
+ ifeq ($(CONFIG_TIANOCORE_FULL_SCREEN_SETUP ) ,y)
87
88
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow=0
88
89
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn=0
89
90
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow=0
90
91
BUILD_STR += --pcd gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn=0
92
+ endif
91
93
#
92
94
# The below are legacy options only available in CorebootPayloadPkg:
93
95
#
You can’t perform that action at this time.
0 commit comments