From b45c7e6fc576c73b3db5f6a02f7cdb6ebbccc2f3 Mon Sep 17 00:00:00 2001 From: obrien 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 00f73d379ad4..4036892676f8 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 00f73d379ad4..4036892676f8 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; }