2005-12-08 21:55:19 -01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Debian-cd helper script for making ISO / jigdo images
|
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
DIR=$1
|
Merge of changes from Steve's development branch to take us to
debian-cd version 3.0.0. Highlights:
* Support now added for multi-arch CDs/DVDs, including mixed
binary/source discs. Multi-arch discs should be bootable on those
multiple arches, modulo boot-sector clashes. Extra support added
in boot-i386 and boot-amd64 to make the 2 main arches happily
co-exist.
* Disc sizing is now much more intelligent - sizes are defined
depending on the disk type chosen at the start, and discs are now
filled exactly to those sizes while files are added rather than
the old up-front guessing method. Equally, the metadata on the
disc (Packages, Packages.gz, Sources, Sources.gz, md5sums.txt) is
generated as much as possible while this is happening to make the
sizing code incredibly accurate. Using this method of disc sizing
means that customising discs should be much easier/safer - either
add custom contents at the start and debian-cd will fill the
remainder of the disc, or afterwards roll back the packages on the
disc and add extras later.
* Source is now treated as (almost) just another arch, with most of
the special casing for source hidden internally. If asking for
source-only discs, they will simply be built using all the
available sources. If combined with other arches, the sources will
automatically be chosen to match the binary packages. Meeting GPL
requirements was never so easy!
* Removed lots of old cruft to clean up the codebase:
+ non-US support
+ woody support
+ lots of old support scripts that have been made redundant
+ significantly simpler Makefile, much easier to follow
+ old boot-$ARCH.calc files for estimating boot-file sizes are now
(obviously) obsolete and therefore gone
2006-12-07 22:09:01 -01:00
|
|
|
ARCHES="$2"
|
2005-12-08 21:55:19 -01:00
|
|
|
OUT=$3
|
2008-09-10 22:16:18 +00:00
|
|
|
DEBVERSION=$4
|
|
|
|
MIRROR=$5
|
|
|
|
MKISOFS=$6
|
|
|
|
MKISOFS_OPTS=$7
|
|
|
|
JIGDO_OPTS=$8
|
2005-12-08 22:46:42 -01:00
|
|
|
JIGDO_CLEANUP=$9
|
2005-12-08 21:55:19 -01:00
|
|
|
|
Merge of changes from Steve's development branch to take us to
debian-cd version 3.0.0. Highlights:
* Support now added for multi-arch CDs/DVDs, including mixed
binary/source discs. Multi-arch discs should be bootable on those
multiple arches, modulo boot-sector clashes. Extra support added
in boot-i386 and boot-amd64 to make the 2 main arches happily
co-exist.
* Disc sizing is now much more intelligent - sizes are defined
depending on the disk type chosen at the start, and discs are now
filled exactly to those sizes while files are added rather than
the old up-front guessing method. Equally, the metadata on the
disc (Packages, Packages.gz, Sources, Sources.gz, md5sums.txt) is
generated as much as possible while this is happening to make the
sizing code incredibly accurate. Using this method of disc sizing
means that customising discs should be much easier/safer - either
add custom contents at the start and debian-cd will fill the
remainder of the disc, or afterwards roll back the packages on the
disc and add extras later.
* Source is now treated as (almost) just another arch, with most of
the special casing for source hidden internally. If asking for
source-only discs, they will simply be built using all the
available sources. If combined with other arches, the sources will
automatically be chosen to match the binary packages. Meeting GPL
requirements was never so easy!
* Removed lots of old cruft to clean up the codebase:
+ non-US support
+ woody support
+ lots of old support scripts that have been made redundant
+ significantly simpler Makefile, much easier to follow
+ old boot-$ARCH.calc files for estimating boot-file sizes are now
(obviously) obsolete and therefore gone
2006-12-07 22:09:01 -01:00
|
|
|
NUM_ARCHES=`echo $ARCHES | wc -w`
|
|
|
|
|
2005-12-08 21:55:19 -01:00
|
|
|
if [ "$CD"x = ""x ] ; then
|
2008-12-05 08:08:16 -01:00
|
|
|
echo "Generating the $ARCHES iso/jigdo images ..."
|
|
|
|
FILES=$DIR/*.volid
|
2005-12-08 21:55:19 -01:00
|
|
|
else
|
2008-12-05 08:08:16 -01:00
|
|
|
echo "Generating $ARCHES iso/jigdo image number $CD ..."
|
|
|
|
FILES=$DIR/$CD.volid
|
2005-12-08 21:55:19 -01:00
|
|
|
fi
|
|
|
|
|
2006-12-29 01:44:22 -01:00
|
|
|
NUM_CDS=`ls -1 $FILES | wc -l`
|
|
|
|
|
|
|
|
last_minute_update () {
|
|
|
|
echo " Last-minute updates:"
|
|
|
|
# Aaargh. Only now that we know how many CDs we're making can we
|
|
|
|
# fill in the TOTALNUM number in README.{html,txt} (and therefore also
|
|
|
|
# update the md5sum.txt entries for those files)
|
|
|
|
for file in README.html README.txt
|
|
|
|
do
|
|
|
|
echo " $file"
|
|
|
|
OLD_MD5=`md5sum ./$file`
|
|
|
|
sed -i "s?TOTALNUM?$NUM_CDS?" $file
|
|
|
|
NEW_MD5=`md5sum ./$file`
|
|
|
|
sed -i "s?$OLD_MD5?$NEW_MD5?" md5sum.txt
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2005-12-08 21:55:19 -01:00
|
|
|
for file in $FILES
|
|
|
|
do
|
2008-12-05 08:08:16 -01:00
|
|
|
dir=${file%%.volid}
|
|
|
|
n=${dir##$DIR/}
|
|
|
|
dir=$DIR/CD$n
|
2005-12-08 21:55:19 -01:00
|
|
|
|
2006-12-29 01:44:22 -01:00
|
|
|
cd $dir
|
|
|
|
# Anything last-minute that can only be done now?
|
|
|
|
last_minute_update
|
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
cd $dir/..
|
2005-12-08 21:55:19 -01:00
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
opts=`cat $DIR/$n.mkisofs_opts` || true
|
|
|
|
dirs=`cat $DIR/$n.mkisofs_dirs` || true
|
|
|
|
volid=`cat $DIR/$n.volid`
|
|
|
|
relname=`echo $DEBVERSION | sed -e 's/[. ]//g'`
|
|
|
|
DISKINFO=`cat $DIR/$n.diskinfo`
|
2005-12-08 21:55:19 -01:00
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
ARCHLIST=`echo "$ARCHES" | tr ' ' '-'`
|
|
|
|
OUTFILE="${CDNAME:-debian}-$relname-$ARCHLIST-$DISKTYPE-$n"
|
2005-12-08 21:55:19 -01:00
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
# Clean up any old files
|
|
|
|
rm -f $OUT/$OUTFILE.iso $OUT/$OUTFILE.jigdo $OUT/$OUTFILE.template
|
2005-12-08 21:55:19 -01:00
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
date
|
2005-12-13 01:04:33 -01:00
|
|
|
|
2008-09-10 22:16:18 +00:00
|
|
|
# Work out whether we want ISO, jigdo or both
|
2008-12-05 08:08:16 -01:00
|
|
|
if [ "$MAXISOS"x = ""x ] || [ "$MAXISOS" = "all" ] || \
|
|
|
|
[ "$MAXISOS" = "ALL" ] || [ "$n" -le "$MAXISOS" ] ; then
|
2008-09-10 22:16:18 +00:00
|
|
|
ISO_WANTED=1
|
|
|
|
else
|
|
|
|
ISO_WANTED=0
|
|
|
|
fi
|
2008-12-05 08:08:16 -01:00
|
|
|
if [ "$MAXJIGDOS"x = ""x ] || [ "$MAXJIGDOS" = "all" ] || \
|
|
|
|
[ "$MAXJIGDOS" = "ALL" ] || [ "$n" -le "$MAXJIGDOS" ] ; then
|
2008-09-10 22:16:18 +00:00
|
|
|
JIGDO_WANTED=1
|
|
|
|
else
|
|
|
|
JIGDO_WANTED=0
|
|
|
|
fi
|
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
# Actually make the ISO/jigdo images. Long command lines
|
|
|
|
# here... :-(
|
|
|
|
CMD=
|
2008-09-10 22:16:18 +00:00
|
|
|
if [ $JIGDO_WANTED = 0 ] && [ $ISO_WANTED = 1 ] ; then
|
|
|
|
|
2008-12-05 08:08:13 -01:00
|
|
|
CMD="$MKISOFS $MKISOFS_OPTS -V '$volid' \
|
|
|
|
-o $OUT/$OUTFILE.iso $opts $dirs CD$n"
|
2008-09-10 22:16:18 +00:00
|
|
|
|
|
|
|
elif [ $JIGDO_WANTED = 1 ] && [ $ISO_WANTED = 1 ] ; then
|
|
|
|
|
2008-12-05 08:08:13 -01:00
|
|
|
CMD="$MKISOFS $MKISOFS_OPTS -V '$volid' \
|
2008-09-10 22:16:18 +00:00
|
|
|
-o $OUT/$OUTFILE.iso \
|
|
|
|
-jigdo-jigdo $OUT/$OUTFILE.jigdo \
|
|
|
|
-jigdo-template $OUT/$OUTFILE.template \
|
|
|
|
-jigdo-map Debian=$MIRROR/ \
|
|
|
|
-jigdo-exclude boot$n \
|
|
|
|
-md5-list $DIR/md5-check \
|
2008-12-05 08:08:13 -01:00
|
|
|
$JIGDO_OPTS $opts $dirs CD$n"
|
2008-09-10 22:16:18 +00:00
|
|
|
|
|
|
|
elif [ $JIGDO_WANTED = 1 ] && [ $ISO_WANTED = 0 ] ; then
|
|
|
|
|
2008-12-05 08:08:13 -01:00
|
|
|
CMD="$MKISOFS $MKISOFS_OPTS -V '$volid' \
|
2008-09-10 22:16:18 +00:00
|
|
|
-o /dev/null \
|
|
|
|
-jigdo-jigdo $OUT/$OUTFILE.jigdo \
|
|
|
|
-jigdo-template $OUT/$OUTFILE.template \
|
|
|
|
-jigdo-map Debian=$MIRROR/ \
|
|
|
|
-jigdo-exclude boot$n \
|
|
|
|
-md5-list $DIR/md5-check \
|
2008-12-05 08:08:13 -01:00
|
|
|
$JIGDO_OPTS $opts $dirs CD$n"
|
2008-09-10 22:16:18 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
echo "Neither jigdo nor iso wanted for CD$n"
|
|
|
|
fi
|
2008-12-05 08:08:16 -01:00
|
|
|
if [ "$CMD" ]; then
|
|
|
|
echo $CMD
|
|
|
|
echo $CMD > CD$n/.disk/mkisofs
|
|
|
|
eval "$CMD"
|
|
|
|
fi
|
2005-12-08 21:55:19 -01:00
|
|
|
|
2008-12-05 08:08:16 -01:00
|
|
|
# If we've made jigdo files, tweak them with extra info now
|
|
|
|
if [ "$JIGDO_WANTED" = 1 ] ; then
|
|
|
|
$JIGDO_CLEANUP $OUT/$OUTFILE.jigdo \
|
|
|
|
$OUTFILE.iso $DIR/CD$n \
|
|
|
|
"`echo "$JIGDOTEMPLATEURL" | sed -e 's|%ARCH%|$ARCH|g'`$OUTFILE.template" \
|
|
|
|
"$DISKINFO" \
|
|
|
|
$JIGDOFALLBACKURLS
|
|
|
|
fi
|
2005-12-08 21:55:19 -01:00
|
|
|
done
|