X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=make.sh;h=55bdf9aa479877b1784a556046ceacc0a46011c4;hp=4461c8e8b83d3b0ceca1c91160bb573bbf3da111;hb=68388766c3ce8644b8983d9c1b6726c9e94fa2a6;hpb=c063cafb8f9090db36b92bdca9c4d543115e1828 diff --git a/make.sh b/make.sh index 4461c8e8b8..55bdf9aa47 100755 --- a/make.sh +++ b/make.sh @@ -24,9 +24,9 @@ NAME="IPFire" # Software name SNAME="ipfire" # Short name -VERSION="2.9beta2" # Version number -CORE="43" # Core Level (Filename) -PAKFIRE_CORE="43" # Core Level (PAKFIRE) +VERSION="2.9" # Version number +CORE="48" # Core Level (Filename) +PAKFIRE_CORE="47" # Core Level (PAKFIRE) GIT_BRANCH=`git status | head -n1 | cut -d" " -f4` # Git Branch SLOGAN="www.ipfire.org" # Software slogan CONFIG_ROOT=/var/ipfire # Configuration rootdir @@ -684,6 +684,11 @@ buildipfire() { ipfiremake imspector ipfiremake miniupnpd ipfiremake client175 + ipfiremake powertop + ipfiremake parted + ipfiremake swig + ipfiremake python-m2crypto + ipfiremake crda echo Build on $HOSTNAME > $BASEDIR/build/var/ipfire/firebuild cat /proc/version >> $BASEDIR/build/var/ipfire/firebuild echo >> $BASEDIR/build/var/ipfire/firebuild @@ -761,6 +766,12 @@ buildpackages() { fi mv $LFS/install/images/*.bz2 $BASEDIR >> $LOGFILE 2>&1 + cd $BASEDIR + for i in `ls *.bz2 *.img.gz *.iso`; do + md5sum $i > $i.md5 + done + cd $PWD + # Cleanup stdumount rm -rf $BASEDIR/build/tmp/* @@ -837,8 +848,10 @@ build) buildpackages beautify build_stage "Checking Logfiles for new Files" - cd .. + + cd $BASEDIR tools/checknewlog.pl + cd $PWD beautify build_end ;; @@ -870,6 +883,7 @@ clean) if [ -h /tools ]; then rm -f /tools fi + rm -f $BASEDIR/ipfire-* beautify message DONE ;; downloadsrc)