mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-22 15:47:37 +00:00
Allow install floppy to be placed in the B: drive.
This commit is contained in:
parent
902e518080
commit
5e53051768
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=612
@ -420,7 +420,14 @@ y*|Y*)
|
|||||||
;;
|
;;
|
||||||
esac
|
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
|
sync
|
||||||
verified_install=""
|
verified_install=""
|
||||||
while [ ! "$verified_install" ]; do # Begin of Big Loop
|
while [ ! "$verified_install" ]; do # Begin of Big Loop
|
||||||
|
Loading…
Reference in New Issue
Block a user