From e24c7ced13ea5fb4b954946a751a32c22a0ed8fd Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Tue, 27 Mar 2001 17:05:23 +0000 Subject: [PATCH] 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. --- usr.sbin/sade/install.c | 2 +- usr.sbin/sysinstall/install.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 00f73d379ad..4036892676f 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -1073,7 +1073,7 @@ installVarDefaults(dialogMenuItem *self) variable_set2(SYSTEM_STATE, "update", 0); else 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; } diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 00f73d379ad..4036892676f 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -1073,7 +1073,7 @@ installVarDefaults(dialogMenuItem *self) variable_set2(SYSTEM_STATE, "update", 0); else 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; }