Matt DeVillier has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62920 )
Change subject: payloads/tianocore: Add missing CONFIG_ ......................................................................
payloads/tianocore: Add missing CONFIG_
Add missing CONFIG_ to the Boot Timeout parameter.
Signed-off-by: Sean Rhodes sean@starlabs.systems Change-Id: I88f4aa0286a77f6c94b5e5ec97a0034ea7594b4f Reviewed-on: https://review.coreboot.org/c/coreboot/+/62920 Reviewed-by: Matt DeVillier matt.devillier@gmail.com Reviewed-by: Stefan Reinauer stefan.reinauer@coreboot.org Reviewed-by: Paul Menzel paulepanter@mailbox.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M payloads/external/tianocore/Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Stefan Reinauer: Looks good to me, approved Paul Menzel: Looks good to me, but someone else must approve Matt DeVillier: Looks good to me, approved
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index 873ef46..0908606 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -49,7 +49,7 @@ BUILD_STR += -D PS2_KEYBOARD_ENABLE=TRUE endif # PLATFORM_BOOT_TIMEOUT = 3 -ifneq ($(TIANOCORE_BOOT_TIMEOUT),) +ifneq ($(CONFIG_TIANOCORE_BOOT_TIMEOUT),) BUILD_STR += -D PLATFORM_BOOT_TIMEOUT=$(CONFIG_TIANOCORE_BOOT_TIMEOUT) endif # SIO_BUS_ENABLE = FALSE