summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
AgeCommit message (Expand)Author
2012-11-24unzip: pay some attention to our CFLAGSJoe Slater
2012-11-24zip: pay some attention to our CFLAGSJoe Slater
2012-11-24mingetty: replace cflags hard-coded into MakefileJoe Slater
2012-11-24procps: pass CFLAGS to makeJoe Slater
2012-11-24lsbsetup: drop itKang Kai
2012-11-24packagegroup-core-lsb: remove lsbsetupKang Kai
2012-11-24lsb: move links from lsbsetup to hereKang Kai
2012-11-21mc: Update to 4.8.6Saul Wold
2012-11-21man-pages: Update to 3.44Saul Wold
2012-11-19sysstat: Update to 10.1.2Saul Wold
2012-11-18less: Update to 451Saul Wold
2012-11-18psmisc: Update to 22.20Saul Wold
2012-11-18mdadm: upgrade to 3.2.6Laurentiu Palcu
2012-11-14bash: fix mkbuiltins build failureChristopher Larson
2012-11-12meta: remove redundant _FOR_BUILD variablesRoss Burton
2012-11-02recipes-extended: replace virtclass-native(sdk) with class-native(sdk)Robert Yang
2012-10-30polkit: remove license.html from LIC_FILES_CHKSUMPhil Blundell
2012-10-27ltp: add perl to RDEPENDSSaul Wold
2012-10-25diffutils: fix rebuildsRoss Burton
2012-10-24shadow-securetty: add ARM AMBA serial portsMarcin Juszkiewicz
2012-10-19PACKAGES_DYNAMIC: use += instead of = in most casesMartin Jansa
2012-10-19PACKAGES_DYNAMIC: use regexp not globMartin Jansa
2012-10-19diffutils: Fix gplv2 version to work with recent gettextRichard Purdie
2012-10-19sed: Fix gplv2 version to work with recent gettextRichard Purdie
2012-10-19grep: Fix gplv2 version to work with recent gettextRichard Purdie
2012-10-18sysklogd: fix update-rc.d handlingAndy Ross
2012-10-18texi2html: Add check for directory existenceRichard Purdie
2012-10-18diffutils: Remove rather bizzare gettext macrosRichard Purdie
2012-10-18chkconfig: pass CFLAGS to MakefileJoe Slater
2012-10-03bzip2 and busybox: Incorrect LICENSEElizabeth Flanagan
2012-10-02gzip: The native version should provide gzip-replacement-nativeRichard Purdie
2012-10-02Cleanup: fix PN == BPN casesMark Hatle
2012-09-28ltp: add dependency libcapKang Kai
2012-09-26at: atd remove useless --make-pidfile option.Xin Ouyang
2012-09-24lsbtest: update list fileKang Kai
2012-09-24bash: Make it possible to run bash 3.2.48 instead of 4.2.Martin Ertsaas
2012-09-20Replace "echo -e" with "printf" to have the same behavior in dash or bashAndrei Gherzan
2012-09-20byacc: update config.{sub, guess} before running configureMarcin Juszkiewicz
2012-09-18recipes: bump PR to rebuild after libffi5 -> libffi6Martin Jansa
2012-09-12quota 4.00: add DEPENDS gettext-nativeJackie Huang
2012-09-12sysstat: upgrade to 10.1.1Constantin Musca
2012-09-12shadow-native: Ensure that ${sbindir} and ${base_sbindir} are respectedPhil Blundell
2012-09-12shadow: Fix various invalid assumptions about directory layoutPhil Blundell
2012-09-10Add package wget and perl modules.Saul Wold
2012-09-10lsb: update versionKang Kai
2012-09-10ltp: updateKang Kai
2012-09-10package_rpm.bbclass: fix the arch (replace "-" with "_")Robert Yang
2012-09-05packagegroup-(base|core-basic): add RREPLACES/RCONFLICTSPaul Eggleton
2012-09-03ghostscript: disable libidn supportKang Kai
2012-09-03msmtp: disable libidn supportKang Kai
-tool OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/progress.py
blob: f54d1c76f8e6f99c69c654d3e9d913e39cffbce4 (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