bitbake: runqueue/siggen: Pass in commandline options to dump_sigs()

This allows the commandline options to be processed in the dump signature
code.

(Bitbake rev: ef8537a2e9b48f4fe065a165c102935aee2c9029)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2014-03-26 13:47:29 +00:00
parent 774eb753d8
commit 172095e09f
2 changed files with 5 additions and 5 deletions

View File

@ -1040,7 +1040,7 @@ class RunQueue:
if dump:
if 'printdiff' in dump:
invalidtasks = self.print_diffscenetasks()
self.dump_signatures()
self.dump_signatures(dump)
if 'printdiff' in dump:
self.write_diffscenetasks(invalidtasks)
self.state = runQueueComplete
@ -1113,7 +1113,7 @@ class RunQueue:
else:
self.rqexe.finish()
def dump_signatures(self):
def dump_signatures(self, options):
done = set()
bb.note("Reparsing files to collect dependency data")
for task in range(len(self.rqdata.runq_fnid)):
@ -1122,7 +1122,7 @@ class RunQueue:
the_data = bb.cache.Cache.loadDataFull(fn, self.cooker.collection.get_file_appends(fn), self.cooker.data)
done.add(self.rqdata.runq_fnid[task])
bb.parse.siggen.dump_sigs(self.rqdata.dataCache)
bb.parse.siggen.dump_sigs(self.rqdata.dataCache, options)
return

View File

@ -59,7 +59,7 @@ class SignatureGenerator(object):
def invalidate_task(self, task, d, fn):
bb.build.del_stamp(task, d, fn)
def dump_sigs(self, dataCache):
def dump_sigs(self, dataCache, options):
return
class SignatureGeneratorBasic(SignatureGenerator):
@ -251,7 +251,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
pass
raise err
def dump_sigs(self, dataCache):
def dump_sigs(self, dataCache, options):
for fn in self.taskdeps:
for task in self.taskdeps[fn]:
k = fn + "." + task