summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2019-10-17 11:08:12 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-11-29 11:26:12 +0000
commite0ce87bf85a43e8e4306dedc6e91f6bed4dd6740 (patch)
treef6fa003c4db727157bde8ab0a3bb3aad3dfaa8d5 /bitbake
parent25a17f0346ab05b3212bb280e4a8b622bcf99bce (diff)
downloadpoky-e0ce87bf85a43e8e4306dedc6e91f6bed4dd6740.tar.gz
bitbake: runqueue.py: not show warning for deferred multiconfig task
When follow the instructions of multiconfig from Yocto dev manual that set in core-image-sato recipe: do_image[mcdepends] = "multiconfig:x86:arm:core-image-minimal:do_rootfs" it show too many annoying warnings look like: | WARNING: Deferring mc:x86:virtual:native:/buildarea6/kkang/poky/meta/recipes-support/libxslt/libxslt_1.1.33.bb:do_populate_sysroot | after mc:arm: virtual:native:/buildarea6/kkang/poky/meta/recipes-support/libxslt/libxslt_1.1.33.bb:do_populate_sysroot Treat them as infomations rather than warnings. (Bitbake rev: 0fb4b5153237af4a13b2c65711ab798b0de06c2f) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 485d9341f5..bd7f03f981 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2767,7 +2767,7 @@ def update_scenequeue_data(tids, sqdata, rqdata, rq, cooker, stampcache, sqrq, s
2767 sqdata.hashes[h] = tid 2767 sqdata.hashes[h] = tid
2768 else: 2768 else:
2769 sqrq.sq_deferred[tid] = sqdata.hashes[h] 2769 sqrq.sq_deferred[tid] = sqdata.hashes[h]
2770 bb.warn("Deferring %s after %s" % (tid, sqdata.hashes[h])) 2770 bb.note("Deferring %s after %s" % (tid, sqdata.hashes[h]))
2771 2771
2772 2772
2773class TaskFailure(Exception): 2773class TaskFailure(Exception):