Mirror the newfs(8) defaults change I made in rev 1.33 of newfs.c where

I made `22' the default number of cylinders per group.
This commit is contained in:
obrien 2001-03-27 17:05:23 +00:00
parent 6b679f791a
commit b45c7e6fc5
2 changed files with 2 additions and 2 deletions

View File

@ -1073,7 +1073,7 @@ installVarDefaults(dialogMenuItem *self)
variable_set2(SYSTEM_STATE, "update", 0); variable_set2(SYSTEM_STATE, "update", 0);
else else
variable_set2(SYSTEM_STATE, "init", 0); variable_set2(SYSTEM_STATE, "init", 0);
variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024", 0); variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024 -c 22", 0);
return DITEM_SUCCESS; return DITEM_SUCCESS;
} }

View File

@ -1073,7 +1073,7 @@ installVarDefaults(dialogMenuItem *self)
variable_set2(SYSTEM_STATE, "update", 0); variable_set2(SYSTEM_STATE, "update", 0);
else else
variable_set2(SYSTEM_STATE, "init", 0); variable_set2(SYSTEM_STATE, "init", 0);
variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024", 0); variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024 -c 22", 0);
return DITEM_SUCCESS; return DITEM_SUCCESS;
} }