]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
Changed default fs to reiserfs added module for via sata detection
authorManiacikarus <maniacikarus@ipfire.org>
Fri, 5 Sep 2008 16:50:53 +0000 (18:50 +0200)
committerManiacikarus <maniacikarus@ipfire.org>
Fri, 5 Sep 2008 16:50:53 +0000 (18:50 +0200)
src/install+setup/install/main.c

index 2042a350006ff6a8b5be57ff992fa122bd2038df..5e12811b3397d8b9746ed9d54181954420b2e3a3 100644 (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;