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-2011 IPFire-Team <info@ipfire.org>. #
22 ############################################################################
25 NAME
="IPFire" # Software name
26 SNAME
="ipfire" # Short name
27 VERSION
="2.9" # Version number
28 CORE
="52" # Core Level (Filename)
29 PAKFIRE_CORE
="51" # 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
41 IPFVER
="full" # Which versions should be compiled? (full|devel)
44 if [ "$MACHINE" = "x86_64" ]; then
50 # Debian specific settings
51 if [ ! -e /etc
/debian_version
]; then
54 if [ -x /usr
/bin
/realpath
]; then
55 FULLPATH
=`/usr/bin/realpath $0`
57 echo "ERROR: Need to do apt-get install realpath"
63 BASENAME
=`basename $0`
64 BASEDIR
=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
65 LOGFILE
=$BASEDIR/log
/_build.preparation.log
66 export BASEDIR LOGFILE
67 DIR_CHK
=$BASEDIR/cache
/check
68 mkdir
$BASEDIR/log
/ 2>/dev
/null
71 . tools
/make-functions
73 if [ -f .config
]; then
76 echo -e "${BOLD}No configuration found!${NORMAL}"
77 echo -ne "Do you want to create one (y/N)?"
80 if [ "$CREATE_CONFIG" == "y" ]; then
85 if [ -z $EDITOR ]; then
86 for i
in nano emacs vi
; do
87 EDITOR
=$
(which $i 2>/dev
/null
)
88 if ! [ -z $EDITOR ]; then
93 [ -z $EDITOR ] && exiterror
"You should have installed an editor."
97 ############################################################################
99 # Are we running the right shell? #
101 ############################################################################
102 if [ ! "$BASH" ]; then
103 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
106 if [ -z "${BASH_VERSION}" ]; then
107 exiterror
"Not running BASH shell."
111 ############################################################################
113 # Trap on emergency exit #
115 ############################################################################
116 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
119 ############################################################################
121 # Resetting our nice level #
123 ############################################################################
124 echo -ne "Resetting our nice level to $NICE" |
tee -a $LOGFILE
125 renice
$NICE $$
> /dev
/null
126 if [ `nice` != "$NICE" ]; then
127 beautify message FAIL
128 exiterror
"Failed to set correct nice level"
130 beautify message DONE
134 ############################################################################
136 # Checking if running as root user #
138 ############################################################################
139 echo -ne "Checking if we're running as root user" |
tee -a $LOGFILE
140 if [ `id -u` != 0 ]; then
141 beautify message FAIL
142 exiterror
"Not building as root"
144 beautify message DONE
148 ############################################################################
150 # Checking for necessary temporary space #
152 ############################################################################
153 echo -ne "Checking for necessary space on disk $BASE_DEV" |
tee -a $LOGFILE
154 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
155 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
156 if (( 2048000 > $BASE_ASPACE )); then
157 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
158 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
159 beautify message FAIL
160 exiterror
"Not enough temporary space available, need at least 2GB on $BASE_DEV"
163 beautify message DONE
166 ############################################################################
168 # Building Linux From Scratch system #
170 ############################################################################
177 # Check /tools symlink
178 if [ -h /tools
]; then
181 if [ ! -a /tools
]; then
182 ln -s $BASEDIR/build
/tools
/
184 if [ ! -h /tools
]; then
185 exiterror
"Could not create /tools symbolic link."
191 if [ -z $MAKETUNING ]; then
192 if [ "${MACHINE:0:3}" = "arm" ]; then
198 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
199 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
201 # Make some extra directories
202 mkdir
-p $BASEDIR/build
/{tools
,etc
,usr
/src
} 2>/dev
/null
203 mkdir
-p $BASEDIR/build
/{dev
/{shm
,pts
},proc
,sys
}
204 mkdir
-p $BASEDIR/{cache
,ccache
} 2>/dev
/null
205 mkdir
-p $BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
207 mknod
-m 600 $BASEDIR/build
/dev
/console c
5 1 2>/dev
/null
208 mknod
-m 666 $BASEDIR/build
/dev
/null c
1 3 2>/dev
/null
210 # Make all sources and proc available under lfs build
211 mount
--bind /dev
$BASEDIR/build
/dev
212 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
213 mount
--bind /dev
/shm
$BASEDIR/build
/dev
/shm
214 mount
--bind /proc
$BASEDIR/build
/proc
215 mount
--bind /sys
$BASEDIR/build
/sys
216 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
217 mount
--bind $BASEDIR/ccache
$BASEDIR/build
/usr
/src
/ccache
218 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
219 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
220 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
221 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
222 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
223 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
224 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
226 # This is a temporary hack!!!
227 if [ ! -f /tools
/bin
/hostname
]; then
228 cp -f /bin
/hostname
/tools
/bin
/hostname
2>/dev
/null
231 # Run LFS static binary creation scripts one by one
232 export CCACHE_DIR
=$BASEDIR/ccache
233 export CCACHE_COMPRESS
=1
234 export CCACHE_HASHDIR
=1
236 # Remove pre-install list of installed files in case user erase some files before rebuild
237 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
241 if [ "$(uname -m)" = "x86_64" ]; then
242 exiterror
"Cannot build toolchain on x86_64. Please use the download."
244 if [ "$(uname -r | grep ipfire)" ]; then
245 exiterror
"Cannot build toolchain on ipfire. Please use the download."
248 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
250 NATIVEGCC
=`gcc --version | grep GCC | awk {'print $3'}`
251 export NATIVEGCC GCCmajor
=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
253 export PATH
=$BASEDIR/build
/usr
/local
/bin
:$BASEDIR/build
/tools
/bin
:$PATH
254 lfsmake1 ccache PASS
=1
256 lfsmake1 binutils PASS
=1
258 if [ "${MACHINE}" = "arm" ]; then
259 lfsmake1 linux TOOLS
=1 HEADERS
=1
261 lfsmake1 linux-libc-header
264 lfsmake1 cleanup-toolchain PASS
=1
269 lfsmake1 binutils PASS
=2
270 lfsmake1 ccache PASS
=2
289 lfsmake1 cleanup-toolchain PASS
=2
290 export PATH
=$ORG_PATH
294 LOGFILE
="$BASEDIR/log/_build.base.log"
297 if [ "${MACHINE}" = "arm" ]; then
298 lfsmake2 linux HEADERS
=1
300 lfsmake2 linux-libc-header
304 lfsmake2 cleanup-toolchain PASS
=3
342 lfsmake2 module-init-tools
346 lfsmake2 reiser4progs
356 # ARM cannot use grub.
357 if [ "${MACHINE}" != "arm" ]; then
363 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
365 ipfiremake configroot
376 ipfiremake linux-firmware
377 ipfiremake zd1211-firmware
379 # The xen and PAE kernels are only available for x86
380 if [ "${MACHINE}" != "arm" ]; then
381 ipfiremake linux XEN
=1
382 ipfiremake kqemu XEN
=1
383 ipfiremake v4l-dvb XEN
=1
384 ipfiremake madwifi XEN
=1
385 ipfiremake mISDN XEN
=1
386 ipfiremake dahdi XEN
=1 KMOD
=1
387 ipfiremake cryptodev XEN
=1
388 ipfiremake compat-wireless XEN
=1
389 ipfiremake r8169 XEN
=1
390 ipfiremake r8168 XEN
=1
391 ipfiremake r8101 XEN
=1
392 ipfiremake e1000 XEN
=1
393 ipfiremake e1000e XEN
=1
395 ipfiremake linux PAE
=1
396 ipfiremake kqemu PAE
=1
397 ipfiremake kvm-kmod PAE
=1
398 ipfiremake v4l-dvb PAE
=1
399 ipfiremake madwifi PAE
=1
400 ipfiremake alsa PAE
=1 KMOD
=1
401 ipfiremake mISDN PAE
=1
402 ipfiremake dahdi PAE
=1 KMOD
=1
403 ipfiremake cryptodev PAE
=1
404 ipfiremake compat-wireless PAE
=1
405 # ipfiremake r8169 PAE=1
406 # ipfiremake r8168 PAE=1
407 # ipfiremake r8101 PAE=1
408 ipfiremake e1000 PAE
=1
409 ipfiremake e1000e PAE
=1
413 # Default kernel build
417 # Virtualization helpers are only available for x86.
418 if [ "${MACHINE}" != "arm" ]; then
423 #ipfiremake alsa KMOD=1
425 ipfiremake dahdi KMOD
=1
427 #ipfiremake compat-wireless
434 ipfiremake pkg-config
435 #ipfiremake linux-atm
471 ipfiremake BerkeleyDB
473 ipfiremake cyrus-sasl
477 ipfiremake apache2 PASS
=C
483 ipfiremake dosfstools
484 ipfiremake reiserfsprogs
486 ipfiremake sysfsutils
490 ipfiremake ez-ipupdate
494 ipfiremake GD-TextUtil
499 ipfiremake initscripts
506 ipfiremake l7-protocols
508 ipfiremake capi4k-utils
513 ipfiremake misc-progs
517 ipfiremake HTML-Tagset
518 ipfiremake HTML-Parser
519 ipfiremake Compress-Zlib
521 ipfiremake Digest-SHA1
522 ipfiremake Digest-HMAC
523 ipfiremake libwww-perl
525 ipfiremake Net-IPv4Addr
526 ipfiremake Net_SSLeay
527 ipfiremake IO-Stringy
528 ipfiremake Unix-Syslog
529 ipfiremake Mail-Tools
530 ipfiremake MIME-Tools
531 ipfiremake Net-Server
532 ipfiremake Convert-TNEF
533 ipfiremake Convert-UUlib
534 ipfiremake Archive-Tar
535 ipfiremake Archive-Zip
536 ipfiremake Text-Tabs
+Wrap
537 ipfiremake Locale-Country
538 ipfiremake XML-Parser
539 ipfiremake python-setuptools
540 ipfiremake python-clientform
541 ipfiremake python-mechanize
542 ipfiremake python-feedparser
543 ipfiremake python-rssdler
547 ipfiremake noip_updater
556 ipfiremake oinkmaster
558 ipfiremake squidguard
561 ipfiremake
traceroute
572 ipfiremake ghostscript
579 ipfiremake bridge-utils
582 ipfiremake smartmontools
586 ipfiremake cyrus-imapd
587 ipfiremake openmailadmin
589 ipfiremake spamassassin
607 ipfiremake applejuice
608 ipfiremake libtorrent
610 ipfiremake ipfireseeder
612 ipfiremake tcpwrapper
623 ipfiremake strongswan
627 ipfiremake pcmciautils
628 ipfiremake lm_sensors
638 ipfiremake qemu-kqemu
644 ipfiremake nagios_nrpe
646 ipfiremake fontconfig
656 ipfiremake icegenerator
658 ipfiremake libmpdclient
661 ipfiremake squidclamav
666 ipfiremake wpa_supplicant
668 ipfiremake urlgrabber
671 ipfiremake cpufrequtils
674 ipfiremake gutenprint
681 ipfiremake streamripper
686 ipfiremake perl-gettext
691 ipfiremake perl-DBD-mysql
694 ipfiremake openvmtools
705 ipfiremake usb_modeswitch
706 ipfiremake usb_modeswitch_data
719 ipfiremake python-m2crypto
720 ipfiremake wireless-regdb
722 ipfiremake libsatsolver
723 ipfiremake python-satsolver
724 ipfiremake python-distutils-extra
725 ipfiremake python-lzma
726 ipfiremake python-progressbar
727 ipfiremake python-xattr
729 ipfiremake pakfire3-deps
730 echo Build on
$HOSTNAME > $BASEDIR/build
/var
/ipfire
/firebuild
731 cat /proc
/version
>> $BASEDIR/build
/var
/ipfire
/firebuild
732 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
733 git log
-1 >> $BASEDIR/build
/var
/ipfire
/firebuild
734 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
735 git status
>> $BASEDIR/build
/var
/ipfire
/firebuild
736 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
737 cat /proc
/cpuinfo
>> $BASEDIR/build
/var
/ipfire
/firebuild
738 echo $PAKFIRE_CORE > $BASEDIR/build
/opt
/pakfire
/db
/core
/mine
739 if [ "$GIT_BRANCH" = "master" ]; then
740 echo "$NAME $VERSION - (Development Build: $GIT_LASTCOMMIT)" > $BASEDIR/build
/etc
/system-release
742 echo "$NAME $VERSION - $GIT_BRANCH" > $BASEDIR/build
/etc
/system-release
747 # Run installer scripts one by one
748 LOGFILE
="$BASEDIR/log/_build.installer.log"
754 cp -f $BASEDIR/doc
/COPYING
$BASEDIR/build
/install
/initrd
/
760 LOGFILE
="$BASEDIR/log/_build.packages.log"
762 echo "... see detailed log in _build.*.log files" >> $LOGFILE
765 # Generating list of packages used
766 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
767 rm -f $BASEDIR/doc
/packages-list
768 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
769 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
770 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
773 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
774 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
775 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
776 rm -f $BASEDIR/doc
/packages-list
777 # packages-list.txt is ready to be displayed for wiki page
778 beautify message DONE
784 # Create images for install
785 ipfiremake cdrom ED
=$IPFVER
787 # Check if there is a loop device for building in virtual environments
788 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]); then
789 ipfiremake usb-stick ED
=$IPFVER
790 ipfiremake flash-images ED
=$IPFVER
793 mv $LFS/install
/images
/{*.iso
,*.tgz
,*.img.gz
,*.bz2
} $BASEDIR >> $LOGFILE 2>&1
797 # Check if there is a loop device for building in virtual environments
798 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]); then
799 cp -f $BASEDIR/packages
/linux-xen-
*.ipfire
$LFS/install
/packages
/
800 cp -f $BASEDIR/packages
/meta-linux-xen
$LFS/install
/packages
/
801 ipfiremake xen-image ED
=$IPFVER
802 rm -rf $LFS/install
/packages
/linux-xen-
*.ipfire
803 rm -rf $LFS/install
/packages
/meta-linux-xen
805 mv $LFS/install
/images
/*.bz2
$BASEDIR >> $LOGFILE 2>&1
808 for i
in `ls *.bz2 *.img.gz *.iso`; do
815 rm -rf $BASEDIR/build
/tmp
/*
817 # Generating total list of files
818 echo -n "Generating files list from logs" |
tee -a $LOGFILE
819 rm -f $BASEDIR/log
/FILES
820 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
821 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
822 echo "##" >>$BASEDIR/log
/FILES
823 echo "## `basename $i`" >>$BASEDIR/log
/FILES
824 echo "##" >>$BASEDIR/log
/FILES
825 cat $i |
sed "s%^\./%#%" |
sort >> $BASEDIR/log
/FILES
828 beautify message DONE
834 ipfiremake core-updates
835 for i
in $
(ls -1 $BASEDIR/config
/rootfiles
/packages
); do
836 if [ -e $BASEDIR/lfs
/$i ]; then
840 beautify message SKIP
843 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
844 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
845 rm -rf $BASEDIR/build
/install
/packages
/*
848 # See what we're supposed to do
852 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
853 #only restore on a clean disk
854 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
855 if [ ! -n "$PACKAGE" ]; then
856 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
860 PACKAGENAME
=${PACKAGE%.tar.gz}
861 beautify build_stage
"Packaged toolchain compilation"
862 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
866 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
870 echo -n "Using installed toolchain" |
tee -a $LOGFILE
871 beautify message SKIP
876 beautify build_stage
"Building LFS"
879 beautify build_stage
"Building IPFire"
882 beautify build_stage
"Building installer"
885 beautify build_stage
"Building packages"
888 beautify build_stage
"Checking Logfiles for new Files"
897 # enter a shell inside LFS chroot
898 # may be used to changed kernel settings
903 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
904 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
905 $LOSETUP -d $i 2>/dev
/null
907 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
911 for i
in `seq 0 7`; do
912 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
913 umount
/dev
/loop
${i} 2>/dev
/null
;
914 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
917 rm -rf $BASEDIR/build
918 rm -rf $BASEDIR/cdrom
919 rm -rf $BASEDIR/packages
921 if [ -h /tools
]; then
924 rm -f $BASEDIR/ipfire-
*
925 beautify message DONE
928 if [ ! -d $BASEDIR/cache
]; then
931 mkdir
-p $BASEDIR/log
932 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
935 for c
in `seq $MAX_RETRIES`; do
936 if (( FINISHED
==1 )); then
942 if [ -f "$i" -a "$i" != "Config" ]; then
943 echo -ne "Loading $i"
944 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
945 MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
946 if [ $?
-ne 0 ]; then
947 beautify message FAIL
950 if [ $c -eq 1 ]; then
951 beautify message DONE
957 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
960 if [ -f "$i" -a "$i" != "Config" ]; then
961 make -s -f $i LFS_BASEDIR
=$BASEDIR MACHINE
=$MACHINE \
962 MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
963 if [ $?
-ne 0 ]; then
964 echo -ne "MD5 difference in lfs/$i"
965 beautify message FAIL
970 if [ $ERROR -eq 0 ]; then
971 echo -ne "${BOLD}all files md5sum match${NORMAL}"
972 beautify message DONE
974 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
975 beautify message FAIL
982 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
984 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
985 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
986 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.
tar.gz \
987 build
/{bin
,etc
,usr
/bin
,usr
/local} \
988 build
/tools
/{bin
,etc
,*-linux-gnu*,include
,lib
,libexec
,sbin
,share
,var
} \
990 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.
tar.gz \
991 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.md5
995 # arbitrary name to be updated in case of new toolchain package upload
996 PACKAGE
=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE
997 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
998 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
999 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
1000 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
1001 cd $BASEDIR/cache
/toolchains
1002 wget
-U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
1003 if [ $?
-ne 0 ]; then
1004 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $BUILDMACHINE machine" |
tee -a $LOGFILE
1006 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
1007 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
1009 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
1013 echo "Toolchain is already downloaded. Exiting..."
1018 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
1019 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
1020 TERM
=$TERM PS1
='\u:\w\$ ' \
1021 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
1022 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
1023 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
1024 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
1025 if [ $?
-eq "0" ]; then
1026 beautify message DONE
1028 beautify message FAIL
1035 ## REMOVES ALL UNCOMMITTED CHANGES!
1036 [ "$3" == "--force" ] && git checkout
-f
1043 [ "$?" -eq "0" ] || exiterror
"git commit $* failed."
1045 echo -e "${BOLD}Do you want to push, too? [y/N]${NORMAL}"
1047 [ -z $REPLY ] && exit 0
1048 for i
in y Y j J
; do
1049 if [ "$i" == "$REPLY" ]; then
1054 exiterror
"\"$REPLY\" is not a valid answer."
1057 git archive HEAD |
gzip -9 > ${SNAME}-${VERSION}.
tar.gz
1060 echo -ne "Make a local diff to last revision"
1061 git
diff HEAD
> ipfire-diff-$
(date +'%Y-%m-%d-%H:%M').
diff
1063 echo "Diff was successfully saved to ipfire-diff-$(date +'%Y-%m-%d-%H:%M').diff"
1067 [ -z $GIT_USER ] && exiterror
"You have to setup GIT_USER first."
1068 GIT_URL
="ssh://${GIT_USER}@git.ipfire.org/pub/git/ipfire-2.x"
1070 git push
${GIT_URL} $3
1073 [ -z $GIT_TAG ] || LAST_TAG
=$GIT_TAG
1074 [ -z $LAST_TAG ] || EXT
="$LAST_TAG..HEAD"
1076 git log
-n 500 --no-merges --pretty=medium
--shortstat $EXT > $BASEDIR/doc
/ChangeLog
1082 if [ -z $IPFIRE_USER ]; then
1083 echo -n "You have to setup IPFIRE_USER first. See .config for details."
1084 beautify message FAIL
1088 URL_SOURCE
=$
(grep URL_SOURCE lfs
/Config |
awk '{ print $3 }')
1089 REMOTE_FILES
=$
(echo "ls -1 --ignore=toolchains" | sftp
-C ${IPFIRE_USER}@
${URL_SOURCE})
1092 for file in $
(ls -1 --ignore=toolchains
); do
1093 grep -q "$file" <<<$REMOTE_FILES && continue
1094 NEW_FILES
="$NEW_FILES $file"
1096 [ -n "$NEW_FILES" ] && scp
-2 $NEW_FILES ${IPFIRE_USER}@
${URL_SOURCE}
1102 if [ "$2" = "--background" ]; then
1106 if [ `screen -ls | grep -q ipfire` ]; then
1107 echo "Build is already running, sorry!"
1110 if [ "$2" = "--rebuild" ]; then
1111 export IPFIRE_REBUILD
=1
1114 export IPFIRE_REBUILD
=0
1116 echo -en "${BOLD}***IPFire-Batch-Build is starting...${NORMAL}"
1117 screen
-dmS ipfire
$0 batch --background
1144 select name
in "Exit" "IPFIRE: Downloadsrc" "IPFIRE: Build (silent)" "IPFIRE: Watch Build" "IPFIRE: Batch" "IPFIRE: Clean" "LOG: Tail" "Help"
1147 "IPFIRE: Downloadsrc")
1150 "IPFIRE: Build (silent)")
1153 "IPFIRE: Watch Build")
1163 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1164 cat doc
/make.sh-usage
1179 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1180 cat doc
/make.sh-usage