summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-02-11 21:47:54 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-14 11:20:55 +0000
commitc6a243dbb2708ecc0cca722c273d56cbbb24d918 (patch)
treec0cf3dad355d0b97789d9c27c70d41041b4dc451 /meta/conf
parent715c9e3ad6ab4200cff4895ea3fa09b3044db2a3 (diff)
downloadpoky-c6a243dbb2708ecc0cca722c273d56cbbb24d918.tar.gz
image_types.bbclass: Set memory usage limit and CPU threads for xz
when building with opkg backend and huge packages e.g. chromium/llvm all going in parallel, memory pressure causes xz to catapult with do_package_write_ipk: Failed to create package, opkg-build failed with: xz: (stdin): Cannot allocate memory since there are many tasks going on in parallel, xz adds to memory pressure and it wants it all, put an upper limit for memory xz can use We add a variable XZ_MAXRAM with 30% of RAM limit and can be customized if builders have more memory one can set it like XZ_DEFAULTS = "-M 0 -T 0" (From OE-Core rev: 28b277a93a34bba033d9d0d9f3227c9453efd384) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 21fd93e58d..6e063dc14d 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -791,6 +791,9 @@ BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
791# Default to setting automatically based on cpu count 791# Default to setting automatically based on cpu count
792PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}" 792PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
793 793
794# Default parallelism and resource usage for xz
795XZ_DEFAULTS ?= "--memlimit=50% --threads=${@oe.utils.cpu_count()}"
796
794################################################################## 797##################################################################
795# Magic Cookie for SANITY CHECK 798# Magic Cookie for SANITY CHECK
796################################################################## 799##################################################################