From: ms Date: Sat, 25 Aug 2007 21:44:14 +0000 (+0000) Subject: Diskgroessen angepasst. X-Git-Tag: v2.3-beta1~433 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58c7871aa8b67eda376f39e9152d4ee81f7d4d54;p=ipfire-2.x.git Diskgroessen angepasst. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@832 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index ca7e137355..c373e58bdd 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -354,7 +354,7 @@ int main(int argc, char *argv[]) /* Calculating Swap-Size dependend of Ram Size */ if (memory < 128) swap_file = 32; - else if (memory > 1024) + else if (memory >= 1024) swap_file = 512; else swap_file = memory; @@ -362,7 +362,7 @@ int main(int argc, char *argv[]) /* Calculating Root-Size dependend of Max Disk Space */ if ( disk < 1024 ) root_partition = 256; - else if ( disk > 1024 && disk < 3072 ) + else if ( disk >= 1024 && disk <= 3072 ) root_partition = 512; else root_partition = 2048; @@ -378,7 +378,7 @@ int main(int argc, char *argv[]) if ( (!unattended) && (((disk - (root_partition + swap_file + boot_partition)) < 256 ) && ((disk - (root_partition + boot_partition)) > 256)) ) { rc = newtWinChoice(title, ctr[TR_CONTINUE_NO_SWAP], ctr[TR_OK], ctr[TR_CANCEL]); } - else if (disk - (root_partition + swap_file + boot_partition) > 256) { + else if (disk - (root_partition + swap_file + boot_partition) >= 256) { } else {