[oe-commits] Paul Eggleton : runqemu: set memory size to 256M for most qemu machines

git at git.openembedded.org git at git.openembedded.org
Mon Sep 2 16:51:40 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: fe5dfdece98692f8fa731c8d11c907a272266ea5
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=fe5dfdece98692f8fa731c8d11c907a272266ea5

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Mon Sep  2 11:35:14 2013 +0100

runqemu: set memory size to 256M for most qemu machines

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 at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/runqemu-internal |   10 +++++-----
 1 files 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



More information about the Openembedded-commits mailing list