3 ############################################################################
5 # This file is part of the IPFire Firewall. #
7 # IPFire is free software; you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation; either version 2 of the License, or #
10 # (at your option) any later version. #
12 # IPFire is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with IPFire; if not, write to the Free Software #
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
21 # Copyright (C) 2006 IPFire-Team <entwickler@ipfire.org>. #
23 ############################################################################
26 NAME
="IPFire" # Software name
27 SNAME
="ipfire" # Short name
28 VERSION
="2.0" # Version number
29 SLOGAN
="www.ipfire.org" # Software slogan
30 CONFIG_ROOT
=/var
/ipfire
# Configuration rootdir
32 MAX_RETRIES
=3 # prefetch/check loop
33 KVER
=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
35 SVN_REVISION
=`svn info | grep Revision | cut -c 11-`
37 # Setzen des IPFire Builds
38 if [ -e .
/.svn
]; then
39 FIREBUILD
=`cat .svn/entries |sed -n 's/^[ \t]*revision=\"// p' | sed -n 's/\".*$// p'`
42 # Debian specific settings
43 if [ ! -e /etc
/debian_version
]; then
46 if [ -x /usr
/bin
/realpath
]; then
47 FULLPATH
=`/usr/bin/realpath $0`
49 echo "ERROR: Need to do apt-get install realpath"
55 BASENAME
=`basename $0`
56 BASEDIR
=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
57 LOGFILE
=$BASEDIR/log
/_build.preparation.log
58 export BASEDIR LOGFILE
59 DIR_CHK
=$BASEDIR/cache
/check
60 mkdir
$BASEDIR/log
/ 2>/dev
/null
62 if [ -f .config
]; then
66 if [ 'x86_64' = $MACHINE -o 'i686' = $MACHINE -o 'i586' = $MACHINE -o 'i486' = $MACHINE -o 'i386' = $MACHINE ]; then
67 echo "`date -u '+%b %e %T'`: Machine is ix86 (or equivalent)" >> $LOGFILE
69 BUILDTARGET
=i386-pc-linux-gnu
70 CFLAGS
="-O2 -mcpu=i386 -march=i386 -pipe -fomit-frame-pointer"
71 CXXFLAGS
="-O2 -mcpu=i386 -march=i386 -pipe -fomit-frame-pointer"
72 elif [ 'alpha' = $MACHINE ]; then
73 echo "`date -u '+%b %e %T'`: Machine is Alpha AXP" >> $LOGFILE
74 BUILDTARGET
=alpha-unknown-linux-gnu
75 CFLAGS
="-O2 -mcpu=ev4 -mieee -pipe"
76 CXXFLAGS
="-O2 -mcpu=ev4 -mieee -pipe"
78 echo "`date -u '+%b %e %T'`: Can't determine your architecture - $MACHINE" >> $LOGFILE
84 umount
$BASEDIR/build
/dev
/pts
2>/dev
/null
;
85 umount
$BASEDIR/build
/proc
2>/dev
/null
;
86 umount
$BASEDIR/build
/install
/mnt
2>/dev
/null
;
87 umount
$BASEDIR/build
/usr
/src
/cache
2>/dev
/null
;
88 umount
$BASEDIR/build
/usr
/src
/ccache
2>/dev
/null
;
89 umount
$BASEDIR/build
/usr
/src
/config
2>/dev
/null
;
90 umount
$BASEDIR/build
/usr
/src
/doc
2>/dev
/null
;
91 umount
$BASEDIR/build
/usr
/src
/html
2>/dev
/null
;
92 umount
$BASEDIR/build
/usr
/src
/langs
2>/dev
/null
;
93 umount
$BASEDIR/build
/usr
/src
/lfs
2>/dev
/null
;
94 umount
$BASEDIR/build
/usr
/src
/log
2>/dev
/null
;
95 umount
$BASEDIR/build
/usr
/src
/src
2>/dev
/null
;
100 for i
in `seq 0 7`; do
101 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
102 losetup
-d /dev
/loop
${i} 2>/dev
/null
106 echo " Check $LOGFILE for errors if applicable"
111 if [ ! -e $BASEDIR/build
/usr
/src
/lfs
/ ]; then
112 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/"
114 echo "Entering to a shell inside LFS chroot, go out with exit"
115 chroot
$LFS /tools
/bin
/env
-i HOME
=/root TERM
=$TERM PS1
='\u:\w\$ ' \
116 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin
:/tools
/bin \
117 VERSION
=$VERSION CONFIG_ROOT
=$CONFIG_ROOT \
118 NAME
="$NAME" SNAME
="$SNAME" SLOGAN
="$SLOGAN" \
119 CFLAGS
="$CFLAGS" CXXFLAGS
="$CXXFLAGS" \
120 CCACHE_DIR
=/usr
/src
/ccache \
123 BUILDTARGET
="$BUILDTARGET" MACHINE
="$MACHINE" \
124 KGCC
="ccache /usr/bin/gcc" \
126 if [ $?
-ne 0 ]; then
127 exiterror
"chroot error"
134 ############################################################################
136 # Are we running the right shell? #
138 ############################################################################
139 if [ ! "$BASH" ]; then
140 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
143 if [ -z "${BASH_VERSION}" ]; then
144 exiterror
"Not running BASH shell."
148 ############################################################################
150 # Trap on emergency exit #
152 ############################################################################
153 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
156 ############################################################################
158 # Resetting our nice level #
160 ############################################################################
161 echo "`date -u '+%b %e %T'`: Resetting our nice level to $NICE" |
tee -a $LOGFILE
162 renice
$NICE $$
> /dev
/null
163 if [ `nice` != "$NICE" ]; then
164 exiterror
"Failed to set correct nice level"
167 ############################################################################
169 # Checking if running as root user #
171 ############################################################################
172 echo "`date -u '+%b %e %T'`: Checking if we're running as root user" |
tee -a $LOGFILE
173 if [ `id -u` != 0 ]; then
174 exiterror
"Not building as root"
178 ############################################################################
180 # Checking for necessary temporary space #
182 ############################################################################
183 echo "`date -u '+%b %e %T'`: Checking for necessary space on disk $BASE_DEV" |
tee -a $LOGFILE
184 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
185 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
186 if (( 2202000 > $BASE_ASPACE )); then
187 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
188 if (( 2202000 - $BASE_USPACE > $BASE_ASPACE )); then
189 exiterror
"Not enough temporary space available, need at least 2.1GB on $BASE_DEV"
193 ############################################################################
195 # Building Linux From Scratch system #
197 ############################################################################
198 echo "`date -u '+%b %e %T'`: Building Linux From Scratch system" |
tee -a $LOGFILE
206 # Check /tools symlink
207 if [ -h /tools
]; then
210 if [ ! -a /tools
]; then
211 ln -s $BASEDIR/build
/tools
/
213 if [ ! -h /tools
]; then
214 exiterror
"Could not create /tools symbolic link."
220 export LFS LC_ALL CFLAGS CXXFLAGS
221 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
223 # Make some extra directories
224 mkdir
-p $BASEDIR/build
/{tools
,etc
,usr
/src
} 2>/dev
/null
225 mkdir
-p $BASEDIR/{cache
,ccache
} 2>/dev
/null
226 mkdir
-p $BASEDIR/build
/dev
/pts
$BASEDIR/build
/proc
$BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
228 # Make all sources and proc available under lfs build
229 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
230 mount
--bind /proc
$BASEDIR/build
/proc
231 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
232 mount
--bind $BASEDIR/ccache
$BASEDIR/build
/usr
/src
/ccache
233 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
234 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
235 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
236 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
237 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
238 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
239 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
241 # Run LFS static binary creation scripts one by one
242 export CCACHE_DIR
=$BASEDIR/ccache
243 export CCACHE_HASHDIR
=1
245 # Remove pre-install list of installed files in case user erase some files before rebuild
246 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
250 ############################################################################
252 # Necessary shell functions #
254 ############################################################################
256 if [ -f $BASEDIR/lfs
/$1 ]; then
257 echo "`date -u '+%b %e %T'`: Building $*" |
tee -a $LOGFILE
258 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t " download
>> $LOGFILE 2>&1
259 if [ $?
-ne 0 ]; then
260 exiterror
"Download error in $1"
262 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t md5sum" md5
>> $LOGFILE 2>&1
263 if [ $?
-ne 0 ]; then
264 exiterror
"md5sum error in $1, check file in cache or signature"
266 cd $BASEDIR/lfs
&& make -f $
* BUILDTARGET
=$BUILDTARGET \
268 LFS_BASEDIR
=$BASEDIR \
271 install >> $LOGFILE 2>&1
272 if [ $?
-ne 0 ]; then
273 exiterror
"Building $*";
276 exiterror
"No such file or directory: $BASEDIR/$1"
282 if [ -f $BASEDIR/build
/usr
/src
/lfs
/$1 ]; then
283 echo "`date -u '+%b %e %T'`: Building $*" |
tee -a $LOGFILE
284 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t " download
>> $LOGFILE 2>&1
285 if [ $?
-ne 0 ]; then
286 exiterror
"Download error in $1"
288 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t md5sum" md5
>> $LOGFILE 2>&1
289 if [ $?
-ne 0 ]; then
290 exiterror
"md5sum error in $1, check file in cache or signature"
292 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
293 TERM
=$TERM PS1
='\u:\w\$ ' \
294 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin
:/tools
/bin \
296 CONFIG_ROOT
=$CONFIG_ROOT \
297 NAME
="$NAME" SNAME
="$SNAME" SLOGAN
="$SLOGAN" \
298 CFLAGS
="$CFLAGS" CXXFLAGS
="$CXXFLAGS" \
299 CCACHE_DIR
=/usr
/src
/ccache CCACHE_HASHDIR
=1 \
301 BUILDTARGET
="$BUILDTARGET" MACHINE
="$MACHINE" \
302 /tools
/bin
/bash
-x -c "cd /usr/src/lfs && \
303 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
304 if [ $?
-ne 0 ]; then
305 exiterror
"Building $*"
308 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
314 if [ -f $BASEDIR/build
/usr
/src
/lfs
/$1 ]; then
315 echo "`date -u '+%b %e %T'`: Building $*" |
tee -a $LOGFILE
316 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t " download
>> $LOGFILE 2>&1
317 if [ $?
-ne 0 ]; then
318 exiterror
"Download error in $1"
320 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t md5sum" md5
>> $LOGFILE 2>&1
321 if [ $?
-ne 0 ]; then
322 exiterror
"md5sum error in $1, check file in cache or signature"
324 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
325 TERM
=$TERM PS1
='\u:\w\$ ' \
326 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
328 CONFIG_ROOT
=$CONFIG_ROOT \
329 NAME
="$NAME" SNAME
="$SNAME" SLOGAN
="$SLOGAN" \
330 CFLAGS
="$CFLAGS" CXXFLAGS
="$CXXFLAGS" \
331 CCACHE_DIR
=/usr
/src
/ccache CCACHE_HASHDIR
=1 \
333 BUILDTARGET
="$BUILDTARGET" MACHINE
="$MACHINE" \
334 /bin
/bash
-x -c "cd /usr/src/lfs && \
335 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
336 if [ $?
-ne 0 ]; then
337 exiterror
"Building $*"
340 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
346 if [ -f $BASEDIR/build
/usr
/src
/lfs
/$1 ]; then
347 # if [ ! `ls -w1 $BASEDIR/packages/*.tar.gz | grep $1` ]; then
348 echo "`date -u '+%b %e %T'`: Packaging $1" |
tee -a $LOGFILE
349 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
350 TERM
=$TERM PS1
='\u:\w\$ ' \
351 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
353 CONFIG_ROOT
=$CONFIG_ROOT \
354 NAME
="$NAME" SNAME
="$SNAME" SLOGAN
="$SLOGAN" \
355 CFLAGS
="$CFLAGS" CXXFLAGS
="$CXXFLAGS" \
356 CCACHE_DIR
=/usr
/src
/ccache CCACHE_HASHDIR
=1 \
358 BUILDTARGET
="$BUILDTARGET" MACHINE
="$MACHINE" \
359 /bin
/bash
-x -c "cd /usr/src/lfs && \
360 make -f $1 LFS_BASEDIR=/usr/src dist" >>$LOGFILE 2>&1
361 if [ $?
-ne 0 ]; then
362 exiterror
"Packaging $1"
365 # echo "`date -u '+%b %e %T'`: Packaging: The package $1 already exists"
368 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
375 if [ -f $BASEDIR/build
/usr
/src
/lfs
/$1 ]; then
376 echo "`date -u '+%b %e %T'`: Building $*" |
tee -a $LOGFILE
377 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t " download
>> $LOGFILE 2>&1
378 if [ $?
-ne 0 ]; then
379 exiterror
"Download error in $1"
381 cd $BASEDIR/lfs
&& make -s -f $
* LFS_BASEDIR
=$BASEDIR MESSAGE
="$1\t md5sum" md5
>> $LOGFILE 2>&1
382 if [ $?
-ne 0 ]; then
383 exiterror
"md5sum error in $1, check file in cache or signature"
385 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
386 TERM
=$TERM PS1
='\u:\w\$ ' \
387 PATH
=/usr
/local
/bin
:/opt
/$MACHINE-uClibc/usr
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
389 CONFIG_ROOT
=$CONFIG_ROOT \
391 NAME
="$NAME" SNAME
="$SNAME" SLOGAN
="$SLOGAN" \
392 CFLAGS
="-Os" CXXFLAGS
="-Os" \
393 CCACHE_DIR
=/usr
/src
/ccache CCACHE_HASHDIR
=1 \
395 BUILDTARGET
="$BUILDTARGET" MACHINE
="$MACHINE" \
396 /bin
/bash
-x -c "cd /usr/src/lfs && \
397 make -f $* LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
398 if [ $?
-ne 0 ]; then
399 exiterror
"Building $*"
402 exiterror
"No such file or directory: $BASEDIR/build/usr/src/lfs/$1"
408 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
410 echo -ne "`date -u '+%b %e %T'`: Stage1 toolchain build \n" |
tee -a $LOGFILE
411 # Build sed now, as we use some extensions
413 NATIVEGCC
=`gcc --version | grep GCC | awk {'print $3'}`
414 export NATIVEGCC GCCmajor
=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
416 lfsmake1
sed LFS_PASS
=1
417 lfsmake1
m4 LFS_PASS
=1
418 lfsmake1 bison LFS_PASS
=1
419 lfsmake1 flex LFS_PASS
=1
420 lfsmake1 binutils LFS_PASS
=1
421 lfsmake1 gcc LFS_PASS
=1
422 export PATH
=$BASEDIR/build
/usr
/local
/bin
:$BASEDIR/build
/tools
/bin
:$PATH
429 lfsmake1 gcc LFS_PASS
=2
430 lfsmake1 binutils LFS_PASS
=2
439 lfsmake1
sed LFS_PASS
=2
440 lfsmake1
m4 LFS_PASS
=2
441 lfsmake1 bison LFS_PASS
=2
442 lfsmake1 flex LFS_PASS
=2
451 export PATH
=$ORG_PATH
455 LOGFILE
="$BASEDIR/log/_build.base.log"
457 echo -ne "`date -u '+%b %e %T'`: Stage2 linux base build \n" |
tee -a $LOGFILE
458 # Run LFS dynamic binary creation scripts one by one
496 if [ 'i386' = $MACHINE ]; then
498 elif [ 'alpha' = $MACHINE ]; then
517 # Run IPFire make scripts one by one
518 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
520 echo -ne "`date -u '+%b %e %T'`: Stage3 $NAME build \n" |
tee -a $LOGFILE
522 # Build these first as some of the kernel packages below rely on
523 # these for some of their client program functionality
534 if [ 'i386' = $MACHINE ]; then
535 # abuse the SMP flag, and make an minimal installer kernel first
536 # so that the boot floppy always works.....
537 ipcopmake linux LFS_PASS
=ipfire SMP
=installer
538 ipcopmake linux LFS_PASS
=ipfire SMP
=1
539 ipcopmake
3cp4218 SMP
=1
540 ipcopmake amedyn SMP
=1
541 ipcopmake cxacru SMP
=1
542 ipcopmake eagle SMP
=1
544 # These are here because they have i386 only binary libraries
545 # included in the package.
546 ipcopmake cnx_pci SMP
=1
547 ipcopmake fcdsl SMP
=1
548 ipcopmake fcdsl2 SMP
=1
549 ipcopmake fcdslsl SMP
=1
550 ipcopmake fcdslusb SMP
=1
551 ipcopmake fcdslslusb SMP
=1
552 ipcopmake fcpci SMP
=1
553 ipcopmake fcclassic SMP
=1
554 ipcopmake pulsar SMP
=1
555 ipcopmake unicorn SMP
=1
556 ipcopmake promise-sata-300-tx SMP
=1
559 ipcopmake linux LFS_PASS
=ipfire
566 if [ 'i386' = $MACHINE ]; then
567 # These are here because they have i386 only binary libraries
568 # included in the package.
579 ipcopmake promise-sata-300-tx
601 ipcopmake capi4k-utils
606 ipcopmake ez-ipupdate
612 ipcopmake initscripts
619 ipcopmake l7-protocols
620 ipcopmake isapnptools
621 ipcopmake isdn4k-utils
632 ipcopmake HTML-Tagset
633 ipcopmake HTML-Parser
634 ipcopmake Compress-Zlib
636 ipcopmake Digest-SHA1
637 ipcopmake Digest-HMAC
638 ipcopmake libwww-perl
640 ipcopmake Net-IPv4Addr
643 ipcopmake Unix-Syslog
647 ipcopmake Convert-TNEF
648 ipcopmake Convert-UUlib
649 ipcopmake Archive-Tar
650 ipcopmake Archive-Zip
651 ipcopmake Text-Tabs
+Wrap
652 ipcopmake Locale-Country
656 ipcopmake BerkeleyDB
## The Perl module
657 ipcopmake noip_updater
668 ipcopmake saslauthd PASS
=1
671 ipcopmake squid-graph
679 # echo -ne "`date -u '+%b %e %T'`: Building ### IPFire modules ### \n" | tee -a $LOGFILE
681 ipcopmake startscripts
682 ## Zuerst die Libs und dann die Programme. Ordnung muss sein!
699 ipcopmake saslauthd PASS
=2
701 ipcopmake ghostscript
703 # ipcopmake lpd ## Im Moment aus, da CUPS vorhanden ist.
711 ipcopmake bridge-utils
714 ipcopmake smartmontools
717 echo -ne "`date -u '+%b %e %T'`: Building ### Mailserver ### \n" |
tee -a $LOGFILE
726 ipcopmake spamassassin
728 echo -ne "`date -u '+%b %e %T'`: Building ### VoIP-Server ### \n" |
tee -a $LOGFILE
735 echo -ne "`date -u '+%b %e %T'`: Building ### MP3-Server ### \n" |
tee -a $LOGFILE
738 echo -ne "`date -u '+%b %e %T'`: Building ### P2P-Clients ### \n" |
tee -a $LOGFILE
742 # ipcopmake edonkeyclc
744 echo -ne "`date -u '+%b %e %T'`: Building ### Net-Tools ### \n" |
tee -a $LOGFILE
758 # ipcopmake stunnel # Ausgeschaltet, weil wir es doch nicht nutzen
762 # Run installer scripts one by one
763 LOGFILE
="$BASEDIR/log/_build.installer.log"
765 echo -ne "`date -u '+%b %e %T'`: Stage4 installer build \n" |
tee -a $LOGFILE
766 if [ 'i386' = $MACHINE ]; then
774 installmake e2fsprogs
775 installmake misc-progs
777 installmake util-linux
780 installmake pcmcia-cs
782 installmake installer
784 installmake driver.img
790 LOGFILE
="$BASEDIR/log/_build.packages.log"
792 echo "... see detailed log in _build.*.log files" >> $LOGFILE
793 echo -ne "`date -u '+%b %e %T'`: Stage5 packages build \n" |
tee -a $LOGFILE
795 echo "`date -u '+%b %e %T'`: Stripping files" |
tee -a $LOGFILE
796 find $LFS/lib
$LFS/usr
/lib
$LFS/usr
/share
/rrdtool-
* $LFS/install ! -type l \
( -name '*.so' -o -name '*.so[\.0-9]*' \
) \
797 ! -name 'libc.so' ! -name 'libpthread.so' ! -name 'libcrypto.so.0.9.7.sha1' \
798 -exec $LFS/tools
/bin
/strip
--strip-all {} \
; >> $LOGFILE 2>&1
799 # add -ls before -exec if you want to verify what files are stripped
801 find $LFS/{,s
}bin
$LFS/usr
/{,s
}bin
$LFS/usr
/local
/{,s
}bin
! -type l \
802 -exec file {} \
; |
grep " ELF " | cut
-f1 -d ':' |
xargs $LFS/tools
/bin
/strip
--strip-all >> $LOGFILE 2>&1
803 # there add -v to strip to verify
805 if [ 'i386' = $MACHINE ]; then
806 # Create fcdsl packages
807 echo "`date -u '+%b %e %T'`: Building fcdsl tgz" |
tee -a $LOGFILE
808 cp $LFS/install
/images
/fcdsl
/license.txt
$LFS >> $LOGFILE 2>&1
809 touch $LFS/var
/run
/{need-depmod-
$KVER,need-depmod-
$KVER-smp}
810 cd $LFS && tar cvfz
$LFS/install
/images
/$SNAME-fcdsl-$VERSION.
$MACHINE.tgz \
811 lib
/modules
/$KVER/misc
/fcdsl
*.o.gz \
812 lib
/modules
/$KVER-smp/misc
/fcdsl
*.o.gz \
813 usr
/lib
/isdn
/{fds?base.bin
,fd?ubase.frm
} \
814 etc
/fcdsl
/fcdsl
*.conf \
815 etc
/drdsl
/{drdsl
,drdsl.ini
} \
817 var
/run
/{need-depmod-
$KVER,need-depmod-
$KVER-smp} >> $LOGFILE 2>&1
818 rm -f $LFS/license.txt
>> $LOGFILE 2>&1
822 # Generating list of packages used
823 echo "`date -u '+%b %e %T'`: Generating packages list from logs" |
tee -a $LOGFILE
824 rm -f $BASEDIR/doc
/packages-list
825 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
826 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
827 echo " * `basename $i`" >>$BASEDIR/doc
/packages-list
830 echo "====== List of softwares used to build $NAME Version: $VERSION ======" > $BASEDIR/doc
/packages-list.txt
831 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|ipfire$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|^ipfire-logs' \
832 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
833 rm -f $BASEDIR/doc
/packages-list
834 # packages-list.txt is ready to be displayed for wiki page
836 # Create ISO for CDRom and USB-superfloppy
838 rm -f $LFS/install
/images
/*usb
*
839 cp $LFS/install
/images
/{*.iso
,*.tgz
} $BASEDIR >> $LOGFILE 2>&1
845 rm -rf $BASEDIR/build
/tmp
/*
847 # Generating total list of files
848 echo "`date -u '+%b %e %T'`: Generating files list from logs" |
tee -a $LOGFILE
849 rm -f $BASEDIR/log
/FILES
850 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
851 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
852 echo "##" >>$BASEDIR/log
/FILES
853 echo "## `basename $i`" >>$BASEDIR/log
/FILES
854 echo "##" >>$BASEDIR/log
/FILES
855 cat $i |
sed "s%^\./%#%" |
sort >> $BASEDIR/log
/FILES
864 if [ -d "$BASEDIR/packages" ]; then
865 for i
in `ls $BASEDIR/packages`; do
866 touch $BASEDIR/build
/install
/packages
/$i.empty
870 ipfiredist applejuice
871 # ipfiredist asterisk
889 ipfiredist spamassassin
890 ipfiredist web-cyradm
893 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
894 mv -f $LFS/install
/packages
/*.
{tar.gz
,md5
} $BASEDIR/packages
>> $LOGFILE 2>&1
895 rm -rf $BASEDIR/build
/install
/packages
/*
899 tar cfz log
/ipfire-logs-
`date +'%Y-%m-%d-%H:%M'`.tgz log
/_build.
*
903 # See what we're supposed to do
906 BUILDMACHINE
=`uname -m`
907 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
908 #only restore on a clean disk
909 if [ ! -f log
/perl-
*-tools ]; then
910 if [ ! -n "$PACKAGE" ]; then
911 echo "`date -u '+%b %e %T'`: Full toolchain compilation" |
tee -a $LOGFILE
915 PACKAGENAME
=${PACKAGE%.tar.gz}
916 echo "`date -u '+%b %e %T'`: Restore from $PACKAGE" |
tee -a $LOGFILE
917 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
921 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
925 echo "`date -u '+%b %e %T'`: Using installed toolchain" |
tee -a $LOGFILE
932 # Setzen des IPFire Builds
933 if [ "$FIREBUILD" ]; then
934 echo "$FIREBUILD" > $BASEDIR/build
/var
/ipfire
/firebuild
936 echo "_(OvO)_" > $BASEDIR/build
/var
/ipfire
/firebuild
943 # enter a shell inside LFS chroot
944 # may be used to changed kernel settings
949 echo -n "Loading new Changelog from SVN: "
950 svn log http
://svn.ipfire.eu
/svn
/ipfire
> doc
/ChangeLog
954 echo "Checking sources files availability on the web"
955 if [ ! -d $DIR_CHK ]; then
960 for c
in `seq $MAX_RETRIES`; do
961 if (( FINISHED
==1 )); then
967 if [ -f "$i" -a "$i" != "Config" ]; then
968 make -s -f $i MACHINE
=$MACHINE LFS_BASEDIR
=$BASEDIR ROOT
=$BASEDIR/build \
969 MESSAGE
="$i\t ($c/$MAX_RETRIES)" check
970 if [ $?
-ne 0 ]; then
971 echo "Check : wget error in lfs/$i"
980 echo "Erasing sources files availability tags"
984 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
985 $LOSETUP -d $i 2>/dev
/null
987 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
991 for i
in `seq 0 7`; do
992 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
993 umount
/dev
/loop
${i} 2>/dev
/null
;
994 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
997 rm -rf $BASEDIR/build
998 rm -rf $BASEDIR/cdrom
999 rm -rf $BASEDIR/packages
1001 if [ -h /tools
]; then
1006 # create structure for a new package
1007 echo -e "Name of the new package: $2"
1008 if [ ! -f "lfs/$2" ]; then
1009 echo "`date -u '+%b %e %T'`: Creating directory src/paks/$2"
1010 mkdir
-p src
/paks
/$2
1012 echo "`date -u '+%b %e %T'`: Creating files"
1013 cp $BASEDIR/lfs
/postfix
$BASEDIR/lfs
/$2
1016 touch {,un
}install.sh
1018 echo '#!/bin/bash' > install.sh
1019 echo '#' >> install.sh
1020 echo '#################################################################' >> install.sh
1021 echo '# #' >> install.sh
1022 echo '# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #' >> install.sh
1023 echo '# #' >> install.sh
1024 echo '#################################################################' >> install.sh
1025 echo '#' >> install.sh
1026 echo '# Extract the files' >> install.sh
1027 echo 'tar xfz files.tgz -C /' >> install.sh
1028 echo 'cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2' >> install.sh
1030 echo '#!/bin/bash' > uninstall.sh
1031 echo '#################################################################' >> uninstall.sh
1032 echo '# #' >> uninstall.sh
1033 echo '# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #' >> uninstall.sh
1034 echo '# #' >> uninstall.sh
1035 echo '#################################################################' >> uninstall.sh
1036 echo '#' >> uninstall.sh
1037 echo '# Delete the files' >> uninstall.sh
1038 echo '## Befehl fehlt noch' >> uninstall.sh
1039 echo 'rm -f /opt/pakfire/installed/ROOTFILES.$2' >> uninstall.sh
1040 echo "`date -u '+%b %e %T'`: Adding files to SVN"
1041 cd - && svn add lfs
/$2 && svn add src
/paks
/$2
1043 echo -n "Do you want to remove the folders? [y/n]"
1045 if [ "$REM" == "y" ]; then
1046 echo "Removing the folders..."
1047 svn del src
/paks
/$2 --force
1049 echo "Folders are kept."
1052 echo "$2 already exists"
1057 if [ ! -d $BASEDIR/cache
]; then
1058 mkdir
$BASEDIR/cache
1060 mkdir
-p $BASEDIR/log
1061 echo "`date -u '+%b %e %T'`:Preload all source files" |
tee -a $LOGFILE
1064 for c
in `seq $MAX_RETRIES`; do
1065 if (( FINISHED
==1 )); then
1071 if [ -f "$i" -a "$i" != "Config" ]; then
1072 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
1073 if [ $?
-ne 0 ]; then
1074 echo "Prefetch : wget error in lfs/$i"
1077 if [ $c -eq 1 ]; then
1078 echo "Prefetch : lfs/$i files loaded"
1084 echo "Prefetch : verifying md5sum"
1087 if [ -f "$i" -a "$i" != "Config" ]; then
1088 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
1089 if [ $?
-ne 0 ]; then
1090 echo "md5 difference in lfs/$i"
1095 if [ $ERROR -eq 0 ]; then
1096 echo "Prefetch : all files md5sum match"
1103 BUILDMACHINE
=`uname -m`
1104 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
1105 test -d $BASEDIR/cache
/toolchains || mkdir
$BASEDIR/cache
/toolchains
1106 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.
tar.gz \
1107 build
/{bin
,etc
,usr
/bin
,usr
/local} \
1108 build
/tools
/{bin
,etc
,*-linux-gnu,include
,lib
,libexec
,sbin
,share
,var
} \
1110 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.
tar.gz \
1111 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.md5
1115 BUILDMACHINE
=`uname -m`
1116 # arbitrary name to be updated in case of new toolchain package upload
1117 PACKAGE
=$SNAME-$VERSION-toolchain-$BUILDMACHINE
1118 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
1119 URL_IPFIRE
=`grep URL_IPFIRE lfs/Config | awk '{ print $3 }'`
1120 test -d $BASEDIR/cache
/toolchains || mkdir
$BASEDIR/cache
/toolchains
1121 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
1122 cd $BASEDIR/cache
/toolchains
1123 wget
$URL_IPFIRE/toolchains
/$PACKAGE.
tar.gz
$URL_IPFIRE/toolchains
/$PACKAGE.md5
>& /dev
/null
1124 if [ $?
-ne 0 ]; then
1125 echo "`date -u '+%b %e %T'`: error downloading toolchain for $BUILDMACHINE machine" |
tee -a $LOGFILE
1127 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1128 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
1130 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
1134 echo "Toolchain is already downloaded. Exiting..."
1139 echo "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
1140 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
1141 TERM
=$TERM PS1
='\u:\w\$ ' \
1142 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
1143 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
1144 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1145 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
1152 echo -n "Load the latest source files..."
1153 svn update
>> $PWD/log
/_build.svn.update.log
1154 if [ $?
-eq 0 ]; then
1160 echo -n "Write the svn info to a file..."
1161 svn info
> $PWD/svn_status
1162 if [ "$?" -eq "0" ]; then
1174 echo "Upload the changed files..."
1181 echo -ne "Download source package from svn..."
1182 svn
export http
://svn.ipfire.eu
/svn
/ipfire ipfire-source
/ --force > /dev
/null
1183 if [ "$?" -eq "0" ]; then
1189 echo -n "Compress files..."
1190 tar cfz ipfire-source-
`date +'%Y-%m-%d'`-r`svn info | grep Revision | cut -c 11-`.
tar.gz ipfire-source
1191 if [ "$?" -eq "0" ]; then
1197 echo -n "Cleanup..."
1198 rm ipfire-source
/ -r
1199 if [ "$?" -eq "0" ]; then
1207 echo -ne "Make a local diff to last svn revision..."
1208 svn
diff > ipfire-diff-
`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.
diff
1209 if [ "$?" -eq "0" ]; then
1215 echo "Diff was successfully saved to ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff"
1220 echo -e "This is for creating your configuration..."
1221 echo -e "We will need some input:"
1223 echo -n "FTP-DOMAIN FOR THE ISO: "
1224 read IPFIRE_FTP_URL_EXT
1225 echo -n "PATH FOR $IPFIRE_FTP_URL_EXT: "
1226 read IPFIRE_FTP_PATH_EXT
1227 echo -n "USERNAME FOR $IPFIRE_FTP_URL_EXT: "
1228 read IPFIRE_FTP_USER_EXT
1229 echo -n "PASSWORD FOR $IPFIRE_FTP_URL_EXT: "
1230 read -s IPFIRE_FTP_PASS_EXT
1232 echo "(You can leave this empty if the cache-server is the same as your iso-server.)"
1233 echo -n "FTP-DOMAIN FOR THE CACHE: "
1234 read IPFIRE_FTP_URL_INT
1235 echo -n "PATH FOR $IPFIRE_FTP_URL_INT: "
1236 read IPFIRE_FTP_PATH_INT
1237 if [ $IPFIRE_FTP_URL_INT ]; then
1238 echo -n "USERNAME FOR $IPFIRE_FTP_URL_INT: "
1239 read IPFIRE_FTP_USER_INT
1240 echo -n "PASSWORD FOR $IPFIRE_FTP_URL_INT: "
1241 read -s IPFIRE_FTP_PASS_INT
1243 IPFIRE_FTP_URL_INT
=$IPFIRE_FTP_URL_EXT
1244 IPFIRE_FTP_USER_INT
=$IPFIRE_FTP_USER_EXT
1245 IPFIRE_FTP_PASS_INT
=$IPFIRE_FTP_PASS_EXT
1246 echo "USERNAME FOR $IPFIRE_FTP_URL_INT: $IPFIRE_FTP_USER_INT"
1247 echo "PASSWORD FOR $IPFIRE_FTP_URL_INT: !HIDDEN!"
1250 echo "(You can leave this empty if the pak-server is the same as your iso-server.)"
1251 echo -n "FTP-DOMAIN FOR THE PAKS: "
1252 read IPFIRE_FTP_URL_PAK
1253 echo -n "PATH FOR $IPFIRE_FTP_URL_PAK: "
1254 read IPFIRE_FTP_PATH_PAK
1255 if [ $IPFIRE_FTP_URL_PAK ]; then
1256 echo -n "USERNAME FOR $IPFIRE_FTP_URL_PAK: "
1257 read IPFIRE_FTP_USER_PAK
1258 echo -n "PASSWORD FOR $IPFIRE_FTP_URL_PAK: "
1259 read -s IPFIRE_FTP_PASS_PAK
1261 IPFIRE_FTP_URL_PAK
=$IPFIRE_FTP_URL_EXT
1262 IPFIRE_FTP_USER_PAK
=$IPFIRE_FTP_USER_EXT
1263 IPFIRE_FTP_PASS_PAK
=$IPFIRE_FTP_PASS_EXT
1264 echo "USERNAME FOR $IPFIRE_FTP_URL_PAK: $IPFIRE_FTP_USER_PAK"
1265 echo "PASSWORD FOR $IPFIRE_FTP_URL_PAK: !HIDDEN!"
1268 echo -e "ONE OR MORE EMAIL ADDRESS(ES) TO WHICH THE REPORTS WILL BE SENT"
1269 echo -e "(seperated by comma)"
1270 read IPFIRE_MAIL_REPORT
1271 echo -n "EMAIL FROM: "
1272 read IPFIRE_MAIL_FROM
1273 echo -n "EMAIL SERVER: "
1274 read IPFIRE_MAIL_SERVER
1275 echo -n "LOGIN TO MAIL SERVER: "
1276 read IPFIRE_MAIL_USER
1277 echo -n "MAIL PASSWORD: "
1278 read -s IPFIRE_MAIL_PASS
1280 for i
in `seq 20`; do
1281 sleep 0.1; echo -n "."
1286 IPFIRE_FTP_URL_EXT=$IPFIRE_FTP_URL_EXT
1287 IPFIRE_FTP_PATH_EXT=$IPFIRE_FTP_PATH_EXT
1288 IPFIRE_FTP_USER_EXT=$IPFIRE_FTP_USER_EXT
1289 IPFIRE_FTP_PASS_EXT=$IPFIRE_FTP_PASS_EXT
1291 IPFIRE_FTP_URL_INT=$IPFIRE_FTP_URL_INT
1292 IPFIRE_FTP_PATH_INT=$IPFIRE_FTP_PATH_INT
1293 IPFIRE_FTP_USER_INT=$IPFIRE_FTP_USER_INT
1294 IPFIRE_FTP_PASS_INT=$IPFIRE_FTP_PASS_INT
1296 IPFIRE_FTP_URL_PAK=$IPFIRE_FTP_URL_PAK
1297 IPFIRE_FTP_PATH_PAK=$IPFIRE_FTP_PATH_PAK
1298 IPFIRE_FTP_USER_PAK=$IPFIRE_FTP_USER_PAK
1299 IPFIRE_FTP_PASS_PAK=$IPFIRE_FTP_PASS_PAK
1301 IPFIRE_MAIL_REPORT=$IPFIRE_MAIL_REPORT
1302 IPFIRE_MAIL_FROM=$IPFIRE_MAIL_FROM
1303 IPFIRE_MAIL_SERVER=$IPFIRE_MAIL_SERVER
1304 IPFIRE_MAIL_USER=$IPFIRE_MAIL_USER
1305 IPFIRE_MAIL_PASS=$IPFIRE_MAIL_PASS
1309 echo -e "Syncing cache to ftp:"
1310 # rm -f doc/packages-to-remove-from-ftp
1311 ncftpls
-u $IPFIRE_FTP_USER_INT -p $IPFIRE_FTP_PASS_INT ftp://$IPFIRE_FTP_URL_INT$IPFIRE_FTP_PATH_INT/ > ftplist
1312 for i
in `ls -w1 cache/`; do
1314 if [ "$?" -ne "0" ]; then
1315 ncftpput
-u $IPFIRE_FTP_USER_INT -p $IPFIRE_FTP_PASS_INT $IPFIRE_FTP_URL_INT $IPFIRE_FTP_PATH_INT/ cache
/$i
1316 if [ "$?" -eq "0" ]; then
1317 echo -e "$i was successfully uploaded to the ftp server."
1319 echo -e "There was an error while uploading $i to the ftp server."
1323 # for i in `cat ftplist`; do
1324 # ls -w1 cache/ | grep $i
1325 # if [ "$?" -eq "1" ]; then
1326 # echo $i | grep -v toolchain >> doc/packages-to-remove-from-ftp
1334 echo -e "Uploading the iso to $IPFIRE_FTP_URL_EXT."
1335 ncftpls
-u $IPFIRE_FTP_USER_EXT -p $IPFIRE_FTP_PASS_EXT ftp://$IPFIRE_FTP_URL_EXT$IPFIRE_FTP_PATH_EXT/ |
grep $SVN_REVISION
1336 if [ "$?" -eq "1" ]; then
1337 cp $BASEDIR/ipfire-install-
$VERSION.i386.iso
$BASEDIR/ipfire-install-
$VERSION.i386-r
`svn info | grep Revision | cut -c 11-`.iso
1338 md5sum ipfire-install-
$VERSION.i386-r
$SVN_REVISION.iso
> ipfire-install-
$VERSION.i386-r
$SVN_REVISION.iso.md5
1339 ncftpput
-V -u $IPFIRE_FTP_USER_EXT -p $IPFIRE_FTP_PASS_EXT $IPFIRE_FTP_URL_EXT $IPFIRE_FTP_PATH_EXT/ ipfire-install-
$VERSION.i386-r
$SVN_REVISION.iso
1340 ncftpput
-V -u $IPFIRE_FTP_USER_EXT -p $IPFIRE_FTP_PASS_EXT $IPFIRE_FTP_URL_EXT $IPFIRE_FTP_PATH_EXT/ ipfire-install-
$VERSION.i386-r
$SVN_REVISION.iso.md5
1341 ncftpput
-V -u $IPFIRE_FTP_USER_EXT -p $IPFIRE_FTP_PASS_EXT $IPFIRE_FTP_URL_EXT $IPFIRE_FTP_PATH_EXT/ ipfire-source-
*-r$SVN_REVISION.
tar.gz
1342 if [ "$?" -eq "0" ]; then
1343 echo -e "The ISO of Revision $SVN_REVISION was successfully uploaded to the ftp server."
1345 echo -e "There was an error while uploading the iso to the ftp server."
1349 echo -e "File with name ipfire-install-$VERSION.i386-r$SVN_REVISION.iso already exists on the ftp server!"
1351 rm -f ipfire-install-
$VERSION.i386-r
$SVN_REVISION.iso
{,.md5
}
1354 ncftpput
-z -u $IPFIRE_FTP_USER_PAK -p $IPFIRE_FTP_PASS_PAK $IPFIRE_FTP_URL_PAK $IPFIRE_FTP_PATH_PAK/ packages
/*
1355 if [ "$?" -eq "0" ]; then
1356 echo -e "The packages were successfully uploaded to the ftp server."
1358 echo -e "There was an error while uploading the packages to the ftp server."
1365 rm -f $BASEDIR/log
/$2*
1366 BUILDMACHINE
=`uname -m`
1371 screen
-dmS ipfire
$0 build
1372 echo "Build started... This will take a while!"
1373 echo "You can see the status with 'screen -x ipfire'."
1376 chmod 755 tools
/sendEmail
1377 ATTACHMENT
=/tmp
/ipfire-build-logs-R
$SVN_REVISION.
tar.gz
1378 if [ "$2" = "ERROR" ]; then
1379 SUBJECT
="ERROR: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1380 echo "ERROR: $0 build!"
1381 cat <<END > /tmp/ipfire_mail_body
1382 When I was building IPFire on `hostname`, I have found an ERROR!
1383 Here you can see the logs and detect the reason for this error.
1386 Your IPFire-Build-Script
1389 if [ "$2" = "SUCCESS" ]; then
1390 SUBJECT
="SUCCESS: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1391 cat <<END > /tmp/ipfire_mail_body
1392 Building IPFire on `hostname` in Revision $SVN_REVISION was successfull!
1393 You can find the ISO on your ftp server.
1397 Started: $IPFIRE_START_TIME
1401 Your IPFire-Build-Script
1404 if [ "$2" = "SVNUPDATE" ]; then
1405 SUBJECT
="SVNUPDATE: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1406 echo "ERROR: $0 svn up!"
1407 cat <<END > /tmp/ipfire_mail_body
1408 When I was downloading the latest svn source,
1409 I have found an ERROR!
1410 Here you can see the logs and detect the reason for this error.
1413 Your IPFire-Build-Script
1417 if [ "$2" = "SVNDIST" ]; then
1418 SUBJECT
="SVNDIST: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1419 echo "ERROR: $0 svn dist!"
1420 cat <<END > /tmp/ipfire_mail_body
1421 When I was exporting the latest svn source,
1422 I have found an ERROR!
1423 Here you can see the logs and detect the reason for this error.
1426 Your IPFire-Build-Script
1430 if [ "$2" = "PREFETCH" ]; then
1431 SUBJECT
="PREFETCH: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1432 echo "ERROR: $0 prefetch!"
1433 cat <<END > /tmp/ipfire_mail_body
1434 When I was downloading the source packages,
1435 I have found an ERROR!
1436 Here you can see the logs and detect the reason for this error.
1439 Your IPFire-Build-Script
1443 if [ "$2" = "ISO" ]; then
1444 SUBJECT
="ISO: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1445 echo "ERROR: $0 upload iso!"
1446 cat <<END > /tmp/ipfire_mail_body
1447 When I was uploading the iso image,
1448 I have found an ERROR!
1449 Here you can see the logs and detect the reason for this error.
1452 Your IPFire-Build-Script
1456 if [ "$2" = "PAKS" ]; then
1457 SUBJECT
="PAKS: IPFIRE-BUILD R$SVN_REVISION on `hostname`"
1458 echo "ERROR: $0 upload paks!"
1459 cat <<END > /tmp/ipfire_mail_body
1460 When I was uploading the packages,
1461 I have found an ERROR!
1462 Here you can see the logs and detect the reason for this error.
1465 Your IPFire-Build-Script
1469 tar cfz
$ATTACHMENT log
/_build
*
1470 cat <<END >> /tmp/ipfire_mail_body
1472 Here is a summary... The full logs are in the attachment.
1473 ---------------------------------------------------------
1477 cat /tmp
/ipfire_mail_body | tools
/sendEmail
-q \
1478 -f $IPFIRE_MAIL_FROM \
1479 -t $IPFIRE_MAIL_REPORT \
1481 -s $IPFIRE_MAIL_SERVER:25 \
1482 -xu $IPFIRE_MAIL_USER \
1483 -xp $IPFIRE_MAIL_PASS \
1484 -l log
/_build.
mail.log \
1486 rm -f /tmp
/ipfire_mail_body
$ATTACHMENT
1489 if [ ! -f .config
]; then
1490 echo "No configuration found. Try ./make.sh make-config."
1492 ### This is our procedure that will compile the IPFire by herself...
1493 echo "### UPDATE LOGS"
1495 echo "### SAVING TIME"
1496 export IPFIRE_START_TIME
=`date`
1498 echo "### GETTING TOOLCHAIN"
1501 echo "### RUNNING SVN-UPDATE"
1503 if [ $?
-ne 0 ]; then
1508 echo "### EXPORT SOURCES"
1510 if [ $?
-ne 0 ]; then
1515 echo "### RUNNING PREFETCH"
1516 $0 prefetch |
grep -q "md5 difference"
1517 if [ $?
-eq 0 ]; then
1522 echo "### RUNNING BUILD"
1524 if [ $?
-ne 0 ]; then
1529 echo "### MAKING SOURCES-ISO"
1532 echo "### UPLOADING ISO"
1534 if [ $?
-ne 0 ]; then
1539 echo "### UPLOADING PAKS"
1541 if [ $?
-ne 0 ]; then
1551 if [ `screen -ls | grep batch` ]; then
1552 echo "Build is already running, sorry!"
1555 echo -n "IPFire-Batch-Build is starting..."
1556 screen
-dmS ipfire
$0 unattended
1557 if [ "$?" -eq "0" ]; then
1563 #if [ "$2" -eq "-v" ]; then
1566 # echo "You may attach you with '-v'."
1574 select name
in "Exit" "IPFIRE: Prefetch" "IPFIRE: Build (silent)" "IPFIRE: Watch Build" "IPFIRE: Batch" "IPFIRE: Clean" "SVN: Commit" "SVN: Update" "SVN: Status" "SVN: Diff" "LOG: Tail" "Help"
1580 "IPFIRE: Build (silent)")
1583 "IPFIRE: Watch Build")
1584 echo "Exit with Ctrl+A, Ctrl+D."
1585 echo -n "Preparing..."
1586 for i
in `seq 10`; do
1587 sleep 0.1; echo -n "."
1600 echo "Are your sure to Update all Files to the Server (write: yes)?"; read input
1601 if [ "$input" == "yes" ]; then
1609 svn status
# | grep -v ^?
1615 echo "Usage: $0 {build|changelog|check|checkclean|clean|gettoolchain|newpak|prefetch|shell|sync|toolchain}"
1616 cat doc
/make.sh-usage