Date: Tue, 10 Feb 2009 15:07:57 +0000 (UTC) From: Ken Smith <kensmith@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r188438 - head/release/scripts Message-ID: <200902101507.n1AF7v9p096808@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kensmith Date: Tue Feb 10 15:07:57 2009 New Revision: 188438 URL: http://svn.freebsd.org/changeset/base/188438 Log: 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 Modified: head/release/scripts/doFS.sh Modified: head/release/scripts/doFS.sh ============================================================================== --- head/release/scripts/doFS.sh Tue Feb 10 15:03:08 2009 (r188437) +++ head/release/scripts/doFS.sh Tue Feb 10 15:07:57 2009 (r188438) @@ -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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902101507.n1AF7v9p096808>