summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-10-28 22:15:06 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-10-28 22:15:06 +0000
commitb296ae263ce12294a7264ed09b987acda73e4f67 (patch)
tree9c0dfd5439d9d27f74b36f9731afb01c0c018531 /bitbake/bin
parentdb140d9ce0a5918cab2615862402c07ef81c6944 (diff)
downloadpoky-b296ae263ce12294a7264ed09b987acda73e4f67.tar.gz
bitbake: Add tryaltconfigs option to disable the alternative configuration attempts and make the 'continue' more aggresive
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 9a9b6d3bc6..6a69e340f1 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -60,6 +60,9 @@ Default BBFILES are the .bb files in the current directory.""" )
60 parser.add_option( "-k", "--continue", help = "continue as much as possible after an error. While the target that failed, and those that depend on it, cannot be remade, the other dependencies of these targets can be processed all the same.", 60 parser.add_option( "-k", "--continue", help = "continue as much as possible after an error. While the target that failed, and those that depend on it, cannot be remade, the other dependencies of these targets can be processed all the same.",
61 action = "store_false", dest = "abort", default = True ) 61 action = "store_false", dest = "abort", default = True )
62 62
63 parser.add_option( "-a", "--tryaltconfigs", help = "continue with builds by trying to use alternative providers where possible.",
64 action = "store_true", dest = "tryaltconfigs", default = False )
65
63 parser.add_option( "-f", "--force", help = "force run of specified cmd, regardless of stamp status", 66 parser.add_option( "-f", "--force", help = "force run of specified cmd, regardless of stamp status",
64 action = "store_true", dest = "force", default = False ) 67 action = "store_true", dest = "force", default = False )
65 68