summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2018-12-28 18:30:40 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 22:27:46 +0000
commitcaad85d90b18f010b2fe7766335ba3213da7ee27 (patch)
tree342de79d1fde86adb0f0b0ca1f71fb06f0185917 /bitbake
parent6b6567cb6bc5ae86f42cce6eb9b8830fe113653d (diff)
downloadpoky-caad85d90b18f010b2fe7766335ba3213da7ee27.tar.gz
bitbake: bitbake-diffsigs: Support recursive deps with signature files
Follow dependent hash changes recursively also when specifying two signature files explicitly. Previously this was only done when using the --task option. (Bitbake rev: 65c2a64d6dd5dc85cb14b9e808964c699e890517) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/bin/bitbake-diffsigs4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-diffsigs b/bitbake/bin/bitbake-diffsigs
index b0869e1143..fa430bb3b3 100755
--- a/bitbake/bin/bitbake-diffsigs
+++ b/bitbake/bin/bitbake-diffsigs
@@ -188,7 +188,9 @@ else:
188 sys.exit(1) 188 sys.exit(1)
189 try: 189 try:
190 if not options.dump and options.sigdatafile1 and options.sigdatafile2: 190 if not options.dump and options.sigdatafile1 and options.sigdatafile2:
191 output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, color=color) 191 with bb.tinfoil.Tinfoil() as tinfoil:
192 tinfoil.prepare(config_only=True)
193 output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, recursecb, color=color)
192 elif options.sigdatafile1: 194 elif options.sigdatafile1:
193 output = bb.siggen.dump_sigfile(options.sigdatafile1) 195 output = bb.siggen.dump_sigfile(options.sigdatafile1)
194 else: 196 else: