]> git.ipfire.org Git - ipfire-3.x.git/blame - make.sh
Changed name of source file of memtest86+.
[ipfire-3.x.git] / make.sh
CommitLineData
df5e82b3 1#!/bin/bash
df5e82b3
MT
2############################################################################
3# #
f8e5510c 4# This file is part of the IPFire Firewall. #
df5e82b3 5# #
f8e5510c 6# IPFire is free software; you can redistribute it and/or modify #
df5e82b3
MT
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# #
f8e5510c 11# IPFire is distributed in the hope that it will be useful, #
df5e82b3
MT
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 #
f8e5510c 17# along with IPFire; if not, write to the Free Software #
df5e82b3
MT
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
acef7362 20# Copyright (C) 2008 IPFire-Team <info@ipfire.org>. #
df5e82b3
MT
21# #
22############################################################################
df5e82b3
MT
23#
24
10f9531b
MT
25NAME="IPFire" # Software name
26SNAME="ipfire" # Short name
27VERSION="3.0-prealpha" # Version number
0c334240 28TOOLCHAINVERSION="${VERSION}-5" # Toolchain
10f9531b 29SLOGAN="www.ipfire.org" # Software slogan
df5e82b3 30
15679d9f 31# Include funtions
ca8da28e 32. tools/make-include
df5e82b3 33
df5e82b3 34
ca8da28e
MT
35################################################################################
36# This builds the entire stage "toolchain" #
37################################################################################
38toolchain_build() {
df5e82b3 39
ca8da28e 40 ORG_PATH=$PATH
08874027 41 export PATH=${TOOLS_DIR}/usr/bin:${TOOLS_DIR}/bin:$PATH
ca8da28e
MT
42 STAGE_ORDER=01
43 STAGE=toolchain
df5e82b3 44
4503731d 45 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-toolchain.log"
ca8da28e
MT
46 export LOGFILE
47
08874027 48 toolchain_make stage1
ca8da28e 49 # make distcc first so that CCACHE_PREFIX works immediately
0e61af85 50 [ -z "$DISTCC_HOSTS" ] || toolchain_make distcc
ca8da28e 51 toolchain_make ccache
cc0dc3e1
MT
52 toolchain_make gmp
53 toolchain_make mpfr
7e71e64b 54 toolchain_make linux
08874027
MT
55 toolchain_make binutils PASS=1
56 toolchain_make gcc PASS=1
ca8da28e 57 toolchain_make glibc
be472d5a 58 toolchain_make adjust-toolchain
08874027
MT
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
ca8da28e
MT
64 toolchain_make ncurses
65 toolchain_make bash
66 toolchain_make bzip2
67 toolchain_make coreutils
68 toolchain_make diffutils
e3d88b86 69 toolchain_make e2fsprogs
ca8da28e
MT
70 toolchain_make findutils
71 toolchain_make gawk
72 toolchain_make gettext
73 toolchain_make grep
74 toolchain_make gzip
7e71e64b 75 toolchain_make m4
ca8da28e
MT
76 toolchain_make make
77 toolchain_make patch
78 toolchain_make perl
79 toolchain_make sed
80 toolchain_make tar
81 toolchain_make texinfo
08874027
MT
82 #toolchain_make bison
83 toolchain_make flex
84 toolchain_make bc
356857d4 85 toolchain_make util-linux-ng
cf63eea7 86 toolchain_make strip
ca8da28e
MT
87 export PATH=$ORG_PATH
88}
df5e82b3 89
ca8da28e
MT
90################################################################################
91# This builds the entire stage "base" #
92################################################################################
93base_build() {
94
6e0756c3 95 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:$TOOLS_DIR/bin
ca8da28e
MT
96 STAGE_ORDER=02
97 STAGE=base
98
4503731d 99 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-base.log"
ca8da28e 100 export LOGFILE
3888140c 101
ca8da28e 102 ipfire_make stage2
cc0dc3e1
MT
103 ipfire_make gmp
104 ipfire_make mpfr
3888140c 105 ipfire_make linux
ca8da28e
MT
106 ipfire_make man-pages
107 ipfire_make glibc
3888140c 108 ipfire_make adjust-toolchain
ca8da28e
MT
109 ipfire_make binutils
110 ipfire_make gcc
111 ipfire_make berkeley
3888140c
MT
112 ipfire_make sed
113 ipfire_make e2fsprogs
ca8da28e
MT
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
ca8da28e
MT
120 ipfire_make libtool
121 ipfire_make perl
122 ipfire_make readline
123 ipfire_make zlib
520794d0
MT
124 ipfire_make gettext
125 ipfire_make make
126 ipfire_make attr
127 ipfire_make libcap2
ca8da28e
MT
128 ipfire_make autoconf
129 ipfire_make automake
130 ipfire_make bash
131 ipfire_make bzip2
132 ipfire_make diffutils
ca8da28e
MT
133 ipfire_make file
134 ipfire_make findutils
135 ipfire_make flex
0e61af85 136 ipfire_make grub
ca8da28e 137 ipfire_make gawk
ca8da28e
MT
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
0e61af85 145 ipfire_make man-db
0e61af85 146 ipfire_make module-init-tools
ca8da28e
MT
147 ipfire_make patch
148 ipfire_make psmisc
ca8da28e
MT
149 ipfire_make shadow
150 ipfire_make sysklogd
151 ipfire_make sysvinit
152 ipfire_make tar
153 ipfire_make texinfo
246556fe 154 ipfire_make udev ## NEED TO INSTALL CONFIG
356857d4 155 ipfire_make util-linux-ng
ca8da28e 156 ipfire_make vim
ca8da28e 157}
df5e82b3 158
ca8da28e
MT
159################################################################################
160# This builds the entire stage "ipfire" #
161################################################################################
162ipfire_build() {
6e0756c3 163 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
ca8da28e
MT
164 STAGE_ORDER=03
165 STAGE=ipfire
166
4503731d 167 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-ipfire.log"
ca8da28e 168 export LOGFILE
246556fe
MT
169
170 ### Building the configuration dirs and files
171 #
172 ipfire_make stage3
cc0b96e4
MT
173 ipfire_make lzma
174
f76aefec 175 ipfire_make linux
246556fe 176
51c2a8ee
MT
177 ### Building some general stuff
178 # STAGE 1
a97daddb 179 ipfire_make pkg-config
51c2a8ee 180 ipfire_make expat
bf7ce8dc 181 ipfire_make dbus
51c2a8ee 182 ipfire_make glib
51c2a8ee
MT
183 ipfire_make openssl
184 ipfire_make perl ### We are building the modules here.
185 ipfire_make python
f4f2e381 186 ipfire_make python-modules
c8787b95
MT
187 ipfire_make libxml2
188 ipfire_make libxslt
51c2a8ee
MT
189 ipfire_make gmp
190 #ipfire_make libidn ### Do we need this?
191 ipfire_make pcre
192 ipfire_make popt
193 ipfire_make libusb
08874027 194 ipfire_make bc
a97daddb 195
246556fe
MT
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
a97daddb
MT
204 ipfire_make libnfnetlink
205 ipfire_make libnetfilter_queue
206 ipfire_make libnetfilter_conntrack
0ebfc06d 207 ipfire_make libnetfilter_log
246556fe 208 ipfire_make dnsmasq
a97daddb 209 ipfire_make l7-protocols
a97daddb
MT
210 ipfire_make bridge-utils
211 ipfire_make vlan
d3a6643e 212 ipfire_make bind
eb3b1821 213 ipfire_make whois
246556fe
MT
214
215 ### Building some general stuff
51c2a8ee 216 # STAGE 2
fcfe88f5 217 ipfire_make pam PASS=1
246556fe 218 ipfire_make shadow
fcfe88f5 219 ipfire_make pam PASS=2
246556fe
MT
220 ipfire_make slang
221 ipfire_make newt
222 ipfire_make cyrus-sasl
cf63eea7
MT
223 ipfire_make openldap
224 ipfire_make sqlite
246556fe 225 ipfire_make curl
246556fe
MT
226 ipfire_make gnupg
227 ipfire_make sudo
f4f2e381 228 #ipfire_make libjpeg
246556fe
MT
229 ipfire_make libpng
230 ipfire_make libtiff
231 ipfire_make libart
232 ipfire_make freetype
233 ipfire_make lzo
b8b94b55
MT
234 ipfire_make lsof
235 ipfire_make br2684ctl
236 ipfire_make etherwake
237 ipfire_make htop
238 ipfire_make beep
246556fe 239
c33b4fab
MT
240 ### Building vpn stuff
241 #
242 ipfire_make strongswan
243
246556fe
MT
244 ### Building filesystem stuff
245 #
246 ipfire_make reiserfsprogs
247 ipfire_make libaal
248 ipfire_make reiser4progs
a97daddb 249 ipfire_make xfsprogs
90708ef5 250 ipfire_make sysfsutils
246556fe
MT
251
252 ### Building hardware utils
253 #
254 ipfire_make pciutils
255 ipfire_make usbutils
256 ipfire_make hdparm
257 ipfire_make kudzu
b8b94b55 258 ipfire_make smartmontools
90708ef5 259 ipfire_make lm-sensors
51c2a8ee 260 ipfire_make hal
246556fe
MT
261
262 ### Building some important tools
263 #
908e611e 264 ipfire_make ulogd2
246556fe
MT
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
b8b94b55
MT
272 ipfire_make ez-ipupdate
273 ipfire_make noip
274 ipfire_make lighttpd
90708ef5 275 ipfire_make collectd
cf63eea7
MT
276 #ipfire_make logrotate
277 #ipfire_make logwatch
d3a6643e
MT
278 ipfire_make cpio
279 ipfire_make cdrtools
280 ipfire_make parted
281 ipfire_make memtest86+
cf63eea7
MT
282 #ipfire_make pakfire
283 #ipfire_make initscripts
f3b195ec 284 ipfire_make chkconfig
51c2a8ee
MT
285
286 ipfire_make pyfire
d3a6643e 287
cf63eea7
MT
288 ### -------------------------------------------------------------------------
289 ### Tools that maybe not needed
290 #
291 #ipfire_make expat
cf63eea7
MT
292 #ipfire_make gd
293 #ipfire_make libcap
294 #ipfire_make mtools
295 #ipfire_make mISDN
296
cf63eea7
MT
297 #ipfire_make wireless
298 #ipfire_make libsafe
246556fe
MT
299}
300
301################################################################################
302# This builds the entire stage "misc" #
303################################################################################
304misc_build() {
305
6e0756c3 306 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
246556fe
MT
307 STAGE_ORDER=04
308 STAGE=misc
309
4503731d 310 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-misc.log"
246556fe
MT
311 export LOGFILE
312
d3a6643e 313 ipfire_make stage4
e53fbf32 314
d3a6643e
MT
315 ### Console tools
316 #
67deab0a 317 ipfire_make mc
d3a6643e
MT
318 #ipfire_make traceroute
319 #ipfire_make nmap
320 #ipfire_make rsync
321 #ipfire_make tcpdump
67deab0a 322
39c645cb
MT
323 ### Assembler
324 #
325 ipfire_make nasm
39c645cb
MT
326 ipfire_make syslinux
327
d3a6643e 328 #ipfire_make squid
d3a6643e
MT
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
246556fe 332
d3a6643e
MT
333 ### Programs that are still for discussion
334 # package or in the standard system
335 #
336 ## NTFS
337 #ipfire_make fuse
cf63eea7
MT
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
d3a6643e
MT
347
348 ### These will become addons as usual but will be integrated later
349 #
246556fe
MT
350 #ipfire_make snort
351 #ipfire_make oinkmaster
e53fbf32 352 #ipfire_make centerim
e53fbf32
MT
353 #ipfire_make tripwire
354 #ipfire_make java
31c59de6
MT
355 #ipfire_make cups
356 #ipfire_make ghostscript
357 #ipfire_make foomatic
358 #ipfire_make hplip
359 #ipfire_make samba
31c59de6
MT
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
31c59de6
MT
384 #ipfire_make libsigc++
385 #ipfire_make applejuice
31c59de6
MT
386 #ipfire_make libtorrent
387 #ipfire_make rtorrent
388 #ipfire_make ipfireseeder
31c59de6 389 #ipfire_make nfs
ca8da28e 390
d3a6643e
MT
391 # ---------------------------------------------------------------------------
392 #ipfire_make as86
393 #ipfire_make mbr
ba810f24
MT
394
395 ### Debugging
396 #
397 ipfire_make strace
df5e82b3
MT
398}
399
10f9531b 400################################################################################
a57b7dd3 401# This builds the entire stage "installer" #
10f9531b 402################################################################################
a57b7dd3 403installer_build() {
10f9531b 404
390926ef
MT
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
10f9531b 408 STAGE_ORDER=05
a57b7dd3 409 STAGE=installer
10f9531b 410
a57b7dd3 411 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-installer.log"
10f9531b
MT
412 export LOGFILE
413
414 ipfire_make stage5
390926ef 415 ipfire_make ccache
ba810f24
MT
416 ipfire_make gmp
417 ipfire_make mpfr
10f9531b 418 ipfire_make linux
10f9531b 419 ipfire_make binutils
10f9531b 420 ipfire_make uClibc PASS=1
0ef6f206 421 ipfire_make gcc PASS=1
10f9531b 422 ipfire_make uClibc PASS=2
0ef6f206
MT
423 ipfire_make gcc PASS=2
424 ipfire_make gettext
10f9531b 425 ipfire_make udev
fcfe88f5
MT
426 ipfire_make pciutils
427 ipfire_make zlib
10f9531b 428 ipfire_make ncurses
fcfe88f5
MT
429 ipfire_make pcre
430 ipfire_make popt
0ef6f206 431 #ipfire_make readline
fcfe88f5
MT
432 ipfire_make e2fsprogs
433 ipfire_make util-linux-ng
434 ipfire_make parted
435 ipfire_make python
436 ipfire_make kudzu
437 ipfire_make slang
438 ipfire_make newt
0ef6f206 439 #ipfire_make bash
060805e2 440 ipfire_make strace
fcfe88f5
MT
441 ipfire_make cpio
442 ipfire_make lzma
a57b7dd3
MT
443 ipfire_make pyfire
444 ipfire_make pomona
0ef6f206 445 ipfire_make busybox
df5e82b3
MT
446}
447
ca8da28e
MT
448################################################################################
449# This builds the entire stage "packages" #
450################################################################################
451packages_build() {
df5e82b3 452
6e0756c3 453 PATH=${TOOLS_DIR}/usr/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/${MACHINE_REAL}-linux/bin
a57b7dd3 454 STAGE_ORDER=06
ca8da28e 455 STAGE=packages
df5e82b3 456
4503731d 457 LOGFILE="$BASEDIR/log_${MACHINE}/_build.${STAGE_ORDER}-packages.log"
ca8da28e 458 export LOGFILE
0fbb45e9 459
10f9531b 460 toolchain_make strip
6d18f164
MT
461 ipfire_make initramfs
462
463 # Generate ChangeLog
7755cdbf 464 git_log
10f9531b
MT
465
466 # Generating list of packages used
df5e82b3 467
f90f9467 468 ipfire_make cdrom
74dbbc36 469
10f9531b
MT
470 # Check if there is a loop device for building in virtual environments
471 #if [ -e /dev/loop/0 ] || [ -e /dev/loop0 ]; then
472 # ipfire_make usb-stick
473 #fi
474 mv $LFS/$IMAGES_DIR/{*.iso,*.tgz,*.img.gz} $BASEDIR >> $LOGFILE 2>&1
c9673262 475
f90f9467
MT
476 #ipfire_make core-updates
477 ### DISABLED ATM
478
084ab6f4 479 for i in $(ls -1 $BASEDIR/src/rootfiles/extras); do
453b418b 480 if [ -e $BASEDIR/lfs/$i ]; then
f90f9467
MT
481 echo -n
482 ### Do nothing at the moment, we are gonna use a new packager
453b418b
MT
483 else
484 echo -n $i
485 beautify message SKIP
486 fi
fe7fe395 487 done
f90f9467 488
10f9531b
MT
489 # Cleanup
490 stdumount
491 rm -rf $LFS/tmp/*
492
493 cd $PWD
df5e82b3
MT
494}
495
496# See what we're supposed to do
ce85f613 497. $BASEDIR/tools/make-interactive