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 | poky-b296ae263ce12294a7264ed09b987acda73e4f67.tar.gz | |
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: | |||
| 30 | """ | 30 | """ |
| 31 | BitBake Task Data implementation | 31 | BitBake Task Data implementation |
| 32 | """ | 32 | """ |
| 33 | def __init__(self, abort = True): | 33 | def __init__(self, abort = True, tryaltconfigs = False): |
| 34 | self.build_names_index = [] | 34 | self.build_names_index = [] |
| 35 | self.run_names_index = [] | 35 | self.run_names_index = [] |
| 36 | self.fn_index = [] | 36 | self.fn_index = [] |
| @@ -57,6 +57,7 @@ class TaskData: | |||
| 57 | self.failed_fnids = [] | 57 | self.failed_fnids = [] |
| 58 | 58 | ||
| 59 | self.abort = abort | 59 | self.abort = abort |
| 60 | self.tryaltconfigs = tryaltconfigs | ||
| 60 | 61 | ||
| 61 | def getbuild_id(self, name): | 62 | def getbuild_id(self, name): |
| 62 | """ | 63 | """ |
