Do a better job of finding the default root device.

This commit is contained in:
Jordan K. Hubbard 1999-02-15 02:22:24 +00:00
parent 1ce137be82
commit a83aea7558
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44035

View File

@ -38,11 +38,7 @@ pseudo-device splash \
/' -e 's/sd\([0-9]\)/da\1/' -e 's/st\([0-9]\)/sa\1/' < ${KERN}.bkup > ${KERN}
fi
if [ -r /dev/wd0a ]; then
ROOTDEV=wd0
else
ROOTDEV=sd0
fi
ROOTDEV=`awk '$2~/\/$/{print substr($1, 6, 3)}' /etc/fstab`
echo -n "What is your boot device (e.g. wd0 or sd0)? [${ROOTDEV}] "
read answer
if [ -n "${answer}" ]; then