summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2020-12-31 17:13:52 -0700
committerAndreas Kling <kling@serenityos.org>2021-01-01 23:43:44 +0100
commit54c66b8f7be392ffb0a41abaaec9500ffad8a8ed (patch)
treec201c5eb1be119645da69930f5de389ece6914e2
parent476f17b3f18234f9d66ba112df77e248a17e2f6f (diff)
downloadserenity-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-xMeta/run.sh2
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"