[toolchain/kernel-headers] make sure directory exists before copying into
[openwrt.git] / toolchain / kernel-headers / Makefile
1
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 KERNEL_BUILD_DIR := $(BUILD_DIR_TOOLCHAIN)
10 BUILD_DIR := $(KERNEL_BUILD_DIR)
11
12 override QUILT:=
13 override HOST_QUILT:=
14
15 include $(INCLUDE_DIR)/kernel.mk
16
17 PKG_NAME:=linux
18 PKG_VERSION:=$(LINUX_VERSION)
19 PKG_SOURCE:=$(LINUX_SOURCE)
20 PKG_SOURCE_URL:=$(LINUX_SITE)
21 HOST_BUILD_DIR:=$(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
22 PKG_MD5SUM:=$(LINUX_KERNEL_MD5SUM)
23 LINUX_DIR := $(HOST_BUILD_DIR)
24 FILES_DIR := 
25 PATCH_DIR := ./patches$(if $(wildcard ./patches-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
26
27 include $(INCLUDE_DIR)/toolchain-build.mk
28 include $(INCLUDE_DIR)/kernel-defaults.mk
29
30 ifeq ($(strip $(BOARD)),uml)
31   LINUX_KARCH:=$(subst x86_64,x86,$(subst i386,x86,$(ARCH)))
32 endif
33
34 ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.18)),1)
35   LINUX_HAS_HEADERS_INSTALL:=y
36 endif
37
38 KMAKE := $(MAKE) -C $(HOST_BUILD_DIR) \
39         ARCH=$(LINUX_KARCH) \
40         CC="$(KERNEL_CC)" \
41         CFLAGS="$(TARGET_CFLAGS)" \
42         CROSS_COMPILE=$(TARGET_CROSS) \
43         KBUILD_HAVE_NLS=no \
44         CONFIG_SHELL=$(BASH)
45
46 ifneq ($(LINUX_HAS_HEADERS_INSTALL),)
47   define Host/Prepare/all
48         mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr
49         $(KMAKE) \
50                 INSTALL_HDR_PATH="$(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/" \
51                 headers_install
52         if [ -d $(HOST_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm ]; then \
53                 mkdir -p $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH)
54                 $(CP) \
55                         $(HOST_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm/. \
56                         $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH)/; \
57         fi
58   endef
59 else
60   define Host/Prepare/all
61         $(KMAKE) include/linux/version.h include/asm
62         mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include
63         cp -pLR $(HOST_BUILD_DIR)/include/asm $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/
64         cp -pLR $(HOST_BUILD_DIR)/include/asm-generic $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/
65         cp -pLR $(HOST_BUILD_DIR)/include/asm-$(LINUX_KARCH) $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/
66         cp -pLR $(HOST_BUILD_DIR)/include/linux $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/
67   endef
68 endif
69
70 # XXX: the following is needed to build lzma-loader
71 define Host/Prepare/lzma
72         $(CP) \
73                 $(HOST_BUILD_DIR)/include/asm-mips/asm.h \
74                 $(HOST_BUILD_DIR)/include/asm-mips/regdef.h \
75                 $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/asm/
76 endef
77
78 define Host/Prepare/post/cris
79         $(CP) \
80                 $(HOST_BUILD_DIR)/include/linux/user.h \
81                 $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/linux/
82         ln -snf $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/arch-v10/arch \
83                 $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/arch
84         $(SED) '/#include <asm\/page\.h>/d' $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/asm/user.h
85 endef
86
87 define Host/Prepare/post/ubicom32
88         $(CP) \
89                 $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/elf.h \
90                 $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/user.h \
91                 $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/page.h \
92                 $(HOST_BUILD_DIR)/arch/ubicom32/include/asm/page_offset.h \
93                 $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/asm/
94 endef
95
96 define Host/Prepare/post/mips
97         $(call Host/Prepare/lzma)
98 endef
99
100 define Host/Prepare/post/mipsel
101         $(call Host/Prepare/lzma)
102 endef
103
104 define Host/Prepare
105         $(call Kernel/Prepare/Default)
106         ln -sf linux-$(LINUX_VERSION) $(BUILD_DIR_TOOLCHAIN)/linux
107         $(SED) 's/@expr length/@-expr length/' $(HOST_BUILD_DIR)/Makefile
108         yes '' | $(KMAKE) oldconfig
109         $(call Host/Prepare/all)
110         $(call Host/Prepare/post/$(ARCH))
111 endef
112
113 define Host/Configure
114 endef
115
116 define Host/Compile
117 endef
118
119 define Host/Install
120         $(CP) $(BUILD_DIR_TOOLCHAIN)/linux-dev/* $(TOOLCHAIN_DIR)/
121 endef
122
123 define Host/Clean
124         rm -rf \
125                 $(HOST_BUILD_DIR) \
126                 $(BUILD_DIR_TOOLCHAIN)/linux \
127                 $(BUILD_DIR_TOOLCHAIN)/linux-dev
128 endef
129
130 $(eval $(call HostBuild))