X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=toolchain%2Fkernel-headers%2FMakefile;h=2a90e3d98a44e51821a502ca9f7186d3a0822865;hp=8241bdc5c5fe15d68ddd4f0a22ac218ad892fcee;hb=0742a44ed3af95145867f13c6c98046f06941f5b;hpb=ccc7a292acb900bdaa8a7c9a804c89aee293f80b diff --git a/toolchain/kernel-headers/Makefile b/toolchain/kernel-headers/Makefile index 8241bdc5c5..2a90e3d98a 100644 --- a/toolchain/kernel-headers/Makefile +++ b/toolchain/kernel-headers/Makefile @@ -31,64 +31,40 @@ ifeq ($(strip $(BOARD)),uml) LINUX_KARCH:=$(subst x86_64,x86,$(subst i386,x86,$(ARCH))) endif -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 +LINUX_HAS_HEADERS_INSTALL:=y KMAKE := $(MAKE) -C $(HOST_BUILD_DIR) \ ARCH=$(LINUX_KARCH) \ + CC="$(KERNEL_CC)" \ + CFLAGS="$(TARGET_CFLAGS)" \ + CROSS_COMPILE=$(TARGET_CROSS) \ KBUILD_HAVE_NLS=no \ CONFIG_SHELL=$(BASH) -define Host/Prepare/pre/powerpc - if [ -d $(HOST_BUILD_DIR)/include/asm-ppc ]; then \ - mkdir -p $(PKG_BUILD_DIR)/include/asm-powerpc/; \ - $(CP) $(HOST_BUILD_DIR)/include/asm-ppc/* $(HOST_BUILD_DIR)/include/asm-powerpc/; \ - rm -rf $(HOST_BUILD_DIR)/include/asm-ppc; \ - ln -s $(HOST_BUILD_DIR)/include/asm-powerpc $(HOST_BUILD_DIR)/include/asm-ppc; \ - fi -endef - -ifneq ($(LINUX_HAS_HEADERS_INSTALL),) - define Host/Prepare/all - mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr +define Host/Prepare/all + mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev $(KMAKE) \ - CROSS_COMPILE=$(TARGET_CROSS) \ - INSTALL_HDR_PATH="$(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/" \ + INSTALL_HDR_PATH="$(BUILD_DIR_TOOLCHAIN)/linux-dev/" \ headers_install - endef -else - define Host/Prepare/all - mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include - cp -pLR $(HOST_BUILD_DIR)/include/asm $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ - cp -pLR $(HOST_BUILD_DIR)/include/asm-generic $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ - cp -pLR $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH) $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ - cp -pLR $(HOST_BUILD_DIR)/include/linux $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/ - endef -endif +endef # XXX: the following is needed to build lzma-loader -define Host/Prepare/lzma +ifneq ($(CONFIG_mips)$(CONFIG_mipsel),) + define Host/Prepare/lzma $(CP) \ - $(HOST_BUILD_DIR)/include/asm-mips/asm.h \ - $(HOST_BUILD_DIR)/include/asm-mips/regdef.h \ - $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/asm/ -endef + $(HOST_BUILD_DIR)/arch/mips/include/asm/asm.h \ + $(HOST_BUILD_DIR)/arch/mips/include/asm/regdef.h \ + $(BUILD_DIR_TOOLCHAIN)/linux-dev/include/asm/ + endef +endif define Host/Prepare/post/cris $(CP) \ $(HOST_BUILD_DIR)/include/linux/user.h \ - $(HOST_BUILD_DIR)/include/linux/autoconf.h \ - $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/linux/ - ln -snf $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/arch-v10/arch \ - $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/arch - $(SED) '/#include /d' $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/asm/user.h + $(BUILD_DIR_TOOLCHAIN)/linux-dev/include/linux/ + ln -snf $(BUILD_DIR_TOOLCHAIN)/linux-dev/include/arch-v10/arch \ + $(BUILD_DIR_TOOLCHAIN)/linux-dev/include/arch + $(SED) '/#include /d' $(BUILD_DIR_TOOLCHAIN)/linux-dev/include/asm/user.h endef define Host/Prepare/post/ubicom32 @@ -97,7 +73,7 @@ define Host/Prepare/post/ubicom32 $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/user.h \ $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/page.h \ $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/page_offset.h \ - $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/asm/ + $(BUILD_DIR_TOOLCHAIN)/linux-dev/include/asm/ endef define Host/Prepare/post/mips @@ -113,13 +89,6 @@ 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 - $(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/. \ - $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH)/; \ - fi - $(call Host/Prepare/pre/$(ARCH)) $(call Host/Prepare/all) $(call Host/Prepare/post/$(ARCH)) endef