Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jul 2003 04:20:13 -0700 (PDT)
From:      Chris Vance <cvance@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 33976 for review
Message-ID:  <200307021120.h62BKDrO028998@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=33976

Change 33976 by cvance@cvance_demo on 2003/07/02 04:19:21

	Tweak the sysinstall program just a bit, default to the UFS2 
	filesystem, and remove options to install "All", since they 
	are unsupported with this release.

Affected files ...

.. //depot/projects/trustedbsd/sebsd/usr.sbin/sysinstall/label.c#2 edit
.. //depot/projects/trustedbsd/sebsd/usr.sbin/sysinstall/menus.c#2 edit

Differences ...

==== //depot/projects/trustedbsd/sebsd/usr.sbin/sysinstall/label.c#2 (text+ko) ====

@@ -337,7 +337,11 @@
     pi->newfs_data.newfs_ufs.acls = FALSE;
     pi->newfs_data.newfs_ufs.multilabel = FALSE;
     pi->newfs_data.newfs_ufs.softupdates = strcmp(mpoint, "/");
-    pi->newfs_data.newfs_ufs.ufs2 = FALSE;
+    /* 
+     * SEBSD/MAC Need to default to ufs2, for label support
+     * and because ufs1 is broken with this installer version
+     */
+    pi->newfs_data.newfs_ufs.ufs2 = TRUE;
 
     return pi;
 }

==== //depot/projects/trustedbsd/sebsd/usr.sbin/sysinstall/menus.c#2 (text+ko) ====

@@ -919,8 +919,6 @@
     "distributions",
     { { "X Exit", "Exit this menu (returning to previous)",
 	checkTrue, dmenuExit, NULL, NULL, '<', '<', '<' },
-      { "All",			"All system sources, binaries and X Window System)",
-	checkDistEverything,	distSetEverything, NULL, NULL, ' ', ' ', ' ' },
       { "Reset",		"Reset selected distribution list to nothing",
 	NULL,			distReset, NULL, NULL, ' ', ' ', ' ' },
       { "4 Developer",		"Full sources, binaries and doc but no games", 
@@ -951,8 +949,6 @@
     NULL,
     { { "X Exit", "Exit this menu (returning to previous)",
 	checkTrue, dmenuExit, NULL, NULL, '<', '<', '<' },
-      { "All",		"All system sources, binaries and X Window System",
-	NULL, distSetEverything, NULL, NULL, ' ', ' ', ' ' },
       { "Reset",	"Reset all of the below",
 	NULL, distReset, NULL, NULL, ' ', ' ', ' ' },
       { " base",	"Binary base distribution (required)",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200307021120.h62BKDrO028998>