From: Raphaƫl Poggi Date: Fri, 12 Aug 2016 14:31:52 +0000 (+0200) Subject: barebox: fix ARCH value for arm64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbe71a699abc65492a677682af21aa43286af397;p=buildroot.git barebox: fix ARCH value for arm64 barebox 2016.08 added arm64 support using ARCH=arm. [Peter: extend commit message to clarify] Signed-off-by: Raphael Poggi Signed-off-by: Peter Korsgaard --- diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk index 832297eef6..7a110d2145 100644 --- a/boot/barebox/barebox.mk +++ b/boot/barebox/barebox.mk @@ -61,6 +61,8 @@ else ifeq ($$(KERNEL_ARCH),x86_64) $(1)_ARCH = x86 else ifeq ($$(KERNEL_ARCH),powerpc) $(1)_ARCH = ppc +else ifeq ($$(KERNEL_ARCH),arm64) +$(1)_ARCH = arm else $(1)_ARCH = $$(KERNEL_ARCH) endif