summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 7caa5d95e6..4e6815e46e 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -120,6 +120,9 @@ Default BBFILES are the .bb files in the current directory.""")
120 parser.add_option("-n", "--dry-run", help = "don't execute, just go through the motions", 120 parser.add_option("-n", "--dry-run", help = "don't execute, just go through the motions",
121 action = "store_true", dest = "dry_run", default = False) 121 action = "store_true", dest = "dry_run", default = False)
122 122
123 parser.add_option("-S", "--dump-signatures", help = "don't execute, just dump out the signature construction information",
124 action = "store_true", dest = "dump_signatures", default = False)
125
123 parser.add_option("-p", "--parse-only", help = "quit after parsing the BB files (developers only)", 126 parser.add_option("-p", "--parse-only", help = "quit after parsing the BB files (developers only)",
124 action = "store_true", dest = "parse_only", default = False) 127 action = "store_true", dest = "parse_only", default = False)
125 128