[oe-commits] [bitbake] 02/03: bitbake-diffsigs: Support recursive deps with signature files

git at git.openembedded.org git at git.openembedded.org
Wed Jan 2 18:02:19 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 9d0a2b394d19f868ccca7191e94bbffc37c6ccff
Author: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
AuthorDate: Fri Dec 28 18:30:40 2018 +0100

    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.
    
    Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 bin/bitbake-diffsigs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bin/bitbake-diffsigs b/bin/bitbake-diffsigs
index b0869e1..fa430bb 100755
--- a/bin/bitbake-diffsigs
+++ b/bin/bitbake-diffsigs
@@ -188,7 +188,9 @@ else:
         sys.exit(1)
     try:
         if not options.dump and options.sigdatafile1 and options.sigdatafile2:
-            output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, color=color)
+            with bb.tinfoil.Tinfoil() as tinfoil:
+                tinfoil.prepare(config_only=True)
+                output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, recursecb, color=color)
         elif options.sigdatafile1:
             output = bb.siggen.dump_sigfile(options.sigdatafile1)
         else:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list