bitbake: Add tryaltconfigs option to disable the alternative configuration attempts and make the 'continue' more aggresive

This commit is contained in:
Richard Purdie
2008-10-28 22:15:06 +00:00
parent db140d9ce0
commit b296ae263c
8 changed files with 21 additions and 8 deletions

View File

@@ -69,6 +69,9 @@ Default BBFILES are the .bb files in the current directory.""" )
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.",
action = "store_false", dest = "abort", default = True )
parser.add_option( "-a", "--tryaltconfigs", help = "continue with builds by trying to use alternative providers where possible.",
action = "store_true", dest = "tryaltconfigs", default = False )
parser.add_option( "-f", "--force", help = "force run of specified cmd, regardless of stamp status",
action = "store_true", dest = "force", default = False )