summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/bitbake')
-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