check and install disk image

This commit is contained in:
Kenshi Muto 2004-09-18 15:31:10 +00:00
parent 20c78d730b
commit f5f49b5527
1 changed files with 3 additions and 1 deletions

View File

@ -159,10 +159,12 @@ EOF
# Only disk one gets the extra files installed # Only disk one gets the extra files installed
if [ "$NN" = "1" ]; then if [ "$NN" = "1" ]; then
# populate the install directory as well # populate the install directory as well
for disk in $DISK_IMAGES; do for disk in $DISK_IMAGES $EXTRA_DISK_IMAGES; do
if [ -e "$disk" ]; then
dir=$(dirname $disk) dir=$(dirname $disk)
mkdir -p $CDDIR/install/$dir mkdir -p $CDDIR/install/$dir
cp -lf $disk $CDDIR/install/$dir cp -lf $disk $CDDIR/install/$dir
fi
done done
# Include Smart Boot Manager image for people where isolinux fails # Include Smart Boot Manager image for people where isolinux fails