From: Arne Fitzenreiter Date: Fri, 23 May 2014 20:16:17 +0000 (+0200) Subject: installer: increase size of root partition. X-Git-Tag: v2.15-core79~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b5d2be5d9b51c463e8892db74afb2372123199ae;p=ipfire-2.x.git installer: increase size of root partition. --- diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index e61f94dab5..db7a6cc72a 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -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;