From 41494fa0795e2ec4f853b656fa4788c79341c9a9 Mon Sep 17 00:00:00 2001 From: Ollivier Robert Date: Sat, 20 Oct 2001 09:28:53 +0000 Subject: [PATCH] Remove the ``-c 22'' option from newfs command line. Changes in newfs(8) makes that obsolete. The jury^W-arch is still out about the block and fragment sizes so I'll that for later. Reminded by: obrien MFC after: 2 days --- 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 208f4ef488f..83357b247eb 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -1077,7 +1077,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 -c 22", 0); + variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024", 0); variable_set2(VAR_CONSTERM, "NO", 0); return DITEM_SUCCESS; } diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 208f4ef488f..83357b247eb 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -1077,7 +1077,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 -c 22", 0); + variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024", 0); variable_set2(VAR_CONSTERM, "NO", 0); return DITEM_SUCCESS; }