svn commit: r188438 - head/release/scripts

Ken Smith kensmith at FreeBSD.org
Tue Feb 10 07:07:57 PST 2009


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}


More information about the svn-src-head mailing list