kernel build cleanup
[openwrt.git] / include / kernel-build.mk
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 KERNEL_BUILD:=1
8
9 include $(INCLUDE_DIR)/kernel-version.mk
10 include $(INCLUDE_DIR)/host.mk
11 include $(INCLUDE_DIR)/kernel.mk
12 include $(INCLUDE_DIR)/prereq.mk
13
14 LINUX_CONFIG ?= ./config/default
15
16 -include $(TOPDIR)/target/linux/generic-$(KERNEL)/config-template
17 -include $(LINUX_CONFIG)
18
19 ifneq ($(CONFIG_ATM),)
20   FEATURES += atm
21 endif
22 ifneq ($(CONFIG_PCI),)
23   FEATURES += pci
24 endif
25 ifneq ($(CONFIG_USB),)
26   FEATURES += usb
27 endif
28 ifneq ($(CONFIG_PCMCIA),)
29   FEATURES += pcmcia
30 endif
31 ifneq ($(CONFIG_VIDEO_DEV),)
32   FEATURES += video
33 endif
34
35 # remove duplicates
36 FEATURES:=$(sort $(FEATURES))
37
38 # For target profile selection - the default set
39 DEFAULT_PACKAGES:=base-files libgcc uclibc bridge busybox dnsmasq dropbear iptables mtd ppp ppp-mod-pppoe mtd kmod-ipt-nathelper
40
41 ifeq ($(DUMP),1)
42   all: dumpinfo
43 else
44   all: compile
45 endif
46
47 ifneq (,$(findstring uml,$(BOARD)))
48   LINUX_KARCH:=um
49 else
50   LINUX_KARCH:=$(shell echo $(ARCH) | sed -e 's/i[3-9]86/i386/' \
51         -e 's/mipsel/mips/' \
52         -e 's/mipseb/mips/' \
53         -e 's/powerpc/ppc/' \
54         -e 's/sh[234]/sh/' \
55         -e 's/armeb/arm/' \
56   )
57 endif
58
59 KERNELNAME=
60 ifneq (,$(findstring x86,$(BOARD)))
61   KERNELNAME="bzImage"
62 endif
63 ifneq (,$(findstring rdc,$(BOARD)))
64   KERNELNAME="bzImage"
65 endif
66 ifneq (,$(findstring ppc,$(BOARD)))
67   KERNELNAME="uImage"
68 endif
69
70
71 define Kernel/Prepare/Default
72         bzcat $(DL_DIR)/$(LINUX_SOURCE) | tar -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS)
73         if [ -d $(GENERIC_PLATFORM_DIR)/patches ]; then $(PATCH) $(LINUX_DIR) $(GENERIC_PLATFORM_DIR)/patches; fi
74         if [ -d ./files ]; then $(CP) ./files/* $(LINUX_DIR)/; fi
75         if [ -d ./patches ]; then $(PATCH) $(LINUX_DIR) ./patches; fi
76 endef
77 define Kernel/Prepare
78         $(call Kernel/Prepare/Default)
79 endef
80
81 KERNEL_MAKEOPTS := -C $(LINUX_DIR) \
82         CROSS_COMPILE="$(KERNEL_CROSS)" \
83         ARCH="$(LINUX_KARCH)" \
84         CONFIG_SHELL="$(BASH)"
85
86 define Kernel/Configure/2.4
87         $(SED) "s,\-mcpu=,\-mtune=,g;" $(LINUX_DIR)/arch/mips/Makefile
88         $(MAKE) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" oldconfig include/linux/compile.h include/linux/version.h
89         $(MAKE) $(KERNEL_MAKEOPTS) dep
90 endef
91 define Kernel/Configure/2.6
92         $(MAKE) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" oldconfig prepare scripts
93 endef
94 define Kernel/Configure/Default
95         @if [ -f "./config/profile-$(PROFILE)" ]; then \
96                 $(SCRIPT_DIR)/config.pl '+' $(GENERIC_PLATFORM_DIR)/config-template '+' $(LINUX_CONFIG) ./config/profile-$(PROFILE) > $(LINUX_DIR)/.config; \
97         else \
98                 $(SCRIPT_DIR)/config.pl '+' $(GENERIC_PLATFORM_DIR)/config-template $(LINUX_CONFIG) > $(LINUX_DIR)/.config; \
99         fi
100 endef
101 define Kernel/Configure
102         $(call Kernel/Configure/Default)
103 endef
104
105
106 define Kernel/CompileModules/Default
107         $(MAKE) -j$(CONFIG_JLEVEL) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" modules
108         $(MAKE) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" DEPMOD=true INSTALL_MOD_PATH=$(KERNEL_BUILD_DIR)/modules modules_install
109 endef
110 define Kernel/CompileModules
111         $(call Kernel/CompileModules/Default)
112 endef
113
114
115 ifeq ($(KERNEL),2.6)
116   ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
117     define Kernel/SetInitramfs
118                 mv $(LINUX_DIR)/.config $(LINUX_DIR)/.config.old
119                 grep -v INITRAMFS $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config
120                 echo 'CONFIG_INITRAMFS_SOURCE="../../root"' >> $(LINUX_DIR)/.config
121                 echo 'CONFIG_INITRAMFS_ROOT_UID=0' >> $(LINUX_DIR)/.config
122                 echo 'CONFIG_INITRAMFS_ROOT_GID=0' >> $(LINUX_DIR)/.config
123                 mkdir -p $(BUILD_DIR)/root/etc/init.d
124                 $(CP) $(GENERIC_PLATFORM_DIR)/files/init $(BUILD_DIR)/root/
125     endef
126   else
127     define Kernel/SetInitramfs
128                 mv $(LINUX_DIR)/.config $(LINUX_DIR)/.config.old
129                 grep -v INITRAMFS $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config
130                 rm -f $(BUILD_DIR)/root/init $(BUILD_DIR)/root/etc/init.d/S00initramfs
131                 echo 'CONFIG_INITRAMFS_SOURCE=""' >> $(LINUX_DIR)/.config
132     endef
133   endif
134 endif
135 define Kernel/CompileImage/Default
136         $(call Kernel/SetInitramfs)
137         $(MAKE) -j$(CONFIG_JLEVEL) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" $(KERNELNAME)
138         $(KERNEL_CROSS)objcopy -O binary -R .reginfo -R .note -R .comment -R .mdebug -S $(LINUX_DIR)/vmlinux $(LINUX_KERNEL)
139         $(KERNEL_CROSS)objcopy -R .reginfo -R .note -R .comment -R .mdebug -S $(LINUX_DIR)/vmlinux $(KDIR)/vmlinux.elf
140 endef
141 define Kernel/CompileImage
142         $(call Kernel/CompileImage/Default)
143 endef
144
145 define Kernel/Clean/Default
146         rm -f $(LINUX_DIR)/.linux-compile
147         rm -f $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)/.configured
148         rm -f $(LINUX_KERNEL)
149         $(MAKE) -C $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION) clean
150 endef
151
152 define Kernel/Clean
153         $(call Kernel/Clean/Default)
154 endef
155
156 define BuildKernel
157   ifneq ($(LINUX_SITE),)
158     $(DL_DIR)/$(LINUX_SOURCE):
159                 -mkdir -p $(DL_DIR)
160                 $(SCRIPT_DIR)/download.pl $(DL_DIR) $(LINUX_SOURCE) $(LINUX_KERNEL_MD5SUM) $(LINUX_SITE)
161   endif
162
163   $(LINUX_DIR)/.prepared: $(DL_DIR)/$(LINUX_SOURCE)
164         -rm -rf $(KERNEL_BUILD_DIR)
165         -mkdir -p $(KERNEL_BUILD_DIR)
166         $(call Kernel/Prepare)
167         touch $$@
168
169   $(LINUX_DIR)/.configured: $(LINUX_DIR)/.prepared $(LINUX_CONFIG)
170         $(call Kernel/Configure)
171         $(call Kernel/Configure/$(KERNEL))
172         touch $$@
173
174   $(LINUX_DIR)/.modules: $(LINUX_DIR)/.configured
175         rm -rf $(KERNEL_BUILD_DIR)/modules
176         @rm -f $(BUILD_DIR)/linux
177         ln -sf $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION) $(BUILD_DIR)/linux
178         $(call Kernel/CompileModules)
179         touch $$@
180
181   $(LINUX_DIR)/.image: $(LINUX_DIR)/.configured FORCE
182         $(call Kernel/CompileImage)
183         touch $$@
184         
185   mostlyclean: FORCE
186         $(call Kernel/Clean)
187
188   ifeq ($(DUMP),1)
189     dumpinfo:
190                 @echo 'Target: $(BOARD)-$(KERNEL)'
191                 @echo 'Target-Name: $(BOARDNAME) [$(KERNEL)]'
192                 @echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'
193                 @echo 'Target-Arch: $(ARCH)'
194                 @echo 'Target-Features: $(FEATURES)'
195                 @echo 'Linux-Version: $(LINUX_VERSION)'
196                 @echo 'Linux-Release: $(LINUX_RELEASE)'
197                 @echo 'Linux-Kernel-Arch: $(LINUX_KARCH)'
198                 @echo 'Target-Description:'
199                 @getvar $(call shvar,Target/Description)
200                 @echo '@@'
201                 @echo 'Default-Packages: $(DEFAULT_PACKAGES)'
202     ifneq ($(DUMPINFO),)
203                 @$(DUMPINFO)
204     endif
205   endif
206
207   define BuildKernel
208   endef
209 endef
210
211 define Profile/Default
212   NAME:=
213   PACKAGES:=
214 endef
215
216 confname=$(subst .,_,$(subst -,_,$(1)))
217 define Profile
218   $(eval $(call Profile/Default))
219   $(eval $(call Profile/$(1)))
220   $(eval $(call shexport,Profile/$(1)/Description))
221   DUMPINFO += \
222         echo "Target-Profile: $(1)"; \
223         echo "Target-Profile-Name: $(NAME)"; \
224         echo "Target-Profile-Packages: $(PACKAGES)"; \
225         if [ -f ./config/profile-$(1) ]; then \
226                 echo "Target-Profile-Kconfig: yes"; \
227         fi; \
228         echo "Target-Profile-Description:"; \
229         getvar "$(call shvar,Profile/$(1)/Description)"; \
230         echo "@@"; \
231         echo;
232   ifeq ($(CONFIG_LINUX_$(call confname,$(KERNEL)_$(1))),y)
233     PROFILE=$(1)
234   endif
235 endef
236
237 $(eval $(call shexport,Target/Description))
238
239 download: $(DL_DIR)/$(LINUX_SOURCE)
240 prepare: $(LINUX_DIR)/.configured $(TMP_DIR)/.kernel.mk
241 compile: $(LINUX_DIR)/.modules
242 menuconfig: $(LINUX_DIR)/.prepared FORCE
243         $(call Kernel/Configure)
244         $(SCRIPT_DIR)/config.pl '+' $(GENERIC_PLATFORM_DIR)/config-template $(LINUX_CONFIG) > $(LINUX_DIR)/.config
245         $(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) menuconfig
246         $(SCRIPT_DIR)/config.pl '>' $(GENERIC_PLATFORM_DIR)/config-template $(LINUX_DIR)/.config > $(LINUX_CONFIG)
247
248 install: $(LINUX_DIR)/.image
249
250 clean: FORCE
251         rm -f $(STAMP_DIR)/.linux-compile
252         rm -rf $(KERNEL_BUILD_DIR)
253
254 rebuild: FORCE
255         @$(MAKE) mostlyclean
256         @if [ -f $(LINUX_KERNEL) ]; then \
257                 $(MAKE) clean; \
258         fi
259         @$(MAKE) compile
260
261