diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-28 22:15:06 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-28 22:15:06 +0000 |
commit | b296ae263ce12294a7264ed09b987acda73e4f67 (patch) | |
tree | 9c0dfd5439d9d27f74b36f9731afb01c0c018531 /bitbake/lib/bb/taskdata.py | |
parent | db140d9ce0a5918cab2615862402c07ef81c6944 (diff) | |
download | openembedded-core-b296ae263ce12294a7264ed09b987acda73e4f67.tar.gz openembedded-core-b296ae263ce12294a7264ed09b987acda73e4f67.tar.bz2 openembedded-core-b296ae263ce12294a7264ed09b987acda73e4f67.zip |
bitbake: Add tryaltconfigs option to disable the alternative configuration attempts and make the 'continue' more aggresive
Diffstat (limited to 'bitbake/lib/bb/taskdata.py')
-rw-r--r-- | bitbake/lib/bb/taskdata.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py index 566614ee63..782dfb0b78 100644 --- a/bitbake/lib/bb/taskdata.py +++ b/bitbake/lib/bb/taskdata.py @@ -30,7 +30,7 @@ class TaskData: """ BitBake Task Data implementation """ - def __init__(self, abort = True): + def __init__(self, abort = True, tryaltconfigs = False): self.build_names_index = [] self.run_names_index = [] self.fn_index = [] @@ -57,6 +57,7 @@ class TaskData: self.failed_fnids = [] self.abort = abort + self.tryaltconfigs = tryaltconfigs def getbuild_id(self, name): """ |