diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-12 13:54:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-15 09:29:59 +0100 |
commit | d04132897c2cf67dff9948ee9c2c42cbae15387a (patch) | |
tree | 580297653d213b851e3e589a878f4dc4d6b12a63 /meta/classes | |
parent | f5c1349308e6451f2ae05e26d65b165da4ce4ca3 (diff) | |
download | poky-d04132897c2cf67dff9948ee9c2c42cbae15387a.tar.gz |
sstate: Add tweak to avoid multiple sstate stats messages
After the recent changes in bitbake to runqueue, we need to recheck sstate validity,
particularly in multiconfig builds where tasks have the same checksum.
Avoid printing summary messages in this case. Also avoid multiple events to toaster
which may not be expecting that at later points in the code.
(From OE-Core rev: 227125b96ad6fb0cf6e259e787d83415993db847)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sstate.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 424acfb155..b604729d84 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -927,6 +927,10 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash, sq_hashfn, d, siginfo=False, *, | |||
927 | 927 | ||
928 | bb.event.fire(bb.event.ProcessFinished(msg), d) | 928 | bb.event.fire(bb.event.ProcessFinished(msg), d) |
929 | 929 | ||
930 | # Likely checking an individual task hash again for multiconfig sharing of sstate tasks so skip reporting | ||
931 | if len(sq_fn) == 1: | ||
932 | return ret | ||
933 | |||
930 | inheritlist = d.getVar("INHERIT") | 934 | inheritlist = d.getVar("INHERIT") |
931 | if "toaster" in inheritlist: | 935 | if "toaster" in inheritlist: |
932 | evdata = {'missed': [], 'found': []}; | 936 | evdata = {'missed': [], 'found': []}; |