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-2012 IPFire Team <info@ipfire.org>. #
22 ############################################################################
25 NAME
="IPFire" # Software name
26 SNAME
="ipfire" # Short name
27 VERSION
="2.13" # Version number
28 CORE
="64" # Core Level (Filename)
29 PAKFIRE_CORE
="64" # 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 linux2 TOOLS
=1 HEADERS
=1
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 linux2 HEADERS
=1
301 lfsmake2 cleanup-toolchain PASS
=3
320 lfsmake2 readline-compat
344 lfsmake2 module-init-tools
361 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
363 ipfiremake configroot
374 ipfiremake linux-firmware
375 ipfiremake dvb-firmwares
376 ipfiremake zd1211-firmware
377 ipfiremake rpi-firmware
380 if [ "${MACHINE_TYPE}" != "arm" ]; then
382 # x86-xen (Legacy XEN) kernel build
383 ipfiremake linux2 KCFG
="-xen"
384 ipfiremake v4l-dvb KCFG
="-xen"
385 ipfiremake mISDN KCFG
="-xen"
386 ipfiremake cryptodev KCFG
="-xen"
387 ipfiremake compat-wireless KCFG
="-xen"
388 ipfiremake r8169 KCFG
="-xen"
389 ipfiremake r8168 KCFG
="-xen"
390 ipfiremake r8101 KCFG
="-xen"
391 ipfiremake e1000 KCFG
="-xen"
392 ipfiremake e1000e KCFG
="-xen"
393 ipfiremake igb KCFG
="-xen"
395 # x86-pae (Native and new XEN) kernel build
396 ipfiremake linux KCFG
="-pae"
397 ipfiremake kvm-kmod KCFG
="-pae"
398 ipfiremake v4l-dvb KCFG
="-pae"
399 ipfiremake alsa KCFG
="-pae" KMOD
=1
400 ipfiremake mISDN KCFG
="-pae"
401 ipfiremake cryptodev KCFG
="-pae"
402 ipfiremake compat-wireless KCFG
="-pae"
403 ipfiremake r8169 KCFG
="-pae"
404 ipfiremake r8168 KCFG
="-pae"
405 ipfiremake r8101 KCFG
="-pae"
406 ipfiremake e1000e KCFG
="-pae"
407 ipfiremake igb KCFG
="-pae"
410 ipfiremake linux KCFG
=""
411 ipfiremake kvm-kmod KCFG
=""
412 ipfiremake v4l-dvb KCFG
=""
413 ipfiremake alsa KCFG
="" KMOD
=1
414 ipfiremake mISDN KCFG
=""
415 ipfiremake cryptodev KCFG
=""
416 ipfiremake compat-wireless 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-wireless 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-wireless 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-wireless 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
485 ipfiremake BerkeleyDB
487 ipfiremake cyrus-sasl
491 ipfiremake apache2 PASS
=C
496 ipfiremake dosfstools
497 ipfiremake reiserfsprogs
499 ipfiremake sysfsutils
503 ipfiremake ez-ipupdate
507 ipfiremake GD-TextUtil
512 ipfiremake initscripts
518 ipfiremake l7-protocols
520 ipfiremake capi4k-utils
524 ipfiremake misc-progs
528 ipfiremake HTML-Tagset
529 ipfiremake HTML-Parser
530 ipfiremake Compress-Zlib
532 ipfiremake Digest-SHA1
533 ipfiremake Digest-HMAC
534 ipfiremake libwww-perl
536 ipfiremake Net-IPv4Addr
537 ipfiremake Net_SSLeay
538 ipfiremake IO-Stringy
539 ipfiremake Unix-Syslog
540 ipfiremake Mail-Tools
541 ipfiremake MIME-Tools
542 ipfiremake Net-Server
543 ipfiremake Convert-TNEF
544 ipfiremake Convert-UUlib
545 ipfiremake Archive-Tar
546 ipfiremake Archive-Zip
547 ipfiremake Text-Tabs
+Wrap
548 ipfiremake Locale-Country
549 ipfiremake XML-Parser
550 ipfiremake Crypt-PasswdMD5
551 ipfiremake Net-Telnet
552 ipfiremake python-setuptools
553 ipfiremake python-clientform
554 ipfiremake python-mechanize
555 ipfiremake python-feedparser
556 ipfiremake python-rssdler
561 ipfiremake noip_updater
564 ipfiremake fontconfig
565 ipfiremake dejavu-fonts-ttf
576 ipfiremake oinkmaster
578 ipfiremake squidguard
581 ipfiremake
traceroute
590 ipfiremake ghostscript
597 ipfiremake bridge-utils
599 ipfiremake smartmontools
603 ipfiremake cyrus-imapd
604 ipfiremake openmailadmin
606 ipfiremake spamassassin
625 ipfiremake libtorrent
628 ipfiremake tcpwrapper
640 ipfiremake strongswan
643 ipfiremake pcmciautils
644 ipfiremake lm_sensors
658 ipfiremake nagios_nrpe
667 ipfiremake icegenerator
669 ipfiremake libmpdclient
672 ipfiremake squidclamav
677 ipfiremake wpa_supplicant
680 ipfiremake urlgrabber
683 ipfiremake cpufrequtils
686 ipfiremake gutenprint
692 ipfiremake streamripper
697 ipfiremake perl-gettext
702 ipfiremake perl-DBD-mysql
705 ipfiremake openvmtools
715 ipfiremake usb_modeswitch
716 ipfiremake usb_modeswitch_data
729 ipfiremake python-m2crypto
730 ipfiremake wireless-regdb
733 ipfiremake python-distutils-extra
734 ipfiremake python-lzma
735 ipfiremake python-progressbar
736 ipfiremake python-xattr
738 ipfiremake transmission
747 ipfiremake libgpg-error
752 echo Build on
$HOSTNAME > $BASEDIR/build
/var
/ipfire
/firebuild
753 cat /proc
/version
>> $BASEDIR/build
/var
/ipfire
/firebuild
754 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
755 git log
-1 >> $BASEDIR/build
/var
/ipfire
/firebuild
756 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
757 git status
>> $BASEDIR/build
/var
/ipfire
/firebuild
758 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
759 cat /proc
/cpuinfo
>> $BASEDIR/build
/var
/ipfire
/firebuild
760 echo $PAKFIRE_CORE > $BASEDIR/build
/opt
/pakfire
/db
/core
/mine
761 case "$GIT_BRANCH" in
763 echo "$NAME $VERSION ($MACHINE) - $GIT_BRANCH" > $BASEDIR/build
/etc
/system-release
766 echo "$NAME $VERSION ($MACHINE) - Development Build: $GIT_BRANCH/$GIT_LASTCOMMIT" > $BASEDIR/build
/etc
/system-release
772 # Run installer scripts one by one
773 LOGFILE
="$BASEDIR/log/_build.installer.log"
784 LOGFILE
="$BASEDIR/log/_build.packages.log"
786 echo "... see detailed log in _build.*.log files" >> $LOGFILE
789 # Generating list of packages used
790 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
791 rm -f $BASEDIR/doc
/packages-list
792 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
793 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
794 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
797 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
798 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
799 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
800 rm -f $BASEDIR/doc
/packages-list
801 # packages-list.txt is ready to be displayed for wiki page
802 beautify message DONE
806 [ -z $GIT_TAG ] || LAST_TAG
=$GIT_TAG
807 [ -z $LAST_TAG ] || EXT
="$LAST_TAG..HEAD"
808 git log
-n 500 --no-merges --pretty=medium
--shortstat $EXT > $BASEDIR/doc
/ChangeLog
810 # Create images for install
813 # Check if there is a loop device for building in virtual environments
814 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]); then
815 if [ "${MACHINE_TYPE}" != "arm" ]; then
818 ipfiremake flash-images
821 mv $LFS/install
/images
/{*.iso
,*.tgz
,*.img.gz
,*.bz2
} $BASEDIR >> $LOGFILE 2>&1
825 # Check if there is a loop device for building in virtual environments
826 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]) && [ "${MACHINE_TYPE}" != "arm" ]; then
827 cp -f $BASEDIR/packages
/linux-xen-
*.ipfire
$LFS/install
/packages
/
828 cp -f $BASEDIR/packages
/meta-linux-xen
$LFS/install
/packages
/
829 cp -f $BASEDIR/packages
/linux-pae-
*.ipfire
$LFS/install
/packages
/
830 cp -f $BASEDIR/packages
/meta-linux-pae
$LFS/install
/packages
/
832 rm -rf $LFS/install
/packages
/linux-xen-
*.ipfire
833 rm -rf $LFS/install
/packages
/meta-linux-xen
835 mv $LFS/install
/images
/*.bz2
$BASEDIR >> $LOGFILE 2>&1
838 for i
in `ls *.bz2 *.img.gz *.iso`; do
845 rm -rf $BASEDIR/build
/tmp
/*
847 # Generating total list of files
848 echo -n "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
858 beautify message DONE
864 ipfiremake core-updates
867 for i
in $
(find $BASEDIR/config
/rootfiles
/packages
{/${MACHINE},} -maxdepth 1 -type f
); do
869 if [ -e $BASEDIR/lfs
/$i ]; then
873 beautify message SKIP
876 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
877 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
878 rm -rf $BASEDIR/build
/install
/packages
/*
881 # See what we're supposed to do
885 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz 2> /dev/null | head -n 1`
886 #only restore on a clean disk
887 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
888 if [ ! -n "$PACKAGE" ]; then
889 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
893 PACKAGENAME
=${PACKAGE%.tar.gz}
894 beautify build_stage
"Packaged toolchain compilation"
895 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
899 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
903 echo -n "Using installed toolchain" |
tee -a $LOGFILE
904 beautify message SKIP
909 beautify build_stage
"Building LFS"
912 beautify build_stage
"Building IPFire"
915 beautify build_stage
"Building installer"
918 beautify build_stage
"Building packages"
921 beautify build_stage
"Checking Logfiles for new Files"
930 # enter a shell inside LFS chroot
931 # may be used to changed kernel settings
936 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
937 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
938 $LOSETUP -d $i 2>/dev
/null
940 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
944 for i
in `seq 0 7`; do
945 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
946 umount
/dev
/loop
${i} 2>/dev
/null
;
947 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
950 rm -rf $BASEDIR/build
951 rm -rf $BASEDIR/cdrom
952 rm -rf $BASEDIR/packages
954 if [ -h /tools
]; then
957 rm -f $BASEDIR/ipfire-
*
958 beautify message DONE
961 if [ ! -d $BASEDIR/cache
]; then
964 mkdir
-p $BASEDIR/log
965 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
968 for c
in `seq $MAX_RETRIES`; do
969 if (( FINISHED
==1 )); then
975 if [ -f "$i" -a "$i" != "Config" ]; then
976 lfsmakecommoncheck
${i} ||
continue
978 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
979 MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
980 if [ $?
-ne 0 ]; then
981 beautify message FAIL
984 if [ $c -eq 1 ]; then
985 beautify message DONE
991 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
994 if [ -f "$i" -a "$i" != "Config" ]; then
995 lfsmakecommoncheck
${i} > /dev
/null ||
continue
996 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
997 MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
998 if [ $?
-ne 0 ]; then
999 echo -ne "MD5 difference in lfs/$i"
1000 beautify message FAIL
1005 if [ $ERROR -eq 0 ]; then
1006 echo -ne "${BOLD}all files md5sum match${NORMAL}"
1007 beautify message DONE
1009 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1010 beautify message FAIL
1012 cd - >/dev
/null
2>&1
1017 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
1019 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $MACHINE" |
tee -a $LOGFILE
1020 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1021 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.
tar.gz \
1022 build
/tools build
/bin
/sh log
>> $LOGFILE
1023 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.
tar.gz \
1024 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.md5
1028 # arbitrary name to be updated in case of new toolchain package upload
1029 PACKAGE
=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE
1030 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
1031 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
1032 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1033 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $MACHINE" |
tee -a $LOGFILE
1034 cd $BASEDIR/cache
/toolchains
1035 wget
-U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
1036 if [ $?
-ne 0 ]; then
1037 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $MACHINE machine" |
tee -a $LOGFILE
1039 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1040 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
1042 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
1046 echo "Toolchain is already downloaded. Exiting..."
1051 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
1052 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
1053 TERM
=$TERM PS1
='\u:\w\$ ' \
1054 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
1055 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
1056 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1057 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
1058 if [ $?
-eq "0" ]; then
1059 beautify message DONE
1061 beautify message FAIL
1067 if [ -z $IPFIRE_USER ]; then
1068 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1069 beautify message FAIL
1073 URL_SOURCE
=$
(grep URL_SOURCE lfs
/Config |
awk '{ print $3 }')
1074 REMOTE_FILES
=$
(echo "ls -1 --ignore=toolchains" | sftp
-C ${IPFIRE_USER}@
${URL_SOURCE})
1077 for file in $
(ls -1 --ignore=toolchains
); do
1078 grep -q "$file" <<<$REMOTE_FILES && continue
1079 NEW_FILES
="$NEW_FILES $file"
1081 [ -n "$NEW_FILES" ] && scp
-2 $NEW_FILES ${IPFIRE_USER}@
${URL_SOURCE}
1090 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1091 cat doc
/make.sh-usage