svn commit: r201392 - head/usr.sbin/sysinstall

Takahashi Yoshihiro nyan at FreeBSD.org
Sat Jan 2 12:42:34 UTC 2010


Author: nyan
Date: Sat Jan  2 12:42:33 2010
New Revision: 201392
URL: http://svn.freebsd.org/changeset/base/201392

Log:
  Use UFS2 as default filesystem.  Now pc98's boot2 works for UFS2.
  
  MFC after:	2 week.

Modified:
  head/usr.sbin/sysinstall/label.c

Modified: head/usr.sbin/sysinstall/label.c
==============================================================================
--- head/usr.sbin/sysinstall/label.c	Sat Jan  2 12:37:54 2010	(r201391)
+++ head/usr.sbin/sysinstall/label.c	Sat Jan  2 12:42:33 2010	(r201392)
@@ -384,11 +384,7 @@ new_part(PartType type, char *mpoint, Bo
 	pi->newfs_data.newfs_ufs.acls = FALSE;
 	pi->newfs_data.newfs_ufs.multilabel = FALSE;
 	pi->newfs_data.newfs_ufs.softupdates = strcmp(mpoint, "/");
-#ifdef PC98
-	pi->newfs_data.newfs_ufs.ufs1 = TRUE;
-#else
 	pi->newfs_data.newfs_ufs.ufs1 = FALSE;
-#endif
     }
 
     return pi;


More information about the svn-src-head mailing list