* [PATCH] runqueue/siggen: Pass in commandline options to dump_sigs()
@ 2014-03-26 13:47 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2014-03-26 13:47 UTC (permalink / raw)
To: bitbake-devel
This allows the commandline options to be processed in the dump signature
code.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 423b03c..42b6c48 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -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
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index a54357a..a6d2859 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-26 13:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-26 13:47 [PATCH] runqueue/siggen: Pass in commandline options to dump_sigs() Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.