diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-05 15:27:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-06 17:14:04 +0000 |
commit | 67511eda71affb6a0c9bfab37f59a53d35ac30c0 (patch) | |
tree | dec84bae18d2efc404a160239c9490557e580fa5 | |
parent | f3cce6ad511c1dc0c574c141544cb51519a465e0 (diff) | |
download | poky-67511eda71affb6a0c9bfab37f59a53d35ac30c0.tar.gz |
sstate: Drop obsolete check in hash validation
Now this function has a summary parameter we can drop this check.
It could well be why the mysterious "locked sigs" selftest fails
intermittently if this function were called with a single hash
to check.
[YOCTO #13605] (with luck)
(From OE-Core rev: 02aabe0e59f73bf206d9bada1e7089832ceed254)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/sstate.bbclass | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 0beeb33707..c73c3b42a7 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -966,10 +966,6 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True, | |||
966 | if len(tasklist) >= min_tasks: | 966 | if len(tasklist) >= min_tasks: |
967 | bb.event.fire(bb.event.ProcessFinished(msg), d) | 967 | bb.event.fire(bb.event.ProcessFinished(msg), d) |
968 | 968 | ||
969 | # Likely checking an individual task hash again for multiconfig sharing of sstate tasks so skip reporting | ||
970 | if len(sq_data['hash']) == 1: | ||
971 | return found | ||
972 | |||
973 | inheritlist = d.getVar("INHERIT") | 969 | inheritlist = d.getVar("INHERIT") |
974 | if "toaster" in inheritlist: | 970 | if "toaster" in inheritlist: |
975 | evdata = {'missed': [], 'found': []}; | 971 | evdata = {'missed': [], 'found': []}; |