From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH] runqemu: set memory size to 256M for most qemu machines
Date: Mon, 2 Sep 2013 11:35:14 +0100 [thread overview]
Message-ID: <1378118114-22820-1-git-send-email-paul.eggleton@linux.intel.com> (raw)
Set memory size to 256M for qemuarm, qemux86, qemux86-64, qemumips,
qemumips64, and qemuppc.
This allows the smart automated tests to run on machines with a GUI
environment (such as Sato) running at the same time, for which 128M is
too limiting. Setting this in runqemu allows users manually using
runqemu to avoid the same out-of-memory issues under similar conditions
using smart, on-target compilation or other uses.
Fixes [YOCTO #5045].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
scripts/runqemu-internal | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index f9d8728..485119f 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -42,22 +42,22 @@ if [ ! -z "$mem_set" ] ; then
else
case "$MACHINE" in
"qemux86")
- mem_size=128
+ mem_size=256
;;
"qemux86-64")
- mem_size=128
+ mem_size=256
;;
"qemuarm")
- mem_size=128
+ mem_size=256
;;
"qemumicroblaze")
mem_size=64
;;
"qemumips"|"qemumips64")
- mem_size=128
+ mem_size=256
;;
"qemuppc")
- mem_size=128
+ mem_size=256
;;
"qemush4")
mem_size=1024
--
1.8.1.2
reply other threads:[~2013-09-02 10:35 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1378118114-22820-1-git-send-email-paul.eggleton@linux.intel.com \
--to=paul.eggleton@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox