PERFORCE change 33976 for review
Chris Vance
cvance at FreeBSD.org
Wed Jul 2 11:20:13 GMT 2003
http://perforce.freebsd.org/chv.cgi?CH=33976
Change 33976 by cvance at 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)",
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list