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-2014 IPFire Team <info@ipfire.org>. #
22 ############################################################################
25 NAME
="IPFire" # Software name
26 SNAME
="ipfire" # Short name
27 VERSION
="2.15" # Version number
28 CORE
="77-rc2" # Core Level (Filename)
29 PAKFIRE_CORE
="77" # Core Level (PAKFIRE)
30 GIT_BRANCH
=`git rev-parse --abbrev-ref HEAD` # 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 # Flash and Xen Downloader
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."
86 # Prepare string for /etc/system-release.
87 SYSTEM_RELEASE
="${NAME} ${VERSION} (${MACHINE})"
88 if [ "$(git status -s | wc -l)" == "0" ]; then
95 SYSTEM_RELEASE
="${SYSTEM_RELEASE} - $GIT_BRANCH$GIT_STATUS"
98 SYSTEM_RELEASE
="${SYSTEM_RELEASE} - Development Build: $GIT_BRANCH/$GIT_LASTCOMMIT$GIT_STATUS"
103 ############################################################################
105 # Are we running the right shell? #
107 ############################################################################
108 if [ ! "$BASH" ]; then
109 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
112 if [ -z "${BASH_VERSION}" ]; then
113 exiterror
"Not running BASH shell."
117 ############################################################################
119 # Trap on emergency exit #
121 ############################################################################
122 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
125 ############################################################################
127 # Resetting our nice level #
129 ############################################################################
130 echo -ne "Resetting our nice level to $NICE" |
tee -a $LOGFILE
131 renice
$NICE $$
> /dev
/null
132 if [ `nice` != "$NICE" ]; then
133 beautify message FAIL
134 exiterror
"Failed to set correct nice level"
136 beautify message DONE
140 ############################################################################
142 # Checking if running as root user #
144 ############################################################################
145 echo -ne "Checking if we're running as root user" |
tee -a $LOGFILE
146 if [ `id -u` != 0 ]; then
147 beautify message FAIL
148 exiterror
"Not building as root"
150 beautify message DONE
154 ############################################################################
156 # Checking for necessary temporary space #
158 ############################################################################
159 echo -ne "Checking for necessary space on disk $BASE_DEV" |
tee -a $LOGFILE
160 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
161 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
162 if (( 2048000 > $BASE_ASPACE )); then
163 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
164 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
165 beautify message FAIL
166 exiterror
"Not enough temporary space available, need at least 2GB on $BASE_DEV"
169 beautify message DONE
172 ############################################################################
174 # Building Linux From Scratch system #
176 ############################################################################
183 # Check /tools symlink
184 if [ -h /tools
]; then
187 if [ ! -a /tools
]; then
188 ln -s $BASEDIR/build
/tools
/
190 if [ ! -h /tools
]; then
191 exiterror
"Could not create /tools symbolic link."
197 if [ -z $MAKETUNING ]; then
198 CPU_COUNT
="$(getconf _NPROCESSORS_ONLN 2>/dev/null)"
199 if [ -z "${CPU_COUNT}" ]; then
203 MAKETUNING
="-j$(( ${CPU_COUNT} * 2 + 1 ))"
205 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
206 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
208 # Make some extra directories
209 mkdir
-p $BASEDIR/build
/{tools
,etc
,usr
/src
} 2>/dev
/null
210 mkdir
-p $BASEDIR/build
/{dev
/{shm
,pts
},proc
,sys
}
211 mkdir
-p $BASEDIR/{cache
,ccache
} 2>/dev
/null
212 mkdir
-p $BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
214 mknod
-m 600 $BASEDIR/build
/dev
/console c
5 1 2>/dev
/null
215 mknod
-m 666 $BASEDIR/build
/dev
/null c
1 3 2>/dev
/null
217 # Make all sources and proc available under lfs build
218 mount
--bind /dev
$BASEDIR/build
/dev
219 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
220 mount
--bind /dev
/shm
$BASEDIR/build
/dev
/shm
221 mount
--bind /proc
$BASEDIR/build
/proc
222 mount
--bind /sys
$BASEDIR/build
/sys
223 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
224 mount
--bind $BASEDIR/ccache
$BASEDIR/build
/usr
/src
/ccache
225 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
226 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
227 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
228 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
229 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
230 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
231 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
233 # Run LFS static binary creation scripts one by one
234 export CCACHE_DIR
=$BASEDIR/ccache
235 export CCACHE_COMPRESS
=1
236 export CCACHE_COMPILERCHECK
="none"
238 # Remove pre-install list of installed files in case user erase some files before rebuild
239 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
244 case "${MACHINE}:$(uname -m)" in
246 i586
:i586|i586
:i686|i586
:x86_64
)
254 armv5tel
:armv5tel|armv5tel
:armv5tejl|armv5tel
:armv6l|armv5tel
:armv7l
)
263 exiterror
"Cannot build ${MACHINE} toolchain on $(uname -m). Please use the download if any."
265 local gcc
=$
(type -p gcc
)
266 if [ -z "${gcc}" ]; then
267 exiterror
"Could not find GCC. You will need a working build enviroment in order to build the toolchain."
270 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
274 export PATH
="/tools/ccache/bin:/tools/bin:$PATH"
275 lfsmake1 ccache PASS
=1
276 lfsmake1 binutils PASS
=1
278 lfsmake1 linux TOOLS
=1 KCFG
="-headers"
280 lfsmake1 cleanup-toolchain PASS
=1
281 lfsmake1 binutils PASS
=2
283 lfsmake1 ccache PASS
=2
305 lfsmake1 fake-environ
306 lfsmake1 cleanup-toolchain PASS
=2
307 export PATH
=$ORG_PATH
311 LOGFILE
="$BASEDIR/log/_build.base.log"
314 lfsmake2 linux KCFG
="-headers"
318 lfsmake2 cleanup-toolchain PASS
=3
337 lfsmake2 readline-compat
381 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
383 ipfiremake configroot
395 ipfiremake linux-firmware
396 ipfiremake dvb-firmwares
397 ipfiremake zd1211-firmware
398 ipfiremake rpi-firmware
402 if [ "${MACHINE_TYPE}" != "arm" ]; then
404 # x86-pae (Native and new XEN) kernel build
405 ipfiremake linux KCFG
="-pae"
406 # ipfiremake kvm-kmod KCFG="-pae"
407 # ipfiremake v4l-dvb KCFG="-pae"
408 # ipfiremake mISDN KCFG="-pae"
409 ipfiremake cryptodev KCFG
="-pae"
410 # ipfiremake compat-drivers KCFG="-pae"
411 # ipfiremake r8169 KCFG="-pae"
412 # ipfiremake r8168 KCFG="-pae"
413 # ipfiremake r8101 KCFG="-pae"
414 ipfiremake e1000e KCFG
="-pae"
415 ipfiremake igb KCFG
="-pae"
418 ipfiremake linux KCFG
=""
419 # ipfiremake kvm-kmod KCFG=""
420 # ipfiremake v4l-dvb KCFG=""
421 # ipfiremake mISDN KCFG=""
422 ipfiremake cryptodev KCFG
=""
423 # ipfiremake compat-drivers KCFG=""
424 # ipfiremake r8169 KCFG=""
425 # ipfiremake r8168 KCFG=""
426 # ipfiremake r8101 KCFG=""
427 ipfiremake e1000e KCFG
=""
428 ipfiremake igb KCFG
=""
431 # arm-rpi (Raspberry Pi) kernel build
432 ipfiremake linux KCFG
="-rpi"
433 # ipfiremake v4l-dvb KCFG="-rpi"
434 # ipfiremake mISDN KCFG="-rpi" NOPCI=1
435 ipfiremake cryptodev KCFG
="-rpi"
436 # ipfiremake compat-drivers KCFG="-rpi"
438 # arm multi platform (Panda, Wandboard ...) kernel build
439 ipfiremake linux KCFG
="-multi"
440 ipfiremake cryptodev KCFG
="-multi"
441 ipfiremake e1000e KCFG
="-multi"
442 ipfiremake igb KCFG
="-multi"
444 # arm-kirkwood (Dreamplug, ICY-Box ...) kernel build
445 ipfiremake linux KCFG
="-kirkwood"
446 # ipfiremake v4l-dvb KCFG="-kirkwood"
447 # ipfiremake mISDN KCFG="-kirkwood"
448 ipfiremake cryptodev KCFG
="-kirkwood"
449 # ipfiremake compat-drivers KCFG="-kirkwood"
450 # ipfiremake r8169 KCFG="-kirkwood"
451 # ipfiremake r8168 KCFG="-kirkwood"
452 # ipfiremake r8101 KCFG="-kirkwood"
453 # ipfiremake e1000e KCFG="-kirkwood"
454 ipfiremake igb KCFG
="-kirkwood"
457 ipfiremake pkg-config
465 ipfiremake openssl-compat
493 ipfiremake BerkeleyDB
495 ipfiremake cyrus-sasl
499 ipfiremake apache2 PASS
=C
505 ipfiremake dosfstools
506 ipfiremake reiserfsprogs
508 ipfiremake sysfsutils
512 ipfiremake ez-ipupdate
516 ipfiremake GD-TextUtil
521 ipfiremake initscripts
525 ipfiremake conntrack-tools
529 ipfiremake l7-protocols
531 ipfiremake capi4k-utils
535 ipfiremake misc-progs
538 ipfiremake HTML-Tagset
539 ipfiremake HTML-Parser
540 ipfiremake HTML-Template
541 ipfiremake Compress-Zlib
543 ipfiremake Digest-SHA1
544 ipfiremake Digest-HMAC
545 ipfiremake libwww-perl
547 ipfiremake Net-IPv4Addr
548 ipfiremake Net_SSLeay
549 ipfiremake IO-Stringy
550 ipfiremake IO-Socket-SSL
551 ipfiremake Unix-Syslog
552 ipfiremake Mail-Tools
553 ipfiremake MIME-Tools
554 ipfiremake Net-Server
555 ipfiremake Convert-TNEF
556 ipfiremake Convert-UUlib
557 ipfiremake Archive-Tar
558 ipfiremake Archive-Zip
559 ipfiremake Text-Tabs
+Wrap
560 ipfiremake Locale-Country
561 ipfiremake XML-Parser
562 ipfiremake Crypt-PasswdMD5
563 ipfiremake Net-Telnet
564 ipfiremake python-setuptools
565 ipfiremake python-clientform
566 ipfiremake python-mechanize
567 ipfiremake python-feedparser
568 ipfiremake python-rssdler
573 ipfiremake noip_updater
576 ipfiremake fontconfig
577 ipfiremake dejavu-fonts-ttf
588 ipfiremake oinkmaster
590 ipfiremake squidguard
593 ipfiremake
traceroute
604 ipfiremake ghostscript
607 ipfiremake cifs-utils
612 ipfiremake bridge-utils
614 ipfiremake smartmontools
618 ipfiremake cyrus-imapd
619 ipfiremake openmailadmin
621 ipfiremake spamassassin
640 ipfiremake tcpwrapper
652 ipfiremake strongswan
656 ipfiremake pcmciautils
657 ipfiremake lm_sensors
671 ipfiremake nagios_nrpe
678 ipfiremake vdr_streamdev
679 ipfiremake vdr_vnsiserver3
680 ipfiremake vdr_epgsearch
681 ipfiremake vdr_dvbapi
685 ipfiremake icegenerator
687 ipfiremake libmpdclient
690 ipfiremake squidclamav
694 ipfiremake wpa_supplicant
697 ipfiremake urlgrabber
700 ipfiremake cpufrequtils
702 ipfiremake gutenprint
708 ipfiremake streamripper
713 ipfiremake perl-gettext
714 ipfiremake perl-Sort-Naturally
719 ipfiremake perl-DBD-mysql
720 ipfiremake perl-DBD-SQLite
721 ipfiremake perl-File-ReadBackwards
724 ipfiremake openvmtools
734 ipfiremake usb_modeswitch
735 ipfiremake usb_modeswitch_data
747 ipfiremake python-m2crypto
748 ipfiremake wireless-regdb
751 ipfiremake python-distutils-extra
752 ipfiremake python-lzma
753 ipfiremake python-progressbar
754 ipfiremake python-xattr
756 ipfiremake transmission
766 ipfiremake libgpg-error
772 ipfiremake libstatgrab
774 ipfiremake check_mk_agent
781 ipfiremake ipfire-netboot
785 ipfiremake keepalived
787 ipfiremake perl-Carp-Clan
788 ipfiremake perl-Date-Calc
789 ipfiremake perl-Date-Manip
790 ipfiremake perl-File-Tail
791 ipfiremake perl-TimeDate
802 # Run installer scripts one by one
803 LOGFILE
="$BASEDIR/log/_build.installer.log"
812 LOGFILE
="$BASEDIR/log/_build.packages.log"
814 echo "... see detailed log in _build.*.log files" >> $LOGFILE
817 # Generating list of packages used
818 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
819 rm -f $BASEDIR/doc
/packages-list
820 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
821 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
822 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
825 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
826 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
827 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
828 rm -f $BASEDIR/doc
/packages-list
829 # packages-list.txt is ready to be displayed for wiki page
830 beautify message DONE
834 [ -z $GIT_TAG ] || LAST_TAG
=$GIT_TAG
835 [ -z $LAST_TAG ] || EXT
="$LAST_TAG..HEAD"
836 git log
-n 500 --no-merges --pretty=medium
--shortstat $EXT > $BASEDIR/doc
/ChangeLog
838 # Create images for install
841 # Check if there is a loop device for building in virtual environments
842 modprobe loop
2>/dev
/null
843 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
] ||
[ -e "/dev/loop-control" ]); then
844 ipfiremake flash-images
847 mv $LFS/install
/images
/{*.iso
,*.tgz
,*.img.gz
,*.bz2
} $BASEDIR >> $LOGFILE 2>&1
852 mv $LFS/install
/images
/*.bz2
$BASEDIR >> $LOGFILE 2>&1
855 for i
in `ls *.bz2 *.img.gz *.iso`; do
862 rm -rf $BASEDIR/build
/tmp
/*
864 # Generating total list of files
865 echo -n "Generating files list from logs" |
tee -a $LOGFILE
866 rm -f $BASEDIR/log
/FILES
867 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
868 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
869 echo "##" >>$BASEDIR/log
/FILES
870 echo "## `basename $i`" >>$BASEDIR/log
/FILES
871 echo "##" >>$BASEDIR/log
/FILES
872 cat $i |
sed "s%^\./%#%" |
sort >> $BASEDIR/log
/FILES
875 beautify message DONE
881 ipfiremake core-updates
884 for i
in $
(find $BASEDIR/config
/rootfiles
/packages
{/${MACHINE},} -maxdepth 1 -type f
); do
886 if [ -e $BASEDIR/lfs
/$i ]; then
890 beautify message SKIP
893 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
894 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
895 rm -rf $BASEDIR/build
/install
/packages
/*
898 # See what we're supposed to do
902 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz 2> /dev/null | head -n 1`
903 #only restore on a clean disk
904 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
905 if [ ! -n "$PACKAGE" ]; then
906 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
910 PACKAGENAME
=${PACKAGE%.tar.gz}
911 beautify build_stage
"Packaged toolchain compilation"
912 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
916 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
920 echo -n "Using installed toolchain" |
tee -a $LOGFILE
921 beautify message SKIP
926 beautify build_stage
"Building LFS"
929 beautify build_stage
"Building IPFire"
932 beautify build_stage
"Building installer"
935 beautify build_stage
"Building packages"
938 beautify build_stage
"Checking Logfiles for new Files"
942 tools
/checkwronginitlinks
948 # enter a shell inside LFS chroot
949 # may be used to changed kernel settings
954 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
955 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
956 $LOSETUP -d $i 2>/dev
/null
958 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
962 for i
in `seq 0 7`; do
963 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
964 umount
/dev
/loop
${i} 2>/dev
/null
;
965 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
968 rm -rf $BASEDIR/build
969 rm -rf $BASEDIR/cdrom
970 rm -rf $BASEDIR/packages
972 if [ -h /tools
]; then
975 rm -f $BASEDIR/ipfire-
*
976 beautify message DONE
979 if [ ! -d $BASEDIR/cache
]; then
982 mkdir
-p $BASEDIR/log
983 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
986 for c
in `seq $MAX_RETRIES`; do
987 if (( FINISHED
==1 )); then
993 if [ -f "$i" -a "$i" != "Config" ]; then
994 lfsmakecommoncheck
${i} ||
continue
996 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
997 MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
998 if [ $?
-ne 0 ]; then
999 beautify message FAIL
1002 if [ $c -eq 1 ]; then
1003 beautify message DONE
1009 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
1012 if [ -f "$i" -a "$i" != "Config" ]; then
1013 lfsmakecommoncheck
${i} > /dev
/null ||
continue
1014 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
1015 MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
1016 if [ $?
-ne 0 ]; then
1017 echo -ne "MD5 difference in lfs/$i"
1018 beautify message FAIL
1023 if [ $ERROR -eq 0 ]; then
1024 echo -ne "${BOLD}all files md5sum match${NORMAL}"
1025 beautify message DONE
1027 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
1028 beautify message FAIL
1030 cd - >/dev
/null
2>&1
1035 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
1037 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $MACHINE" |
tee -a $LOGFILE
1038 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1039 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.
tar.gz \
1040 build
/tools build
/bin
/sh log
>> $LOGFILE
1041 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.
tar.gz \
1042 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.md5
1046 # arbitrary name to be updated in case of new toolchain package upload
1047 PACKAGE
=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE
1048 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
1049 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
1050 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1051 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $MACHINE" |
tee -a $LOGFILE
1052 cd $BASEDIR/cache
/toolchains
1053 wget
-U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
1054 if [ $?
-ne 0 ]; then
1055 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $MACHINE machine" |
tee -a $LOGFILE
1057 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1058 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
1060 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
1064 echo "Toolchain is already downloaded. Exiting..."
1069 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
1070 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
1071 TERM
=$TERM PS1
='\u:\w\$ ' \
1072 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
1073 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
1074 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1075 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
1076 if [ $?
-eq "0" ]; then
1077 beautify message DONE
1079 beautify message FAIL
1085 if [ -z $IPFIRE_USER ]; then
1086 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1087 beautify message FAIL
1091 URL_SOURCE
=$
(grep URL_SOURCE lfs
/Config |
awk '{ print $3 }')
1092 REMOTE_FILES
=$
(echo "ls -1" | sftp
-C ${IPFIRE_USER}@
${URL_SOURCE})
1094 for file in ${BASEDIR}/cache
/*; do
1095 [ -d "${file}" ] && continue
1096 grep -q "$(basename ${file})" <<<$REMOTE_FILES && continue
1097 NEW_FILES
="$NEW_FILES $file"
1099 [ -n "$NEW_FILES" ] && scp
-2 $NEW_FILES ${IPFIRE_USER}@
${URL_SOURCE}
1108 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1109 cat doc
/make.sh-usage