mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
lib/sstatesig: skip shared_workdir when checking locked sigs
do_shared_workdir is not a proper sstate task, it always reruns if needed, so special-case it in warnings when checking locked sigs. (From OE-Core rev: 4b08f982a2b15bff9092f60f7957301bb2d2108b) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
142bad3615
commit
9dca5c8426
@@ -194,6 +194,8 @@ class SignatureGeneratorOEBasicHash(bb.siggen.SignatureGeneratorBasicHash):
|
|||||||
if task not in ret:
|
if task not in ret:
|
||||||
for pn in self.lockedsigs:
|
for pn in self.lockedsigs:
|
||||||
if sq_hash[task] in self.lockedsigs[pn].itervalues():
|
if sq_hash[task] in self.lockedsigs[pn].itervalues():
|
||||||
|
if sq_task[task] == 'do_shared_workdir':
|
||||||
|
continue
|
||||||
self.mismatch_msgs.append("Locked sig is set for %s:%s (%s) yet not in sstate cache?"
|
self.mismatch_msgs.append("Locked sig is set for %s:%s (%s) yet not in sstate cache?"
|
||||||
% (pn, sq_task[task], sq_hash[task]))
|
% (pn, sq_task[task], sq_hash[task]))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user