From 2355a9b6f0dc4c8529cc57fb431112bce9125cee Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 31 Aug 2017 17:32:15 +0100 Subject: bitbake: cookerdata/taskdata/runqueue: Drop remaining tryaltconfigs code and commandline option I can't actually see how this was working, nothing connected the commandline option to the data in TaskData(). Drop the remaining pieces of this option, it was a relic from a decade ago and we want deterministic builds, not random tries until something might work. (Bitbake rev: 767c7ba8fc76ec667ac1567de1c971c3575f2ecd) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'bitbake/lib/bb/runqueue.py') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index e1a15af260..6b3a0fcfb6 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1355,12 +1355,7 @@ class RunQueue: logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and all succeeded.", self.rqexe.stats.completed, self.rqexe.stats.skipped) if self.state is runQueueFailed: - if not self.rqdata.taskData[''].tryaltconfigs: - raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) - for tid in self.rqexe.failed_tids: - (mc, fn, tn, _) = split_tid_mcfn(tid) - self.rqdata.taskData[mc].fail_fn(fn) - self.rqdata.reset() + raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) if self.state is runQueueComplete: # All done -- cgit v1.2.3-54-g00ecf