kernel.mk: Handle the x86_64 LINUX_KARCH case

x64 is handled by the x86 architecture in Linux, add a case for it in
LINUX_KARCH.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>

SVN-Revision: 43672
master
Felix Fietkau 10 years ago
parent fb5e8d203b
commit 256d49be3c
  1. 2
      include/kernel.mk

@ -72,7 +72,7 @@ else ifneq (,$(findstring $(ARCH), mipsel mips64 mips64el))
LINUX_KARCH := mips
else ifneq (,$(findstring $(ARCH), sh2 sh3 sh4))
LINUX_KARCH := sh
else ifneq (,$(findstring $(ARCH), i386))
else ifneq (,$(findstring $(ARCH), i386 x86_64))
LINUX_KARCH := x86
else
LINUX_KARCH := $(ARCH)

Loading…
Cancel
Save