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:
parent
0604ab3465
commit
c0d8fa8578
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user