This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via b5d2be5d9b51c463e8892db74afb2372123199ae (commit) from 4680b4a38f2e67e64e00b0e59b979610fa44f4d5 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit b5d2be5d9b51c463e8892db74afb2372123199ae Author: Arne Fitzenreiter arne_f@ipfire.org Date: Fri May 23 22:16:17 2014 +0200
installer: increase size of root partition.
-----------------------------------------------------------------------
Summary of changes: src/install+setup/install/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
Difference in files: diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index e61f94d..db7a6cc 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;
hooks/post-receive -- IPFire 2.x development tree