]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - make.sh
Merge branch 'master' of ssh://ms@git.ipfire.org/pub/git/ipfire-3.x
[people/ms/ipfire-3.x.git] / make.sh
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21 #
22
23 NAME="IPFire" # Software name
24 SNAME="ipfire" # Short name
25 VERSION="3.0-prealpha2" # Version number
26 TOOLCHAINVERSION="${VERSION}-11" # Toolchain
27 SLOGAN="Gluttony" # Software slogan
28
29 # Include funtions
30 . tools/make-include
31
32
33 ################################################################################
34 # This builds the entire stage "toolchain" #
35 ################################################################################
36 toolchain_build() {
37
38 ORG_PATH=$PATH
39 export PATH=${TOOLS_DIR}/usr/bin:${TOOLS_DIR}/usr/sbin:${TOOLS_DIR}/bin:${TOOLS_DIR}/sbin:$PATH
40 STAGE_ORDER=01
41 STAGE=toolchain
42
43 LOGFILE="$BASEDIR/log_${TARGET}/_build.${STAGE_ORDER}-toolchain.log"
44 export LOGFILE
45
46 build_spy stage ${STAGE}
47
48 # We can't skip packages in toolchain stage
49 SAVE_SKIP_PACKAGE_LIST=$SKIP_PACKAGE_LIST
50 SKIP_PACKAGE_LIST=
51
52 icecc_disable
53
54 toolchain_make stage1
55 toolchain_make ccache
56 toolchain_make binutils PASS=1
57 toolchain_make gcc PASS=1
58 toolchain_make linux-headers
59 toolchain_make glibc
60 toolchain_make adjust-toolchain
61 toolchain_make test-toolchain PASS=1
62 toolchain_make zlib
63 toolchain_make gcc PASS=2
64 toolchain_make binutils PASS=2
65 toolchain_make test-toolchain PASS=2
66 toolchain_make ncurses
67 toolchain_make attr
68 toolchain_make acl
69 toolchain_make bash
70 toolchain_make bzip2
71 toolchain_make coreutils
72 toolchain_make cpio
73 toolchain_make diffutils
74 toolchain_make e2fsprogs
75 toolchain_make icecc
76 icecc_enable
77 icecc_use toolchain # Use the fresh gcc
78 toolchain_make file
79 toolchain_make findutils
80 toolchain_make gawk
81 toolchain_make gettext
82 toolchain_make grep
83 toolchain_make gzip
84 toolchain_make m4
85 toolchain_make make
86 toolchain_make patch
87 toolchain_make pax-utils
88 toolchain_make perl
89 toolchain_make sed
90 toolchain_make tar
91 toolchain_make texinfo
92 toolchain_make flex
93 toolchain_make bc
94 toolchain_make xz
95 toolchain_make autoconf
96 toolchain_make automake
97 toolchain_make strip
98
99 export PATH=$ORG_PATH SKIP_PACKAGE_LIST=$SAVE_SKIP_PACKAGE_LIST
100 unset SAVE_SKIP_PACKAGE_LIST
101 }
102
103 ################################################################################
104 # This builds the entire stage "base" #
105 ################################################################################
106 base_build() {
107
108 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:$TOOLS_DIR/bin
109 STAGE_ORDER=02
110 STAGE=base
111
112 LOGFILE="$BASEDIR/log_${TARGET}/_build.${STAGE_ORDER}-base.log"
113 export LOGFILE
114
115 build_spy stage ${STAGE}
116
117 # Start distributed compiling with toolchain
118 iceccd_start
119 icecc_use toolchain
120
121 ipfire_make stage2
122 ipfire_make scripts
123 ipfire_make system-release
124 ipfire_make linux-headers
125 ipfire_make man-pages
126 ipfire_make glibc
127 ipfire_make adjust-toolchain
128 ipfire_make test-toolchain
129 ipfire_make zlib
130 ipfire_make binutils
131 ipfire_make gcc
132
133 # Change to self-built gcc
134 icecc_use base
135
136 ipfire_make make
137 ipfire_make libtool
138 ipfire_make gettext
139 ipfire_make pkg-config
140 ipfire_make berkeley
141 ipfire_make sed
142 ipfire_make iana-etc
143 ipfire_make m4
144 ipfire_make bison
145 ipfire_make flex
146 ipfire_make ncurses
147 ipfire_make shadow
148 ipfire_make cracklib
149 ipfire_make pam
150 ipfire_make attr
151 ipfire_make acl
152 ipfire_make libcap2
153 ipfire_make util-linux-ng
154 ipfire_make e2fsprogs
155 ipfire_make coreutils
156 ipfire_make procps
157 ipfire_make perl
158 ipfire_make readline
159 ipfire_make libidn
160 ipfire_make bzip2
161 ipfire_make pcre
162 ipfire_make paxctl
163 ipfire_make autoconf
164 ipfire_make automake
165 ipfire_make bash
166 ipfire_make cpio
167 ipfire_make diffutils
168 ipfire_make eventlog
169 ipfire_make file
170 ipfire_make findutils
171 ipfire_make gmp
172 ipfire_make grub
173 ipfire_make gawk
174 ipfire_make glib2
175 ipfire_make grep
176 ipfire_make groff
177 ipfire_make gzip
178 ipfire_make initd-tools
179 ipfire_make iputils
180 ipfire_make iproute2
181 ipfire_make kbd
182 ipfire_make less
183 ipfire_make man-db
184 ipfire_make module-init-tools
185 ipfire_make mpfr
186 ipfire_make patch
187 ipfire_make pax-utils
188 ipfire_make psmisc
189 ipfire_make syslog-ng
190 ipfire_make sysvinit
191 ipfire_make tar
192 ipfire_make texinfo
193 ipfire_make udev
194 ipfire_make vim
195 }
196
197 ################################################################################
198 # This builds the entire stage "ipfire" #
199 ################################################################################
200 ipfire_build() {
201 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
202 STAGE_ORDER=03
203 STAGE=ipfire
204
205 LOGFILE="$BASEDIR/log_${TARGET}/_build.${STAGE_ORDER}-ipfire.log"
206 export LOGFILE
207
208 build_spy stage ${STAGE}
209
210 ### Building the configuration dirs and files
211 #
212 ipfire_make stage3
213 ipfire_make xz
214
215 ipfire_make linux
216
217 ### Building some general stuff
218 # STAGE 1
219 ipfire_make libdaemon
220 ipfire_make expat
221 ipfire_make dbus
222 ipfire_make dbus-glib
223 ipfire_make upstart
224 ipfire_make initscripts
225 ipfire_make openssl
226 ipfire_make perl-xml-parser
227 ipfire_make intltool
228 ipfire_make python
229 ipfire_make python-cracklib
230 ipfire_make python-dbus
231 ipfire_make python-urlgrabber
232 ipfire_make python-IPy
233 ipfire_make libxml2
234 ipfire_make libxslt
235 ipfire_make popt
236 ipfire_make libusb
237 ipfire_make libusb-compat # Can be removed if usbutils supports libusb-1.0
238 ipfire_make bc
239 ipfire_make boost
240 ipfire_make lua
241
242 ### Building some network stuff
243 #
244 ipfire_make libpcap
245 ipfire_make linux-atm
246 ipfire_make ppp
247 ipfire_make rp-pppoe
248 ipfire_make pptp
249 ipfire_make dhcp
250 ipfire_make iptables
251 ipfire_make libnfnetlink
252 ipfire_make libnetfilter_queue
253 ipfire_make libnetfilter_conntrack
254 ipfire_make libnetfilter_log
255 ipfire_make python-netfilter_conntrack
256 ipfire_make l7-protocols
257 ipfire_make bridge-utils
258 ipfire_make vlan
259 ipfire_make bind
260 ipfire_make whois
261 ipfire_make avahi
262 ipfire_make libssh2
263 ipfire_make libdnet
264 #ipfire_make rstp
265 ipfire_make ebtables
266 ipfire_make openlldp
267
268 ### Building some general stuff
269 # STAGE 2
270 ipfire_make pth
271 ipfire_make libassuan
272 ipfire_make libgpg-error
273 ipfire_make libgcrypt
274 ipfire_make libksba
275 ipfire_make slang
276 ipfire_make newt
277 ipfire_make cyrus-sasl
278 ipfire_make openldap
279 ipfire_make pam_ldap
280 ipfire_make nss_ldap
281 ipfire_make ldapvi
282 ipfire_make sqlite
283 ipfire_make python-sqlite2
284 ipfire_make curl
285 ipfire_make pinentry
286 ipfire_make gnupg2
287 ipfire_make sudo
288 ipfire_make libjpeg
289 ipfire_make libpng
290 ipfire_make libtiff
291 ipfire_make libart
292 ipfire_make freetype
293 ipfire_make fontconfig
294 ipfire_make pixman
295 ipfire_make cairo
296 ipfire_make pango
297 ipfire_make lzo
298 ipfire_make lsof
299 ipfire_make br2684ctl
300 ipfire_make etherwake
301 ipfire_make beep
302 ipfire_make libuser
303 ipfire_make passwd
304 ipfire_make directfb
305 ipfire_make pdns
306 ipfire_make pdns-recursor
307 ipfire_make libevent
308 ipfire_make libnfsidmap
309 ipfire_make libgssglue
310 ipfire_make librpcsecgss
311
312 ### Building vpn stuff
313 #
314 #ipfire_make strongswan
315 ipfire_make openvpn
316
317 ### Building filesystem stuff
318 #
319 ipfire_make btrfs-progs
320 ipfire_make reiserfsprogs
321 ipfire_make libaal
322 ipfire_make reiser4progs
323 ipfire_make xfsprogs
324 ipfire_make sysfsutils
325 ipfire_make squashfs-tools
326 ipfire_make dosfstools
327 ipfire_make lvm2
328 ipfire_make mdadm
329 ipfire_make dmraid
330 ipfire_make cryptsetup-luks
331 ipfire_make python-cryptsetup
332 ipfire_make fuse
333
334 ### Building hardware utils
335 #
336 ipfire_make pciutils
337 ipfire_make usbutils
338 ipfire_make hdparm
339 ipfire_make smartmontools
340 ipfire_make lm-sensors
341 ipfire_make parted
342 ipfire_make hal
343 ipfire_make hal-info
344
345 ### Building some important tools
346 #
347 ipfire_make ulogd2
348 ipfire_make fcron
349 ipfire_make which
350 ipfire_make screen
351 ipfire_make rrdtool
352 ipfire_make ntp
353 ipfire_make openssh
354 ipfire_make ez-ipupdate
355 ipfire_make noip
356 ipfire_make lighttpd
357 ipfire_make webinterface
358 ipfire_make collectd
359 ipfire_make logrotate
360 #ipfire_make logwatch
361 ipfire_make dvdrtools
362 ipfire_make python-parted
363 ipfire_make python-pyblock
364 ipfire_make libbdevid
365 ipfire_make memtest86+
366 ipfire_make quagga
367 #ipfire_make mISDN
368 ipfire_make wireless-tools
369
370 ipfire_make pyfire
371 ipfire_make network
372 ipfire_make firewall
373 ipfire_make pakfire
374 }
375
376 ################################################################################
377 # This builds the entire stage "misc" #
378 ################################################################################
379 misc_build() {
380
381 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
382 STAGE_ORDER=04
383 STAGE=misc
384
385 LOGFILE="$BASEDIR/log_${TARGET}/_build.${STAGE_ORDER}-misc.log"
386 export LOGFILE
387
388 build_spy stage ${STAGE}
389
390 ipfire_make stage4
391
392 ipfire_make miniupnpd
393
394 ### Console tools
395 #
396 ipfire_make mc
397 ipfire_make traceroute
398 ipfire_make nmap
399 #ipfire_make rsync
400 ipfire_make tcpdump
401 ipfire_make htop
402 ipfire_make nano
403
404 ### Servers
405 #
406 ipfire_make squid
407 ipfire_make samba
408
409 ### Assembler
410 #
411 ipfire_make nasm
412 ipfire_make syslinux
413
414 ipfire_make bootutils
415 ipfire_make mkinitramfs
416 ipfire_make splashy
417
418 ipfire_make vsftpd
419
420 ## NTFS
421 #ipfire_make ntfs-3g
422 #
423 ## Net tools
424 #ipfire_make bwm-ng
425
426 ### These will become addons as usual but will be integrated later
427 #
428 #ipfire_make snort
429 #ipfire_make oinkmaster
430 #ipfire_make cups
431 #ipfire_make ghostscript
432 #ipfire_make foomatic
433 #ipfire_make hplip
434 #ipfire_make postfix
435 #ipfire_make fetchmail
436 #ipfire_make cyrus-imapd
437 #ipfire_make clamav
438 #ipfire_make alsa
439 #ipfire_make mpfire
440 #ipfire_make guardian
441 #ipfire_make ipfireseeder
442 ipfire_make portmap
443 ipfire_make nfs-utils
444
445 ### Debugging
446 #
447 ipfire_make paxtest
448 ipfire_make gdb
449 ipfire_make strace
450 ipfire_make pychecker
451 }
452
453 ################################################################################
454 # This builds the entire stage "installer" #
455 ################################################################################
456 installer_build() {
457
458 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
459 STAGE_ORDER=05
460 STAGE=installer
461
462 LOGFILE="$BASEDIR/log_${TARGET}/_build.${STAGE_ORDER}-installer.log"
463 export LOGFILE
464
465 build_spy stage ${STAGE}
466
467 ipfire_make stage5
468 ipfire_make pomona
469 }
470
471 ################################################################################
472 # This builds the entire stage "packages" #
473 ################################################################################
474 packages_build() {
475
476 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
477 STAGE_ORDER=06
478 STAGE=packages
479
480 LOGFILE="$BASEDIR/log_${TARGET}/_build.${STAGE_ORDER}-packages.log"
481 export LOGFILE
482
483 build_spy stage ${STAGE}
484
485 # Generate ChangeLog
486 git_log
487
488 # Generate packages list
489 echo -n "Generating packages list"
490 pkg_list_packages > $BASEDIR/doc/packages-list.txt
491 beautify message DONE
492
493 if [ ${EMB} -eq 0 ]; then
494 ipfire_make images-core
495 ipfire_make images-info
496 ipfire_make images-initramfs
497 ipfire_make images-overlays
498 ipfire_make pxe
499 ipfire_make cdrom
500
501 if check_loop; then
502 : #ipfire_make usb-key
503 else
504 echo -n "Can't build usb-key images on this machine"
505 beautify message WARN
506 fi
507 mv $LFS/$IMAGES_DIR/{*.iso,*.tar.gz,*.img.gz} $BASEDIR >>$LOGFILE 2>&1
508 else
509 if check_loop; then
510 # We put here the code that is done when
511 # we do an embedded build
512 :
513 fi
514 fi
515
516 # Cleanup
517 stdumount
518 rm -rf $LFS/tmp/*
519
520 cd $PWD
521 }
522
523 # See what we're supposed to do
524 . $BASEDIR/tools/make-interactive