start_new_disc: modifications for etchnhalf:
- drop 'Bin-1' from the volume label; DEBVERSION should be set to '4.0r4-etchnhalf' - set .disk/cd_type to full_cd to allow additional CDs to be scanned
This commit is contained in:
parent
b7889ba80a
commit
1c737966a2
|
@ -38,9 +38,9 @@ if [ $NUM_ARCHES = 1 ] ; then
|
|||
BINARYDISK=1
|
||||
export DISKINFO="Debian GNU/Linux $DEBVERSION \"$CAPCODENAME\" - $OFFICIAL $ARCHES $DISKTYPE Binary-$DISKNUM $BUILD_DATE"
|
||||
if [ $ARCHES = powerpc ] ; then
|
||||
export VOLID="Debian $DEBVERSION ppc Bin-$DISKNUM"
|
||||
export VOLID="Debian $DEBVERSION ppc"
|
||||
else
|
||||
export VOLID="Debian $DEBVERSION $ARCHES Bin-$DISKNUM"
|
||||
export VOLID="Debian $DEBVERSION $ARCHES"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
@ -145,7 +145,13 @@ if [ $DISKNUM = 1 ] ; then
|
|||
fi
|
||||
fi
|
||||
else
|
||||
echo "not_complete" > $CDDIR/.disk/cd_type
|
||||
if [ $DISKTYPE = NETINST ]; then
|
||||
# ATTENTION: Exception for etchnhalf netinst which can be
|
||||
# used as "CD0" for the regular full CD set.
|
||||
echo "full_cd" > $CDDIR/.disk/cd_type
|
||||
else
|
||||
echo "not_complete" > $CDDIR/.disk/cd_type
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ $NUM_ARCHES -gt 1 ]; then
|
||||
|
|
Loading…
Reference in New Issue