From: Thomas Petazzoni Date: Sun, 28 Oct 2012 16:40:35 +0000 (+0100) Subject: Support KERNEL_ARCH for AArch64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b90a10303e459dd288d434b27fc1e688ff94afba;p=buildroot.git Support KERNEL_ARCH for AArch64 The architecture tuple is 'aarch64', but the kernel people decided to call it 'arm64', so we have to do some mungling to get the kernel architecture name from the Buildroot architecture name. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/Makefile b/Makefile index 0128839e29..dff6aeb2f3 100644 --- a/Makefile +++ b/Makefile @@ -235,6 +235,7 @@ ARCH:=$(call qstrip,$(BR2_ARCH)) KERNEL_ARCH:=$(shell echo "$(ARCH)" | sed -e "s/-.*//" \ -e s/i.86/i386/ -e s/sun4u/sparc64/ \ -e s/arm.*/arm/ -e s/sa110/arm/ \ + -e s/aarch64/arm64/ \ -e s/bfin/blackfin/ \ -e s/parisc64/parisc/ \ -e s/powerpc64/powerpc/ \