From 48ee5a0f3ce08d82820964ceeff1d7a2f9abde88 Mon Sep 17 00:00:00 2001 From: kensmith Date: Tue, 10 Feb 2009 15:07:57 +0000 Subject: Due to some recent-ish work on GEOM/G_PART the c partition (by tradition the whole disk) isn't available any more since it was redundant. Just use /dev/md0 instead of /dev/md0c to build the filesystem on. Consulted-with: marcel --- release/scripts/doFS.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'release') diff --git a/release/scripts/doFS.sh b/release/scripts/doFS.sh index cb8cb92..99379a9 100644 --- a/release/scripts/doFS.sh +++ b/release/scripts/doFS.sh @@ -73,8 +73,8 @@ dofs_md () { if [ "x${DISKLABEL}" != "x" ] ; then ${DISKLABEL} ${MACHINE} -w ${BOOT} ${MDDEVICE} ${FSLABEL} - newfs -O1 -i ${FSINODE} -o space -m 0 /dev/${MDDEVICE}c - mount /dev/${MDDEVICE}c ${MNT} + newfs -O1 -i ${FSINODE} -o space -m 0 /dev/${MDDEVICE} + mount /dev/${MDDEVICE} ${MNT} else newfs -O1 -i ${FSINODE} -o space -m 0 /dev/${MDDEVICE} mount /dev/${MDDEVICE} ${MNT} -- cgit v1.1