diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-02-10 09:21:50 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-24 00:29:44 +0000 |
commit | 3f3a3eeca75c338455e2e4564955c480293ab61c (patch) | |
tree | 394b51263ccc16df84cbf582864e7eac4cb4ebf1 | |
parent | 4600c253464a2c7284b234bdceec0bbecec55ba5 (diff) |
payloads/tianocore: Add option for to prioritize internal devices
Add TIANOCORE_PRIORITIZE_INTERNAL which, when enabled, will build edk2
with boot from internal devices before external devices.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: Ib1f73c8f3f2f2376cdc197b58d259446dc5f0138
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61797
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | payloads/external/Makefile.inc | 1 | ||||
-rw-r--r-- | payloads/external/tianocore/Kconfig | 6 | ||||
-rw-r--r-- | payloads/external/tianocore/Makefile | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index 4f5c9851ac..049fcd9ce8 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -154,6 +154,7 @@ $(obj)/UEFIPAYLOAD.fd tianocore: $(DOTCONFIG) CONFIG_TIANOCORE_CBMEM_LOGGING=$(CONFIG_TIANOCORE_CBMEM_LOGGING) \ CONFIG_TIANOCORE_FOLLOW_BGRT_SPEC=$(CONFIG_TIANOCORE_FOLLOW_BGRT_SPEC) \ CONFIG_TIANOCORE_HAVE_EFI_SHELL=$(CONFIG_TIANOCORE_HAVE_EFI_SHELL) \ + CONFIG_TIANOCORE_PRIORITIZE_INTERNAL=$(CONFIG_TIANOCORE_PRIORITIZE_INTERNAL) \ CONFIG_TIANOCORE_PS2_SUPPORT=$(CONFIG_TIANOCORE_PS2_SUPPORT) \ CONFIG_TIANOCORE_USE_8254_TIMER=$(CONFIG_TIANOCORE_USE_8254_TIMER) \ CONFIG_ECAM_MMCONF_BASE_ADDRESS=$(CONFIG_ECAM_MMCONF_BASE_ADDRESS) \ diff --git a/payloads/external/tianocore/Kconfig b/payloads/external/tianocore/Kconfig index e1beedb361..4d52994dd5 100644 --- a/payloads/external/tianocore/Kconfig +++ b/payloads/external/tianocore/Kconfig @@ -156,6 +156,12 @@ config TIANOCORE_HAVE_EFI_SHELL help Include the EFI shell Binary +config TIANOCORE_PRIORITIZE_INTERNAL + bool "Prioritize internal boot devices" + default y + help + Prioritize internal boot devices over external devices + config TIANOCORE_PS2_SUPPORT bool "Support PS/2 Keyboards" default y diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index ad2d5ec572..c6247cdefc 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -40,6 +40,10 @@ endif ifeq ($(CONFIG_TIANOCORE_FOLLOW_BGRT_SPEC),y) BUILD_STR += -D FOLLOW_BGRT_SPEC=TRUE endif +# PRIORITIZE_INTERNAL = FALSE +ifeq ($(CONFIG_TIANOCORE_PRIORITIZE_INTERNAL),y) +BUILD_STR += -D PRIORITIZE_INTERNAL=TRUE +endif # PS2_KEYBOARD_ENABLE = FALSE ifeq ($(CONFIG_TIANOCORE_PS2_SUPPORT),y) BUILD_STR += -D PS2_KEYBOARD_ENABLE=TRUE |