diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-31 14:49:43 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-03 16:08:32 +0100 |
commit | 43595fabbe0c9084a3878645aef8e3e1c2f79452 (patch) | |
tree | 674fdee5617661909e824840f4028224addced13 /bitbake/bin | |
parent | 453d8f49ac0340ecef6429fe539d0e0febf5071a (diff) | |
download | openembedded-core-contrib-43595fabbe0c9084a3878645aef8e3e1c2f79452.tar.gz |
bitbake: Implement signatures
Includes functionality to find out what changes between two different singature data dumps.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 7caa5d95e6e..4e6815e46e3 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -120,6 +120,9 @@ Default BBFILES are the .bb files in the current directory.""") parser.add_option("-n", "--dry-run", help = "don't execute, just go through the motions", action = "store_true", dest = "dry_run", default = False) + parser.add_option("-S", "--dump-signatures", help = "don't execute, just dump out the signature construction information", + action = "store_true", dest = "dump_signatures", default = False) + parser.add_option("-p", "--parse-only", help = "quit after parsing the BB files (developers only)", action = "store_true", dest = "parse_only", default = False) |