diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-12-12 18:28:13 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-12-12 18:28:13 +0000 |
commit | 80ac5b013a01f0121e7a4aaa62f0c00959161b9b (patch) | |
tree | 5fdf73a2097d9400549b7fdaa9325498b48cc7db /include/kernel.mk | |
parent | bdee115c44e36d2d8f5f1f0377dfa486fb1a0ebb (diff) | |
download | upstream-80ac5b013a01f0121e7a4aaa62f0c00959161b9b.tar.gz upstream-80ac5b013a01f0121e7a4aaa62f0c00959161b9b.tar.bz2 upstream-80ac5b013a01f0121e7a4aaa62f0c00959161b9b.zip |
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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43672 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/kernel.mk')
-rw-r--r-- | include/kernel.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel.mk b/include/kernel.mk index b905cb9e19..eeb0c3d2bd 100644 --- a/include/kernel.mk +++ b/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) |