]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - make.sh
Viele kleine Schnheitsfehler in einigen CGIs angepasst
[people/pmueller/ipfire-2.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) 2006 IPFire-Team <info@ipfire.eu>. #
21 # #
22 ############################################################################
23 #
24
25 NAME="IPFire" # Software name
26 SNAME="ipfire" # Short name
27 VERSION="2.0b" # Version number
28 SLOGAN="www.ipfire.org" # Software slogan
29 CONFIG_ROOT=/var/ipfire # Configuration rootdir
30 NICE=10 # Nice level
31 MAX_RETRIES=1 # prefetch/check loop
32 KVER=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
33 MACHINE=`uname -m`
34 SVN_REVISION=`svn info | grep Revision | cut -c 11-`
35
36 IPFVER="full" # Which versions should be compiled? (full|light|devel)
37
38 # Set an information about the build number
39 if [ -e ./.svn ]; then
40 FIREBUILD=`cat .svn/entries |sed -n 's/^[ \t]*revision=\"// p' | sed -n 's/\".*$// p'`
41 fi
42
43 # Debian specific settings
44 if [ ! -e /etc/debian_version ]; then
45 FULLPATH=`which $0`
46 else
47 if [ -x /usr/bin/realpath ]; then
48 FULLPATH=`/usr/bin/realpath $0`
49 else
50 echo "ERROR: Need to do apt-get install realpath"
51 exit 1
52 fi
53 fi
54
55 PWD=`pwd`
56 BASENAME=`basename $0`
57 BASEDIR=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
58 LOGFILE=$BASEDIR/log/_build.preparation.log
59 export BASEDIR LOGFILE
60 DIR_CHK=$BASEDIR/cache/check
61 mkdir $BASEDIR/log/ 2>/dev/null
62
63 # Include funtions
64 . tools/make-functions
65
66 if [ -f .config ]; then
67 . .config
68 else
69 echo -e "${BOLD}No configuration found!${NORMAL}"
70 echo -ne "Do you want to create one (y/N)?"
71 read CREATE_CONFIG
72 echo ""
73 if [ "$CREATE_CONFIG" == "y" ]; then
74 make_config
75 fi
76 fi
77
78 prepareenv() {
79 ############################################################################
80 # #
81 # Are we running the right shell? #
82 # #
83 ############################################################################
84 if [ ! "$BASH" ]; then
85 exiterror "BASH environment variable is not set. You're probably running the wrong shell."
86 fi
87
88 if [ -z "${BASH_VERSION}" ]; then
89 exiterror "Not running BASH shell."
90 fi
91
92
93 ############################################################################
94 # #
95 # Trap on emergency exit #
96 # #
97 ############################################################################
98 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
99
100
101 ############################################################################
102 # #
103 # Resetting our nice level #
104 # #
105 ############################################################################
106 echo -ne "Resetting our nice level to $NICE" | tee -a $LOGFILE
107 renice $NICE $$ > /dev/null
108 if [ `nice` != "$NICE" ]; then
109 beautify message FAIL
110 exiterror "Failed to set correct nice level"
111 else
112 beautify message DONE
113 fi
114
115
116 ############################################################################
117 # #
118 # Checking if running as root user #
119 # #
120 ############################################################################
121 echo -ne "Checking if we're running as root user" | tee -a $LOGFILE
122 if [ `id -u` != 0 ]; then
123 beautify message FAIL
124 exiterror "Not building as root"
125 else
126 beautify message DONE
127 fi
128
129
130 ############################################################################
131 # #
132 # Checking for necessary temporary space #
133 # #
134 ############################################################################
135 echo -ne "Checking for necessary space on disk $BASE_DEV" | tee -a $LOGFILE
136 BASE_DEV=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
137 BASE_ASPACE=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
138 if (( 2048000 > $BASE_ASPACE )); then
139 BASE_USPACE=`du -skx $BASEDIR | awk '{print $1}'`
140 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
141 beautify message FAIL
142 exiterror "Not enough temporary space available, need at least 2GB on $BASE_DEV"
143 fi
144 else
145 beautify message DONE
146 fi
147
148 ############################################################################
149 # #
150 # Building Linux From Scratch system #
151 # #
152 ############################################################################
153 # Set umask
154 umask 022
155
156 # Set LFS Directory
157 LFS=$BASEDIR/build
158
159 # Check /tools symlink
160 if [ -h /tools ]; then
161 rm -f /tools
162 fi
163 if [ ! -a /tools ]; then
164 ln -s $BASEDIR/build/tools /
165 fi
166 if [ ! -h /tools ]; then
167 exiterror "Could not create /tools symbolic link."
168 fi
169
170 # Setup environment
171 set +h
172 LC_ALL=POSIX
173 MAKETUNING="-j6"
174 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
175 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
176
177 # Make some extra directories
178 mkdir -p $BASEDIR/build/{tools,etc,usr/src} 2>/dev/null
179 mkdir -p $BASEDIR/build/{dev/{shm,pts},proc,sys}
180 mkdir -p $BASEDIR/{cache,ccache} 2>/dev/null
181 mkdir -p $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
182
183 mknod -m 600 $BASEDIR/build/dev/console c 5 1 2>/dev/null
184 mknod -m 666 $BASEDIR/build/dev/null c 1 3 2>/dev/null
185
186 # Make all sources and proc available under lfs build
187 mount --bind /dev $BASEDIR/build/dev
188 mount --bind /dev/pts $BASEDIR/build/dev/pts
189 mount --bind /dev/shm $BASEDIR/build/dev/shm
190 mount --bind /proc $BASEDIR/build/proc
191 mount --bind /sys $BASEDIR/build/sys
192 mount --bind $BASEDIR/cache $BASEDIR/build/usr/src/cache
193 mount --bind $BASEDIR/ccache $BASEDIR/build/usr/src/ccache
194 mount --bind $BASEDIR/config $BASEDIR/build/usr/src/config
195 mount --bind $BASEDIR/doc $BASEDIR/build/usr/src/doc
196 mount --bind $BASEDIR/html $BASEDIR/build/usr/src/html
197 mount --bind $BASEDIR/langs $BASEDIR/build/usr/src/langs
198 mount --bind $BASEDIR/lfs $BASEDIR/build/usr/src/lfs
199 mount --bind $BASEDIR/log $BASEDIR/build/usr/src/log
200 mount --bind $BASEDIR/src $BASEDIR/build/usr/src/src
201
202 # This is a temporary hack!!!
203 if [ ! -f /tools/bin/hostname ]; then
204 cp -f /bin/hostname /tools/bin/hostname 2>/dev/null
205 fi
206
207 # Run LFS static binary creation scripts one by one
208 export CCACHE_DIR=$BASEDIR/ccache
209 export CCACHE_HASHDIR=1
210
211 # Remove pre-install list of installed files in case user erase some files before rebuild
212 rm -f $BASEDIR/build/usr/src/lsalr 2>/dev/null
213 }
214
215 buildtoolchain() {
216 LOGFILE="$BASEDIR/log/_build.toolchain.log"
217 export LOGFILE
218 ORG_PATH=$PATH
219 NATIVEGCC=`gcc --version | grep GCC | awk {'print $3'}`
220 export NATIVEGCC GCCmajor=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
221 lfsmake1 ccache
222 lfsmake1 binutils PASS=1
223 lfsmake1 gcc PASS=1
224 export PATH=$BASEDIR/build/usr/local/bin:$BASEDIR/build/tools/bin:$PATH
225 lfsmake1 linux-libc-header
226 lfsmake1 glibc
227 lfsmake1 cleanup-toolchain PASS=1
228 lfsmake1 tcl
229 lfsmake1 expect
230 lfsmake1 dejagnu
231 lfsmake1 gcc PASS=2
232 lfsmake1 binutils PASS=2
233 lfsmake1 ncurses
234 lfsmake1 bash
235 lfsmake1 bzip2
236 lfsmake1 coreutils
237 lfsmake1 diffutils
238 lfsmake1 findutils
239 lfsmake1 gawk
240 lfsmake1 gettext
241 lfsmake1 grep
242 lfsmake1 gzip
243 lfsmake1 m4
244 lfsmake1 make
245 lfsmake1 patch
246 lfsmake1 perl
247 lfsmake1 sed
248 lfsmake1 tar
249 lfsmake1 texinfo
250 lfsmake1 util-linux
251 lfsmake1 cleanup-toolchain PASS=2
252 export PATH=$ORG_PATH
253 }
254
255 buildbase() {
256 LOGFILE="$BASEDIR/log/_build.base.log"
257 export LOGFILE
258 lfsmake2 stage2
259 lfsmake2 linux-libc-header
260 lfsmake2 man-pages
261 lfsmake2 glibc
262 lfsmake2 cleanup-toolchain PASS=3
263 lfsmake2 binutils
264 lfsmake2 gcc
265 lfsmake2 berkeley
266 lfsmake2 coreutils
267 lfsmake2 iana-etc
268 lfsmake2 m4
269 lfsmake2 bison
270 lfsmake2 ncurses
271 lfsmake2 procps
272 lfsmake2 sed
273 lfsmake2 libtool
274 lfsmake2 perl
275 lfsmake2 readline
276 lfsmake2 zlib
277 lfsmake2 autoconf
278 lfsmake2 automake
279 lfsmake2 bash
280 lfsmake2 bzip2
281 lfsmake2 diffutils
282 lfsmake2 e2fsprogs
283 lfsmake2 ed
284 lfsmake2 file
285 lfsmake2 findutils
286 lfsmake2 flex
287 lfsmake2 gawk
288 lfsmake2 gettext
289 lfsmake2 grep
290 lfsmake2 groff
291 lfsmake2 gzip
292 lfsmake2 inetutils
293 lfsmake2 iproute2
294 lfsmake2 kbd
295 lfsmake2 less
296 lfsmake2 libaal
297 lfsmake2 make
298 lfsmake2 man
299 lfsmake2 mktemp
300 lfsmake2 modutils
301 lfsmake2 net-tools
302 lfsmake2 patch
303 lfsmake2 psmisc
304 lfsmake2 reiser4progs
305 lfsmake2 shadow
306 lfsmake2 sysklogd
307 lfsmake2 sysvinit
308 lfsmake2 tar
309 lfsmake2 texinfo
310 lfsmake2 udev
311 lfsmake2 util-linux
312 lfsmake2 vim
313 lfsmake2 grub
314 }
315
316 buildipfire() {
317 LOGFILE="$BASEDIR/log/_build.ipfire.log"
318 export LOGFILE
319 ipfiremake configroot
320 ipfiremake dhcp
321 ipfiremake dhcpcd
322 ipfiremake libusb
323 ipfiremake libpcap
324 ipfiremake linux-atm
325 ipfiremake ppp
326 ipfiremake rp-pppoe
327 ipfiremake unzip
328 ipfiremake linux SMP=1
329 ipfiremake ipp2p SMP=1
330 ipfiremake fcdsl SMP=1
331 ipfiremake fcdsl2 SMP=1
332 ipfiremake fcdslsl SMP=1
333 ipfiremake fcdslusb SMP=1
334 ipfiremake fcdslslusb SMP=1
335 ipfiremake fcpci SMP=1
336 # ipfiremake promise-sata-300-tx SMP=1
337 ipfiremake zaptel SMP=1
338 ipfiremake fuse SMP=1
339 ipfiremake linux
340 ipfiremake ipp2p
341 ipfiremake fcdsl
342 ipfiremake fcdsl2
343 ipfiremake fcdslsl
344 ipfiremake fcdslusb
345 ipfiremake fcdslslusb
346 ipfiremake fcpci
347 # ipfiremake promise-sata-300-tx
348 ipfiremake zaptel
349 ipfiremake fuse
350 ipfiremake pkg-config
351 ipfiremake cpio
352 ipfiremake expat
353 ipfiremake gdbm
354 ipfiremake gmp
355 ipfiremake pam
356 ipfiremake openssl
357 ipfiremake python
358 ipfiremake libnet
359 ipfiremake libjpeg
360 ipfiremake libpng
361 ipfiremake libtiff
362 ipfiremake lcms
363 ipfiremake libmng
364 ipfiremake freetype
365 ipfiremake libart
366 ipfiremake gd
367 ipfiremake popt
368 ipfiremake pcre
369 ipfiremake slang
370 ipfiremake newt
371 ipfiremake libcap
372 ipfiremake pciutils
373 ipfiremake libxml2
374 ipfiremake BerkeleyDB
375 ipfiremake mysql
376 ipfiremake cyrus-sasl
377 ipfiremake openldap
378 ipfiremake apache2
379 ipfiremake php
380 ipfiremake apache2 PASS=C
381 ipfiremake arping
382 ipfiremake beep
383 ipfiremake bind
384 ipfiremake capi4k-utils
385 ipfiremake cdrtools
386 ipfiremake dnsmasq
387 ipfiremake libaal
388 ipfiremake dosfstools
389 ipfiremake reiserfsprogs
390 ipfiremake squashfstools
391 ipfiremake sysfsutils
392 ipfiremake ntfs-3g
393 ipfiremake ethtool
394 ipfiremake ez-ipupdate
395 ipfiremake fcron
396 ipfiremake GD
397 ipfiremake GD-Graph
398 ipfiremake GD-TextUtil
399 ipfiremake gnupg
400 ipfiremake hdparm
401 ipfiremake ibod
402 ipfiremake initscripts
403 ipfiremake whatmask
404 ipfiremake iptables
405 ipfiremake libupnp
406 ipfiremake ipp2p IPT=1
407 ipfiremake moblock
408 ipfiremake linux-igd
409 ipfiremake ipac-ng
410 ipfiremake ipaddr
411 ipfiremake iptstate
412 ipfiremake iputils
413 ipfiremake l7-protocols
414 ipfiremake isapnptools
415 # ipfiremake isdn4k-utils # What about mISDN???
416 ipfiremake hwdata
417 ipfiremake kudzu
418 ipfiremake logrotate
419 ipfiremake logwatch
420 ipfiremake misc-progs
421 ipfiremake mtools
422 ipfiremake nano
423 ipfiremake nash
424 ipfiremake nasm
425 ipfiremake URI
426 ipfiremake HTML-Tagset
427 ipfiremake HTML-Parser
428 ipfiremake Compress-Zlib
429 ipfiremake Digest
430 ipfiremake Digest-SHA1
431 ipfiremake Digest-HMAC
432 ipfiremake libwww-perl
433 ipfiremake Net-DNS
434 ipfiremake Net-IPv4Addr
435 ipfiremake Net_SSLeay
436 ipfiremake IO-Stringy
437 ipfiremake Unix-Syslog
438 ipfiremake Mail-Tools
439 ipfiremake MIME-Tools
440 ipfiremake Net-Server
441 ipfiremake Convert-TNEF
442 ipfiremake Convert-UUlib
443 ipfiremake Archive-Tar
444 ipfiremake Archive-Zip
445 ipfiremake Text-Tabs+Wrap
446 ipfiremake Locale-Country
447 ipfiremake XML-Parser
448 ipfiremake glib
449 ipfiremake GeoIP
450 ipfiremake fwhits
451 ipfiremake noip_updater
452 ipfiremake ntp
453 ipfiremake openssh
454 ipfiremake openswan
455 ipfiremake pptpclient
456 ipfiremake rrdtool
457 ipfiremake setserial
458 ipfiremake setup
459 ipfiremake snort
460 ipfiremake snortsnarf
461 ipfiremake oinkmaster
462 ipfiremake squid
463 ipfiremake squid-graph
464 ipfiremake squidguard
465 ipfiremake calamaris
466 ipfiremake tcpdump
467 ipfiremake traceroute
468 ipfiremake vlan
469 ipfiremake wireless
470 ipfiremake libsafe
471 ipfiremake 3c5x9setup
472 ipfiremake pakfire
473 ipfiremake java
474 ipfiremake bootsplash
475 ipfiremake spandsp
476 ipfiremake lzo
477 ipfiremake openvpn
478 ipfiremake pammysql
479 ipfiremake xinetd
480 ipfiremake ghostscript
481 ipfiremake cups
482 ipfiremake samba
483 ipfiremake sudo
484 ipfiremake mc
485 ipfiremake wget
486 ipfiremake wput
487 ipfiremake bridge-utils
488 ipfiremake screen
489 ipfiremake hddtemp
490 ipfiremake smartmontools
491 ipfiremake htop
492 ipfiremake lynx
493 ipfiremake postfix
494 ipfiremake procmail
495 ipfiremake fetchmail
496 ipfiremake cyrusimap
497 ipfiremake webcyradm
498 ipfiremake mailx
499 ipfiremake clamav
500 ipfiremake razor
501 ipfiremake spamassassin
502 ipfiremake amavisd
503 ipfiremake stund
504 ipfiremake libpri
505 # ipfiremake bristuff
506 ipfiremake asterisk
507 ipfiremake mpg123
508 ipfiremake libmad
509 ipfiremake libogg
510 ipfiremake libvorbis
511 ipfiremake lame
512 ipfiremake xvid
513 ipfiremake mpeg2dec
514 ipfiremake ffmpeg
515 ipfiremake sox
516 ipfiremake gnump3d
517 ipfiremake videolan
518 ipfiremake applejuice
519 ipfiremake ocaml
520 ipfiremake mldonkey
521 ipfiremake ntop
522 ipfiremake rsync
523 ipfiremake tcpwrapper
524 ipfiremake portmap
525 ipfiremake nfs
526 ipfiremake nmap
527 ipfiremake mbmon
528 ipfiremake iftop
529 ipfiremake ncftp
530 ipfiremake cftp
531 ipfiremake etherwake
532 ipfiremake ethereal
533 ipfiremake tftp-hpa
534 ipfiremake bwm-ng
535 ipfiremake tripwire
536 ipfiremake sysstat
537 }
538
539 buildinstaller() {
540 # Run installer scripts one by one
541 LOGFILE="$BASEDIR/log/_build.installer.log"
542 export LOGFILE
543 ipfiremake syslinux
544 ipfiremake as86
545 ipfiremake mbr
546 ipfiremake memtest
547 installmake linux-libc-header
548 installmake binutils
549 ipfiremake uClibc PASS=1
550 ipfiremake gcc INST=1
551 installmake uClibc PASS=2
552 installmake gcc INST=2
553 installmake uClibc PASS=3
554 installmake busybox
555 installmake udev
556 installmake slang
557 installmake newt
558 installmake gettext
559 installmake kbd
560 installmake popt
561 installmake sysvinit
562 installmake misc-progs
563 installmake e2fsprogs
564 installmake libaal
565 installmake reiser4progs
566 installmake reiserfsprogs
567 installmake sysfsutils
568 installmake util-linux
569 installmake pciutils
570 installmake zlib
571 installmake wget
572 installmake hwdata
573 installmake kudzu
574 installmake installer
575 installmake initrd
576 }
577
578 buildpackages() {
579 LOGFILE="$BASEDIR/log/_build.packages.log"
580 export LOGFILE
581 echo "... see detailed log in _build.*.log files" >> $LOGFILE
582
583 installmake strip
584
585 # Generating list of packages used
586 echo -n "Generating packages list from logs" | tee -a $LOGFILE
587 rm -f $BASEDIR/doc/packages-list
588 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
589 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
590 echo "* `basename $i`" >>$BASEDIR/doc/packages-list
591 fi
592 done
593 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc/packages-list.txt
594 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$' \
595 $BASEDIR/doc/packages-list | sort >> $BASEDIR/doc/packages-list.txt
596 rm -f $BASEDIR/doc/packages-list
597 # packages-list.txt is ready to be displayed for wiki page
598 beautify message DONE
599
600 # Create images for install
601 if [ "$DEVEL" == "1" ]; then
602 ipfiremake cdrom ED=devel
603 fi
604 ipfiremake cdrom ED=full
605
606 # Check if there is a loop device for building in virtual environments
607 if [ -e /dev/loop0 ]; then
608 ipfiremake usb-stick
609 fi
610 ipfiremake pxe
611 mv $LFS/install/images/{*.iso,*.tgz,*.img.gz} $BASEDIR >> $LOGFILE 2>&1
612
613 ipfirepackages
614
615 # Cleanup
616 stdumount
617 rm -rf $BASEDIR/build/tmp/*
618
619 # Generating total list of files
620 echo -n "Generating files list from logs" | tee -a $LOGFILE
621 rm -f $BASEDIR/log/FILES
622 for i in `ls -1tr $BASEDIR/log/[^_]*`; do
623 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
624 echo "##" >>$BASEDIR/log/FILES
625 echo "## `basename $i`" >>$BASEDIR/log/FILES
626 echo "##" >>$BASEDIR/log/FILES
627 cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES
628 fi
629 done
630 beautify message DONE
631
632 cd $PWD
633 }
634
635 ipfirepackages() {
636 # ipfiredist amavisd
637 # ipfiredist applejuice
638 # ipfiredist asterisk
639 ipfiredist clamav
640 # ipfiredist cups
641 # ipfiredist cyrusimap
642 # ipfiredist fetchmail
643 # ipfiredist gnump3d
644 # ipfiredist java
645 # ipfiredist mailx
646 # ipfiredist mldonkey
647 # ipfiredist nfs
648 # ipfiredist postfix
649 # ipfiredist samba
650 # ipfiredist sox
651 # ipfiredist spamassassin
652 # ipfiredist webcyradm
653 test -d $BASEDIR/packages || mkdir $BASEDIR/packages
654 mv -f $LFS/install/packages/*.ipfire $BASEDIR/packages >> $LOGFILE 2>&1
655 rm -rf $BASEDIR/build/install/packages/*
656 }
657
658 # See what we're supposed to do
659 case "$1" in
660 build)
661 clear
662 BUILDMACHINE=`uname -m`
663 DEVEL=0
664 if [ "$2" == "--devel" ]; then
665 DEVEL=1
666 fi
667 PACKAGE=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
668 #only restore on a clean disk
669 if [ ! -f log/cleanup-toolchain-2-tools ]; then
670 if [ ! -n "$PACKAGE" ]; then
671 beautify build_stage "Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
672 prepareenv
673 buildtoolchain
674 else
675 PACKAGENAME=${PACKAGE%.tar.gz}
676 beautify build_stage "Packaged toolchain compilation"
677 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
678 tar zxf $PACKAGE
679 prepareenv
680 else
681 exiterror "$PACKAGENAME md5 did not match, check downloaded package"
682 fi
683 fi
684 else
685 echo -n "Using installed toolchain" | tee -a $LOGFILE
686 beautify message SKIP
687 prepareenv
688 fi
689
690 beautify build_start
691 beautify build_stage "Building LFS"
692 buildbase
693
694 beautify build_stage "Building IPFire"
695 buildipfire
696
697 # Setzen des IPFire Builds
698 if [ "$FIREBUILD" ]; then
699 echo "$FIREBUILD" > $BASEDIR/build/var/ipfire/firebuild
700 else
701 echo "_(OvO)_" > $BASEDIR/build/var/ipfire/firebuild
702 fi
703
704 beautify build_stage "Building installer"
705 buildinstaller
706
707 beautify build_stage "Building packages"
708 buildpackages
709 beautify build_end
710 ;;
711 shell)
712 # enter a shell inside LFS chroot
713 # may be used to changed kernel settings
714 prepareenv
715 entershell
716 ;;
717 changelog)
718 echo -n "Loading new Changelog from SVN: "
719 svn log http://svn.ipfire.org/svn/ipfire > doc/ChangeLog
720 beautify message DONE
721 ;;
722 clean)
723 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
724 for i in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
725 $LOSETUP -d $i 2>/dev/null
726 done
727 for i in `mount | grep $BASEDIR | cut -d " " -f 1`; do
728 umount $i
729 done
730 stdumount
731 for i in `seq 0 7`; do
732 if ( losetup /dev/loop${i} 2>/dev/null | grep -q "/install/images" ); then
733 umount /dev/loop${i} 2>/dev/null;
734 losetup -d /dev/loop${i} 2>/dev/null;
735 fi;
736 done
737 rm -rf $BASEDIR/build
738 rm -rf $BASEDIR/cdrom
739 rm -rf $BASEDIR/packages
740 rm -rf $BASEDIR/log
741 if [ -h /tools ]; then
742 rm -f /tools
743 fi
744 beautify message DONE
745 ;;
746 downloadsrc)
747 if [ ! -d $BASEDIR/cache ]; then
748 mkdir $BASEDIR/cache
749 fi
750 mkdir -p $BASEDIR/log
751 echo -e "${BOLD}Preload all source files${NORMAL}" | tee -a $LOGFILE
752 FINISHED=0
753 cd $BASEDIR/lfs
754 for c in `seq $MAX_RETRIES`; do
755 if (( FINISHED==1 )); then
756 break
757 fi
758 FINISHED=1
759 cd $BASEDIR/lfs
760 for i in *; do
761 if [ -f "$i" -a "$i" != "Config" ]; then
762 echo -ne "Loading $i"
763 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t ($c/$MAX_RETRIES)" download >> $LOGFILE 2>&1
764 if [ $? -ne 0 ]; then
765 beautify message FAIL
766 FINISHED=0
767 else
768 if [ $c -eq 1 ]; then
769 beautify message DONE
770 fi
771 fi
772 fi
773 done
774 done
775 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
776 ERROR=0
777 for i in *; do
778 if [ -f "$i" -a "$i" != "Config" ]; then
779 make -s -f $i LFS_BASEDIR=$BASEDIR MESSAGE="$i\t " md5 >> $LOGFILE 2>&1
780 if [ $? -ne 0 ]; then
781 echo -ne "MD5 difference in lfs/$i"
782 beautify message FAIL
783 ERROR=1
784 fi
785 fi
786 done
787 if [ $ERROR -eq 0 ]; then
788 echo -ne "${BOLD}all files md5sum match${NORMAL}"
789 beautify message DONE
790 else
791 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
792 beautify message FAIL
793 fi
794 cd - >/dev/null 2>&1
795 ;;
796 toolchain)
797 clear
798 prepareenv
799 beautify build_stage "Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
800 buildtoolchain
801 BUILDMACHINE=`uname -m`
802 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
803 test -d $BASEDIR/cache/toolchains || mkdir $BASEDIR/cache/toolchains
804 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz \
805 build/{bin,etc,usr/bin,usr/local} \
806 build/tools/{bin,etc,*-linux-gnu,include,lib,libexec,sbin,share,var} \
807 log >> $LOGFILE
808 md5sum cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz \
809 > cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.md5
810 stdumount
811 ;;
812 gettoolchain)
813 BUILDMACHINE=`uname -m`
814 # arbitrary name to be updated in case of new toolchain package upload
815 PACKAGE=$SNAME-$VERSION-toolchain-$BUILDMACHINE
816 if [ ! -f $BASEDIR/cache/toolchains/$PACKAGE.tar.gz ]; then
817 URL_TOOLCHAIN=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
818 test -d $BASEDIR/cache/toolchains || mkdir $BASEDIR/cache/toolchains
819 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" | tee -a $LOGFILE
820 cd $BASEDIR/cache/toolchains
821 wget $URL_TOOLCHAIN/$PACKAGE.tar.gz $URL_TOOLCHAIN/$PACKAGE.md5 >& /dev/null
822 if [ $? -ne 0 ]; then
823 echo "`date -u '+%b %e %T'`: error downloading toolchain for $BUILDMACHINE machine" | tee -a $LOGFILE
824 else
825 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
826 echo "`date -u '+%b %e %T'`: toolchain md5 ok" | tee -a $LOGFILE
827 else
828 exiterror "$PACKAGE.md5 did not match, check downloaded package"
829 fi
830 fi
831 else
832 echo "Toolchain is already downloaded. Exiting..."
833 fi
834 ;;
835 othersrc)
836 prepareenv
837 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" | tee -a $LOGFILE
838 chroot $LFS /tools/bin/env -i HOME=/root \
839 TERM=$TERM PS1='\u:\w\$ ' \
840 PATH=/usr/local/bin:/bin:/usr/bin:/sbin:/usr/sbin \
841 VERSION=$VERSION NAME="$NAME" SNAME="$SNAME" MACHINE=$MACHINE \
842 /bin/bash -x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
843 mv $LFS/install/images/ipfire-* $BASEDIR >> $LOGFILE 2>&1
844 if [ $? -eq "0" ]; then
845 beautify message DONE
846 else
847 beautify message FAIL
848 fi
849 stdumount
850 ;;
851 svn)
852 case "$2" in
853 update|up)
854 # clear
855 echo -ne "Loading the latest source files...\n"
856 if [ $3 ]; then
857 svn update -r $3 | tee -a $PWD/log/_build.svn.update.log
858 else
859 svn update | tee -a $PWD/log/_build.svn.update.log
860 fi
861 if [ $? -eq "0" ]; then
862 beautify message DONE
863 else
864 beautify message FAIL
865 exit 1
866 fi
867 echo -ne "Writing the svn-info to a file"
868 svn info > $PWD/svn_status
869 if [ $? -eq "0" ]; then
870 beautify message DONE
871 else
872 beautify message FAIL
873 exit 1
874 fi
875 chmod 755 $0
876 exit 0
877 ;;
878 commit|ci)
879 clear
880 if [ -f /usr/bin/mcedit ]; then
881 export EDITOR=/usr/bin/mcedit
882 fi
883 if [ -f /usr/bin/nano ]; then
884 export EDITOR=/usr/bin/nano
885 fi
886 echo -ne "Selecting editor $EDITOR..."
887 beautify message DONE
888 if [ -e /sbin/yast ]; then
889 if [ "`echo $SVN_REVISION | cut -c 3`" -eq "0" ]; then
890 $0 changelog
891 fi
892 fi
893 update_langs
894 svn commit
895 $0 svn up
896 if [ -n "$FTP_CACHE_URL" ]; then
897 $0 uploadsrc
898 fi
899 ;;
900 dist)
901 if [ $3 ]; then
902 SVN_REVISION=$3
903 fi
904 if [ -f ipfire-source-r$SVN_REVISION.tar.gz ]; then
905 echo -ne "REV $SVN_REVISION: SKIPPED!\n"
906 exit 0
907 fi
908 echo -en "REV $SVN_REVISION: Downloading..."
909 svn export http://svn.ipfire.org/svn/ipfire/trunk ipfire-source/ --force > /dev/null
910 svn log http://svn.ipfire.org/svn/ipfire/trunk -r 1:$SVN_REVISION > ipfire-source/Changelog
911 #svn info http://svn.ipfire.org/svn/ipfire/trunk -r $SVN_REVISION > ipfire-source/svn_status
912 evaluate 1
913
914 echo -en "REV $SVN_REVISION: Compressing files..."
915 if [ -e ipfire-source/trunk/make.sh ]; then
916 chmod 755 ipfire-source/trunk/make.sh
917 fi
918 tar cfz ipfire-source-r$SVN_REVISION.tar.gz ipfire-source
919 evaluate 1
920 echo -en "REV $SVN_REVISION: Cleaning up..."
921 rm ipfire-source/ -r
922 evaluate 1
923 ;;
924 diff|di)
925 update_langs
926 echo -ne "Make a local diff to last svn revision"
927 svn diff > ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff
928 evaluate 1
929 echo "Diff was successfully saved to ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff"
930 svn status
931 ;;
932 esac
933 ;;
934 uploadsrc)
935 PWD=`pwd`
936 cd $BASEDIR/cache/
937 echo -e "Uploading cache to ftp server:"
938 ncftpls -u $FTP_CACHE_USER -p $FTP_CACHE_PASS ftp://$FTP_CACHE_URL$FTP_CACHE_PATH/ > /tmp/ftplist
939 for i in *; do
940 if [ "$i" == "toolchains" ]; then continue; fi
941 grep -q $i /tmp/ftplist
942 if [ "$?" -ne "0" ]; then
943 echo -ne "$i"
944 ncftpput -u $FTP_CACHE_USER -p $FTP_CACHE_PASS $FTP_CACHE_URL $FTP_CACHE_PATH/ $i
945 if [ "$?" -ne "0" ]; then
946 beautify message FAIL
947 fi
948 fi
949 done
950 rm -f /tmp/ftplist
951 cd $PWD
952 exit 0
953 ;;
954 upload)
955 case "$2" in
956 iso)
957 echo -e "Uploading the iso to $FTP_ISO_PATH/$SVN_REVISION."
958 cat <<EOF > .ftp-commands
959 mkdir -p $FTP_ISO_PATH/$SVN_REVISION
960 ls -lah
961 quit
962 EOF
963 ncftp -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL < .ftp-commands
964 rm -f .ftp-commands
965 md5sum ipfire-$VERSION.$MACHINE-full.iso > ipfire-$VERSION.$MACHINE-full.iso.md5
966 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ ipfire-$VERSION.$MACHINE-full.iso
967 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ ipfire-$VERSION.$MACHINE-full.iso.md5
968 if [ -e ipfire-$VERSION.$MACHINE-devel.iso ]; then
969 md5sum ipfire-$VERSION.$MACHINE-devel.iso > ipfire-$VERSION.$MACHINE-devel.iso.md5
970 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ ipfire-$VERSION.$MACHINE-devel.iso
971 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ ipfire-$VERSION.$MACHINE-devel.iso.md5
972 fi
973 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ ipfire-source-r$SVN_REVISION.tar.gz
974 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ svn_status
975 if [ "$?" -eq "0" ]; then
976 echo -e "The iso of Revision $SVN_REVISION was successfully uploaded to $FTP_ISO_URL$FTP_ISO_PATH$SVN_REVISION/."
977 else
978 echo -e "There was an error while uploading the iso to the ftp server."
979 exit 1
980 fi
981 if [ "$3" = "--with-sources-cd" ]; then
982 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH/$SVN_REVISION/ ipfire-sources-cd-$VERSION.$MACHINE.iso
983 fi
984 ;;
985 paks)
986 cat <<EOF > .ftp-commands
987 mkdir -p $FTP_ISO_PATH/$SVN_REVISION/paks
988 ls -lah
989 quit
990 EOF
991 ncftp -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL < .ftp-commands
992 rm -f .ftp-commands
993 ncftpput -u $FTP_ISO_USER -p $FTP_ISO_PASS $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/paks packages/*
994 if [ "$?" -eq "0" ]; then
995 echo -e "The packages were successfully uploaded to $FTP_ISO_URL$FTP_ISO_PATH$SVN_REVISION/."
996 else
997 echo -e "There was an error while uploading the packages to the ftp server."
998 exit 1
999 fi
1000 ;;
1001 esac
1002 ;;
1003 batch)
1004 if [ "$2" = "--background" ]; then
1005 batch_script
1006 exit $?
1007 fi
1008 if [ `screen -ls | grep -q ipfire` ]; then
1009 echo "Build is already running, sorry!"
1010 exit 1
1011 else
1012 if [ "$2" = "--rebuild" ]; then
1013 export IPFIRE_REBUILD=1
1014 echo "REBUILD!"
1015 else
1016 export IPFIRE_REBUILD=0
1017 fi
1018 echo -en "${BOLD}***IPFire-Batch-Build is starting...${NORMAL}"
1019 screen -dmS ipfire $0 batch --background
1020 evaluate 1
1021 exit 0
1022 fi
1023 ;;
1024 watch)
1025 watch_screen
1026 ;;
1027 pxe)
1028 case "$2" in
1029 start)
1030 start_tftpd
1031 ;;
1032 stop)
1033 stop_tftpd
1034 ;;
1035 reload|restart)
1036 reload_tftpd
1037 ;;
1038 esac
1039 exit 0
1040 ;;
1041 lang)
1042 update_langs
1043 ;;
1044 packages)
1045 case "$2" in
1046 sign)
1047 sign_packages
1048 ;;
1049 esac
1050 ;;
1051 "")
1052 clear
1053 svn info
1054 select name in "Exit" "IPFIRE: Downloadsrc" "IPFIRE: Build (silent)" "IPFIRE: Watch Build" "IPFIRE: Batch" "IPFIRE: Clean" "SVN: Commit" "SVN: Update" "SVN: Status" "SVN: Diff" "LOG: Tail" "Help"
1055 do
1056 case $name in
1057 "IPFIRE: Downloadsrc")
1058 $0 downloadsrc
1059 ;;
1060 "IPFIRE: Build (silent)")
1061 $0 build-silent
1062 ;;
1063 "IPFIRE: Watch Build")
1064 $0 watch
1065 ;;
1066 "IPFIRE: Batch")
1067 $0 batch
1068 ;;
1069 "IPFIRE: Clean")
1070 $0 clean
1071 ;;
1072 "SVN: Update")
1073 $0 svn update
1074 ;;
1075 "Help")
1076 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1077 cat doc/make.sh-usage
1078 ;;
1079 "LOG: Tail")
1080 tail -f log/_*
1081 ;;
1082 "Exit")
1083 break
1084 ;;
1085 esac
1086 done
1087 ;;
1088 config)
1089 make_config
1090 ;;
1091 *)
1092 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1093 cat doc/make.sh-usage
1094 ;;
1095 esac