This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via b307417f30eeafb088001956ad9416b3244e6691 (commit) from b0636ac576739778aca12027190b15a6c8f346a6 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit b307417f30eeafb088001956ad9416b3244e6691 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 1 11:40:19 2011 +0100
Buildsystem: generate image md5sums. ./make.sh clean remove also the images. fix checknewlog if workdir is not basedir.
-----------------------------------------------------------------------
Summary of changes: .gitignore | 1 + make.sh | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletions(-)
Difference in files: diff --git a/.gitignore b/.gitignore index ed6c767..0215a60 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ *.img.gz *.iso *.tar.bz2 +/*.md5 diff --git a/make.sh b/make.sh index 9817aab..69f502f 100755 --- a/make.sh +++ b/make.sh @@ -762,6 +762,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/* @@ -838,8 +844,10 @@ build) buildpackages beautify build_stage "Checking Logfiles for new Files" - cd .. + + cd $BASEDIR tools/checknewlog.pl + cd $PWD
beautify build_end ;; @@ -871,6 +879,7 @@ clean) if [ -h /tools ]; then rm -f /tools fi + rm -f $BASEDIR/ipfire-* beautify message DONE ;; downloadsrc)
hooks/post-receive -- IPFire 2.x development tree