Skip to content
Snippets Groups Projects
Commit 256d49be authored by Felix Fietkau's avatar Felix Fietkau
Browse files

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: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>

SVN-Revision: 43672
parent fb5e8d20
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ else ifneq (,$(findstring $(ARCH), mipsel mips64 mips64el)) ...@@ -72,7 +72,7 @@ else ifneq (,$(findstring $(ARCH), mipsel mips64 mips64el))
LINUX_KARCH := mips LINUX_KARCH := mips
else ifneq (,$(findstring $(ARCH), sh2 sh3 sh4)) else ifneq (,$(findstring $(ARCH), sh2 sh3 sh4))
LINUX_KARCH := sh LINUX_KARCH := sh
else ifneq (,$(findstring $(ARCH), i386)) else ifneq (,$(findstring $(ARCH), i386 x86_64))
LINUX_KARCH := x86 LINUX_KARCH := x86
else else
LINUX_KARCH := $(ARCH) LINUX_KARCH := $(ARCH)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment