**** BEGIN LOGGING AT Wed Oct 24 03:00:00 2018 Oct 24 13:39:53 have there been attempts at making the BB_NUM_THREADS variable adaptive to the current CPU load? Oct 24 13:41:01 there are cases where one task is compiling a huge package for example. ideally, in such a case, this task would use all cores. but then you couldnt do parallel OE tasks reliably, because you would need to use -jX with X being the number of threads. Oct 24 13:41:43 so, ideally, bitbake would check if the load still allows for some more tasks to be run in parallel. if so, it would start them, up to a configured maximum. Oct 24 13:41:59 any thoughts? Oct 24 13:47:18 how I can get access to Variable Flag in bitbake shell function? for example I have in .bb VARS="A B"; VAR[A] = "1". VAR[B] = "2". in func() { for V in ${VARS}; do echo "${VAR}[$V]"; done } did't work Oct 24 13:48:44 I can use python inliner {@d.getVarFlag('VAR', 'A', True)}, but instead 'A' I need shell variable $V Oct 24 14:03:07 ramok: that's not possible. inline python (${@}) runs at expansion time, not when the task is run Oct 24 14:03:15 ramok: you'll need to use a python function/task to do that Oct 24 14:52:44 kergoth: yeah. i'm trying to add new feature to already exised function on shell. in meta/classes/image_types.bbclass function multiubi_mkfs() Oct 24 14:54:08 I want make possible build mulivolume ubi image. like 'rootfs' -> /dev/ubi0_0, and 'config' -> /dev/ubi0_1 Oct 24 14:54:43 actually I found workaround. looks little bit wierd, but works Oct 24 15:03:53 config will be like this: http://dpaste.com//25MAS0Q and patch http://dpaste.com//163RRJJ Oct 24 15:06:09 http://dpaste.com//3JS9B83 patch with right aligment **** ENDING LOGGING AT Thu Oct 25 03:00:00 2018