diff options
author | Tom <tomut@yahoo.com> | 2020-12-31 17:13:52 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-01 23:43:44 +0100 |
commit | 54c66b8f7be392ffb0a41abaaec9500ffad8a8ed (patch) | |
tree | c201c5eb1be119645da69930f5de389ece6914e2 | |
parent | 476f17b3f18234f9d66ba112df77e248a17e2f6f (diff) | |
download | serenity-54c66b8f7be392ffb0a41abaaec9500ffad8a8ed.zip |
Meta: Bump default RAM size to 512MB
Now that we commit memory, we need a lot more physical memory. Physical
memory requirements can be reduced again once we have memory swapping,
which allows the swap area/file to be counted against memory that can
be committed.
-rwxr-xr-x | Meta/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/run.sh b/Meta/run.sh index 01da51aa49..b744af3c38 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -18,7 +18,7 @@ die() { [ -z "$SERENITY_KERNEL_CMDLINE" ] && SERENITY_KERNEL_CMDLINE="hello" -[ -z "$SERENITY_RAM_SIZE" ] && SERENITY_RAM_SIZE=256M +[ -z "$SERENITY_RAM_SIZE" ] && SERENITY_RAM_SIZE=512M [ -z "$SERENITY_QEMU_CPU" ] && SERENITY_QEMU_CPU="max" |