According to jhb, the alpha bootstrap code depends on the root

filesystem using a block size of 8192.  Since this seems unlikely to
be fixed soon (specifically in time for 4.5-RELEASE on the RELENG_4
branch), fall back to the old default block and frag sizes of 8192 and
1024 in sysinstall on the alpha.

Reported by:	jhb
This commit is contained in:
Sheldon Hearn 2002-01-07 12:25:30 +00:00
parent 0604ab3465
commit c0d8fa8578
2 changed files with 8 additions and 0 deletions

View File

@ -1121,7 +1121,11 @@ installVarDefaults(dialogMenuItem *self)
variable_set2(SYSTEM_STATE, "update", 0);
else
variable_set2(SYSTEM_STATE, "init", 0);
#ifdef __alpha__
variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024", 0);
#else
variable_set2(VAR_NEWFS_ARGS, "-b 16384 -f 2048", 0);
#endif
variable_set2(VAR_CONSTERM, "NO", 0);
return DITEM_SUCCESS;
}

View File

@ -1121,7 +1121,11 @@ installVarDefaults(dialogMenuItem *self)
variable_set2(SYSTEM_STATE, "update", 0);
else
variable_set2(SYSTEM_STATE, "init", 0);
#ifdef __alpha__
variable_set2(VAR_NEWFS_ARGS, "-b 8192 -f 1024", 0);
#else
variable_set2(VAR_NEWFS_ARGS, "-b 16384 -f 2048", 0);
#endif
variable_set2(VAR_CONSTERM, "NO", 0);
return DITEM_SUCCESS;
}