diff options
author | kensmith <kensmith@FreeBSD.org> | 2009-02-10 15:07:57 +0000 |
---|---|---|
committer | kensmith <kensmith@FreeBSD.org> | 2009-02-10 15:07:57 +0000 |
commit | 48ee5a0f3ce08d82820964ceeff1d7a2f9abde88 (patch) | |
tree | 43df5311045bcfb529f86755d635424346a76671 /release | |
parent | d60864332521c02a11f79f0443ac67037776fee2 (diff) | |
download | FreeBSD-src-48ee5a0f3ce08d82820964ceeff1d7a2f9abde88.zip FreeBSD-src-48ee5a0f3ce08d82820964ceeff1d7a2f9abde88.tar.gz |
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
Diffstat (limited to 'release')
-rw-r--r-- | release/scripts/doFS.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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} |