diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2012-09-17 17:43:17 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-24 15:35:31 +0100 |
commit | eed98e4666cafa139900f9a84c0be8665c89b04b (patch) | |
tree | 2a53e70e6c94350104853d51766b29851e00cac3 /bitbake/bin | |
parent | 86cf6daff907aed4d14e55b91d2033e6cb0b3925 (diff) | |
download | poky-eed98e4666cafa139900f9a84c0be8665c89b04b.tar.gz |
bitbake: runqueue: Add --no-setscene to skip all setscene tasks
Mainly intended for the purpose of debugging or forcing builds
from source, the --no-setscene will prevent any setscene
tasks from running.
(Bitbake rev: 440e479f3e248482c38c149643403c6907ac7034)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index ed2ff06309..8c46024258 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -174,6 +174,8 @@ Default BBFILES are the .bb files in the current directory.""") | |||
174 | 174 | ||
175 | parser.add_option("-B", "--bind", help = "The name/address for the bitbake server to bind to", | 175 | parser.add_option("-B", "--bind", help = "The name/address for the bitbake server to bind to", |
176 | action = "store", dest = "bind", default = False) | 176 | action = "store", dest = "bind", default = False) |
177 | parser.add_option("", "--no-setscene", help = "Do not run any setscene tasks, forces builds", | ||
178 | action = "store_true", dest = "nosetscene", default = False) | ||
177 | options, args = parser.parse_args(sys.argv) | 179 | options, args = parser.parse_args(sys.argv) |
178 | 180 | ||
179 | configuration = BBConfiguration(options) | 181 | configuration = BBConfiguration(options) |