diff options
author | roberto <roberto@FreeBSD.org> | 2001-10-20 09:28:53 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2001-10-20 09:28:53 +0000 |
commit | 6d757ee04c83c073886837db363ab65da13a40d4 (patch) | |
tree | bc6a27f705bede5384624e6d90e02f54b6ba4e27 /usr.sbin/sysinstall/install.c | |
parent | a3a164e4889e163e72fdfc08e59d36d53179e7f9 (diff) | |
download | FreeBSD-src-6d757ee04c83c073886837db363ab65da13a40d4.zip FreeBSD-src-6d757ee04c83c073886837db363ab65da13a40d4.tar.gz |
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
Diffstat (limited to 'usr.sbin/sysinstall/install.c')
-rw-r--r-- | usr.sbin/sysinstall/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 208f4ef..83357b2 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; } |