Fix use of ${VAR:-default} construct; it doesn't seem to like
substitutions in the VAR part.
This commit is contained in:
parent
348a314e2b
commit
01ae554a2c
|
@ -49,13 +49,14 @@ KTYPE[8]=""
|
||||||
|
|
||||||
# Show user what is going on.
|
# Show user what is going on.
|
||||||
#
|
#
|
||||||
echo "Using ${${KTYPE[$NN]}:-vanilla} boot-disks image on CD$N"
|
THISTYPE=${KTYPE[$NN]}
|
||||||
|
echo "Using ${THISTYPE:-vanilla} boot-disks image on CD$N"
|
||||||
|
|
||||||
# Put boot images on CD1...CD(N)
|
# Put boot images on CD1...CD(N)
|
||||||
#
|
#
|
||||||
:> $N.mkisofs_opts
|
:> $N.mkisofs_opts
|
||||||
mkdir -p boot$N/boot
|
mkdir -p boot$N/boot
|
||||||
cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/${KTYPE[$NN]}/rescue.bin boot$N/boot/
|
cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/${THISTYPE}/rescue.bin boot$N/boot/
|
||||||
|
|
||||||
echo -n "-J -b boot/rescue.bin " > $N.mkisofs_opts
|
echo -n "-J -b boot/rescue.bin " > $N.mkisofs_opts
|
||||||
|
|
||||||
|
@ -78,13 +79,13 @@ if [ "$MULTIBOOT" = "yes" ] ; then
|
||||||
echo "Adding additional boot images to CD1"
|
echo "Adding additional boot images to CD1"
|
||||||
|
|
||||||
for i in 2 3 4 ; do
|
for i in 2 3 4 ; do
|
||||||
|
THISTYPE=${KTYPE[$i]}
|
||||||
# first copy/link the next boot block to the disk.
|
# first copy/link the next boot block to the disk.
|
||||||
ln CD1/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/${KTYPE[$i]}/rescue.bin boot$N/boot/${${KTYPE[$i]}:-vanilla}.bin
|
ln CD1/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/$THISTYPE/rescue.bin boot$N/boot/${THISTYPE:-vanilla}.bin
|
||||||
# then the eltorito-alt-boot cmd to mkisofs_opts
|
# then the eltorito-alt-boot cmd to mkisofs_opts
|
||||||
echo -n "-eltorito-alt-boot " >> $N.mkisofs_opts
|
echo -n "-eltorito-alt-boot " >> $N.mkisofs_opts
|
||||||
# then copy the mkisofs command for this image to the mkisofs_opts
|
# then copy the mkisofs command for this image to the mkisofs_opts
|
||||||
echo -n "-b boot/${${KTYPE[$i]}:-vanilla}.bin " >> $N.mkisofs_opts
|
echo -n "-b boot/${THISTYPE:-vanilla}.bin " >> $N.mkisofs_opts
|
||||||
|
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue