summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-05 15:27:41 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-06 17:13:42 +0000
commit02aabe0e59f73bf206d9bada1e7089832ceed254 (patch)
treead6fdbd9a9e86a739f2fea9e0c9c13197f8b5cbd /meta/classes/sstate.bbclass
parentbc9402d77a982ff71bd919837b4736f586aa04cf (diff)
downloadopenembedded-core-contrib-02aabe0e59f73bf206d9bada1e7089832ceed254.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) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass4
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,
if len(tasklist) >= min_tasks:
bb.event.fire(bb.event.ProcessFinished(msg), d)
- # Likely checking an individual task hash again for multiconfig sharing of sstate tasks so skip reporting
- if len(sq_data['hash']) == 1:
- return found
-
inheritlist = d.getVar("INHERIT")
if "toaster" in inheritlist:
evdata = {'missed': [], 'found': []};