summaryrefslogtreecommitdiffstats
path: root/bin/bitbake-worker
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-09-05 10:34:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-09-11 17:30:18 +0100
commitcf2d642052979d236185c5b8ca2c5478c06e62ae (patch)
tree7204e20516d29e268ea64e38d0ab9c35cffc6fbc /bin/bitbake-worker
parenta9439b136f55f3f0e80ff053cd3b159da69ba362 (diff)
downloadbitbake-contrib-cf2d642052979d236185c5b8ca2c5478c06e62ae.tar.gz
siggen/runqueue/bitbake-worker: Improve siggen data transfer interface
We need to transfer some of the siggen data from the core/cooker into the worker instances. There was a partial API created for this but its ugly and its not possible to extend it from the siggen class. This patch completes the interface/abstraction for the data and means the class can extend/customise it in any siggen class. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/bitbake-worker')
-rwxr-xr-xbin/bitbake-worker2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake-worker b/bin/bitbake-worker
index c7992f7e8..b2935f6ec 100755
--- a/bin/bitbake-worker
+++ b/bin/bitbake-worker
@@ -168,7 +168,7 @@ def fork_off_task(cfg, data, workerdata, fn, task, taskname, appends, taskdepdat
data.setVar("BUILDNAME", workerdata["buildname"])
data.setVar("DATE", workerdata["date"])
data.setVar("TIME", workerdata["time"])
- bb.parse.siggen.set_taskdata(workerdata["hashes"], workerdata["hash_deps"], workerdata["sigchecksums"])
+ bb.parse.siggen.set_taskdata(workerdata["sigdata"])
ret = 0
try:
the_data = bb.cache.Cache.loadDataFull(fn, appends, data)