Nicholas Sudsgaard has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/80883?usp=email )
Change subject: payload/external/edk2: Explicitly define the build arch ......................................................................
payload/external/edk2: Explicitly define the build arch
Upstream commit 11ad164bce (UefiPayloadPkg: Make UPL build script arch agnostic, 2024-02-22) changes the build script's behavior to not assume the arch.
Change-Id: Icd942d0c15a99231d09f9cbdc5eb48333b6aa6e5 Signed-off-by: Nicholas Sudsgaard devel+coreboot@nsudsgaard.com --- M payloads/external/edk2/Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/80883/1
diff --git a/payloads/external/edk2/Makefile b/payloads/external/edk2/Makefile index b03f1d5..e8d3ad2 100644 --- a/payloads/external/edk2/Makefile +++ b/payloads/external/edk2/Makefile @@ -26,7 +26,7 @@ OBJCOPY = $(GCC_PREFIX)objcopy
ifeq ($(CONFIG_EDK2_UEFIPAYLOAD),y) -BUILD_STR = -p UefiPayloadPkg/UefiPayloadPkg.dsc +BUILD_STR = -p UefiPayloadPkg/UefiPayloadPkg.dsc -D BUILD_ARCH=X64 endif BUILD_STR += -t COREBOOT BUILD_STR += -D BOOTLOADER=COREBOOT