From b296ae263ce12294a7264ed09b987acda73e4f67 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 28 Oct 2008 22:15:06 +0000 Subject: bitbake: Add tryaltconfigs option to disable the alternative configuration attempts and make the 'continue' more aggresive --- bitbake-dev/lib/bb/taskdata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake-dev/lib/bb/taskdata.py') diff --git a/bitbake-dev/lib/bb/taskdata.py b/bitbake-dev/lib/bb/taskdata.py index 566614ee63..782dfb0b78 100644 --- a/bitbake-dev/lib/bb/taskdata.py +++ b/bitbake-dev/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): """ -- cgit v1.2.3-54-g00ecf