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.0t5" # 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
329 ipfiremake linux SMP
=1
330 ipfiremake ipp2p SMP
=1
331 ipfiremake r8169 SMP
=1
332 ipfiremake zaptel SMP
=1
337 ipfiremake pkg-config
340 ipfiremake mkinitcpio
341 ipfiremake udev KLIBC
=1
365 ipfiremake BerkeleyDB
367 ipfiremake cyrus-sasl
371 ipfiremake apache2 PASS
=C
377 ipfiremake dosfstools
378 ipfiremake squashfstools
379 ipfiremake reiserfsprogs
380 ipfiremake sysfsutils
384 ipfiremake ez-ipupdate
388 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
440 ipfiremake noip_updater
444 ipfiremake pptpclient
449 ipfiremake oinkmaster
451 ipfiremake squid-graph
452 ipfiremake squidguard
455 ipfiremake
traceroute
466 ipfiremake ghostscript
472 ipfiremake bridge-utils
475 ipfiremake smartmontools
483 ipfiremake spamassassin
497 ipfiremake mp3blaster
504 ipfiremake applejuice
507 ipfiremake libtorrent
509 ipfiremake ipfireseeder
511 ipfiremake tcpwrapper
531 # Run installer scripts one by one
532 LOGFILE
="$BASEDIR/log/_build.installer.log"
538 installmake linux-libc-header
540 ipfiremake uClibc PASS
=1
541 ipfiremake gcc INST
=1
542 installmake uClibc PASS
=2
543 installmake gcc INST
=2
544 installmake uClibc PASS
=3
553 installmake misc-progs
555 installmake reiser4progs
556 installmake reiserfsprogs
557 installmake sysfsutils
558 installmake util-linux
565 installmake installer
570 LOGFILE
="$BASEDIR/log/_build.packages.log"
572 echo "... see detailed log in _build.*.log files" >> $LOGFILE
576 # Generating list of packages used
577 echo -n "Generating packages list from logs" |
tee -a $LOGFILE
578 rm -f $BASEDIR/doc
/packages-list
579 for i
in `ls -1tr $BASEDIR/log/[^_]*`; do
580 if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then
581 echo "* `basename $i`" >>$BASEDIR/doc
/packages-list
584 echo "== List of softwares used to build $NAME Version: $VERSION ==" > $BASEDIR/doc
/packages-list.txt
585 grep -v 'configroot$\|img$\|initrd$\|initscripts$\|installer$\|install$\|setup$\|pakfire$\|stage2$\|smp$\|tools$\|tools1$\|tools2$\|.tgz$\|-config$\|_missing_rootfile$' \
586 $BASEDIR/doc
/packages-list |
sort >> $BASEDIR/doc
/packages-list.txt
587 rm -f $BASEDIR/doc
/packages-list
588 # packages-list.txt is ready to be displayed for wiki page
589 beautify message DONE
591 # Create images for install
592 if [ "$DEVEL" == "1" ]; then
593 ipfiremake cdrom ED
=devel
595 ipfiremake cdrom ED
=full
597 # Check if there is a loop device for building in virtual environments
598 if [ -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 for i
in $
(ls -1 $BASEDIR/config
/rootfiles
/packages
); do
628 [ -e $BASEDIR/lfs
/$i ] && ipfiredist
$i
630 test -d $BASEDIR/packages || mkdir
$BASEDIR/packages
631 mv -f $LFS/install
/packages
/* $BASEDIR/packages
>> $LOGFILE 2>&1
632 rm -rf $BASEDIR/build
/install
/packages
/*
635 # See what we're supposed to do
639 BUILDMACHINE
=`uname -m`
641 if [ "$2" == "--devel" ]; then
644 PACKAGE
=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$BUILDMACHINE.tar.gz 2> /dev/null | head -n 1`
645 #only restore on a clean disk
646 if [ ! -f log
/cleanup-toolchain-2-tools
]; then
647 if [ ! -n "$PACKAGE" ]; then
648 beautify build_stage
"Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
652 PACKAGENAME
=${PACKAGE%.tar.gz}
653 beautify build_stage
"Packaged toolchain compilation"
654 if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
658 exiterror
"$PACKAGENAME md5 did not match, check downloaded package"
662 echo -n "Using installed toolchain" |
tee -a $LOGFILE
663 beautify message SKIP
668 beautify build_stage
"Building LFS"
671 beautify build_stage
"Building IPFire"
674 # Setzen des IPFire Builds
675 if [ "$FIREBUILD" ]; then
676 echo "$FIREBUILD" > $BASEDIR/build
/var
/ipfire
/firebuild
678 echo "_(OvO)_" > $BASEDIR/build
/var
/ipfire
/firebuild
681 beautify build_stage
"Building installer"
684 beautify build_stage
"Building packages"
689 # enter a shell inside LFS chroot
690 # may be used to changed kernel settings
695 echo -n "Loading new Changelog from SVN: "
696 svn log http
://svn.ipfire.org
/svn
/ipfire
> doc
/ChangeLog
697 beautify message DONE
700 echo -en "${BOLD}Cleaning build directory...${NORMAL}"
701 for i
in `mount | grep $BASEDIR | sed 's/^.*loop=\(.*\))/\1/'`; do
702 $LOSETUP -d $i 2>/dev
/null
704 for i
in `mount | grep $BASEDIR | cut -d " " -f 1`; do
708 for i
in `seq 0 7`; do
709 if ( losetup
/dev
/loop
${i} 2>/dev
/null |
grep -q "/install/images" ); then
710 umount
/dev
/loop
${i} 2>/dev
/null
;
711 losetup
-d /dev
/loop
${i} 2>/dev
/null
;
714 rm -rf $BASEDIR/build
715 rm -rf $BASEDIR/cdrom
716 rm -rf $BASEDIR/packages
718 if [ -h /tools
]; then
721 beautify message DONE
724 if [ ! -d $BASEDIR/cache
]; then
727 mkdir
-p $BASEDIR/log
728 echo -e "${BOLD}Preload all source files${NORMAL}" |
tee -a $LOGFILE
731 for c
in `seq $MAX_RETRIES`; do
732 if (( FINISHED
==1 )); then
738 if [ -f "$i" -a "$i" != "Config" ]; then
739 echo -ne "Loading $i"
740 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t ($c/$MAX_RETRIES)" download
>> $LOGFILE 2>&1
741 if [ $?
-ne 0 ]; then
742 beautify message FAIL
745 if [ $c -eq 1 ]; then
746 beautify message DONE
752 echo -e "${BOLD}***Verifying md5sums${NORMAL}"
755 if [ -f "$i" -a "$i" != "Config" ]; then
756 make -s -f $i LFS_BASEDIR
=$BASEDIR MESSAGE
="$i\t " md5
>> $LOGFILE 2>&1
757 if [ $?
-ne 0 ]; then
758 echo -ne "MD5 difference in lfs/$i"
759 beautify message FAIL
764 if [ $ERROR -eq 0 ]; then
765 echo -ne "${BOLD}all files md5sum match${NORMAL}"
766 beautify message DONE
768 echo -ne "${BOLD}not all files were correctly download${NORMAL}"
769 beautify message FAIL
776 beautify build_stage
"Toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
778 BUILDMACHINE
=`uname -m`
779 echo "`date -u '+%b %e %T'`: Create toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
780 test -d $BASEDIR/cache
/toolchains || mkdir
$BASEDIR/cache
/toolchains
781 cd $BASEDIR && tar -zc --exclude='log/_build.*.log' -f cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.
tar.gz \
782 build
/{bin
,etc
,usr
/bin
,usr
/local} \
783 build
/tools
/{bin
,etc
,*-linux-gnu,include
,lib
,libexec
,sbin
,share
,var
} \
785 md5sum cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.
tar.gz \
786 > cache
/toolchains
/$SNAME-$VERSION-toolchain-$BUILDMACHINE.md5
790 BUILDMACHINE
=`uname -m`
791 # arbitrary name to be updated in case of new toolchain package upload
792 PACKAGE
=$SNAME-$VERSION-toolchain-$BUILDMACHINE
793 if [ ! -f $BASEDIR/cache
/toolchains
/$PACKAGE.
tar.gz
]; then
794 URL_TOOLCHAIN
=`grep URL_TOOLCHAIN lfs/Config | awk '{ print $3 }'`
795 test -d $BASEDIR/cache
/toolchains || mkdir
$BASEDIR/cache
/toolchains
796 echo "`date -u '+%b %e %T'`: Load toolchain tar.gz for $BUILDMACHINE" |
tee -a $LOGFILE
797 cd $BASEDIR/cache
/toolchains
798 wget
$URL_TOOLCHAIN/$PACKAGE.
tar.gz
$URL_TOOLCHAIN/$PACKAGE.md5
>& /dev
/null
799 if [ $?
-ne 0 ]; then
800 echo "`date -u '+%b %e %T'`: error downloading toolchain for $BUILDMACHINE machine" |
tee -a $LOGFILE
802 if [ "`md5sum $PACKAGE.tar.gz | awk '{print $1}'`" = "`cat $PACKAGE.md5 | awk '{print $1}'`" ]; then
803 echo "`date -u '+%b %e %T'`: toolchain md5 ok" |
tee -a $LOGFILE
805 exiterror
"$PACKAGE.md5 did not match, check downloaded package"
809 echo "Toolchain is already downloaded. Exiting..."
814 echo -ne "`date -u '+%b %e %T'`: Build sources iso for $MACHINE" |
tee -a $LOGFILE
815 chroot
$LFS /tools
/bin
/env
-i HOME
=/root \
816 TERM
=$TERM PS1
='\u:\w\$ ' \
817 PATH
=/usr
/local
/bin
:/bin
:/usr
/bin
:/sbin
:/usr
/sbin \
818 VERSION
=$VERSION NAME
="$NAME" SNAME
="$SNAME" MACHINE
=$MACHINE \
819 /bin
/bash
-x -c "cd /usr/src/lfs && make -f sources-iso LFS_BASEDIR=/usr/src install" >>$LOGFILE 2>&1
820 mv $LFS/install
/images
/ipfire-
* $BASEDIR >> $LOGFILE 2>&1
821 if [ $?
-eq "0" ]; then
822 beautify message DONE
824 beautify message FAIL
832 echo -ne "Loading the latest source files...\n"
834 svn update
-r $3 |
tee -a $PWD/log
/_build.svn.update.log
836 svn update |
tee -a $PWD/log
/_build.svn.update.log
838 if [ $?
-eq "0" ]; then
839 beautify message DONE
841 beautify message FAIL
844 echo -ne "Writing the svn-info to a file"
845 svn info
> $PWD/svn_status
846 if [ $?
-eq "0" ]; then
847 beautify message DONE
849 beautify message FAIL
857 if [ -f /usr
/bin
/mcedit
]; then
858 export EDITOR
=/usr
/bin
/mcedit
860 if [ -f /usr
/bin
/nano
]; then
861 export EDITOR
=/usr
/bin
/nano
863 echo -ne "Selecting editor $EDITOR..."
864 beautify message DONE
865 if [ -e /sbin
/yast
]; then
866 if [ "`echo $SVN_REVISION | cut -c 3`" -eq "0" ]; then
873 if [ -n "$FTP_CACHE_URL" ]; then
881 if [ -f ipfire-source-r
$SVN_REVISION.
tar.gz
]; then
882 echo -ne "REV $SVN_REVISION: SKIPPED!\n"
885 echo -en "REV $SVN_REVISION: Downloading..."
886 svn
export http
://svn.ipfire.org
/svn
/ipfire
/trunk ipfire-source
/ --force > /dev
/null
887 svn log http
://svn.ipfire.org
/svn
/ipfire
/trunk
-r 1:$SVN_REVISION > ipfire-source
/Changelog
888 #svn info http://svn.ipfire.org/svn/ipfire/trunk -r $SVN_REVISION > ipfire-source/svn_status
891 echo -en "REV $SVN_REVISION: Compressing files..."
892 if [ -e ipfire-source
/trunk
/make.sh
]; then
893 chmod 755 ipfire-source
/trunk
/make.sh
895 tar cfz ipfire-source-r
$SVN_REVISION.
tar.gz ipfire-source
897 echo -en "REV $SVN_REVISION: Cleaning up..."
903 echo -ne "Make a local diff to last svn revision"
904 svn
diff > ipfire-diff-
`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.
diff
906 echo "Diff was successfully saved to ipfire-diff-`date +'%Y-%m-%d-%H:%M'`-r`svn info | grep Revision | cut -c 11-`.diff"
914 echo -e "Uploading cache to ftp server:"
915 ncftpls
-u $FTP_CACHE_USER -p $FTP_CACHE_PASS ftp://$FTP_CACHE_URL$FTP_CACHE_PATH/ > /tmp
/ftplist
917 if [ "$i" == "toolchains" ]; then continue; fi
918 grep -q $i /tmp
/ftplist
919 if [ "$?" -ne "0" ]; then
921 ncftpput
-u $FTP_CACHE_USER -p $FTP_CACHE_PASS $FTP_CACHE_URL $FTP_CACHE_PATH/ $i
922 if [ "$?" -ne "0" ]; then
923 beautify message FAIL
932 FTP_ISO_PORT
=`echo "$FTP_ISO_URL" | awk -F: '{ print $2 }'`
933 FTP_ISO_URL
=`echo "$FTP_ISO_URL" | awk -F: '{ print $1 }'`
934 if [ -z $FTP_ISO_PORT ]; then
937 cat <<EOF > .ftp-commands
938 mkdir -p $FTP_ISO_PATH$SVN_REVISION
939 mkdir -p $FTP_ISO_PATH$SVN_REVISION/paks
942 ncftp
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL < .ftp-commands
947 echo -e "Uploading the iso to $FTP_ISO_PATH/$SVN_REVISION."
949 md5sum ipfire-
$VERSION.
$MACHINE-full.iso
> ipfire-
$VERSION.
$MACHINE-full.iso.md5
950 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
952 ncftpput
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/ $i
953 if [ "$?" -eq "0" ]; then
954 echo "The file with name $i was successfully uploaded to $FTP_ISO_URL$FTP_ISO_PATH$SVN_REVISION/."
956 echo "There was an error while uploading the file $i to the ftp server."
961 rm -f ipfire-
$VERSION.
$MACHINE-full.iso.md5
962 if [ "$3" = "--with-sources-cd" ]; then
963 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
967 ncftpput
-u $FTP_ISO_USER -p $FTP_ISO_PASS -P $FTP_ISO_PORT $FTP_ISO_URL $FTP_ISO_PATH$SVN_REVISION/paks packages
/*
968 if [ "$?" -eq "0" ]; then
969 echo -e "The packages were successfully uploaded to $FTP_ISO_URL$FTP_ISO_PATH$SVN_REVISION/."
971 echo -e "There was an error while uploading the packages to the ftp server."
978 if [ "$2" = "--background" ]; then
982 if [ `screen -ls | grep -q ipfire` ]; then
983 echo "Build is already running, sorry!"
986 if [ "$2" = "--rebuild" ]; then
987 export IPFIRE_REBUILD
=1
990 export IPFIRE_REBUILD
=0
992 echo -en "${BOLD}***IPFire-Batch-Build is starting...${NORMAL}"
993 screen
-dmS ipfire
$0 batch --background
1028 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"
1031 "IPFIRE: Downloadsrc")
1034 "IPFIRE: Build (silent)")
1037 "IPFIRE: Watch Build")
1050 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1051 cat doc
/make.sh-usage
1066 echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"
1067 cat doc
/make.sh-usage