]> git.ipfire.org Git - ipfire-3.x.git/blob - make.sh
Merge branch 'master' of ssh://ms@git.ipfire.org/pub/git/ipfire-3.x
[ipfire-3.x.git] / make.sh
1 #!/bin/bash
2 ############################################################################
3 # #
4 # This file is part of the IPFire Firewall. #
5 # #
6 # IPFire is free software; you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation; either version 2 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # IPFire is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with IPFire; if not, write to the Free Software #
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19 # #
20 # Copyright (C) 2008 IPFire-Team <info@ipfire.org>. #
21 # #
22 ############################################################################
23 #
24
25 NAME="IPFire" # Software name
26 SNAME="ipfire" # Short name
27 VERSION="3.0-prealpha" # Version number
28 TOOLCHAINVERSION="${VERSION}-5" # Toolchain
29 SLOGAN="www.ipfire.org" # Software slogan
30
31 # Include funtions
32 . tools/make-include
33
34
35 ################################################################################
36 # This builds the entire stage "toolchain" #
37 ################################################################################
38 toolchain_build() {
39
40 ORG_PATH=$PATH
41 export PATH=${TOOLS_DIR}/usr/bin:${TOOLS_DIR}/bin:$PATH
42 STAGE_ORDER=01
43 STAGE=toolchain
44
45 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-toolchain.log"
46 export LOGFILE
47
48 toolchain_make stage1
49 # make distcc first so that CCACHE_PREFIX works immediately
50 [ -z "$DISTCC_HOSTS" ] || toolchain_make distcc
51 toolchain_make ccache
52 toolchain_make gmp
53 toolchain_make mpfr
54 toolchain_make linux
55 toolchain_make binutils PASS=1
56 toolchain_make gcc PASS=1
57 toolchain_make glibc
58 toolchain_make adjust-toolchain
59 toolchain_make binutils PASS=2
60 toolchain_make gcc PASS=2
61 #toolchain_make tcl # Maybe this can be dropped
62 #toolchain_make expect # Maybe this can be dropped
63 #toolchain_make dejagnu # Maybe this can be dropped
64 toolchain_make ncurses
65 toolchain_make bash
66 toolchain_make bzip2
67 toolchain_make coreutils
68 toolchain_make diffutils
69 toolchain_make e2fsprogs
70 toolchain_make findutils
71 toolchain_make gawk
72 toolchain_make gettext
73 toolchain_make grep
74 toolchain_make gzip
75 toolchain_make m4
76 toolchain_make make
77 toolchain_make patch
78 toolchain_make perl
79 toolchain_make sed
80 toolchain_make tar
81 toolchain_make texinfo
82 #toolchain_make bison
83 toolchain_make flex
84 toolchain_make bc
85 toolchain_make util-linux-ng
86 toolchain_make strip
87 export PATH=$ORG_PATH
88 }
89
90 ################################################################################
91 # This builds the entire stage "base" #
92 ################################################################################
93 base_build() {
94
95 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:$TOOLS_DIR/bin
96 STAGE_ORDER=02
97 STAGE=base
98
99 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-base.log"
100 export LOGFILE
101
102 ipfire_make stage2
103 ipfire_make gmp
104 ipfire_make mpfr
105 ipfire_make linux
106 ipfire_make man-pages
107 ipfire_make glibc
108 ipfire_make adjust-toolchain
109 ipfire_make binutils
110 ipfire_make gcc
111 ipfire_make berkeley
112 ipfire_make sed
113 ipfire_make e2fsprogs
114 ipfire_make coreutils
115 ipfire_make iana-etc
116 ipfire_make m4
117 ipfire_make bison
118 ipfire_make ncurses
119 ipfire_make procps
120 ipfire_make libtool
121 ipfire_make perl
122 ipfire_make readline
123 ipfire_make zlib
124 ipfire_make gettext
125 ipfire_make make
126 ipfire_make attr
127 ipfire_make libcap2
128 ipfire_make autoconf
129 ipfire_make automake
130 ipfire_make bash
131 ipfire_make bzip2
132 ipfire_make diffutils
133 ipfire_make file
134 ipfire_make findutils
135 ipfire_make flex
136 ipfire_make grub
137 ipfire_make gawk
138 ipfire_make grep
139 ipfire_make groff
140 ipfire_make gzip
141 ipfire_make inetutils
142 ipfire_make iproute2
143 ipfire_make kbd
144 ipfire_make less
145 ipfire_make man-db
146 ipfire_make module-init-tools
147 ipfire_make patch
148 ipfire_make psmisc
149 ipfire_make shadow
150 ipfire_make sysklogd
151 ipfire_make sysvinit
152 ipfire_make tar
153 ipfire_make texinfo
154 ipfire_make udev ## NEED TO INSTALL CONFIG
155 ipfire_make util-linux-ng
156 ipfire_make vim
157 }
158
159 ################################################################################
160 # This builds the entire stage "ipfire" #
161 ################################################################################
162 ipfire_build() {
163 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
164 STAGE_ORDER=03
165 STAGE=ipfire
166
167 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-ipfire.log"
168 export LOGFILE
169
170 ### Building the configuration dirs and files
171 #
172 ipfire_make stage3
173 ipfire_make lzma
174
175 ipfire_make linux
176
177 ### Building some general stuff
178 # STAGE 1
179 ipfire_make pkg-config
180 ipfire_make expat
181 ipfire_make dbus
182 ipfire_make glib
183 ipfire_make openssl
184 ipfire_make perl ### We are building the modules here.
185 ipfire_make python
186 ipfire_make python-modules
187 ipfire_make libxml2
188 ipfire_make libxslt
189 ipfire_make gmp
190 #ipfire_make libidn ### Do we need this?
191 ipfire_make pcre
192 ipfire_make popt
193 ipfire_make libusb
194 ipfire_make bc
195
196 ### Building some network stuff
197 #
198 ipfire_make libpcap
199 ipfire_make linux-atm
200 ipfire_make ppp
201 ipfire_make rp-pppoe
202 ipfire_make dhcp
203 ipfire_make iptables
204 ipfire_make libnfnetlink
205 ipfire_make libnetfilter_queue
206 ipfire_make libnetfilter_conntrack
207 ipfire_make libnetfilter_log
208 ipfire_make dnsmasq
209 ipfire_make l7-protocols
210 ipfire_make bridge-utils
211 ipfire_make vlan
212 ipfire_make bind
213 ipfire_make whois
214
215 ### Building some general stuff
216 # STAGE 2
217 ipfire_make pam PASS=1
218 ipfire_make shadow
219 ipfire_make pam PASS=2
220 ipfire_make slang
221 ipfire_make newt
222 ipfire_make cyrus-sasl
223 ipfire_make openldap
224 ipfire_make sqlite
225 ipfire_make curl
226 ipfire_make gnupg
227 ipfire_make sudo
228 #ipfire_make libjpeg
229 ipfire_make libpng
230 ipfire_make libtiff
231 ipfire_make libart
232 ipfire_make freetype
233 ipfire_make lzo
234 ipfire_make lsof
235 ipfire_make br2684ctl
236 ipfire_make etherwake
237 ipfire_make htop
238 ipfire_make beep
239
240 ### Building vpn stuff
241 #
242 ipfire_make strongswan
243
244 ### Building filesystem stuff
245 #
246 ipfire_make reiserfsprogs
247 ipfire_make libaal
248 ipfire_make reiser4progs
249 ipfire_make xfsprogs
250 ipfire_make sysfsutils
251
252 ### Building hardware utils
253 #
254 ipfire_make pciutils
255 ipfire_make usbutils
256 ipfire_make hdparm
257 ipfire_make kudzu
258 ipfire_make smartmontools
259 ipfire_make lm-sensors
260 ipfire_make hal
261
262 ### Building some important tools
263 #
264 ipfire_make ulogd2
265 ipfire_make fcron
266 ipfire_make which
267 ipfire_make nano
268 ipfire_make screen
269 ipfire_make rrdtool
270 ipfire_make ntp ### Needs config.
271 ipfire_make openssh
272 ipfire_make ez-ipupdate
273 ipfire_make noip
274 ipfire_make lighttpd
275 ipfire_make collectd
276 #ipfire_make logrotate
277 #ipfire_make logwatch
278 ipfire_make cpio
279 ipfire_make cdrtools
280 ipfire_make parted
281 ipfire_make memtest86+
282 #ipfire_make pakfire
283 #ipfire_make initscripts
284 ipfire_make chkconfig
285
286 ipfire_make pyfire
287
288 ### -------------------------------------------------------------------------
289 ### Tools that maybe not needed
290 #
291 #ipfire_make expat
292 #ipfire_make gd
293 #ipfire_make libcap
294 #ipfire_make mtools
295 #ipfire_make mISDN
296
297 #ipfire_make wireless
298 #ipfire_make libsafe
299 }
300
301 ################################################################################
302 # This builds the entire stage "misc" #
303 ################################################################################
304 misc_build() {
305
306 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
307 STAGE_ORDER=04
308 STAGE=misc
309
310 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-misc.log"
311 export LOGFILE
312
313 ipfire_make stage4
314
315 ### Console tools
316 #
317 ipfire_make mc
318 #ipfire_make traceroute
319 #ipfire_make nmap
320 #ipfire_make rsync
321 #ipfire_make tcpdump
322
323 ### Assembler
324 #
325 ipfire_make nasm
326 ipfire_make syslinux
327
328 #ipfire_make squid
329 #ipfire_make squidguard ## CAN THIS BE BANISHED BY ANYTHING BETTER?
330 #ipfire_make calamaris ## CAN THIS BE BANISHED BY ANYTHING BETTER?
331 #ipfire_make vsftpd
332
333 ### Programs that are still for discussion
334 # package or in the standard system
335 #
336 ## NTFS
337 #ipfire_make fuse
338 #ipfire_make ntfs-3g
339 #
340 ## Net tools
341 #ipfire_make bwm-ng
342 #ipfire_make openvpn
343 #
344 ## UPNP
345 #ipfire_make libupnp
346 #ipfire_make linux-igd
347
348 ### These will become addons as usual but will be integrated later
349 #
350 #ipfire_make snort
351 #ipfire_make oinkmaster
352 #ipfire_make centerim
353 #ipfire_make tripwire
354 #ipfire_make java
355 #ipfire_make cups
356 #ipfire_make ghostscript
357 #ipfire_make foomatic
358 #ipfire_make hplip
359 #ipfire_make samba
360 #ipfire_make postfix
361 #ipfire_make fetchmail
362 #ipfire_make cyrus-imapd
363 #ipfire_make clamav
364 #ipfire_make alsa
365 #ipfire_make mpg123
366 #ipfire_make mpfire
367 #ipfire_make guardian
368 #ipfire_make libid3tag
369 #ipfire_make libmad
370 #ipfire_make libogg
371 #ipfire_make libvorbis
372 #ipfire_make lame
373 #ipfire_make sox
374 #ipfire_make libshout
375 #ipfire_make icecast
376 #ipfire_make icegenerator
377 #ipfire_make mpd
378 #ipfire_make mpc
379 #ipfire_make xvid
380 #ipfire_make libmpeg2
381 #ipfire_make videolan
382 #ipfire_make libpri
383 #ipfire_make asterisk
384 #ipfire_make libsigc++
385 #ipfire_make applejuice
386 #ipfire_make libtorrent
387 #ipfire_make rtorrent
388 #ipfire_make ipfireseeder
389 #ipfire_make nfs
390
391 # ---------------------------------------------------------------------------
392 #ipfire_make as86
393 #ipfire_make mbr
394
395 ### Debugging
396 #
397 ipfire_make strace
398 }
399
400 ################################################################################
401 # This builds the entire stage "installer" #
402 ################################################################################
403 installer_build() {
404
405 PATH=${TOOLS_DIR}/usr/bin:${UCLIBC_DIR}/bin:${UCLIBC_DIR}/usr/bin
406 PATH=$PATH:${UCLIBC_CC_CORE_STATIC_DIR}/bin:/bin:/usr/bin
407 PATH=$PATH:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
408 STAGE_ORDER=05
409 STAGE=installer
410
411 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-installer.log"
412 export LOGFILE
413
414 ipfire_make stage5
415 ipfire_make ccache
416 ipfire_make gmp
417 ipfire_make mpfr
418 ipfire_make linux
419 ipfire_make binutils
420 ipfire_make uClibc PASS=1
421 ipfire_make gcc PASS=1
422 ipfire_make uClibc PASS=2
423 ipfire_make gcc PASS=2
424 ipfire_make gettext
425 ipfire_make udev
426 ipfire_make pciutils
427 ipfire_make zlib
428 ipfire_make ncurses
429 ipfire_make pcre
430 ipfire_make popt
431 #ipfire_make readline
432 ipfire_make e2fsprogs
433 ipfire_make util-linux-ng
434 ipfire_make parted
435 ipfire_make expat
436 ipfire_make dbus
437 ipfire_make glib
438 ipfire_make python
439 ipfire_make python-modules
440 ipfire_make kudzu
441 ipfire_make slang
442 ipfire_make newt
443 #ipfire_make bash
444 ipfire_make strace
445 ipfire_make cpio
446 ipfire_make lzma
447 ipfire_make pyfire
448 ipfire_make pomona
449 ipfire_make busybox
450 }
451
452 ################################################################################
453 # This builds the entire stage "packages" #
454 ################################################################################
455 packages_build() {
456
457 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
458 STAGE_ORDER=06
459 STAGE=packages
460
461 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-packages.log"
462 export LOGFILE
463
464 toolchain_make strip
465 ipfire_make initramfs
466
467 # Generate ChangeLog
468 git_log
469
470 # Generating list of packages used
471
472 ipfire_make cdrom
473
474 # Check if there is a loop device for building in virtual environments
475 #if [ -e /dev/loop/0 ] || [ -e /dev/loop0 ]; then
476 # ipfire_make usb-stick
477 #fi
478 mv $LFS/$IMAGES_DIR/{*.iso,*.tgz,*.img.gz} $BASEDIR >> $LOGFILE 2>&1
479
480 #ipfire_make core-updates
481 ### DISABLED ATM
482
483 for i in $(ls -1 $BASEDIR/src/rootfiles/extras); do
484 if [ -e $BASEDIR/lfs/$i ]; then
485 echo -n
486 ### Do nothing at the moment, we are gonna use a new packager
487 else
488 echo -n $i
489 beautify message SKIP
490 fi
491 done
492
493 # Cleanup
494 stdumount
495 rm -rf $LFS/tmp/*
496
497 cd $PWD
498 }
499
500 # See what we're supposed to do
501 . $BASEDIR/tools/make-interactive