summaryrefslogtreecommitdiffstats
path: root/lib/bb/siggen.py
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-01-20 19:44:53 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-27 21:47:58 +0000
commit2bfcb751891cf3b4050e996b3c8e28678c3a8bf4 (patch)
tree5cc2a40268ed3d2c1c9cae0eed7f0d4d28451d87 /lib/bb/siggen.py
parent1f2bdd1b99075babe8dba91478cfc5d3501676cb (diff)
downloadbitbake-contrib-2bfcb751891cf3b4050e996b3c8e28678c3a8bf4.tar.gz
siggen.py: fix the SignatureGenerator()
If we set: BB_SIGNATURE_HANDLER = "noop" Then we would get the following errors: [snip] File "runqueue.py", line 876, in RunQueue._start_worker(fakeroot=False, rqexec=None): "fakerootnoenv" : self.rqdata.dataCache.fakerootnoenv, > "hashes" : bb.parse.siggen.taskhash, "hash_deps" : bb.parse.siggen.runtaskdeps, AttributeError: 'SignatureGenerator' object has no attribute 'taskhash' [snip] This patch fixes the problem. [YOCTO #5741] Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/siggen.py')
-rw-r--r--lib/bb/siggen.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 9db29a2ec..a54357a3f 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -34,7 +34,9 @@ class SignatureGenerator(object):
name = "noop"
def __init__(self, data):
- return
+ self.taskhash = {}
+ self.runtaskdeps = {}
+ self.file_checksum_values = {}
def finalise(self, fn, d, varient):
return
@@ -42,7 +44,7 @@ class SignatureGenerator(object):
def get_taskhash(self, fn, task, deps, dataCache):
return "0"
- def set_taskdata(self, hashes, deps):
+ def set_taskdata(self, hashes, deps, checksum):
return
def stampfile(self, stampbase, file_name, taskname, extrainfo):