diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index 2042a3500..5e12811b3 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -43,7 +43,7 @@ int main(int argc, char *argv[]) char commandstring[STRING_SIZE]; char mkfscommand[STRING_SIZE]; char *fstypes[] = { "Reiser4", "ReiserFS", "ext3", NULL }; - int fstype = REISER4; + int fstype = REISERFS; int choice; int i; int found = 0; @@ -107,6 +107,7 @@ int main(int argc, char *argv[]) mysystem("/sbin/modprobe generic"); mysystem("/sbin/modprobe ide-cd"); mysystem("/sbin/modprobe ide-disk"); + mysystem("/sbin/modprobe sata_via"); mysystem("/sbin/modprobe uhci-hcd"); mysystem("/sbin/modprobe ohci-hcd"); mysystem("/sbin/modprobe ehci-hcd"); @@ -256,7 +257,7 @@ int main(int argc, char *argv[]) ctr[TR_CANCEL], NULL); } else { rc = 1; - fstype = REISER4; // Reiser4 is our standard filesystem. Love it or shut up! + fstype = REISERFS; } if (rc == 2) goto EXIT;