summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorchmr <chmr@FreeBSD.org>1993-10-16 09:12:08 +0000
committerchmr <chmr@FreeBSD.org>1993-10-16 09:12:08 +0000
commit81d35d6d98ccc9ae326a9d8dd1efd7bc491b9463 (patch)
tree3ce982f4730e9d27464d658e1c3b4058f5cadd2c /etc
parent8a80887e1ae52638d3af686189b0d209a83db5e7 (diff)
downloadFreeBSD-src-81d35d6d98ccc9ae326a9d8dd1efd7bc491b9463.zip
FreeBSD-src-81d35d6d98ccc9ae326a9d8dd1efd7bc491b9463.tar.gz
Allow install floppy to be placed in the B: drive.
Diffstat (limited to 'etc')
-rwxr-xr-xetc/etc.i386/inst1.install9
1 files changed, 8 insertions, 1 deletions
diff --git a/etc/etc.i386/inst1.install b/etc/etc.i386/inst1.install
index 46fbf63..367a5e6 100755
--- a/etc/etc.i386/inst1.install
+++ b/etc/etc.i386/inst1.install
@@ -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
OpenPOWER on IntegriCloud