]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/linux
Windows hat sie wieder zerschossen... :(
[ipfire-2.x.git] / lfs / linux
1 ###############################################################################
2 # This file is part of the IPCop Firewall. #
3 # #
4 # IPCop is free software; you can redistribute it and/or modify #
5 # it under the terms of the GNU General Public License as published by #
6 # the Free Software Foundation; either version 2 of the License, or #
7 # (at your option) any later version. #
8 # #
9 # IPCop is distributed in the hope that it will be useful, #
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12 # GNU General Public License for more details. #
13 # #
14 # You should have received a copy of the GNU General Public License #
15 # along with IPCop; if not, write to the Free Software #
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17 # #
18 # Makefiles are based on LFSMake, which is #
19 # Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20 # #
21 # Modifications by: #
22 # ??-12-2003 Mark Wormgoor < mark@wormgoor.com> #
23 # - Modified Makefile for IPCop build #
24 # #
25 # $Id: linux,v 1.42.2.57 2005/07/28 07:01:27 gespinasse Exp $
26 # #
27 ###############################################################################
28
29 ###############################################################################
30 # Definitions
31 ###############################################################################
32
33 include Config
34
35 VER = 2.4.31
36
37 THISAPP = linux-$(VER)
38 DL_FILE = $(THISAPP).tar.gz
39 DL_FROM = $(URL_KERNEL)/linux/kernel/v2.4
40 DIR_APP = $(DIR_SRC)/$(THISAPP)
41 CFLAGS =
42 CXXFLAGS =
43
44 # Normal build or /tools build.
45 #
46 ifeq "$(ROOT)" ""
47 ifeq "$(LFS_PASS)" "ipcop"
48 ifeq "$(EMB)" ""
49 TARGET = $(DIR_INFO)/$(THISAPP)-ipcop
50 endif
51 ifeq "$(SMP)" "1"
52 TARGET = $(DIR_INFO)/$(THISAPP)-ipcop-smp
53 endif
54 ifeq "$(SMP)" "installer"
55 TARGET = $(DIR_INFO)/$(THISAPP)-ipcop-installer
56 endif
57 else
58 TARGET = $(DIR_INFO)/$(THISAPP)
59 endif
60 else
61 TARGET = $(DIR_INFO)/$(THISAPP)-tools
62 endif
63
64 ###############################################################################
65 # Top-level Rules
66 ###############################################################################
67 objects =$(DL_FILE) \
68 openswan-1.0.10rc2.tar.gz \
69 iptables-1.3.5.tar.bz2 \
70 patch-o-matic-ng-20060206.tar.bz2 \
71 kbc_option_2420.patch \
72 net4801.kernel.patch_2.4.31 \
73 netfilter-layer7-v2.1.tar.gz
74
75 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
76 openswan-1.0.10rc2.tar.gz = ftp://ftp.man.szczecin.pl/disks/disk0/security/network-security/ipsec/openswan/openswan-1.0.10rc2.tar.gz
77 patch-o-matic-ng-20060206.tar.bz2 = ftp://ftp.netfilter.org/pub/patch-o-matic-ng/snapshot/patch-o-matic-ng-20060206.tar.bz2
78 iptables-1.3.5.tar.bz2 = http://www.netfilter.org/files/iptables-1.3.5.tar.bz2
79 kbc_option_2420.patch = http://developer.osdl.org/rddunlap/patches/kbc_option_2420.patch
80 net4801.kernel.patch_2.4.31 = http://www.sk-tech.net/support/net4801.kernel.patch_2.4.31
81 netfilter-layer7-v2.1.tar.gz = http://belnet.dl.sourceforge.net/sourceforge/l7-filter/netfilter-layer7-v2.1.tar.gz
82
83 $(DL_FILE)_MD5 = ea3f99fc82617886059d58d0644dab26
84 openswan-1.0.10rc2.tar.gz_MD5 = 20d51ff963da78f826f4e0f0ebc4bcef
85 patch-o-matic-ng-20060206.tar.bz2_MD5 = eca9893afb753e331caddfe63142b566
86 iptables-1.3.5.tar.bz2_MD5 = 00fb916fa8040ca992a5ace56d905ea5
87 kbc_option_2420.patch_MD5 = 6d37870344f7fcf97ace1fbf43323c60
88 net4801.kernel.patch_2.4.31_MD5 = c7d64e3caedb2f2b10e1c11db7f73a04
89 netfilter-layer7-v2.1.tar.gz_MD5 = 551626a158c2a2cbfd937d27ecc7fac1
90
91 install : $(TARGET)
92
93 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
94
95 download :$(patsubst %,$(DIR_DL)/%,$(objects))
96
97 md5 : $(subst %,%_MD5,$(objects))
98
99 ###############################################################################
100 # Downloading, checking, md5sum
101 ###############################################################################
102
103 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
104 @$(CHECK)
105
106 $(patsubst %,$(DIR_DL)/%,$(objects)) :
107 @$(LOAD)
108
109 $(subst %,%_MD5,$(objects)) :
110 @$(MD5)
111
112 ###############################################################################
113 # Installation Details
114 ###############################################################################
115
116 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
117 @$(PREBUILD)
118 @rm -rf $(DIR_APP) $(DIR_SRC)/linux && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
119 cd $(DIR_SRC) && ln -sf linux-$(VER) linux
120 cd $(DIR_APP) && sed -i -e 's/-Werror//' drivers/scsi/aic7xxx/Makefile
121
122 # Openswan
123 cd $(DIR_SRC) && rm -rf openswan-*
124 cd $(DIR_SRC) && tar xfz $(DIR_DL)/openswan-1.0.10rc2.tar.gz
125 cd $(DIR_SRC)/openswan-1.0.10rc2 && patch -Np1 < $(DIR_SRC)/src/patches/openswan-1.0.1-plutoctl.patch
126 cd $(DIR_SRC)/openswan-1.0.10rc2 && patch -Np1 < $(DIR_SRC)/src/patches/openswan-1.0.6-numif.patch
127 cd $(DIR_SRC)/openswan-1.0.10rc2 && sed -i 's+^KERNELSRC.*$$+KERNELSRC=$(ROOT)/usr/src/linux-$(VER)+' Makefile.inc
128 cd $(DIR_SRC)/openswan-1.0.10rc2 && sed -i -e 's/local\/sbin/local\/sbin:\/tools\/bin/' utils/patcher
129 cd $(DIR_SRC)/openswan-1.0.10rc2 && make insert
130
131 # Patch-o-matic
132 cd $(DIR_SRC) && rm -rf iptables-*
133 cd $(DIR_SRC) && tar xfj $(DIR_DL)/iptables-1.3.5.tar.bz2
134 cd $(DIR_SRC) && ln -sf iptables-1.3.5 iptables
135 cd $(DIR_SRC) && rm -rf patch-o-matic*
136 cd $(DIR_SRC) && tar xfj $(DIR_DL)/patch-o-matic-ng-20060206.tar.bz2
137
138 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ pending
139 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ base
140 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ h323-conntrack-nat
141 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ cuseeme-nat
142 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ mms-conntrack-nat
143 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ pptp-conntrack-nat
144 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ rtsp-conntrack
145 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ quake3-conntrack-nat
146 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ sip-conntrack-nat
147 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ ip_queue_vwmark
148 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ ipp2p
149 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ ipsec-01-output-hooks
150 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ ipsec-02-input-hooks
151 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ ipsec-03-policy-lookup
152 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ ipsec-04-policy-checks
153 cd $(DIR_SRC)/patch-o-matic* && yes 'y' | ./runme --kernel-path=$(ROOT)/usr/src/linux/ --iptables-path=$(ROOT)/usr/src/iptables/ TARPIT
154
155 #imq-patch
156 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.4.28-imq2.diff
157
158 #layer7-patch
159 cd $(DIR_SRC) && tar xzf $(DIR_DL)/netfilter-layer7-v2.1.tar.gz
160 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/netfilter-layer7-v2.1/kernel-2.4-layer7-2.1.patch
161
162 ifeq "$(EMB)" "1"
163 #Emb-patches
164 cd $(DIR_APP) && patch -Np1 < $(DIR_DL)/kbc_option_2420.patch
165 cd $(DIR_APP) && patch -Np1 < $(DIR_DL)/net4801.kernel.patch_2.4.31
166 endif
167
168 ifeq "$(SMP)" ""
169 # Only do this once on the non-SMP pass
170 cd $(DIR_SRC) && tar czf $(DIR_DL)/iptables-fixed.tar.gz iptables-1.2.11
171 endif
172
173 # Olitec isdn gazel patch
174 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/linux-2.4.23-olitec-isdn.patch
175
176 # Fix /proc/stat output
177 cd $(DIR_APP) && patch -Np2 < $(DIR_SRC)/src/patches/linux-2.4.26-proc-stat.patch
178
179 # Fix libata-core.c
180 # cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/linux-2.4.26-scsi.patch
181
182 # frandom patch
183 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.4.27-frandom-2.patch
184
185 # Propolice
186 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.4.27-ssp-1.patch
187
188 # Support ppp-2.4.3 multilink behavior (terminate when no channel is connected)
189 # need updated libpcap older than 0.8.3
190 # cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/ppp_generic-ppp-2.4.3_multilink.patch
191
192 # R8169 clone D-link GSE-528T
193 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-2.4.29_r8169clone.patch
194
195 # Cleanup kernel source
196 cd $(DIR_APP) && make mrproper
197 ifeq "$(ROOT)" ""
198 ifeq "$(LFS_PASS)" "ipcop"
199 ifeq "$(SMP)" ""
200 cp $(DIR_SRC)/config/kernel/kernel.config.$(MACHINE) $(DIR_APP)/.config
201 endif
202 ifeq "$(SMP)" "1"
203 cp $(DIR_SRC)/config/kernel/kernel.config.$(MACHINE).smp $(DIR_APP)/.config
204 endif
205 ifeq "$(SMP)" "installer"
206 cp $(DIR_SRC)/config/kernel/kernel.config.$(MACHINE).installer $(DIR_APP)/.config
207 cd $(DIR_APP) && sed -i -e 's/-O2/-Os/g' Makefile
208 endif
209
210 cd $(DIR_APP) && make CC="$(KGCC)" oldconfig
211 cd $(DIR_APP) && make CC="$(KGCC)" dep
212 cd $(DIR_APP) && make CC="$(KGCC)" clean
213 if [ "$(MACHINE)" = "i386" -a "$(EMB)" = "" ]; then \
214 cd $(DIR_APP) && make -j 3 CC="$(KGCC)" bzImage; \
215 cd $(DIR_APP) && cp arch/$(MACHINE)/boot/bzImage /boot/vmlinuz-$(VER); \
216 cd $(DIR_APP) && cp System.map /boot/System.map-$(VER); \
217 ln -sf vmlinuz-$(VER) /boot/vmlinuz; \
218 ln -sf System.map-$(VER) /boot/System.map; \
219 cd $(DIR_APP) && make CC="$(KGCC)" modules; \
220 cd $(DIR_APP) && make CC="$(KGCC)" modules_install; \
221 elif [ "$(MACHINE)" = "i386" -a "$(EMB)" = "1" ]; then \
222 cd $(DIR_APP) && sed -i -e 's/EXTRAVERSION\ =/EXTRAVERSION\ =\ -EMB/' Makefile; \
223 cd $(DIR_APP) && make -j 3 CC="$(KGCC)" bzImage; \
224 cd $(DIR_APP) && cp arch/$(MACHINE)/boot/bzImage /boot/vmlinuz-$(VER)-EMB; \
225 cd $(DIR_APP) && cp System.map /boot/System.map-$(VER)-EMB; \
226 ln -sf vmlinuz-$(VER)-EMB /boot/vmlinuz-EMB; \
227 cd $(DIR_APP) && make CC="$(KGCC)" modules; \
228 cd $(DIR_APP) && make CC="$(KGCC)" modules_install; \
229 elif [ "$(MACHINE)" = "i386" -a "$(EMB)" = "installer" ]; then \
230 cd $(DIR_APP) && make -j 3 CC="$(KGCC)" bzImage; \
231 cd $(DIR_APP) && cp arch/$(MACHINE)/boot/bzImage /boot/vmlinuz-installer; \
232 elif [ "$(MACHINE)" = "alpha" ]; then \
233 cd $(DIR_APP) && make -j 3 CC="$(KGCC)" vmlinux; \
234 cd $(DIR_APP) && gzip -9c vmlinux > /boot/vmlinuz-$(VER); \
235 cd $(DIR_APP) && cp System.map /boot/System.map-$(VER); \
236 ln -sf vmlinuz-$(VER) /boot/vmlinuz; \
237 ln -sf System.map-$(VER) /boot/System.map; \
238 cd $(DIR_APP) && make CC="$(KGCC)" modules; \
239 cd $(DIR_APP) && make CC="$(KGCC)" modules_install; \
240 fi
241 # remove symlinked pcmcia directory
242 ifeq "$(SMP)" ""
243 rm -rf /lib/modules/$(VER)/pcmcia
244 find /lib/modules/$(VER)/ -name '*.o' -a -type f | xargs gzip -f9
245
246 # Move these SCSI drivers into same directory for probescsi.sh
247 mv -f /lib/modules/$(VER)/kernel/drivers/scsi/aic7xxx/* /lib/modules/$(VER)/kernel/drivers/scsi
248 rm -rf /lib/modules/$(VER)/kernel/drivers/scsi/aic7xxx
249 mv -f /lib/modules/$(VER)/kernel/drivers/scsi/aacraid/* /lib/modules/$(VER)/kernel/drivers/scsi
250 rm -rf /lib/modules/$(VER)/kernel/drivers/scsi/aacraid
251 mv -f /lib/modules/$(VER)/kernel/drivers/scsi/sym53c8xx_2/* /lib/modules/$(VER)/kernel/drivers/scsi
252 rm -rf /lib/modules/$(VER)/kernel/drivers/scsi/sym53c8xx_2
253 endif
254 ifeq "$(SMP)" "1"
255 rm -rf /lib/modules/$(VER)-smp/pcmcia
256 find /lib/modules/$(VER)-smp/ -name '*.o' -a -type f | xargs gzip -f9
257
258 # Move these SCSI drivers into same directory for probescsi.sh
259 mv -f /lib/modules/$(VER)-smp/kernel/drivers/scsi/aic7xxx/* /lib/modules/$(VER)-smp/kernel/drivers/scsi
260 rm -rf /lib/modules/$(VER)-smp/kernel/drivers/scsi/aic7xxx
261 mv -f /lib/modules/$(VER)-smp/kernel/drivers/scsi/aacraid/* /lib/modules/$(VER)-smp/kernel/drivers/scsi
262 rm -rf /lib/modules/$(VER)-smp/kernel/drivers/scsi/aacraid
263 mv -f /lib/modules/$(VER)-smp/kernel/drivers/scsi/sym53c8xx_2/* /lib/modules/$(VER)-smp/kernel/drivers/scsi
264 rm -rf /lib/modules/$(VER)-smp/kernel/drivers/scsi/sym53c8xx_2
265 endif
266
267 ifeq "$(SMP)" ""
268 # Only do this once on the non-SMP pass
269 cd $(DIR_APP) && make mandocs
270 -mkdir -p /usr/share/man/man9/
271 cd $(DIR_APP) && cp -af Documentation/man/* /usr/share/man/man9/
272 endif
273 else
274 cd $(DIR_APP) && make include/linux/version.h
275 cd $(DIR_APP) && make symlinks
276 cd $(DIR_APP) && cp -HRf include/asm /usr/include
277 cd $(DIR_APP) && cp -Rf include/asm-generic /usr/include
278 cd $(DIR_APP) && cp -Rf include/linux /usr/include
279 touch /usr/include/linux/autoconf.h
280 endif
281 else
282 cd $(DIR_APP) && make include/linux/version.h
283 cd $(DIR_APP) && make symlinks
284 -mkdir -p /tools/include/asm
285 cd $(DIR_APP) && cp -f include/asm/* /tools/include/asm
286 cd $(DIR_APP) && cp -Rf include/asm-generic /tools/include
287 cd $(DIR_APP) && cp -Rf include/linux /tools/include
288 cd $(DIR_APP) && touch /tools/include/linux/autoconf.h
289 endif
290 @rm -rf $(DIR_SRC)/patch-o-matic* $(DIR_SRC)/iptables*
291 @$(POSTBUILD)