diff options
author | Frans Hendriks <fhendriks@eltan.com> | 2023-09-01 15:34:52 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-03-04 23:08:14 +0000 |
commit | 59495c929bc0dfc0f3dfd008e384230dfe2116ce (patch) | |
tree | d7074a7fc8d131ff7c2475e56dc5a84218f2f38c /payloads/external/LinuxBoot | |
parent | fa97970e85b40ae9a6cb9ec8521ce1aa6eb9e8e3 (diff) |
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>
Diffstat (limited to 'payloads/external/LinuxBoot')
-rw-r--r-- | payloads/external/LinuxBoot/targets/u-root.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/LinuxBoot/targets/u-root.mk b/payloads/external/LinuxBoot/targets/u-root.mk index fff79df0a1..90b48eaf3a 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 |