Allow to skip generating MD5 and SHA1 sums files

This commit is contained in:
Frans Pop 2008-09-20 19:36:42 +00:00
parent 704a350c35
commit 13f5f20f46
5 changed files with 22 additions and 7 deletions

View File

@ -29,6 +29,7 @@ unset ISOLINUX || true
unset EXCLUDE || true
unset NORECOMMENDS || true
unset NOSUGGESTS || true
unset IMAGESUMS || true
unset JIGDOTEMPLATEURL || true
unset JIGDOFALLBACKURLS || true
unset JIGDOINCLUDEURLS || true
@ -198,14 +199,17 @@ export NORECOMMENDS=1
# package on the CD. The default is 'true'.
#export NOSUGGESTS=1
# Set to 1 to generate MD5 and SHA1 sums for generated images
export IMAGESUMS=1
# Produce iso/jigdo files: specify how many iso/jigdo files should be
# produced in your set, or "ALL". Replaces the old "DOJIGDO" setting
# with something much more flexible
if [ "$MAXISOS"x = ""x ] ; then
export MAXISOS="ALL"
export MAXISOS="ALL"
fi
if [ "$MAXJIGDOS"x = ""x ] ; then
export MAXJIGDOS="ALL"
export MAXJIGDOS="ALL"
fi
# HTTP/FTP URL for directory where you intend to make the templates

View File

@ -68,4 +68,6 @@ echo "Building $NUMJIGDOS jigdos and $NUMISOS isos for $ARCH $DISKTYPE"
make $IMAGETARGET
make imagesums
if [ "$IMAGESUMS"x = 1x ]; then
make imagesums
fi

View File

@ -62,7 +62,9 @@ do
echo " ... building the images; using target(s) \"$IMAGETARGET\""
make $IMAGETARGET
make imagesums
if [ "$IMAGESUMS"x = 1x ]; then
make imagesums
fi
echo "--------------- `date` ---------------"
done

8
debian/CONF.sh vendored
View File

@ -29,6 +29,7 @@ unset ISOLINUX || true
unset EXCLUDE || true
unset NORECOMMENDS || true
unset NOSUGGESTS || true
unset IMAGESUMS || true
unset JIGDOTEMPLATEURL || true
unset JIGDOFALLBACKURLS || true
unset JIGDOINCLUDEURLS || true
@ -198,14 +199,17 @@ export NORECOMMENDS=1
# package on the CD. The default is 'true'.
#export NOSUGGESTS=1
# Set to 1 to generate MD5 and SHA1 sums for generated images
export IMAGESUMS=1
# Produce iso/jigdo files: specify how many iso/jigdo files should be
# produced in your set, or "ALL". Replaces the old "DOJIGDO" setting
# with something much more flexible
if [ "$MAXISOS"x = ""x ] ; then
export MAXISOS="ALL"
export MAXISOS="ALL"
fi
if [ "$MAXJIGDOS"x = ""x ] ; then
export MAXJIGDOS="ALL"
export MAXJIGDOS="ALL"
fi
# HTTP/FTP URL for directory where you intend to make the templates

5
debian/changelog vendored
View File

@ -109,7 +109,10 @@ debian-cd (3.0.5) UNRELEASED; urgency=low
shell script (tools/which_deb), called from Makefile and boot-* as
needed.
-- Frans Pop <fjp@debian.org> Mon, 04 Aug 2008 18:59:31 +0200
[ Frans Pop ]
* Allow to skip generating MD5 and SHA1 sums files.
-- Frans Pop <fjp@debian.org> Sat, 20 Sep 2008 21:36:11 +0200
debian-cd (3.0.4) unstable; urgency=low