aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/taskdata.py
AgeCommit message (Expand)Author
2019-06-19bitbake: Drop duplicate license boilerplace textRichard Purdie
2019-06-19bitbake: Add initial pass of SPDX license headers to source codeRichard Purdie
2018-08-01bitbake: Add support for multiconfig dependenciesAlejandro Enedino Hernandez Samaniego
2017-08-31cookerdata/taskdata/runqueue: Drop remaining tryaltconfigs code and commandli...Richard Purdie
2017-03-21taskdata.py: include more information in error message about broken task dependsPatrick Ohly
2016-11-23taskdata.py: improve handling of depends/rdependsPatrick Ohly
2016-06-14taskdata/runqueue: Rewrite without use of ID indirectionRichard Purdie
2016-06-01bitbake: Convert to python 3Richard Purdie
2016-02-15taskdata: Fix traceback issue with missing providerRichard Purdie
2016-01-22taskdata: add the ability to access world targets listPaul Eggleton
2016-01-22taskdata.py: add RuntimeProviders to close matchesRobert Yang
2016-01-08taskdata: refactor get_providermapEd Bartosh
2015-09-30taskdata: Add a function to return the virtual/ mapping dataRichard Purdie
2015-08-17Fix default function parameter assignment to a listPaul Eggleton
2015-07-12cooker/taskdata: Make NoProvider errors non-fatal to -e/-g optionsRichard Purdie
2014-03-09providers/runqueue/taskdata: Optimise logger.debug callsRichard Purdie
2013-08-16taskdata: report close matches with NoProvider errorsPaul Eggleton
2012-08-30taskdata: Don't add dependencies on tasks that don't existRichard Purdie
2012-07-11bitbake: Abort build if runtime dependency conflictWenzong Fan
2012-06-28taskdata: Add gettask_id_fromfnid helper functionRichard Purdie
2012-06-25taskdata.py: Add support for rdepends task flagRichard Purdie
2011-09-14taskdata: fix string formatting of an error messageChristopher Larson
2011-08-15Fixup remaining bb.msg.domain usersRichard Purdie
2011-07-27bitbake/taskdata: fix incorrect usage of rdependees instead of dependeesPaul Eggleton
2011-07-27bitbake: show more information for NoProvider errorsPaul Eggleton
2010-12-08cooker: use re match, not search in re_match_stringsChris Larson
2010-12-08taskdata: use 'any' in re_match_stringsChris Larson
2010-11-21Prefer xrange over range for small performance gain.Bob Foerster
2010-11-18Pre-explode rundeps/runrecs in CacheDataChris Larson
2010-09-07Fix providerlog NameErrorChris Larson
2010-09-03Switch bitbake internals to use logging directly rather than bb.msgChris Larson
2010-06-08Move the output of no provider and multiple provider messages into the UIChris Larson
2010-04-11Apply some 2to3 transforms that don't cause issues in 2.6Chris Larson
2010-04-09Formatting cleanupsChris Larson
2010-03-24Fix 7 references to undefined variables, as spotted by pyflakesChris Larson
2010-02-10taskdata.py: fix typo in debug messageBernhard Reutner-Fischer
2010-01-19taskdata: Improve error message if incorrectly formatted tasks are found (fro...Richard Purdie
2010-01-19event.py: Pass the datastore to the fire command, don't build it into eventsRichard Purdie
2009-12-24Enable --ignore-deps options to access regular expression stringGuo Hongruan
2009-07-21taskdata: fix a possible infinite loop when multiple eligible providers aren'...Chris Larson
2009-05-11[bb] Remove unused imports reported by pyflakesHolger Hans Peter Freyther
2008-12-06Add tryaltconfigs option to control whether bitbake trys using alternative pr...Richard Purdie
2008-10-27taskdata: improved error message when BitBake is called with not existing targetMarcin Juszkiewicz
2008-05-09runqueue/taskdata.py: Make sure recrdeps tasks include all inter-task depende...Richard Purdie
2008-03-13cache.py: Improve the way various data structures are handled to speed up the...Richard Purdie
2008-03-06taskdata.py: When handling build target failures make sure idepends are check...Richard Purdie
2008-02-26Remove digraph and switch to new stamp checking code.Richard Purdie
2008-01-19taskdata/runqueue.py: Make taskdata and runqueue errors more user friendlyRichard Purdie
2007-10-21taskdata.py: Fix 'depends' flag splittingRichard Purdie
2007-08-17taskdata.py: Improve dump_data debugging codeRichard Purdie
option value='rbt/doc'>rbt/doc OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/scripts/create-pull-request
blob: a88f35a4a3936c95b7225dffaaab67f8cf294edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295