From 1b3c2e9b246f533a7aab5fd4a17b9a42c2b97dd4 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 17 Jan 2014 14:13:43 +0100 Subject: [PATCH] bitbake: SignatureGenerator: Add empty implementation for dump_sigs * bitbake -S throws exception when 'noop' signature handler is used [YOCTO #5738] (Bitbake rev: 53352e8d388b7fc4da73f95b93dcc087e76d0426) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- bitbake/lib/bb/siggen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index bb8203d..9db29a2 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -57,6 +57,8 @@ class SignatureGenerator(object): def invalidate_task(self, task, d, fn): bb.build.del_stamp(task, d, fn) + def dump_sigs(self, dataCache): + return class SignatureGeneratorBasic(SignatureGenerator): """ -- 2.7.4