Commit a small change to allow FreeBSD to install on a different drive.

The kernel configs already support this, so with a boot floppy or a utility
like booteasy, the user should be able to install and boot off the second drive.
Hurrah.
This commit is contained in:
Jordan K. Hubbard 1994-06-20 06:05:16 +00:00
parent 2e2df8360c
commit f150b420d2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1761
2 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
# cd install floppy disk /install script
#
# $Id: cdinst1.install,v 1.2 1994/04/18 04:25:21 rgrimes Exp $
# $Id: cdinst1.install,v 1.3 1994/05/03 10:11:47 rgrimes Exp $
# ${OPSYSTEM}, the mounting of the cdrom drive, and the path are all
# setup by .profile
@ -474,6 +474,11 @@ sc*|SC*)
type=ST506
;;
esac
echo -n "Install onto which drive [$drivename] "
read resp junk
drivename=${resp:-${drivename}}
echo
echo "Disk $drivename is of device type $drivetype."
if [ ! "$partition" ]; then
echo
echo "Please wait. Examining device /dev/r${drivename}d..."

View File

@ -481,7 +481,11 @@ sc*|SC*)
;;
esac
echo
echo "Disk is of device type $drivetype."
echo -n "Install onto which drive [$drivename] "
read resp junk
drivename=${resp:-${drivename}}
echo
echo "Disk $drivename is of device type $drivetype."
if [ ! "$partition" ]; then
echo
echo "Examining device /dev/r${drivename}d..."