summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorkensmith <kensmith@FreeBSD.org>2009-02-10 15:07:57 +0000
committerkensmith <kensmith@FreeBSD.org>2009-02-10 15:07:57 +0000
commit48ee5a0f3ce08d82820964ceeff1d7a2f9abde88 (patch)
tree43df5311045bcfb529f86755d635424346a76671 /release
parentd60864332521c02a11f79f0443ac67037776fee2 (diff)
downloadFreeBSD-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.sh4
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}
OpenPOWER on IntegriCloud