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 IPFire-Team <info@ipfire.org>. #
22 ############################################################################
25 NAME
="IPFire" # Software name
26 SNAME
="ipfire" # Short name
27 VERSION
="2.8test" # Version number
28 CORE
="41" # Core Level (Filename)
29 PAKFIRE_CORE
="40" # 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)
43 # Debian specific settings
44 if [ ! -e /etc
/debian_version
]; then
47 if [ -x /usr
/bin
/realpath
]; then
48 FULLPATH
=`/usr/bin/realpath $0`
50 echo "ERROR: Need to do apt-get install realpath"
56 BASENAME
=`basename $0`
57 BASEDIR
=`echo $FULLPATH | sed "s/\/$BASENAME//g"`
58 LOGFILE
=$BASEDIR/log
/_build.preparation.log
59 export BASEDIR LOGFILE
60 DIR_CHK
=$BASEDIR/cache
/check
61 mkdir
$BASEDIR/log
/ 2>/dev
/null
64 . tools
/make-functions
66 if [ -f .config
]; then
69 echo -e "${BOLD}No configuration found!${NORMAL}"
70 echo -ne "Do you want to create one (y/N)?"
73 if [ "$CREATE_CONFIG" == "y" ]; then
78 if [ -z $EDITOR ]; then
79 for i
in nano emacs vi
; do
80 EDITOR
=$
(which $i 2>/dev
/null
)
81 if ! [ -z $EDITOR ]; then
86 [ -z $EDITOR ] && exiterror
"You should have installed an editor."
90 ############################################################################
92 # Are we running the right shell? #
94 ############################################################################
95 if [ ! "$BASH" ]; then
96 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
99 if [ -z "${BASH_VERSION}" ]; then
100 exiterror
"Not running BASH shell."
104 ############################################################################
106 # Trap on emergency exit #
108 ############################################################################
109 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
112 ############################################################################
114 # Resetting our nice level #
116 ############################################################################
117 echo -ne "Resetting our nice level to $NICE" |
tee -a $LOGFILE
118 renice
$NICE $$
> /dev
/null
119 if [ `nice` != "$NICE" ]; then
120 beautify message FAIL
121 exiterror
"Failed to set correct nice level"
123 beautify message DONE
127 ############################################################################
129 # Checking if running as root user #
131 ############################################################################
132 echo -ne "Checking if we're running as root user" |
tee -a $LOGFILE
133 if [ `id -u` != 0 ]; then
134 beautify message FAIL
135 exiterror
"Not building as root"
137 beautify message DONE
141 ############################################################################
143 # Checking for necessary temporary space #
145 ############################################################################
146 echo -ne "Checking for necessary space on disk $BASE_DEV" |
tee -a $LOGFILE
147 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
148 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
149 if (( 2048000 > $BASE_ASPACE )); then
150 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
151 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
152 beautify message FAIL
153 exiterror
"Not enough temporary space available, need at least 2GB on $BASE_DEV"
156 beautify message DONE
159 ############################################################################
161 # Building Linux From Scratch system #
163 ############################################################################
170 # Check /tools symlink
171 if [ -h /tools
]; then
174 if [ ! -a /tools
]; then
175 ln -s $BASEDIR/build
/tools
/
177 if [ ! -h /tools
]; then
178 exiterror
"Could not create /tools symbolic link."
184 if [ -z $MAKETUNING ]; then
187 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
188 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
190 # Make some extra directories
191 mkdir
-p $BASEDIR/build
/{tools
,etc
,usr
/src
} 2>/dev
/null
192 mkdir
-p $BASEDIR/build
/{dev
/{shm
,pts
},proc
,sys
}
193 mkdir
-p $BASEDIR/{cache
,ccache
} 2>/dev
/null
194 mkdir
-p $BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
196 mknod
-m 600 $BASEDIR/build
/dev
/console c
5 1 2>/dev
/null
197 mknod
-m 666 $BASEDIR/build
/dev
/null c
1 3 2>/dev
/null
199 # Make all sources and proc available under lfs build
200 mount
--bind /dev
$BASEDIR/build
/dev
201 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
202 mount
--bind /dev
/shm
$BASEDIR/build
/dev
/shm
203 mount
--bind /proc
$BASEDIR/build
/proc
204 mount
--bind /sys
$BASEDIR/build
/sys
205 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
206 mount
--bind $BASEDIR/ccache
$BASEDIR/build
/usr
/src
/ccache
207 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
208 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
209 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
210 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
211 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
212 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
213 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
215 # This is a temporary hack!!!
216 if [ ! -f /tools
/bin
/hostname
]; then
217 cp -f /bin
/hostname
/tools
/bin
/hostname
2>/dev
/null
220 # Run LFS static binary creation scripts one by one
221 export CCACHE_DIR
=$BASEDIR/ccache
222 export CCACHE_HASHDIR
=1
224 # Remove pre-install list of installed files in case user erase some files before rebuild
225 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
229 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
232 NATIVEGCC
=`gcc --version | grep GCC | awk {'print $3'}`
233 export NATIVEGCC GCCmajor
=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
235 lfsmake1 binutils PASS
=1
237 export PATH
=$BASEDIR/build
/usr
/local
/bin
:$BASEDIR/build
/tools
/bin
:$PATH
238 lfsmake1 linux-libc-header
240 lfsmake1 cleanup-toolchain PASS
=1
245 lfsmake1 binutils PASS
=2
264 lfsmake1 cleanup-toolchain PASS
=2
265 export PATH
=$ORG_PATH
269 LOGFILE
="$BASEDIR/log/_build.base.log"
272 lfsmake2 linux-libc-header
275 lfsmake2 cleanup-toolchain PASS
=3
313 lfsmake2 module-init-tools
318 lfsmake2 reiser4progs
331 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
333 ipfiremake configroot
344 ipfiremake linux-firmware
345 ipfiremake linux XEN
=1
346 ipfiremake kqemu XEN
=1
347 ipfiremake v4l-dvb XEN
=1
348 ipfiremake madwifi XEN
=1
349 ipfiremake mISDN XEN
=1
350 ipfiremake dahdi XEN
=1 KMOD
=1
351 ipfiremake cryptodev XEN
=1
352 ipfiremake compat-wireless XEN
=1
353 ipfiremake r8169 XEN
=1
354 ipfiremake r8168 XEN
=1
355 ipfiremake r8101 XEN
=1
356 ipfiremake e1000 XEN
=1
357 ipfiremake e1000e XEN
=1
364 ipfiremake alsa KMOD
=1
366 ipfiremake dahdi KMOD
=1
368 ipfiremake compat-wireless
375 ipfiremake pkg-config
407 ipfiremake BerkeleyDB
409 ipfiremake cyrus-sasl
413 ipfiremake apache2 PASS
=C
419 ipfiremake dosfstools
420 ipfiremake reiserfsprogs
422 ipfiremake sysfsutils
426 ipfiremake ez-ipupdate
430 ipfiremake GD-TextUtil
435 ipfiremake initscripts
442 ipfiremake l7-protocols
444 ipfiremake capi4k-utils
449 ipfiremake misc-progs
453 ipfiremake HTML-Tagset
454 ipfiremake HTML-Parser
455 ipfiremake Compress-Zlib
457 ipfiremake Digest-SHA1
458 ipfiremake Digest-HMAC
459 ipfiremake libwww-perl
461 ipfiremake Net-IPv4Addr
462 ipfiremake Net_SSLeay
463 ipfiremake IO-Stringy
464 ipfiremake Unix-Syslog
465 ipfiremake Mail-Tools
466 ipfiremake MIME-Tools
467 ipfiremake Net-Server
468 ipfiremake Convert-TNEF
469 ipfiremake Convert-UUlib
470 ipfiremake Archive-Tar
471 ipfiremake Archive-Zip
472 ipfiremake Text-Tabs
+Wrap
473 ipfiremake Locale-Country
474 ipfiremake XML-Parser
475 ipfiremake python-setuptools
476 ipfiremake python-clientform
477 ipfiremake python-mechanize
478 ipfiremake python-feedparser
479 ipfiremake python-rssdler
483 ipfiremake noip_updater
490 ipfiremake oinkmaster
492 ipfiremake squidguard
495 ipfiremake
traceroute
506 ipfiremake ghostscript
513 ipfiremake bridge-utils
516 ipfiremake smartmontools
520 ipfiremake cyrus-imapd
521 ipfiremake openmailadmin
523 ipfiremake spamassassin
541 ipfiremake applejuice
544 ipfiremake libtorrent
546 ipfiremake ipfireseeder
548 ipfiremake tcpwrapper
559 ipfiremake strongswan
563 ipfiremake pcmciautils
564 ipfiremake lm_sensors
574 ipfiremake qemu-kqemu
581 ipfiremake fontconfig
591 ipfiremake icegenerator
593 ipfiremake libmpdclient
596 ipfiremake squidclamav
601 ipfiremake wpa_supplicant
603 ipfiremake urlgrabber
606 ipfiremake cpufrequtils
609 ipfiremake gutenprint
616 ipfiremake streamripper
622 ipfiremake perl-gettext
627 ipfiremake perl-DBD-mysql
630 ipfiremake openvmtools
641 ipfiremake usb_modeswitch
642 ipfiremake usb_modeswitch_data
651 echo Build on
$HOSTNAME > $BASEDIR/build
/var
/ipfire
/firebuild
652 cat /proc
/version
>> $BASEDIR/build
/var
/ipfire
/firebuild
653 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
654 git log
-1 >> $BASEDIR/build
/var
/ipfire
/firebuild
655 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
656 git status
>> $BASEDIR/build
/var
/ipfire
/firebuild
657 echo >> $BASEDIR/build
/var
/ipfire
/firebuild
658 cat /proc
/cpuinfo
>> $BASEDIR/build
/var
/ipfire
/firebuild
659 echo $PAKFIRE_CORE > $BASEDIR/build
/opt
/pakfire
/db
/core
/mine
660 if [ "$GIT_BRANCH" = "master" ]; then
661 echo "$NAME $VERSION - (Development Build: $GIT_LASTCOMMIT)" > $BASEDIR/build
/etc
/system-release
663 echo "$NAME $VERSION - $GIT_BRANCH" > $BASEDIR/build
/etc
/system-release
668 # Run installer scripts one by one
669 LOGFILE
="$BASEDIR/log/_build.installer.log"
680 LOGFILE
="$BASEDIR/log/_build.packages.log"
682 echo "... see detailed log in _build.*.log files" >> $LOGFILE
685 # Generating list of packages used
686 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
687 rm -f $BASEDIR/doc
/packages-list
688 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
689 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
690 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
693 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
694 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
695 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
696 rm -f $BASEDIR/doc
/packages-list
697 # packages-list.txt is ready to be displayed for wiki page
698 beautify message DONE
704 # Create images for install
705 ipfiremake cdrom ED
=$IPFVER
707 # Check if there is a loop device for building in virtual environments
708 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]); then
709 ipfiremake usb-stick ED
=$IPFVER
710 ipfiremake flash-images ED
=$IPFVER
713 mv $LFS/install
/images
/{*.iso
,*.tgz
,*.img.gz
,*.bz2
} $BASEDIR >> $LOGFILE 2>&1
717 # Check if there is a loop device for building in virtual environments
718 if [ $BUILD_IMAGES == 1 ] && ([ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]); then
719 cp -f $BASEDIR/packages
/linux-xen-
*.ipfire
$LFS/install
/packages
/
720 cp -f $BASEDIR/packages
/meta-linux-xen
$LFS/install
/packages
/
721 ipfiremake xen-image ED
=$IPFVER
722 rm -rf $LFS/install
/packages
/linux-xen-
*.ipfire
723 rm -rf $LFS/install
/packages
/meta-linux-xen
725 mv $LFS/install
/images
/*.bz2
$BASEDIR >> $LOGFILE 2>&1
729 rm -rf $BASEDIR/build
/tmp
/*
731 # Generating total list of files
732 echo -n "Generating files list from logs" |
tee -a $LOGFILE
733 rm -f $BASEDIR/log
/FILES
734 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
735 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
736 echo "##" >>$BASEDIR/log
/FILES
737 echo "## `basename $i`" >>$BASEDIR/log
/FILES
738 echo "##" >>$BASEDIR/log
/FILES
739 cat $i |
sed "s%^\./%#%" |
sort >> $BASEDIR/log
/FILES
742 beautify message DONE
748 ipfiremake core-updates
749 for i
in $
(ls -1 $BASEDIR/config
/rootfiles
/packages
); do
750 if [ -e $BASEDIR/lfs
/$i ]; then
754 beautify message SKIP
757 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
758 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
759 rm -rf $BASEDIR/build
/install
/packages
/*
762 # See what we're supposed to do
766 BUILDMACHINE
=`uname -m`
767 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
768 #only restore on a clean disk
769 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
770 if [ ! -n "$PACKAGE" ]; then
771 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
775 PACKAGENAME
=${PACKAGE%.tar.gz}
776 beautify build_stage
"Packaged toolchain compilation"
777 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
781 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
785 echo -n "Using installed toolchain" |
tee -a $LOGFILE
786 beautify message SKIP
791 beautify build_stage
"Building LFS"
794 beautify build_stage
"Building IPFire"
797 beautify build_stage
"Building installer"
800 beautify build_stage
"Building packages"
803 beautify build_stage
"Checking Logfiles for new Files"
810 # enter a shell inside LFS chroot
811 # may be used to changed kernel settings
816 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
817 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
818 $LOSETUP -d $i 2>/dev
/null
820 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
824 for i
in `seq 0 7`; do
825 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
826 umount
/dev
/loop
${i} 2>/dev
/null
;
827 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
830 rm -rf $BASEDIR/build
831 rm -rf $BASEDIR/cdrom
832 rm -rf $BASEDIR/packages
834 if [ -h /tools
]; then
837 beautify message DONE
840 if [ ! -d $BASEDIR/cache
]; then
843 mkdir
-p $BASEDIR/log
844 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
847 for c
in `seq $MAX_RETRIES`; do
848 if (( FINISHED
==1 )); then
854 if [ -f "$i" -a "$i" != "Config" ]; then
855 echo -ne "Loading $i"
856 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
857 if [ $?
-ne 0 ]; then
858 beautify message FAIL
861 if [ $c -eq 1 ]; then
862 beautify message DONE
868 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
871 if [ -f "$i" -a "$i" != "Config" ]; then
872 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
873 if [ $?
-ne 0 ]; then
874 echo -ne "MD5 difference in lfs/$i"
875 beautify message FAIL
880 if [ $ERROR -eq 0 ]; then
881 echo -ne "${BOLD}all files md5sum match${NORMAL}"
882 beautify message DONE
884 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
885 beautify message FAIL
892 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
894 BUILDMACHINE
=`uname -m`
895 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
896 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
897 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.
tar.gz \
898 build
/{bin
,etc
,usr
/bin
,usr
/local} \
899 build
/tools
/{bin
,etc
,*-linux-gnu,include
,lib
,libexec
,sbin
,share
,var
} \
901 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.
tar.gz \
902 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE.md5
906 BUILDMACHINE
=`uname -m`
907 # arbitrary name to be updated in case of new toolchain package upload
908 PACKAGE
=$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$BUILDMACHINE
909 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
910 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
911 test -d $BASEDIR/cache
/toolchains || mkdir
-p $BASEDIR/cache
/toolchains
912 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
913 cd $BASEDIR/cache
/toolchains
914 wget
-U "IPFireSourceGrabber/2.x" $URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
915 if [ $?
-ne 0 ]; then
916 echo "`date -u '+%b %e %T'`: error downloading $PACKAGE toolchain for $BUILDMACHINE machine" |
tee -a $LOGFILE
918 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
919 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
921 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
925 echo "Toolchain is already downloaded. Exiting..."
930 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
931 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
932 TERM
=$TERM PS1
='\u:\w\$ ' \
933 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
934 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
935 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
936 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
937 if [ $?
-eq "0" ]; then
938 beautify message DONE
940 beautify message FAIL
947 ## REMOVES ALL UNCOMMITTED CHANGES!
948 [ "$3" == "--force" ] && git checkout
-f
955 [ "$?" -eq "0" ] || exiterror
"git commit $* failed."
957 echo -e "${BOLD}Do you want to push, too? [y/N]${NORMAL}"
959 [ -z $REPLY ] && exit 0
961 if [ "$i" == "$REPLY" ]; then
966 exiterror
"\"$REPLY\" is not a valid answer."
969 git archive HEAD |
gzip -9 > ${SNAME}-${VERSION}.
tar.gz
972 echo -ne "Make a local diff to last revision"
973 git
diff HEAD
> ipfire-diff-$
(date +'%Y-%m-%d-%H:%M').
diff
975 echo "Diff was successfully saved to ipfire-diff-$(date +'%Y-%m-%d-%H:%M').diff"
979 [ -z $GIT_USER ] && exiterror
"You have to setup GIT_USER first."
980 GIT_URL
="ssh://${GIT_USER}@git.ipfire.org/pub/git/ipfire-2.x"
982 git push
${GIT_URL} $3
985 [ -z $GIT_TAG ] || LAST_TAG
=$GIT_TAG
986 [ -z $LAST_TAG ] || EXT
="$LAST_TAG..HEAD"
988 git log
-n 500 --no-merges --pretty=medium
--shortstat $EXT > $BASEDIR/doc
/ChangeLog
994 if [ -z $IPFIRE_USER ]; then
995 echo -n "You have to setup IPFIRE_USER first. See .config for details."
996 beautify message FAIL
1000 URL_SOURCE
=$
(grep URL_SOURCE lfs
/Config |
awk '{ print $3 }')
1001 REMOTE_FILES
=$
(echo "ls -1 --ignore=toolchains" | sftp
-C ${IPFIRE_USER}@
${URL_SOURCE})
1004 for file in $
(ls -1 --ignore=toolchains
); do
1005 grep -q "$file" <<<$REMOTE_FILES && continue
1006 NEW_FILES
="$NEW_FILES $file"
1008 [ -n "$NEW_FILES" ] && scp
-2 $NEW_FILES ${IPFIRE_USER}@
${URL_SOURCE}
1014 if [ "$2" = "--background" ]; then
1018 if [ `screen -ls | grep -q ipfire` ]; then
1019 echo "Build is already running, sorry!"
1022 if [ "$2" = "--rebuild" ]; then
1023 export IPFIRE_REBUILD
=1
1026 export IPFIRE_REBUILD
=0
1028 echo -en "${BOLD}***IPFire-Batch-Build is starting...${NORMAL}"
1029 screen
-dmS ipfire
$0 batch --background
1056 select name
in "Exit" "IPFIRE: Downloadsrc" "IPFIRE: Build (silent)" "IPFIRE: Watch Build" "IPFIRE: Batch" "IPFIRE: Clean" "LOG: Tail" "Help"
1059 "IPFIRE: Downloadsrc")
1062 "IPFIRE: Build (silent)")
1065 "IPFIRE: Watch Build")
1075 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1076 cat doc
/make.sh-usage
1091 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1092 cat doc
/make.sh-usage