[oe-commits] [bitbake] branch master updated: runqueue.py: not show warning for deferred multiconfig task

git at git.openembedded.org git at git.openembedded.org
Fri Nov 29 11:26:44 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository bitbake.

The following commit(s) were added to refs/heads/master by this push:
     new 0fb4b51  runqueue.py: not show warning for deferred multiconfig task
0fb4b51 is described below

commit 0fb4b5153237af4a13b2c65711ab798b0de06c2f
Author: Kai Kang <kai.kang at windriver.com>
AuthorDate: Thu Oct 17 11:08:12 2019 +0800

    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.
    
    Signed-off-by: Kai Kang <kai.kang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 485d934..bd7f03f 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2767,7 +2767,7 @@ def update_scenequeue_data(tids, sqdata, rqdata, rq, cooker, stampcache, sqrq, s
                 sqdata.hashes[h] = tid
             else:
                 sqrq.sq_deferred[tid] = sqdata.hashes[h]
-                bb.warn("Deferring %s after %s" % (tid, sqdata.hashes[h]))
+                bb.note("Deferring %s after %s" % (tid, sqdata.hashes[h]))
 
 
 class TaskFailure(Exception):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list