summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-01-27 15:19:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-28 11:07:54 +0000
commitabc308a38c6e37afcaf507858a6578c10438c5d8 (patch)
tree7864358f2e39be5e2fc57b3060358c1a42d697b8
parentfec25d9bfd7119d6ccccadd5109b8a09683fba5e (diff)
downloadopenembedded-core-abc308a38c6e37afcaf507858a6578c10438c5d8.tar.gz
core-image-sato-sdk-ptest: use 2G of RAM
Particularly, 1G wasn't enough for lttng-tools ptests as half of that went to /tmp, and lttng-tools needs more. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-sato/images/core-image-sato-sdk-ptest.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb b/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb
index ff297fe324..85b5adbc69 100644
--- a/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb
+++ b/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb
@@ -18,4 +18,5 @@ IMAGE_OVERHEAD_FACTOR = "1.0"
IMAGE_ROOTFS_EXTRA_SPACE = "1124288"
# ptests need more memory than standard to avoid the OOM killer
-QB_MEM = "-m 1024"
+# also lttng-tools needs /tmp that has at least 1G
+QB_MEM = "-m 2048"