diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-31 17:32:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-02 00:52:10 +0100 |
commit | 2355a9b6f0dc4c8529cc57fb431112bce9125cee (patch) | |
tree | 801d12888b2293022be9f6709cb9342ac08fd80a /bitbake/lib/bb/taskdata.py | |
parent | 6e224e9c8e3850ced305b9cd971b093d8a588d5e (diff) | |
download | poky-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/taskdata.py')
-rw-r--r-- | bitbake/lib/bb/taskdata.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py index 8c96a56285..0ea6c0bfd6 100644 --- a/bitbake/lib/bb/taskdata.py +++ b/bitbake/lib/bb/taskdata.py | |||
@@ -47,7 +47,7 @@ class TaskData: | |||
47 | """ | 47 | """ |
48 | BitBake Task Data implementation | 48 | BitBake Task Data implementation |
49 | """ | 49 | """ |
50 | def __init__(self, abort = True, tryaltconfigs = False, skiplist = None, allowincomplete = False): | 50 | def __init__(self, abort = True, skiplist = None, allowincomplete = False): |
51 | self.build_targets = {} | 51 | self.build_targets = {} |
52 | self.run_targets = {} | 52 | self.run_targets = {} |
53 | 53 | ||
@@ -66,7 +66,6 @@ class TaskData: | |||
66 | self.failed_fns = [] | 66 | self.failed_fns = [] |
67 | 67 | ||
68 | self.abort = abort | 68 | self.abort = abort |
69 | self.tryaltconfigs = tryaltconfigs | ||
70 | self.allowincomplete = allowincomplete | 69 | self.allowincomplete = allowincomplete |
71 | 70 | ||
72 | self.skiplist = skiplist | 71 | self.skiplist = skiplist |