]> code.ossystems Code Review - openembedded-core.git/commitdiff
core-image-sato: don't use 512MB in qemumips
authorRoss Burton <ross.burton@intel.com>
Thu, 5 Sep 2019 15:56:20 +0000 (16:56 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 6 Sep 2019 07:15:39 +0000 (08:15 +0100)
qemumips doesn't appear to work well with 512MB of RAM and randomly hangs.  As
the bump to 512MB was primarily motivated by the memory needs of virtualised GL
which doesn't work in qemumips currently, drop the memory back to 256MB for
qemumips.

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-sato/images/core-image-sato.bb

index 878e0eaa8d2433e390159bb68f9bfb7453716096..673106eb6d3a15acfde44b497e8c3001c9d998c1 100644 (file)
@@ -12,3 +12,4 @@ TOOLCHAIN_HOST_TASK_append = " nativesdk-intltool nativesdk-glib-2.0"
 TOOLCHAIN_HOST_TASK_remove_task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0"
 
 QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}'
+QB_MEM_qemumips = "-m 256"