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