Skip to content
Snippets Groups Projects
Commit 0930d2e6 authored by florian's avatar florian
Browse files

[toolchain] cleanup the 2.6.33 and later kernels kernel-headers installation

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19962 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 6b1dd0b8
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,12 @@ ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.18)),1)
LINUX_HAS_HEADERS_INSTALL:=y
endif
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.33)),1)
LINUX_ASM_INCLUDES:=arch/$(LINUX_KARCH)/include/asm
else
LINUX_ASM_INCLUDES:=include/asm
endif
KMAKE := $(MAKE) -C $(HOST_BUILD_DIR) \
ARCH=$(LINUX_KARCH) \
KBUILD_HAVE_NLS=no \
......@@ -105,11 +111,7 @@ define Host/Prepare
ln -sf linux-$(LINUX_VERSION) $(BUILD_DIR_TOOLCHAIN)/linux
$(SED) 's/@expr length/@-expr length/' $(HOST_BUILD_DIR)/Makefile
yes '' | $(KMAKE) oldconfig
ifeq ($(CONFIG_LINUX_2_6_33),y)
$(KMAKE) include/linux/version.h arch/$(LINUX_KARCH)/include/asm
else
$(KMAKE) include/linux/version.h include/asm
endif
$(KMAKE) include/linux/version.h $(LINUX_ASM_INCLUDES)
if [ -d $(HOST_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm ]; then \
$(CP) \
$(HOST_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm/. \
......
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