X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=make.sh;h=13d79e08845fe452cf106f7ef9d2e3edd0127edb;hp=a0a5c56efde13904fe381f38bd07b015f4192d72;hb=5d547072c3e454549eb0ac0c36827ebcba8eba4a;hpb=fad85501ea4c1f5e546b85ba4b16c990d7c5cbf1 diff --git a/make.sh b/make.sh index a0a5c56efd..13d79e0884 100755 --- a/make.sh +++ b/make.sh @@ -24,9 +24,9 @@ NAME="IPFire" # Software name SNAME="ipfire" # Short name -VERSION="2.9beta1" # Version number -CORE="43" # Core Level (Filename) -PAKFIRE_CORE="43" # Core Level (PAKFIRE) +VERSION="2.9" # Version number +CORE="44" # Core Level (Filename) +PAKFIRE_CORE="44" # 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,8 @@ buildipfire() { ipfiremake imspector ipfiremake miniupnpd ipfiremake client175 + ipfiremake powertop + ipfiremake parted 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 +763,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 +845,10 @@ build) buildpackages beautify build_stage "Checking Logfiles for new Files" - cd .. + + cd $BASEDIR tools/checknewlog.pl + cd $PWD beautify build_end ;; @@ -870,6 +880,7 @@ clean) if [ -h /tools ]; then rm -f /tools fi + rm -f $BASEDIR/ipfire-* beautify message DONE ;; downloadsrc)