2 ############################################################################
4 # This file is part of the IPFire Firewall. #
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. #
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. #
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 #
20 # Copyright (C) 2007-2013 IPFire Team <info@ipfire.org>. #
22 ############################################################################
25 NAME
="IPFire" # Software name
26 SNAME
="ipfire" # Short name
27 VERSION
="2.13" # Version number
28 CORE
="71" # Core Level (Filename)
29 PAKFIRE_CORE
="71" # Core Level (PAKFIRE)
30 GIT_BRANCH
=`git status | head -n1 | cut -d" " -f4` # Git Branch
31 SLOGAN
="www.ipfire.org" # Software slogan
32 CONFIG_ROOT
=/var
/ipfire
# Configuration rootdir
34 MAX_RETRIES
=1 # prefetch/check loop
35 BUILD_IMAGES
=1 # Build USB, Flash and Xen Images
36 KVER
=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
38 GIT_TAG
=$
(git tag |
tail -1) # Git Tag
39 GIT_LASTCOMMIT
=$
(git log |
head -n1 | cut
-d" " -f2 |
head -c8) # Last commit
43 if [ "$MACHINE" = "x86_64" ]; then
48 # Debian specific settings
49 if [ ! -e /etc
/debian_version
]; then
52 if [ -x /usr
/bin
/realpath
]; then
53 FULLPATH
=`/usr/bin/realpath $0`
55 echo "ERROR: Need to do apt-get install realpath"
61 BASENAME
=`basename $0`
62 BASEDIR
=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
63 LOGFILE
=$BASEDIR/log
/_build.preparation.log
64 export BASEDIR LOGFILE
65 DIR_CHK
=$BASEDIR/cache
/check
66 mkdir
$BASEDIR/log
/ 2>/dev
/null
69 . tools
/make-functions
71 if [ -f .config
]; then
75 if [ -z $EDITOR ]; then
76 for i
in nano emacs vi
; do
77 EDITOR
=$
(which $i 2>/dev
/null
)
78 if ! [ -z $EDITOR ]; then
83 [ -z $EDITOR ] && exiterror
"You should have installed an editor."
87 ############################################################################
89 # Are we running the right shell? #
91 ############################################################################
92 if [ ! "$BASH" ]; then
93 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
96 if [ -z "${BASH_VERSION}" ]; then
97 exiterror
"Not running BASH shell."
101 ############################################################################
103 # Trap on emergency exit #
105 ############################################################################
106 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
109 ############################################################################
111 # Resetting our nice level #
113 ############################################################################
114 echo -ne "Resetting our nice level to $NICE" |
tee -a $LOGFILE
115 renice
$NICE $$
> /dev
/null
116 if [ `nice` != "$NICE" ]; then
117 beautify message FAIL
118 exiterror
"Failed to set correct nice level"
120 beautify message DONE
124 ############################################################################
126 # Checking if running as root user #
128 ############################################################################
129 echo -ne "Checking if we're running as root user" |
tee -a $LOGFILE
130 if [ `id -u` != 0 ]; then
131 beautify message FAIL
132 exiterror
"Not building as root"
134 beautify message DONE
138 ############################################################################
140 # Checking for necessary temporary space #
142 ############################################################################
143 echo -ne "Checking for necessary space on disk $BASE_DEV" |
tee -a $LOGFILE
144 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
145 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
146 if (( 2048000 > $BASE_ASPACE )); then
147 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
148 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
149 beautify message FAIL
150 exiterror
"Not enough temporary space available, need at least 2GB on $BASE_DEV"
153 beautify message DONE
156 ############################################################################
158 # Building Linux From Scratch system #
160 ############################################################################
167 # Check /tools symlink
168 if [ -h /tools
]; then
171 if [ ! -a /tools
]; then
172 ln -s $BASEDIR/build
/tools
/
174 if [ ! -h /tools
]; then
175 exiterror
"Could not create /tools symbolic link."
181 if [ -z $MAKETUNING ]; then
182 if [ "${MACHINE:0:3}" = "arm" ]; then
188 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
189 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
191 # Make some extra directories
192 mkdir
-p $BASEDIR/build
/{tools
,etc
,usr
/src
} 2>/dev
/null
193 mkdir
-p $BASEDIR/build
/{dev
/{shm
,pts
},proc
,sys
}
194 mkdir
-p $BASEDIR/{cache
,ccache
} 2>/dev
/null
195 mkdir
-p $BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
197 mknod
-m 600 $BASEDIR/build
/dev
/console c
5 1 2>/dev
/null
198 mknod
-m 666 $BASEDIR/build
/dev
/null c
1 3 2>/dev
/null
200 # Make all sources and proc available under lfs build
201 mount
--bind /dev
$BASEDIR/build
/dev
202 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
203 mount
--bind /dev
/shm
$BASEDIR/build
/dev
/shm
204 mount
--bind /proc
$BASEDIR/build
/proc
205 mount
--bind /sys
$BASEDIR/build
/sys
206 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
207 mount
--bind $BASEDIR/ccache
$BASEDIR/build
/usr
/src
/ccache
208 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
209 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
210 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
211 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
212 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
213 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
214 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
216 # Run LFS static binary creation scripts one by one
217 export CCACHE_DIR
=$BASEDIR/ccache
218 export CCACHE_COMPRESS
=1
219 export CCACHE_COMPILERCHECK
="none"
221 # Remove pre-install list of installed files in case user erase some files before rebuild
222 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
227 case "${MACHINE}:$(uname -m)" in
229 i586
:i586|i586
:i686|i586
:x86_64
)
237 armv5tel
:armv5tel|armv5tel
:armv5tejl|armv5tel
:armv6l|armv5tel
:armv7l
)
246 exiterror
"Cannot build ${MACHINE} toolchain on $(uname -m). Please use the download if any."
248 local gcc
=$
(type -p gcc
)
249 if [ -z "${gcc}" ]; then
250 exiterror
"Could not find GCC. You will need a working build enviroment in order to build the toolchain."
253 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
257 export PATH
="/tools/ccache/bin:/tools/bin:$PATH"
258 lfsmake1 ccache PASS
=1
259 lfsmake1 binutils PASS
=1
261 lfsmake1 linux TOOLS
=1 KCFG
="-headers"
263 lfsmake1 cleanup-toolchain PASS
=1
264 lfsmake1 binutils PASS
=2
266 lfsmake1 ccache PASS
=2
288 lfsmake1 fake-environ
289 lfsmake1 cleanup-toolchain PASS
=2
290 export PATH
=$ORG_PATH
294 LOGFILE
="$BASEDIR/log/_build.base.log"
297 lfsmake2 linux KCFG
="-headers"
301 lfsmake2 cleanup-toolchain PASS
=3
320 lfsmake2 readline-compat
346 lfsmake2 module-init-tools
363 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
365 ipfiremake configroot
376 ipfiremake linux-firmware
377 ipfiremake dvb-firmwares
378 ipfiremake zd1211-firmware
379 ipfiremake rpi-firmware
382 if [ "${MACHINE_TYPE}" != "arm" ]; then
384 # x86-xen (Legacy XEN) kernel build
385 ipfiremake linux2 KCFG
="-xen"
386 ipfiremake v4l-dvb KCFG
="-xen"
387 ipfiremake mISDN KCFG
="-xen"
388 ipfiremake cryptodev KCFG
="-xen"
389 ipfiremake compat-drivers KCFG
="-xen"
390 ipfiremake r8169 KCFG
="-xen"
391 ipfiremake r8168 KCFG
="-xen"
392 ipfiremake r8101 KCFG
="-xen"
393 ipfiremake e1000 KCFG
="-xen"
394 ipfiremake e1000e KCFG
="-xen"
395 ipfiremake igb KCFG
="-xen"
397 # x86-pae (Native and new XEN) kernel build
398 ipfiremake linux KCFG
="-pae"
399 ipfiremake kvm-kmod KCFG
="-pae"
400 ipfiremake v4l-dvb KCFG
="-pae"
401 ipfiremake mISDN KCFG
="-pae"
402 ipfiremake cryptodev KCFG
="-pae"
403 ipfiremake compat-drivers KCFG
="-pae"
404 ipfiremake r8169 KCFG
="-pae"
405 ipfiremake r8168 KCFG
="-pae"
406 ipfiremake r8101 KCFG
="-pae"
407 ipfiremake e1000e KCFG
="-pae"
408 ipfiremake igb KCFG
="-pae"
411 ipfiremake linux KCFG
=""
412 ipfiremake kvm-kmod KCFG
=""
413 ipfiremake v4l-dvb KCFG
=""
414 ipfiremake mISDN KCFG
=""
415 ipfiremake cryptodev KCFG
=""
416 ipfiremake compat-drivers KCFG
=""
417 ipfiremake r8169 KCFG
=""
418 ipfiremake r8168 KCFG
=""
419 ipfiremake r8101 KCFG
=""
420 ipfiremake e1000e KCFG
=""
421 ipfiremake igb KCFG
=""
424 # arm-rpi (Raspberry Pi) kernel build
425 ipfiremake linux KCFG
="-rpi"
426 ipfiremake v4l-dvb KCFG
="-rpi"
427 ipfiremake mISDN KCFG
="-rpi" NOPCI
=1
428 ipfiremake cryptodev KCFG
="-rpi"
429 ipfiremake compat-drivers KCFG
="-rpi"
431 # arm-omap (Panda Board) kernel build
432 ipfiremake linux KCFG
="-omap"
433 ipfiremake v4l-dvb KCFG
="-omap"
434 ipfiremake mISDN KCFG
="-omap" NOPCI
=1
435 ipfiremake cryptodev KCFG
="-omap"
436 ipfiremake compat-drivers KCFG
="-omap"
438 # arm-kirkwood (Dreamplug, ICY-Box ...) kernel build
439 ipfiremake linux KCFG
="-kirkwood"
440 ipfiremake v4l-dvb KCFG
="-kirkwood"
441 ipfiremake mISDN KCFG
="-kirkwood"
442 ipfiremake cryptodev KCFG
="-kirkwood"
443 ipfiremake compat-drivers KCFG
="-kirkwood"
444 ipfiremake r8169 KCFG
="-kirkwood"
445 ipfiremake r8168 KCFG
="-kirkwood"
446 ipfiremake r8101 KCFG
="-kirkwood"
447 # ipfiremake e1000e KCFG="-kirkwood"
448 ipfiremake igb KCFG
="-kirkwood"
451 ipfiremake pkg-config
486 ipfiremake BerkeleyDB
488 ipfiremake cyrus-sasl
492 ipfiremake apache2 PASS
=C
497 ipfiremake dosfstools
498 ipfiremake reiserfsprogs
500 ipfiremake sysfsutils
504 ipfiremake ez-ipupdate
508 ipfiremake GD-TextUtil
513 ipfiremake initscripts
517 ipfiremake conntrack-tools
521 ipfiremake l7-protocols
523 ipfiremake capi4k-utils
527 ipfiremake misc-progs
530 ipfiremake HTML-Tagset
531 ipfiremake HTML-Parser
532 ipfiremake Compress-Zlib
534 ipfiremake Digest-SHA1
535 ipfiremake Digest-HMAC
536 ipfiremake libwww-perl
538 ipfiremake Net-IPv4Addr
539 ipfiremake Net_SSLeay
540 ipfiremake IO-Stringy
541 ipfiremake IO-Socket-SSL
542 ipfiremake Unix-Syslog
543 ipfiremake Mail-Tools
544 ipfiremake MIME-Tools
545 ipfiremake Net-Server
546 ipfiremake Convert-TNEF
547 ipfiremake Convert-UUlib
548 ipfiremake Archive-Tar
549 ipfiremake Archive-Zip
550 ipfiremake Text-Tabs
+Wrap
551 ipfiremake Locale-Country
552 ipfiremake XML-Parser
553 ipfiremake Crypt-PasswdMD5
554 ipfiremake Net-Telnet
555 ipfiremake python-setuptools
556 ipfiremake python-clientform
557 ipfiremake python-mechanize
558 ipfiremake python-feedparser
559 ipfiremake python-rssdler
564 ipfiremake noip_updater
567 ipfiremake fontconfig
568 ipfiremake dejavu-fonts-ttf
579 ipfiremake oinkmaster
581 ipfiremake squidguard
584 ipfiremake
traceroute
593 ipfiremake ghostscript
596 ipfiremake cifs-utils
601 ipfiremake bridge-utils
603 ipfiremake smartmontools
607 ipfiremake cyrus-imapd
608 ipfiremake openmailadmin
610 ipfiremake spamassassin
629 ipfiremake libtorrent
632 ipfiremake tcpwrapper
644 ipfiremake strongswan
647 ipfiremake pcmciautils
648 ipfiremake lm_sensors
662 ipfiremake nagios_nrpe
669 ipfiremake vdr_streamdev
670 ipfiremake vdr_vnsiserver3
671 ipfiremake vdr_epgsearch
674 ipfiremake icegenerator
676 ipfiremake libmpdclient
679 ipfiremake squidclamav
684 ipfiremake wpa_supplicant
687 ipfiremake urlgrabber
690 ipfiremake cpufrequtils
693 ipfiremake gutenprint
699 ipfiremake streamripper
704 ipfiremake perl-gettext
705 ipfiremake perl-Sort-Naturally
710 ipfiremake perl-DBD-mysql
713 ipfiremake openvmtools
723 ipfiremake usb_modeswitch
724 ipfiremake usb_modeswitch_data
737 ipfiremake python-m2crypto
738 ipfiremake wireless-regdb
741 ipfiremake python-distutils-extra
742 ipfiremake python-lzma
743 ipfiremake python-progressbar
744 ipfiremake python-xattr
746 ipfiremake transmission
755 ipfiremake libgpg-error
761 ipfiremake libstatgrab
764 ipfiremake check_mk_agent
771 ipfiremake ipfire-netboot
775 ipfiremake keepalived
777 ipfiremake perl-Carp-Clan
778 ipfiremake perl-Date-Calc
779 ipfiremake perl-Date-Manip
780 ipfiremake perl-File-Tail
781 ipfiremake perl-TimeDate
783 echo Build on
$HOSTNAME > $BASEDIR/build
/var
/ipfire
/firebuild
784 cat /proc
/version
>> $BASEDIR/build
/var
/ipfire
/firebuild
785 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
786 git log
-1 >> $BASEDIR/build
/var
/ipfire
/firebuild
787 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
788 git status
>> $BASEDIR/build
/var
/ipfire
/firebuild
789 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
790 cat /proc
/cpuinfo
>> $BASEDIR/build
/var
/ipfire
/firebuild
791 echo $PAKFIRE_CORE > $BASEDIR/build
/opt
/pakfire
/db
/core
/mine
792 if [ "$(git status -s | wc -l)" == "0" ]; then
797 case "$GIT_BRANCH" in
799 echo "$NAME $VERSION ($MACHINE) - $GIT_BRANCH$GIT_STATUS" > $BASEDIR/build
/etc
/system-release
802 echo "$NAME $VERSION ($MACHINE) - Development Build: $GIT_BRANCH/$GIT_LASTCOMMIT$GIT_STATUS" > $BASEDIR/build
/etc
/system-release
808 # Run installer scripts one by one
809 LOGFILE
="$BASEDIR/log/_build.installer.log"
820 LOGFILE
="$BASEDIR/log/_build.packages.log"
822 echo "... see detailed log in _build.*.log files" >> $LOGFILE
825 # Generating list of packages used
826 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
827 rm -f $BASEDIR/doc
/packages-list
828 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
829 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
830 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
833 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
834 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
835 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
836 rm -f $BASEDIR/doc
/packages-list
837 # packages-list.txt is ready to be displayed for wiki page
838 beautify message DONE
842 [ -z $GIT_TAG ] || LAST_TAG
=$GIT_TAG
843 [ -z $LAST_TAG ] || EXT
="$LAST_TAG..HEAD"
844 git log
-n 500 --no-merges --pretty=medium
--shortstat $EXT > $BASEDIR/doc
/ChangeLog
846 # Create images for install
849 # Check if there is a loop device for building in virtual environments
850 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]); then
851 if [ "${MACHINE_TYPE}" != "arm" ]; then
854 ipfiremake flash-images
857 mv $LFS/install
/images
/{*.iso
,*.tgz
,*.img.gz
,*.bz2
} $BASEDIR >> $LOGFILE 2>&1
861 # Check if there is a loop device for building in virtual environments
862 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]) && [ "${MACHINE_TYPE}" != "arm" ]; then
863 cp -f $BASEDIR/packages
/linux-xen-
*.ipfire
$LFS/install
/packages
/
864 cp -f $BASEDIR/packages
/meta-linux-xen
$LFS/install
/packages
/
865 cp -f $BASEDIR/packages
/linux-pae-
*.ipfire
$LFS/install
/packages
/
866 cp -f $BASEDIR/packages
/meta-linux-pae
$LFS/install
/packages
/
868 rm -rf $LFS/install
/packages
/linux-xen-
*.ipfire
869 rm -rf $LFS/install
/packages
/meta-linux-xen
871 mv $LFS/install
/images
/*.bz2
$BASEDIR >> $LOGFILE 2>&1
874 for i
in `ls *.bz2 *.img.gz *.iso`; do
881 rm -rf $BASEDIR/build
/tmp
/*
883 # Generating total list of files
884 echo -n "Generating files list from logs" |
tee -a $LOGFILE
885 rm -f $BASEDIR/log
/FILES
886 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
887 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
888 echo "##" >>$BASEDIR/log
/FILES
889 echo "## `basename $i`" >>$BASEDIR/log
/FILES
890 echo "##" >>$BASEDIR/log
/FILES
891 cat $i |
sed "s%^\./%#%" |
sort >> $BASEDIR/log
/FILES
894 beautify message DONE
900 ipfiremake core-updates
903 for i
in $
(find $BASEDIR/config
/rootfiles
/packages
{/${MACHINE},} -maxdepth 1 -type f
); do
905 if [ -e $BASEDIR/lfs
/$i ]; then
909 beautify message SKIP
912 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
913 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
914 rm -rf $BASEDIR/build
/install
/packages
/*
917 # See what we're supposed to do
921 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz 2> /dev/null | head -n 1`
922 #only restore on a clean disk
923 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
924 if [ ! -n "$PACKAGE" ]; then
925 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
929 PACKAGENAME
=${PACKAGE%.tar.gz}
930 beautify build_stage
"Packaged toolchain compilation"
931 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
935 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
939 echo -n "Using installed toolchain" |
tee -a $LOGFILE
940 beautify message SKIP
945 beautify build_stage
"Building LFS"
948 beautify build_stage
"Building IPFire"
951 beautify build_stage
"Building installer"
954 beautify build_stage
"Building packages"
957 beautify build_stage
"Checking Logfiles for new Files"
961 tools
/checkwronginitlinks
967 # enter a shell inside LFS chroot
968 # may be used to changed kernel settings
973 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
974 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
975 $LOSETUP -d $i 2>/dev
/null
977 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
981 for i
in `seq 0 7`; do
982 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
983 umount
/dev
/loop
${i} 2>/dev
/null
;
984 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
987 rm -rf $BASEDIR/build
988 rm -rf $BASEDIR/cdrom
989 rm -rf $BASEDIR/packages
991 if [ -h /tools
]; then
994 rm -f $BASEDIR/ipfire-
*
995 beautify message DONE
998 if [ ! -d $BASEDIR/cache
]; then
1001 mkdir
-p $BASEDIR/log
1002 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
1005 for c
in `seq $MAX_RETRIES`; do
1006 if (( FINISHED
==1 )); then
1012 if [ -f "$i" -a "$i" != "Config" ]; then
1013 lfsmakecommoncheck
${i} ||
continue
1015 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
1016 MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
1017 if [ $?
-ne 0 ]; then
1018 beautify message FAIL
1021 if [ $c -eq 1 ]; then
1022 beautify message DONE
1028 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
1031 if [ -f "$i" -a "$i" != "Config" ]; then
1032 lfsmakecommoncheck
${i} > /dev
/null ||
continue
1033 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
1034 MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
1035 if [ $?
-ne 0 ]; then
1036 echo -ne "MD5 difference in lfs/$i"
1037 beautify message FAIL
1042 if [ $ERROR -eq 0 ]; then
1043 echo -ne "${BOLD}all files md5sum match${NORMAL}"
1044 beautify message DONE
1046 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1047 beautify message FAIL
1049 cd - >/dev
/null
2>&1
1054 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
1056 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $MACHINE" |
tee -a $LOGFILE
1057 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1058 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.
tar.gz \
1059 build
/tools build
/bin
/sh log
>> $LOGFILE
1060 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.
tar.gz \
1061 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.md5
1065 # arbitrary name to be updated in case of new toolchain package upload
1066 PACKAGE
=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE
1067 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
1068 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
1069 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1070 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $MACHINE" |
tee -a $LOGFILE
1071 cd $BASEDIR/cache
/toolchains
1072 wget
-U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
1073 if [ $?
-ne 0 ]; then
1074 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $MACHINE machine" |
tee -a $LOGFILE
1076 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1077 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
1079 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
1083 echo "Toolchain is already downloaded. Exiting..."
1088 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
1089 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
1090 TERM
=$TERM PS1
='\u:\w\$ ' \
1091 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
1092 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
1093 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1094 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
1095 if [ $?
-eq "0" ]; then
1096 beautify message DONE
1098 beautify message FAIL
1104 if [ -z $IPFIRE_USER ]; then
1105 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1106 beautify message FAIL
1110 URL_SOURCE
=$
(grep URL_SOURCE lfs
/Config |
awk '{ print $3 }')
1111 REMOTE_FILES
=$
(echo "ls -1 --ignore=toolchains" | sftp
-C ${IPFIRE_USER}@
${URL_SOURCE})
1114 for file in $
(ls -1 --ignore=toolchains
); do
1115 grep -q "$file" <<<$REMOTE_FILES && continue
1116 NEW_FILES
="$NEW_FILES $file"
1118 [ -n "$NEW_FILES" ] && scp
-2 $NEW_FILES ${IPFIRE_USER}@
${URL_SOURCE}
1127 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1128 cat doc
/make.sh-usage