Allow install floppy to be placed in the B: drive.

This commit is contained in:
Christoph Robitschko 1993-10-16 09:12:08 +00:00
parent 902e518080
commit 5e53051768
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=612

View File

@ -420,7 +420,14 @@ y*|Y*)
;;
esac
mount -u /dev/fd0a /
mount -u /dev/fd0a / || {
if mount -u /dev/fd1a / ; then
echo "[Please ignore the above error message, that's normal.]"
else
echo "Oh boy, we're in trouble here: Could not mount floppy read-write."
exit 1
fi
}
sync
verified_install=""
while [ ! "$verified_install" ]; do # Begin of Big Loop