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.0rc1t" # Version number
28 SLOGAN
="www.ipfire.org" # Software slogan
29 CONFIG_ROOT
=/var
/ipfire
# Configuration rootdir
31 MAX_RETRIES
=1 # prefetch/check loop
32 KVER
=`grep --max-count=1 VER lfs/linux | awk '{ print $3 }'`
34 SVN_REVISION
=`svn info | grep Revision | cut -c 11-`
36 IPFVER
="full" # Which versions should be compiled? (full|devel)
38 # Set an information about the build number
39 if [ -e .
/.svn
]; then
40 FIREBUILD
=`cat .svn/entries |sed -n 's/^[ \t]*revision=\"// p' | sed -n 's/\".*$// p'`
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
79 ############################################################################
81 # Are we running the right shell? #
83 ############################################################################
84 if [ ! "$BASH" ]; then
85 exiterror
"BASH environment variable is not set. You're probably running the wrong shell."
88 if [ -z "${BASH_VERSION}" ]; then
89 exiterror
"Not running BASH shell."
93 ############################################################################
95 # Trap on emergency exit #
97 ############################################################################
98 trap "exiterror 'Build process interrupted'" SIGINT SIGTERM SIGKILL SIGSTOP SIGQUIT
101 ############################################################################
103 # Resetting our nice level #
105 ############################################################################
106 echo -ne "Resetting our nice level to $NICE" |
tee -a $LOGFILE
107 renice
$NICE $$
> /dev
/null
108 if [ `nice` != "$NICE" ]; then
109 beautify message FAIL
110 exiterror
"Failed to set correct nice level"
112 beautify message DONE
116 ############################################################################
118 # Checking if running as root user #
120 ############################################################################
121 echo -ne "Checking if we're running as root user" |
tee -a $LOGFILE
122 if [ `id -u` != 0 ]; then
123 beautify message FAIL
124 exiterror
"Not building as root"
126 beautify message DONE
130 ############################################################################
132 # Checking for necessary temporary space #
134 ############################################################################
135 echo -ne "Checking for necessary space on disk $BASE_DEV" |
tee -a $LOGFILE
136 BASE_DEV
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $1 }'`
137 BASE_ASPACE
=`df -P -k $BASEDIR | tail -n 1 | awk '{ print $4 }'`
138 if (( 2048000 > $BASE_ASPACE )); then
139 BASE_USPACE
=`du -skx $BASEDIR | awk '{print $1}'`
140 if (( 2048000 - $BASE_USPACE > $BASE_ASPACE )); then
141 beautify message FAIL
142 exiterror
"Not enough temporary space available, need at least 2GB on $BASE_DEV"
145 beautify message DONE
148 ############################################################################
150 # Building Linux From Scratch system #
152 ############################################################################
159 # Check /tools symlink
160 if [ -h /tools
]; then
163 if [ ! -a /tools
]; then
164 ln -s $BASEDIR/build
/tools
/
166 if [ ! -h /tools
]; then
167 exiterror
"Could not create /tools symbolic link."
174 export LFS LC_ALL CFLAGS CXXFLAGS MAKETUNING
175 unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD
177 # Make some extra directories
178 mkdir
-p $BASEDIR/build
/{tools
,etc
,usr
/src
} 2>/dev
/null
179 mkdir
-p $BASEDIR/build
/{dev
/{shm
,pts
},proc
,sys
}
180 mkdir
-p $BASEDIR/{cache
,ccache
} 2>/dev
/null
181 mkdir
-p $BASEDIR/build
/usr
/src
/{cache
,config
,doc
,html
,langs
,lfs
,log
,src
,ccache
}
183 mknod
-m 600 $BASEDIR/build
/dev
/console c
5 1 2>/dev
/null
184 mknod
-m 666 $BASEDIR/build
/dev
/null c
1 3 2>/dev
/null
186 # Make all sources and proc available under lfs build
187 mount
--bind /dev
$BASEDIR/build
/dev
188 mount
--bind /dev
/pts
$BASEDIR/build
/dev
/pts
189 mount
--bind /dev
/shm
$BASEDIR/build
/dev
/shm
190 mount
--bind /proc
$BASEDIR/build
/proc
191 mount
--bind /sys
$BASEDIR/build
/sys
192 mount
--bind $BASEDIR/cache
$BASEDIR/build
/usr
/src
/cache
193 mount
--bind $BASEDIR/ccache
$BASEDIR/build
/usr
/src
/ccache
194 mount
--bind $BASEDIR/config
$BASEDIR/build
/usr
/src
/config
195 mount
--bind $BASEDIR/doc
$BASEDIR/build
/usr
/src
/doc
196 mount
--bind $BASEDIR/html
$BASEDIR/build
/usr
/src
/html
197 mount
--bind $BASEDIR/langs
$BASEDIR/build
/usr
/src
/langs
198 mount
--bind $BASEDIR/lfs
$BASEDIR/build
/usr
/src
/lfs
199 mount
--bind $BASEDIR/log
$BASEDIR/build
/usr
/src
/log
200 mount
--bind $BASEDIR/src
$BASEDIR/build
/usr
/src
/src
202 # This is a temporary hack!!!
203 if [ ! -f /tools
/bin
/hostname
]; then
204 cp -f /bin
/hostname
/tools
/bin
/hostname
2>/dev
/null
207 # Run LFS static binary creation scripts one by one
208 export CCACHE_DIR
=$BASEDIR/ccache
209 export CCACHE_HASHDIR
=1
211 # Remove pre-install list of installed files in case user erase some files before rebuild
212 rm -f $BASEDIR/build
/usr
/src
/lsalr
2>/dev
/null
216 LOGFILE
="$BASEDIR/log/_build.toolchain.log"
219 NATIVEGCC
=`gcc --version | grep GCC | awk {'print $3'}`
220 export NATIVEGCC GCCmajor
=${NATIVEGCC:0:1} GCCminor=${NATIVEGCC:2:1} GCCrelease=${NATIVEGCC:4:1}
222 lfsmake1 binutils PASS
=1
224 export PATH
=$BASEDIR/build
/usr
/local
/bin
:$BASEDIR/build
/tools
/bin
:$PATH
225 lfsmake1 linux-libc-header
227 lfsmake1 cleanup-toolchain PASS
=1
232 lfsmake1 binutils PASS
=2
251 lfsmake1 cleanup-toolchain PASS
=2
252 export PATH
=$ORG_PATH
256 LOGFILE
="$BASEDIR/log/_build.base.log"
259 lfsmake2 linux-libc-header
262 lfsmake2 cleanup-toolchain PASS
=3
305 lfsmake2 reiser4progs
318 LOGFILE
="$BASEDIR/log/_build.ipfire.log"
320 ipfiremake configroot
328 ipfiremake linux SMP
=1
329 ipfiremake ipp2p SMP
=1
330 ipfiremake zaptel SMP
=1
334 ipfiremake pkg-config
338 ipfiremake mkinitcpio
339 ipfiremake udev KLIBC
=1
364 ipfiremake BerkeleyDB
366 ipfiremake cyrus-sasl
370 ipfiremake apache2 PASS
=C
376 ipfiremake dosfstools
377 ipfiremake squashfstools
378 ipfiremake reiserfsprogs
379 ipfiremake sysfsutils
383 ipfiremake ez-ipupdate
387 ipfiremake GD-TextUtil
392 ipfiremake initscripts
396 ipfiremake ipp2p IPT
=1
403 ipfiremake l7-protocols
409 ipfiremake misc-progs
413 ipfiremake HTML-Tagset
414 ipfiremake HTML-Parser
415 ipfiremake Compress-Zlib
417 ipfiremake Digest-SHA1
418 ipfiremake Digest-HMAC
419 ipfiremake libwww-perl
421 ipfiremake Net-IPv4Addr
422 ipfiremake Net_SSLeay
423 ipfiremake IO-Stringy
424 ipfiremake Unix-Syslog
425 ipfiremake Mail-Tools
426 ipfiremake MIME-Tools
427 ipfiremake Net-Server
428 ipfiremake Convert-TNEF
429 ipfiremake Convert-UUlib
430 ipfiremake Archive-Tar
431 ipfiremake Archive-Zip
432 ipfiremake Text-Tabs
+Wrap
433 ipfiremake Locale-Country
434 ipfiremake XML-Parser
438 ipfiremake noip_updater
446 ipfiremake oinkmaster
448 ipfiremake squid-graph
449 ipfiremake squidguard
452 ipfiremake
traceroute
463 ipfiremake ghostscript
469 ipfiremake bridge-utils
472 ipfiremake smartmontools
477 ipfiremake openmailadmin
480 ipfiremake spamassassin
494 ipfiremake icegenerator
507 ipfiremake applejuice
510 ipfiremake libtorrent
512 ipfiremake ipfireseeder
514 ipfiremake tcpwrapper
535 # Run installer scripts one by one
536 LOGFILE
="$BASEDIR/log/_build.installer.log"
542 installmake linux-libc-header
544 ipfiremake uClibc PASS
=1
545 ipfiremake gcc INST
=1
546 installmake uClibc PASS
=2
547 installmake gcc INST
=2
548 installmake uClibc PASS
=3
557 installmake misc-progs
559 installmake reiser4progs
560 installmake reiserfsprogs
561 installmake sysfsutils
562 installmake util-linux
569 installmake installer
574 LOGFILE
="$BASEDIR/log/_build.packages.log"
576 echo "... see detailed log in _build.*.log files" >> $LOGFILE
580 # Generating list of packages used
581 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
582 rm -f $BASEDIR/doc
/packages-list
583 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
584 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
585 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
588 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
589 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$\|install1$\|install2$\|pass1$\|pass2$\|pass3$' \
590 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
591 rm -f $BASEDIR/doc
/packages-list
592 # packages-list.txt is ready to be displayed for wiki page
593 beautify message DONE
595 # Create images for install
596 ipfiremake cdrom ED
=full
598 # Check if there is a loop device for building in virtual environments
599 if [ -e /dev
/loop
/0 ] ||
[ -e /dev
/loop0
]; then
602 mv $LFS/install
/images
/{*.iso
,*.tgz
,*.img.gz
} $BASEDIR >> $LOGFILE 2>&1
608 rm -rf $BASEDIR/build
/tmp
/*
610 # Generating total list of files
611 echo -n "Generating files list from logs" |
tee -a $LOGFILE
612 rm -f $BASEDIR/log
/FILES
613 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
614 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
615 echo "##" >>$BASEDIR/log
/FILES
616 echo "## `basename $i`" >>$BASEDIR/log
/FILES
617 echo "##" >>$BASEDIR/log
/FILES
618 cat $i |
sed "s%^\./%#%" |
sort >> $BASEDIR/log
/FILES
621 beautify message DONE
627 ipfiremake core-updates
628 for i
in $
(ls -1 $BASEDIR/config
/rootfiles
/packages
); do
629 if [ -e $BASEDIR/lfs
/$i ]; then
633 beautify message SKIP
636 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
637 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
638 rm -rf $BASEDIR/build
/install
/packages
/*
641 # See what we're supposed to do
645 BUILDMACHINE
=`uname -m`
646 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
647 #only restore on a clean disk
648 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
649 if [ ! -n "$PACKAGE" ]; then
650 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
654 PACKAGENAME
=${PACKAGE%.tar.gz}
655 beautify build_stage
"Packaged toolchain compilation"
656 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
660 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
664 echo -n "Using installed toolchain" |
tee -a $LOGFILE
665 beautify message SKIP
670 beautify build_stage
"Building LFS"
673 beautify build_stage
"Building IPFire"
676 # Setzen des IPFire Builds
677 if [ "$FIREBUILD" ]; then
678 echo "$FIREBUILD" > $BASEDIR/build
/var
/ipfire
/firebuild
680 echo "_(OvO)_" > $BASEDIR/build
/var
/ipfire
/firebuild
683 beautify build_stage
"Building installer"
686 beautify build_stage
"Building packages"
691 # enter a shell inside LFS chroot
692 # may be used to changed kernel settings
697 echo -n "Loading new Changelog from SVN: "
698 svn log http
://svn.ipfire.org
/svn
/ipfire
> doc
/ChangeLog
699 beautify message DONE
702 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
703 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
704 $LOSETUP -d $i 2>/dev
/null
706 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
710 for i
in `seq 0 7`; do
711 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
712 umount
/dev
/loop
${i} 2>/dev
/null
;
713 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
716 rm -rf $BASEDIR/build
717 rm -rf $BASEDIR/cdrom
718 rm -rf $BASEDIR/packages
720 if [ -h /tools
]; then
723 beautify message DONE
726 if [ ! -d $BASEDIR/cache
]; then
729 mkdir
-p $BASEDIR/log
730 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
733 for c
in `seq $MAX_RETRIES`; do
734 if (( FINISHED
==1 )); then
740 if [ -f "$i" -a "$i" != "Config" ]; then
741 echo -ne "Loading $i"
742 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
743 if [ $?
-ne 0 ]; then
744 beautify message FAIL
747 if [ $c -eq 1 ]; then
748 beautify message DONE
754 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
757 if [ -f "$i" -a "$i" != "Config" ]; then
758 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
759 if [ $?
-ne 0 ]; then
760 echo -ne "MD5 difference in lfs/$i"
761 beautify message FAIL
766 if [ $ERROR -eq 0 ]; then
767 echo -ne "${BOLD}all files md5sum match${NORMAL}"
768 beautify message DONE
770 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
771 beautify message FAIL
778 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
780 BUILDMACHINE
=`uname -m`
781 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
782 test -d $BASEDIR/cache
/toolchains || mkdir
$BASEDIR/cache
/toolchains
783 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.
tar.gz \
784 build
/{bin
,etc
,usr
/bin
,usr
/local} \
785 build
/tools
/{bin
,etc
,*-linux-gnu,include
,lib
,libexec
,sbin
,share
,var
} \
787 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.
tar.gz \
788 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.md5
792 BUILDMACHINE
=`uname -m`
793 # arbitrary name to be updated in case of new toolchain package upload
794 PACKAGE
=$SNAME-$VERSION-toolchain-$BUILDMACHINE
795 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
796 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
797 test -d $BASEDIR/cache
/toolchains || mkdir
$BASEDIR/cache
/toolchains
798 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
799 cd $BASEDIR/cache
/toolchains
800 wget
$URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
801 if [ $?
-ne 0 ]; then
802 echo "`date -u '+%b %e %T'`: error downloading toolchain for $BUILDMACHINE machine" |
tee -a $LOGFILE
804 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
805 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
807 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
811 echo "Toolchain is already downloaded. Exiting..."
816 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
817 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
818 TERM
=$TERM PS1
='\u:\w\$ ' \
819 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
820 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
821 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
822 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
823 if [ $?
-eq "0" ]; then
824 beautify message DONE
826 beautify message FAIL
834 echo -ne "Loading the latest source files...\n"
836 svn update
-r $3 |
tee -a $PWD/log
/_build.svn.update.log
838 svn update |
tee -a $PWD/log
/_build.svn.update.log
840 if [ $?
-eq "0" ]; then
841 beautify message DONE
843 beautify message FAIL
846 echo -ne "Writing the svn-info to a file"
847 svn info
> $PWD/svn_status
848 if [ $?
-eq "0" ]; then
849 beautify message DONE
851 beautify message FAIL
859 if [ -f /usr
/bin
/mcedit
]; then
860 export EDITOR
=/usr
/bin
/mcedit
862 if [ -f /usr
/bin
/nano
]; then
863 export EDITOR
=/usr
/bin
/nano
865 echo -ne "Selecting editor $EDITOR..."
866 beautify message DONE
867 if [ -e /sbin
/yast
]; then
868 if [ "`echo $SVN_REVISION | cut -c 3`" -eq "0" ]; then
875 if [ -n "$FTP_CACHE_URL" ]; then
883 if [ -f ipfire-source-r
$SVN_REVISION.
tar.gz
]; then
884 echo -ne "REV $SVN_REVISION: SKIPPED!\n"
887 echo -en "REV $SVN_REVISION: Downloading..."
888 svn
export http
://svn.ipfire.org
/svn
/ipfire
/trunk ipfire-source
/ --force > /dev
/null
889 svn log http
://svn.ipfire.org
/svn
/ipfire
/trunk
-r 1:$SVN_REVISION > ipfire-source
/Changelog
890 #svn info http://svn.ipfire.org/svn/ipfire/trunk -r $SVN_REVISION > ipfire-source/svn_status
893 echo -en "REV $SVN_REVISION: Compressing files..."
894 if [ -e ipfire-source
/trunk
/make.sh
]; then
895 chmod 755 ipfire-source
/trunk
/make.sh
897 tar cfz ipfire-source-r
$SVN_REVISION.
tar.gz ipfire-source
899 echo -en "REV $SVN_REVISION: Cleaning up..."
905 echo -ne "Make a local diff to last svn revision"
906 svn
diff > ipfire-diff-
`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.
diff
908 echo "Diff was successfully saved to ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff"
916 echo -e "Uploading cache to ftp server:"
917 ncftpls
-u $FTP_CACHE_USER -p $FTP_CACHE_PASS ftp://$FTP_CACHE_URL/$FTP_CACHE_PATH/ > /tmp
/ftplist
919 if [ "$(basename $i)" == "toolchains" ]; then continue; fi
920 grep -q $
(basename $i) /tmp
/ftplist
921 if [ "$?" -ne "0" ]; then
922 echo -ne "$(basename $i)"
923 ncftpput
-u $FTP_CACHE_USER -p $FTP_CACHE_PASS $FTP_CACHE_URL $FTP_CACHE_PATH/ $
(basename $i)
924 if [ "$?" -ne "0" ]; then
925 beautify message FAIL
934 FTP_ISO_PORT
=`echo "$FTP_ISO_URL" | awk -F: '{ print $2 }'`
935 FTP_ISO_URL
=`echo "$FTP_ISO_URL" | awk -F: '{ print $1 }'`
936 if [ -z $FTP_ISO_PORT ]; then
939 cat <<EOF > .ftp-commands
940 mkdir -p $FTP_ISO_PATH$SVN_REVISION
941 mkdir -p $FTP_ISO_PATH$SVN_REVISION/paks
944 ncftp
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL < .ftp-commands
949 echo -e "Uploading the iso to $FTP_ISO_PATH/$SVN_REVISION."
951 md5sum ipfire-
$VERSION.
$MACHINE-full.iso
> ipfire-
$VERSION.
$MACHINE-full.iso.md5
952 for i
in svn_status ipfire-source-r
$SVN_REVISION.
tar.gz ipfire-
$VERSION.
$MACHINE-full.iso ipfire-
$VERSION.
$MACHINE-full.iso.md5 ipfire-
$VERSION.
$MACHINE-devel.iso ipfire-
$VERSION.
$MACHINE-devel.iso.md5
; do
954 ncftpput
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ $i
955 if [ "$?" -eq "0" ]; then
956 echo "The file with name $i was successfully uploaded to $FTP_ISO_URL$FTP_ISO_PATH$SVN_REVISION/."
958 echo "There was an error while uploading the file $i to the ftp server."
963 rm -f ipfire-
$VERSION.
$MACHINE-full.iso.md5
964 if [ "$3" = "--with-sources-cd" ]; then
965 ncftpput
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL $FTP_ISO_PATH/$SVN_REVISION/ ipfire-sources-cd-
$VERSION.
$MACHINE.iso
969 ncftpput
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/paks packages
/*
970 if [ "$?" -eq "0" ]; then
971 echo -e "The packages were successfully uploaded to $FTP_ISO_URL$FTP_ISO_PATH$SVN_REVISION/."
973 echo -e "There was an error while uploading the packages to the ftp server."
980 if [ "$2" = "--background" ]; then
984 if [ `screen -ls | grep -q ipfire` ]; then
985 echo "Build is already running, sorry!"
988 if [ "$2" = "--rebuild" ]; then
989 export IPFIRE_REBUILD
=1
992 export IPFIRE_REBUILD
=0
994 echo -en "${BOLD}***IPFire-Batch-Build is starting...${NORMAL}"
995 screen
-dmS ipfire
$0 batch --background
1023 select name
in "Exit" "IPFIRE: Downloadsrc" "IPFIRE: Build (silent)" "IPFIRE: Watch Build" "IPFIRE: Batch" "IPFIRE: Clean" "SVN: Commit" "SVN: Update" "SVN: Status" "SVN: Diff" "LOG: Tail" "Help"
1026 "IPFIRE: Downloadsrc")
1029 "IPFIRE: Build (silent)")
1032 "IPFIRE: Watch Build")
1045 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1046 cat doc
/make.sh-usage
1061 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1062 cat doc
/make.sh-usage