summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
AgeCommit message (Expand)Author
2014-01-29package.bbclass: Show which files require given dependency in debug outputMartin Jansa
2014-01-29package.bbclass: Don't search for providers of PRIVATE_LIBSMartin Jansa
2014-01-28package.bbclass: add getter of additional metadataLeonid Borisenko
2014-01-19package.bbclass: show warning when package is providing already provided shlibMartin Jansa
2014-01-19package.bbclass: move reading shlibs providers to separate functionMartin Jansa
2014-01-10package: Keep global pkgfiles[] up to date when snapping library symlinksPhil Blundell
2014-01-02classes/package: set SUMMARY in do_split_packages()Paul Eggleton
2013-12-18sstate: Get rid of crazy name mappingRichard Purdie
2013-12-03classes/package: write PE and PKGE out to pkgdataPaul Eggleton
2013-12-03classes/package: record PKGSIZE as total file size in pkgdataPaul Eggleton
2013-12-03classes/package: fix FILES_INFO serialisation in pkgdataPaul Eggleton
2013-11-04package.bbclass: Fix split_and_strip_files when file has single quote (')Felipe F. Tonello
2013-10-14classes/package: handle filenames containing wildcardsPaul Eggleton
2013-10-11classes: tar 1.27 fixesRichard Purdie
2013-09-26package.bbclass: Clear umask when using os.mkdirRichard Purdie
2013-09-13bitbake.conf/package: Collapse PKGDATA_DIR into a single machine specific dir...Richard Purdie
2013-09-06package.bbclass: skip already-stripped QA test if asked forKhem Raj
2013-09-04package.bbclass: Fix darwin shlib handlingRichard Purdie
2013-08-22package.bbclass: Fix handling of symlinks in debug packagesRichard Purdie
2013-07-25package.bbclass: avoid packing debug sources from other packagesAndreas Müller
2013-07-02classes/package: print command output when commands failPaul Eggleton
2013-06-28package: Ensure we iterate all the pool objectsRichard Purdie
2013-06-07insane/package: refactor packaging sanity testsRobert Yang
2013-06-07insane/package: let package.bbclass inherit insane.bbclassRobert Yang
2013-05-16bbclass: bb.fatal() clean upRobert Yang
2013-05-14package.bbclass: Fix sources contentsRichard Purdie
2013-05-09class/lib: Fix up various file access methodsRichard Purdie
2013-05-09classes/lib: Fix getcmdstatus breakageRichard Purdie
2013-05-09sanity/patch.py: Remove commands module usageRichard Purdie
2013-05-09clases/lib: Use modern exception syntaxRichard Purdie
2013-04-22package.bbclass: ensure license excluded files aren't packagedChristopher Larson
2013-04-22package.bbclass: add LICENSE_EXCLUSION to vardepsChristopher Larson
2013-04-18package.bbclass: Add useradd variables to PACKAGEVARSRichard Purdie
2013-04-17package.bbclass: Fix populate_packages for glob expansion issuesRichard Purdie
2013-04-13package/image.bbclass: Fix multilib rprovidesRichard Purdie
2013-04-04Add file information to package information windowAndrei Dinu
2013-03-26package.bbclass: Correctly handle /usr/src/debug file ownershipRichard Purdie
2013-03-25package.bbclass: Ensure debug source file is generated correctlyRichard Purdie
2013-03-25package.bbclass: Handle subprocess errors correctlyRichard Purdie
2013-03-18package: Add cachedpath optimisationRichard Purdie
2013-03-15package.bbclass: add debug-without-src PACKAGE_DEBUG_SPLIT_STYLEMartin Jansa
2013-03-05package.bbclass: Ensure all .so files get strippedRichard Purdie
2013-03-05package.bbclass: Fix do_package variable dependenciesRichard Purdie
2013-02-22pakcage.bbclass:use a better way to cut -dev/-dbg suffixSong.Li
2013-02-17classes: Drop none package specific packaging variable accessesRichard Purdie
2013-02-11package.bbclass: support dangling path componentsEnrico Scholz
2013-02-11package.bbclass: use oe.path.realpath()Enrico Scholz
2013-02-06package.bbclass: Replace undefined 'src' with valid variableKhem Raj
2013-02-06package.bbclass: Ensure package_get_auto_pr is run at the correct pointRichard Purdie
2013-02-06package.bbclass: return list of packages created in do_split_packagesMartin Jansa
lue='paule/pyro-esdk-initramfs-fix-oe'>paule/pyro-esdk-initramfs-fix-oe OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk_base.bbclass
blob: 61b31d5e5e5d05c8ff96ca3e57d0194187c8b1cf (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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340