Changed default fs to reiserfs added module for via sata detection

This commit is contained in:
Maniacikarus
2008-09-05 18:50:53 +02:00
parent c8a726f165
commit cfff20e5b8

View File

@@ -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;