From eed98e4666cafa139900f9a84c0be8665c89b04b Mon Sep 17 00:00:00 2001 From: Jason Wessel Date: Mon, 17 Sep 2012 17:43:17 -0500 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/bin/bitbake | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/bin/bitbake') 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.""") parser.add_option("-B", "--bind", help = "The name/address for the bitbake server to bind to", action = "store", dest = "bind", default = False) + parser.add_option("", "--no-setscene", help = "Do not run any setscene tasks, forces builds", + action = "store_true", dest = "nosetscene", default = False) options, args = parser.parse_args(sys.argv) configuration = BBConfiguration(options) -- cgit v1.2.3-54-g00ecf