mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
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>
This commit is contained in:
@@ -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': []};
|
||||
|
||||
Reference in New Issue
Block a user