summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-31 17:32:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-02 00:52:10 +0100
commit2355a9b6f0dc4c8529cc57fb431112bce9125cee (patch)
tree801d12888b2293022be9f6709cb9342ac08fd80a /bitbake/lib/bb/runqueue.py
parent6e224e9c8e3850ced305b9cd971b093d8a588d5e (diff)
downloadpoky-2355a9b6f0dc4c8529cc57fb431112bce9125cee.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py7
1 files changed, 1 insertions, 6 deletions
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:
1355 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) 1355 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)
1356 1356
1357 if self.state is runQueueFailed: 1357 if self.state is runQueueFailed:
1358 if not self.rqdata.taskData[''].tryaltconfigs: 1358 raise bb.runqueue.TaskFailure(self.rqexe.failed_tids)
1359 raise bb.runqueue.TaskFailure(self.rqexe.failed_tids)
1360 for tid in self.rqexe.failed_tids:
1361 (mc, fn, tn, _) = split_tid_mcfn(tid)
1362 self.rqdata.taskData[mc].fail_fn(fn)
1363 self.rqdata.reset()
1364 1359
1365 if self.state is runQueueComplete: 1360 if self.state is runQueueComplete:
1366 # All done 1361 # All done