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