diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1994-04-18 04:25:21 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1994-04-18 04:25:21 +0000 |
commit | a122f03302985c341fdf876c5b6c9025f5f2e9f1 (patch) | |
tree | 31810409d5a322372e2db367a5c86b9b73eba9d3 /etc | |
parent | c115841180f5fd2f2db992eae72b4dbf1a902513 (diff) | |
download | FreeBSD-src-a122f03302985c341fdf876c5b6c9025f5f2e9f1.zip FreeBSD-src-a122f03302985c341fdf876c5b6c9025f5f2e9f1.tar.gz |
>From BETA_1_1 branch
----------------------------
revision 1.1.2.1
date: 1994/04/10 20:20:25; author: rgrimes; state: Exp; lines: +3 -3
Use /dev/fd0 instead of /dev/fd0a. Add mounting of mcd1 if mcd0
fails when searching for a cdrom drive.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.i386/cdinst1.install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/etc.i386/cdinst1.install b/etc/etc.i386/cdinst1.install index bf7dde8..ff0a4e2 100644 --- a/etc/etc.i386/cdinst1.install +++ b/etc/etc.i386/cdinst1.install @@ -1,7 +1,7 @@ #!/bin/sh # cd install floppy disk /install script # -# $Id$ +# $Id: cdinst1.install,v 1.1.2.1 1994/04/10 20:20:25 rgrimes Exp $ # ${OPSYSTEM}, the mounting of the cdrom drive, and the path are all # setup by .profile @@ -420,8 +420,8 @@ y*|Y*) ;; esac -mount -u /dev/fd0a / || { - if mount -u /dev/fd1a / ; then +mount -u /dev/fd0 / || { + if mount -u /dev/fd1 / ; 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." |