projects
/
openwrt
/
staging
/
dangole.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36063ed
)
toolchain-headers: also copy asm-eva.h for mips(el) for 3.15+
author
Jonas Gorski
<jogo@openwrt.org>
Mon, 1 Dec 2014 13:27:06 +0000
(13:27 +0000)
committer
Jonas Gorski
<jogo@openwrt.org>
Mon, 1 Dec 2014 13:27:06 +0000
(13:27 +0000)
Kernel 3.15's asm.h includes eva-asm.h, so copy it also, else lzma-loader
won't compile due to a missing include.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 43460
toolchain/kernel-headers/Makefile
patch
|
blob
|
history
diff --git
a/toolchain/kernel-headers/Makefile
b/toolchain/kernel-headers/Makefile
index 9427f82c7a81abde238d04093951e7270d813eef..d93a1230c8e306b042ac48d248207f02b344ac15 100644
(file)
--- a/
toolchain/kernel-headers/Makefile
+++ b/
toolchain/kernel-headers/Makefile
@@
-57,6
+57,7
@@
ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
$(CP) \
$(HOST_BUILD_DIR)/arch/mips/include/asm/asm.h \
$(HOST_BUILD_DIR)/arch/mips/include/asm/regdef.h \
+ $(if $(call kernel_patchver_ge,3.15.0),$(HOST_BUILD_DIR)/arch/mips/include/asm/asm-eva.h) \
$(BUILD_DIR_TOOLCHAIN)/linux-dev/include/asm/
endef
endif