]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
installer: increase size of root partition.
authorArne Fitzenreiter <arne_f@ipfire.org>
Fri, 23 May 2014 20:16:17 +0000 (22:16 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Fri, 23 May 2014 20:16:17 +0000 (22:16 +0200)
src/install+setup/install/main.c

index e61f94dab54c59f0622ef09d144f25d6c8999562..db7a6cc72af6f2687fc7553637381299ffed7f46 100644 (file)
@@ -321,10 +321,10 @@ int main(int argc, char *argv[])
                swap_file = memory / 4;
        
   /* Calculating Root-Size dependend of Max Disk Space */
-  if ( disk < 756 )
-               root_partition = 200;
-       else if ( disk >= 756 && disk <= 3072 )
-               root_partition = 512;
+  if ( disk < 2048 )
+               root_partition = 1024;
+       else if ( disk >= 2048 && disk <= 3072 )
+               root_partition = 1536;
        else 
                root_partition = 2048;