]> code.ossystems Code Review - openembedded-core.git/commitdiff
core-image-sato-sdk-ptest: use 2G of RAM
authorAlexander Kanavin <alex.kanavin@gmail.com>
Mon, 27 Jan 2020 14:19:06 +0000 (15:19 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 28 Jan 2020 11:07:54 +0000 (11:07 +0000)
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>
meta/recipes-sato/images/core-image-sato-sdk-ptest.bb

index ff297fe324ccfe0ca5f5887ea1e616af3490adfd..85b5adbc693e52c523d4000c2aceea7465a4af4b 100644 (file)
@@ -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"