Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77605?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: LinuxBoot/targets/u-root.mk: Correct config for UROOT_ARCH ......................................................................
LinuxBoot/targets/u-root.mk: Correct config for UROOT_ARCH
The using config string for amd64 as UROOT_ARCH contains typo
Correct using CONFIG_LINUXBOOT_X86_64
BUG = N/A TEST = Build boot facebook monolith
Change-Id: I6cfefb3f8e4e61bd56ca0fe3239000db8c07b088 Signed-off-by: Frans Hendriks fhendriks@eltan.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/77605 Reviewed-by: Maximilian Brune maximilian.brune@9elements.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M payloads/external/LinuxBoot/targets/u-root.mk 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Maximilian Brune: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/payloads/external/LinuxBoot/targets/u-root.mk b/payloads/external/LinuxBoot/targets/u-root.mk index fff79df..90b48ea 100644 --- a/payloads/external/LinuxBoot/targets/u-root.mk +++ b/payloads/external/LinuxBoot/targets/u-root.mk @@ -3,7 +3,7 @@ uroot_package = github.com/u-root/u-root uroot_build = build/go/src/$(uroot_package)
-UROOT_ARCH-$(CONFIG_LIBUXBOOT_X86_64) = amd64 +UROOT_ARCH-$(CONFIG_LINUXBOOT_X86_64) = amd64 UROOT_ARCH-$(CONFIG_LINUXBOOT_X86) = 386 UROOT_ARCH-$(CONFIG_LINUXBOOT_ARM64) = arm64 UROOT_ARCH-$(CONFIG_LINUXBOOT_RISCV_RV64) = riscv64