]>
Commit | Line | Data |
---|---|---|
ebcfa987 AVEM |
1 | # |
2 | # Config.in.legacy - support for backward compatibility | |
3 | # | |
f8c56f5f TDS |
4 | # When an existing Config.in symbol is removed, it should be added again in |
5 | # this file, and take appropriate action to approximate backward compatibility. | |
6 | # This will make the transition for the user more convenient. | |
ebcfa987 AVEM |
7 | # |
8 | # When adding legacy symbols to this file, add them to the front. The oldest | |
9 | # symbols will be removed again after about two years. | |
10 | # | |
11 | # The symbol should be copied as-is from the place where it was previously | |
12 | # defined, but the help text should be removed or replaced with something that | |
13 | # explains how to fix it. | |
f8c56f5f TDS |
14 | # |
15 | # For bool options, the old symbol should select BR2_LEGACY, so that the user | |
16 | # is informed at build-time about selected legacy options. | |
17 | # If there is an equivalent (set of) new symbols, these should be select'ed by | |
18 | # the old symbol for backwards compatibility. | |
94d403d7 AV |
19 | # It is not possible to select an option that is part of a choice. In that |
20 | # case, the new option should use the old symbol as default. This requires a | |
21 | # change outside of Config.in.legacy, and this should be clearly marked as such | |
22 | # in a comment, so that removal of legacy options also include the removal of | |
23 | # these external references. | |
24 | # | |
25 | # [Example: renaming a bool option that is part of a choice from FOO to BAR] | |
26 | # original choice: | |
27 | # choice | |
28 | # prompt "Choose foobar" | |
29 | # config BR2_FOO_1 | |
30 | # bool "foobar 1" | |
31 | # config BR2_FOO_2 | |
32 | # bool "foobar 2" | |
33 | # endchoice | |
34 | # | |
35 | # becomes: | |
36 | # choice | |
37 | # prompt "Choose foobar" | |
38 | # default BR2_BAR_1 if BR2_FOO_1 # legacy | |
39 | # default BR2_BAR_2 if BR2_FOO_2 # legacy | |
40 | # config BR2_BAR_1 | |
41 | # bool "foobar 1" | |
42 | # config BR2_BAR_2 | |
43 | # bool "foobar 2" | |
44 | # endchoice | |
45 | # | |
46 | # and in Config.in.legacy: | |
47 | # config BR2_FOO_1 | |
48 | # bool "foobar 1 has been renamed" | |
49 | # help | |
50 | # <suitable help text> | |
51 | # # Note: BR2_FOO_1 is still referenced from package/foo/Config.in | |
52 | # config BR2_FOO_2 | |
53 | # bool "foobar 2 has been renamed" | |
54 | # help | |
55 | # <suitable help text> | |
56 | # # Note: BR2_FOO_2 is still referenced from package/foo/Config.in | |
57 | # | |
58 | # [End of example] | |
f8c56f5f TDS |
59 | # |
60 | # For string options, it is not possible to directly select another symbol. In | |
61 | # this case, a hidden wrap bool option has to be added, that defaults to y if | |
62 | # the old string is not set at its default value. The wrap symbol should select | |
63 | # BR2_LEGACY. | |
64 | # If the original symbol has been renamed, the new symbol should use the value | |
94d403d7 AV |
65 | # of the old symbol as default. Like for choice options, a comment should be |
66 | # added to flag that the symbol is still used in another file. | |
f8c56f5f TDS |
67 | # |
68 | # [Example: renaming a string option from FOO to BAR] | |
69 | # original symbol: | |
94d403d7 AV |
70 | # config BR2_FOO_STRING |
71 | # string "Some foo string" | |
f8c56f5f TDS |
72 | # |
73 | # becomes: | |
94d403d7 AV |
74 | # config BR2_BAR_STRING |
75 | # string "Some bar string" | |
76 | # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy | |
f8c56f5f TDS |
77 | # |
78 | # and in Config.in.legacy: | |
94d403d7 AV |
79 | # config BR2_FOO_STRING |
80 | # string "The foo string has been renamed" | |
81 | # help | |
82 | # <suitable help text> | |
f8c56f5f | 83 | # |
94d403d7 AV |
84 | # config BR2_FOO_STRING_WRAP |
85 | # bool | |
86 | # default y if BR2_FOO_STRING != "" | |
87 | # select BR2_LEGACY | |
f8c56f5f | 88 | # |
94d403d7 | 89 | # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in |
f8c56f5f TDS |
90 | # |
91 | # [End of example] | |
ebcfa987 | 92 | |
53903a15 AV |
93 | config BR2_SKIP_LEGACY |
94 | bool | |
95 | option env="SKIP_LEGACY" | |
96 | ||
97 | if !BR2_SKIP_LEGACY | |
98 | ||
ebcfa987 AVEM |
99 | config BR2_LEGACY |
100 | bool | |
101 | help | |
d6109172 RM |
102 | This option is selected automatically when your old .config |
103 | uses an option that no longer exists in current buildroot. In | |
104 | that case, the build will fail. Look for config options which | |
105 | are selected in the menu below: they no longer exist and | |
106 | should be replaced by something else. | |
ebcfa987 AVEM |
107 | |
108 | # This comment fits exactly in a 80-column display | |
109 | comment "Legacy detected: check the content of the menu below" | |
110 | depends on BR2_LEGACY | |
111 | ||
a91a5c16 AVEM |
112 | menu "Legacy config options" |
113 | ||
114 | if BR2_LEGACY | |
a25e4a4c | 115 | comment "----------------------------------------------------" |
a91a5c16 | 116 | comment "Your old configuration uses legacy options that no " |
cce5baa8 TDS |
117 | comment "longer exist in buildroot, as indicated in the menu " |
118 | comment "below. As long as these options stay selected, or in" | |
119 | comment "case of string options are non-empty, the build " | |
a91a5c16 | 120 | comment "will fail. " |
cce5baa8 TDS |
121 | comment "* " |
122 | comment "Where possible, an automatic conversion from old to " | |
123 | comment "new symbols has been performed. Before making any " | |
124 | comment "change in this legacy menu, make sure to exit the " | |
125 | comment "configuration editor a first time and save the " | |
126 | comment "configuration. Otherwise, the automatic conversion " | |
127 | comment "of symbols will be lost. " | |
128 | comment "* " | |
129 | comment "After this initial save, reopen the configuration " | |
130 | comment "editor, inspect the options selected below, read " | |
131 | comment "their help texts, and verify/update the new " | |
132 | comment "configuration in the corresponding configuration " | |
133 | comment "menus. When everything is ok, you can disable the " | |
134 | comment "legacy options in the menu below. Once you have " | |
135 | comment "disabled all legacy options, this text will " | |
136 | comment "disappear and you will be able to start the build. " | |
137 | comment "* " | |
0b39b14b YM |
138 | comment "Note: legacy options older than 5 years have been " |
139 | comment "removed, and configuration files that still have " | |
140 | comment "those options set, will fail to build, or run in " | |
141 | comment "unpredictable ways. " | |
a25e4a4c | 142 | comment "----------------------------------------------------" |
a91a5c16 | 143 | endif |
ebcfa987 | 144 | |
a2d44ec6 BK |
145 | ############################################################################### |
146 | comment "Legacy options removed in 2018.11" | |
147 | ||
070b183d MW |
148 | config BR2_TARGET_XLOADER |
149 | bool "xloader has been removed" | |
150 | select BR2_LEGACY | |
151 | help | |
152 | The package has been removed as u-boot SPL provides | |
153 | similar functionality | |
154 | ||
5e8790d5 MW |
155 | config BR2_PACKAGE_TIDSP_BINARIES |
156 | bool "tidsp-binaries package removed" | |
157 | select BR2_LEGACY | |
158 | help | |
159 | The tidsp-binaries package was removed. | |
160 | ||
e8eb7f5b MW |
161 | config BR2_PACKAGE_DSP_TOOLS |
162 | bool "dsp-tools package removed" | |
163 | select BR2_LEGACY | |
164 | help | |
165 | The dsp-tools package was removed. | |
166 | ||
91542907 MW |
167 | config BR2_PACKAGE_GST_DSP |
168 | bool "gst-dsp package removed" | |
169 | select BR2_LEGACY | |
170 | help | |
171 | The gst-dsp package was removed. | |
172 | ||
2c3c7c4f FF |
173 | config BR2_PACKAGE_BOOTUTILS |
174 | bool "bootutils package removed" | |
175 | select BR2_LEGACY | |
176 | help | |
177 | The bootutils package was removed. | |
178 | ||
addcc393 RN |
179 | config BR2_PACKAGE_EXPEDITE |
180 | bool "expedite package has been removed" | |
181 | select BR2_LEGACY | |
182 | help | |
183 | expedite is not actively maintained anymore. | |
184 | https://sourceforge.net/p/enlightenment/mailman/message/36428571 | |
185 | ||
3d3235f9 BK |
186 | config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT |
187 | bool "mesa3d opengl texture float option removed" | |
188 | select BR2_LEGACY | |
189 | help | |
190 | mesa3d now unconditionally enables floating-point textures, | |
191 | as the corresponding patent has expired. | |
192 | ||
a2d44ec6 BK |
193 | config BR2_KERNEL_HEADERS_4_10 |
194 | bool "kernel headers version 4.10.x are no longer supported" | |
a2d44ec6 BK |
195 | select BR2_LEGACY |
196 | help | |
197 | Version 4.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 198 | maintained upstream and are now removed. |
a2d44ec6 BK |
199 | |
200 | config BR2_KERNEL_HEADERS_4_11 | |
201 | bool "kernel headers version 4.11.x are no longer supported" | |
a2d44ec6 BK |
202 | select BR2_LEGACY |
203 | help | |
204 | Version 4.11.x of the Linux kernel headers are no longer | |
1b3c43f7 | 205 | maintained upstream and are now removed. |
a2d44ec6 BK |
206 | |
207 | config BR2_KERNEL_HEADERS_4_12 | |
208 | bool "kernel headers version 4.12.x are no longer supported" | |
a2d44ec6 BK |
209 | select BR2_LEGACY |
210 | help | |
211 | Version 4.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 212 | maintained upstream and are now removed. |
a2d44ec6 BK |
213 | |
214 | config BR2_KERNEL_HEADERS_4_13 | |
215 | bool "kernel headers version 4.13.x are no longer supported" | |
a2d44ec6 BK |
216 | select BR2_LEGACY |
217 | help | |
218 | Version 4.13.x of the Linux kernel headers are no longer | |
1b3c43f7 | 219 | maintained upstream and are now removed. |
a2d44ec6 BK |
220 | |
221 | config BR2_KERNEL_HEADERS_4_15 | |
222 | bool "kernel headers version 4.15.x are no longer supported" | |
a2d44ec6 BK |
223 | select BR2_LEGACY |
224 | help | |
225 | Version 4.15.x of the Linux kernel headers are no longer | |
1b3c43f7 | 226 | maintained upstream and are now removed. |
a2d44ec6 | 227 | |
d220ce6d YM |
228 | config BR2_KERNEL_HEADERS_4_17 |
229 | bool "kernel headers version 4.17.x are no longer supported" | |
230 | select BR2_LEGACY | |
231 | help | |
232 | Version 4.17.x of the Linux kernel headers are no longer | |
233 | maintained upstream and are now removed. | |
234 | ||
00d63a15 BS |
235 | config BR2_PACKAGE_LIBNFTNL_XML |
236 | bool "libnftl no longer supports XML output" | |
237 | select BR2_LEGACY | |
238 | help | |
239 | libnftnl removed integration with libmxml. | |
240 | ||
54a2e7a3 RN |
241 | ############################################################################### |
242 | comment "Legacy options removed in 2018.08" | |
243 | ||
f9063023 BK |
244 | config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19 |
245 | bool "Modular X.org server was updated to version 1.20.0" | |
246 | select BR2_LEGACY | |
247 | select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20 | |
248 | help | |
249 | Modular X.org server was updated to version 1.20.0 | |
250 | ||
14c52533 BK |
251 | config BR2_PACKAGE_XPROTO_APPLEWMPROTO |
252 | bool "xproto-applewmproto package replaced by xorgproto" | |
253 | select BR2_LEGACY | |
254 | select BR2_PACKAGE_XORGPROTO | |
255 | help | |
256 | The xproto-applewmproto package has been replaced by the | |
257 | xorgproto package, which combines all xproto_* packages. | |
258 | ||
259 | config BR2_PACKAGE_XPROTO_BIGREQSPROTO | |
260 | bool "xproto-bigreqsproto package replaced by xorgproto" | |
261 | select BR2_LEGACY | |
262 | select BR2_PACKAGE_XORGPROTO | |
263 | help | |
264 | The xproto-bigreqsproto package has been replaced by the | |
265 | xorgproto package, which combines all xproto_* packages. | |
266 | ||
267 | config BR2_PACKAGE_XPROTO_COMPOSITEPROTO | |
268 | bool "xproto-compositeproto package replaced by xorgproto" | |
269 | select BR2_LEGACY | |
270 | select BR2_PACKAGE_XORGPROTO | |
271 | help | |
272 | The xproto-compositeproto package has been replaced by the | |
273 | xorgproto package, which combines all xproto_* packages. | |
274 | ||
275 | config BR2_PACKAGE_XPROTO_DAMAGEPROTO | |
276 | bool "xproto-dameproto package replaced by xorgproto" | |
277 | select BR2_LEGACY | |
278 | select BR2_PACKAGE_XORGPROTO | |
279 | help | |
280 | The xproto-dameproto package has been replaced by the | |
281 | xorgproto package, which combines all xproto_* packages. | |
282 | ||
283 | config BR2_PACKAGE_XPROTO_DMXPROTO | |
284 | bool "xproto-dmxproto package replaced by xorgproto" | |
285 | select BR2_LEGACY | |
286 | select BR2_PACKAGE_XORGPROTO | |
287 | help | |
288 | The xproto-dmxproto package has been replaced by the | |
289 | xorgproto package, which combines all xproto_* packages. | |
290 | ||
291 | config BR2_PACKAGE_XPROTO_DRI2PROTO | |
292 | bool "xproto-dri2proto package replaced by xorgproto" | |
293 | select BR2_LEGACY | |
294 | select BR2_PACKAGE_XORGPROTO | |
295 | help | |
296 | The xproto-dri2proto package has been replaced by the | |
297 | xorgproto package, which combines all xproto_* packages. | |
298 | ||
299 | config BR2_PACKAGE_XPROTO_DRI3PROTO | |
300 | bool "xproto-dri3proto package replaced by xorgproto" | |
301 | select BR2_LEGACY | |
302 | select BR2_PACKAGE_XORGPROTO | |
303 | help | |
304 | The xproto-dri3proto package has been replaced by the | |
305 | xorgproto package, which combines all xproto_* packages. | |
306 | ||
307 | config BR2_PACKAGE_XPROTO_FIXESPROTO | |
308 | bool "xproto-fixesproto package replaced by xorgproto" | |
309 | select BR2_LEGACY | |
310 | select BR2_PACKAGE_XORGPROTO | |
311 | help | |
312 | The xproto-fixesproto package has been replaced by the | |
313 | xorgproto package, which combines all xproto_* packages. | |
314 | ||
315 | config BR2_PACKAGE_XPROTO_FONTCACHEPROTO | |
316 | bool "xproto-fontcacheproto package replaced by xorgproto" | |
317 | select BR2_LEGACY | |
318 | select BR2_PACKAGE_XORGPROTO | |
319 | help | |
320 | The xproto-fontcacheproto package has been replaced by the | |
321 | xorgproto package, which combines all xproto_* packages. | |
322 | ||
323 | config BR2_PACKAGE_XPROTO_FONTSPROTO | |
324 | bool "xproto-fontsproto package replaced by xorgproto" | |
325 | select BR2_LEGACY | |
326 | select BR2_PACKAGE_XORGPROTO | |
327 | help | |
328 | The xproto-fontsproto package has been replaced by the | |
329 | xorgproto package, which combines all xproto_* packages. | |
330 | ||
331 | config BR2_PACKAGE_XPROTO_GLPROTO | |
332 | bool "xproto-glproto package replaced by xorgproto" | |
333 | select BR2_LEGACY | |
334 | select BR2_PACKAGE_XORGPROTO | |
335 | help | |
336 | The xproto-glproto package has been replaced by the | |
337 | xorgproto package, which combines all xproto_* packages. | |
338 | ||
339 | config BR2_PACKAGE_XPROTO_INPUTPROTO | |
340 | bool "xproto-inputproto package replaced by xorgproto" | |
341 | select BR2_LEGACY | |
342 | select BR2_PACKAGE_XORGPROTO | |
343 | help | |
344 | The xproto-inputproto package has been replaced by the | |
345 | xorgproto package, which combines all xproto_* packages. | |
346 | ||
347 | config BR2_PACKAGE_XPROTO_KBPROTO | |
348 | bool "xproto-kbproto package replaced by xorgproto" | |
349 | select BR2_LEGACY | |
350 | select BR2_PACKAGE_XORGPROTO | |
351 | help | |
352 | The xproto-kbproto package has been replaced by the | |
353 | xorgproto package, which combines all xproto_* packages. | |
354 | ||
355 | config BR2_PACKAGE_XPROTO_PRESENTPROTO | |
356 | bool "xproto-presentproto package replaced by xorgproto" | |
357 | select BR2_LEGACY | |
358 | select BR2_PACKAGE_XORGPROTO | |
359 | help | |
360 | The xproto-presentproto package has been replaced by the | |
361 | xorgproto package, which combines all xproto_* packages. | |
362 | ||
363 | config BR2_PACKAGE_XPROTO_RANDRPROTO | |
364 | bool "xproto-randrproto package replaced by xorgproto" | |
365 | select BR2_LEGACY | |
366 | select BR2_PACKAGE_XORGPROTO | |
367 | help | |
368 | The xproto-randrproto package has been replaced by the | |
369 | xorgproto package, which combines all xproto_* packages. | |
370 | ||
371 | config BR2_PACKAGE_XPROTO_RECORDPROTO | |
372 | bool "xproto-recordproto package replaced by xorgproto" | |
373 | select BR2_LEGACY | |
374 | select BR2_PACKAGE_XORGPROTO | |
375 | help | |
376 | The xproto-recordproto package has been replaced by the | |
377 | xorgproto package, which combines all xproto_* packages. | |
378 | ||
379 | config BR2_PACKAGE_XPROTO_RENDERPROTO | |
380 | bool "xproto-renderproto package replaced by xorgproto" | |
381 | select BR2_LEGACY | |
382 | select BR2_PACKAGE_XORGPROTO | |
383 | help | |
384 | The xproto-renderproto package has been replaced by the | |
385 | xorgproto package, which combines all xproto_* packages. | |
386 | ||
387 | config BR2_PACKAGE_XPROTO_RESOURCEPROTO | |
388 | bool "xproto-resourceproto package replaced by xorgproto" | |
389 | select BR2_LEGACY | |
390 | select BR2_PACKAGE_XORGPROTO | |
391 | help | |
392 | The xproto-resourceproto package has been replaced by the | |
393 | xorgproto package, which combines all xproto_* packages. | |
394 | ||
395 | config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO | |
396 | bool "xproto-scrnsaverprot package replaced by xorgproto" | |
397 | select BR2_LEGACY | |
398 | select BR2_PACKAGE_XORGPROTO | |
399 | help | |
400 | The xproto-scrnsaverprot package has been replaced by the | |
401 | xorgproto package, which combines all xproto_* packages. | |
402 | ||
403 | config BR2_PACKAGE_XPROTO_VIDEOPROTO | |
404 | bool "xproto-videoproto package replaced by xorgproto" | |
405 | select BR2_LEGACY | |
406 | select BR2_PACKAGE_XORGPROTO | |
407 | help | |
408 | The xproto-videoproto package has been replaced by the | |
409 | xorgproto package, which combines all xproto_* packages. | |
410 | ||
411 | config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO | |
412 | bool "xproto-windowswmproto package replaced by xorgproto" | |
413 | select BR2_LEGACY | |
414 | select BR2_PACKAGE_XORGPROTO | |
415 | help | |
416 | The xproto-windowswmproto package has been replaced by the | |
417 | xorgproto package, which combines all xproto_* packages. | |
418 | ||
419 | config BR2_PACKAGE_XPROTO_XCMISCPROTO | |
420 | bool "xproto-xcmiscproto package replaced by xorgproto" | |
421 | select BR2_LEGACY | |
422 | select BR2_PACKAGE_XORGPROTO | |
423 | help | |
424 | The xproto-xcmiscproto package has been replaced by the | |
425 | xorgproto package, which combines all xproto_* packages. | |
426 | ||
427 | config BR2_PACKAGE_XPROTO_XEXTPROTO | |
428 | bool "xproto-xextproto package replaced by xorgproto" | |
429 | select BR2_LEGACY | |
430 | select BR2_PACKAGE_XORGPROTO | |
431 | help | |
432 | The xproto-xextproto package has been replaced by the | |
433 | xorgproto package, which combines all xproto_* packages. | |
434 | ||
435 | config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO | |
436 | bool "xproto-xf86bigfontproto package replaced by xorgproto" | |
437 | select BR2_LEGACY | |
438 | select BR2_PACKAGE_XORGPROTO | |
439 | help | |
440 | The xproto-xf86bigfontproto package has been replaced by the | |
441 | xorgproto package, which combines all xproto_* packages. | |
442 | ||
443 | config BR2_PACKAGE_XPROTO_XF86DGAPROTO | |
444 | bool "xproto-xf86dgaproto package replaced by xorgproto" | |
445 | select BR2_LEGACY | |
446 | select BR2_PACKAGE_XORGPROTO | |
447 | help | |
448 | The xproto-xf86dgaproto package has been replaced by the | |
449 | xorgproto package, which combines all xproto_* packages. | |
450 | ||
451 | config BR2_PACKAGE_XPROTO_XF86DRIPROTO | |
452 | bool "xproto-xf86driproto package replaced by xorgproto" | |
453 | select BR2_LEGACY | |
454 | select BR2_PACKAGE_XORGPROTO | |
455 | help | |
456 | The xproto-xf86driproto package has been replaced by the | |
457 | xorgproto package, which combines all xproto_* packages. | |
458 | ||
459 | config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO | |
460 | bool "xproto-xf86vidmodeproto package replaced by xorgproto" | |
461 | select BR2_LEGACY | |
462 | select BR2_PACKAGE_XORGPROTO | |
463 | help | |
464 | The xproto-xf86vidmodeproto package has been replaced by the | |
465 | xorgproto package, which combines all xproto_* packages. | |
466 | ||
467 | config BR2_PACKAGE_XPROTO_XINERAMAPROTO | |
468 | bool "xproto-xineramaproto package replaced by xorgproto" | |
469 | select BR2_LEGACY | |
470 | select BR2_PACKAGE_XORGPROTO | |
471 | help | |
472 | The xproto-xineramaproto package has been replaced by the | |
473 | xorgproto package, which combines all xproto_* packages. | |
474 | ||
475 | config BR2_PACKAGE_XPROTO_XPROTO | |
476 | bool "xproto-xproto package replaced by xorgproto" | |
477 | select BR2_LEGACY | |
478 | select BR2_PACKAGE_XORGPROTO | |
479 | help | |
480 | The xproto-xproto package has been replaced by the | |
481 | xorgproto package, which combines all xproto_* packages. | |
482 | ||
483 | config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL | |
484 | bool "xproto-xproxymanagementprotocol package replaced by xorgproto" | |
485 | select BR2_LEGACY | |
486 | select BR2_PACKAGE_XORGPROTO | |
487 | help | |
488 | The xproto-xproxymanagementprotocol package has been | |
489 | replaced by the xorgproto package, which combines all | |
490 | xproto_* packages. | |
491 | ||
3f2aef56 AD |
492 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL |
493 | bool "gst1-plugins-bad opengl option moved to gst1-plugins-base" | |
494 | select BR2_LEGACY | |
495 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL | |
496 | help | |
497 | The opengl option has been moved from gst1-plugins-bad to | |
498 | gst1-plugins-base. | |
499 | ||
500 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2 | |
501 | bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base" | |
502 | select BR2_LEGACY | |
503 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2 | |
504 | help | |
505 | The gles2 option has been moved from gst1-plugins-bad to | |
506 | gst1-plugins-base. | |
507 | ||
508 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX | |
509 | bool "gst1-plugins-bad glx option moved to gst1-plugins-base" | |
510 | select BR2_LEGACY | |
511 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX | |
512 | help | |
513 | The glx option has been moved from gst1-plugins-bad to | |
514 | gst1-plugins-base. | |
515 | ||
516 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL | |
517 | bool "gst1-plugins-bad egl option moved to gst1-plugins-base" | |
518 | select BR2_LEGACY | |
519 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL | |
520 | help | |
521 | The egl option has been moved from gst1-plugins-bad to | |
522 | gst1-plugins-base. | |
523 | ||
524 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11 | |
525 | bool "gst1-plugins-bad x11 option moved to gst1-plugins-base" | |
526 | select BR2_LEGACY | |
527 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11 | |
528 | help | |
529 | The x11 option has been moved from gst1-plugins-bad to | |
530 | gst1-plugins-base. | |
531 | ||
532 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND | |
533 | bool "gst1-plugins-bad wayland option moved to gst1-plugins-base" | |
534 | select BR2_LEGACY | |
535 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND | |
536 | help | |
537 | The wayland option has been moved from gst1-plugins-bad to | |
538 | gst1-plugins-base. | |
539 | ||
540 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX | |
541 | bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base" | |
542 | select BR2_LEGACY | |
543 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX | |
544 | help | |
545 | The dispmanx option has been moved from gst1-plugins-mad to | |
546 | gst1-plugins-base. | |
547 | ||
548 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
549 | bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base" | |
550 | select BR2_LEGACY | |
551 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER | |
552 | help | |
553 | The audiomixer option has been moved from gst1-plugins-bad to | |
554 | gst1-plugins-base. | |
555 | ||
556 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME | |
557 | bool "gst1-plugins-ugly lame option moved to gst1-plugins-good" | |
558 | select BR2_LEGACY | |
559 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME | |
560 | help | |
561 | The lame option has been moved from gst1-plugins-ugly to | |
562 | gst1-plugins-good. | |
563 | ||
564 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123 | |
565 | bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good" | |
566 | select BR2_LEGACY | |
567 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123 | |
568 | help | |
569 | The mpg123 option has been moved from gst1-plugins-ugly to | |
570 | gst1-plugins-good. | |
571 | ||
bae35c80 RN |
572 | config BR2_GDB_VERSION_7_11 |
573 | bool "gdb 7.11 has been removed" | |
574 | select BR2_LEGACY | |
575 | help | |
576 | The 7.11 version of gdb has been removed. Use a newer version | |
577 | instead. | |
578 | ||
54a2e7a3 RN |
579 | config BR2_GDB_VERSION_7_10 |
580 | bool "gdb 7.10 has been removed" | |
581 | select BR2_LEGACY | |
582 | help | |
583 | The 7.10 version of gdb has been removed. Use a newer version | |
584 | instead. | |
585 | ||
86dfb429 | 586 | ############################################################################### |
9657e964 BK |
587 | comment "Legacy options removed in 2018.05" |
588 | ||
8553b398 PV |
589 | config BR2_PACKAGE_MEDIAART_BACKEND_NONE |
590 | bool "libmediaart none backend option renamed" | |
591 | select BR2_LEGACY | |
592 | help | |
593 | For consistency reasons, the option | |
594 | BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to | |
595 | BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE | |
596 | ||
597 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
598 | bool "libmediaart gdk-pixbuf backend option renamed" | |
599 | select BR2_LEGACY | |
600 | help | |
601 | For consistency reasons, the option | |
602 | BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to | |
603 | BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF | |
604 | ||
605 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
606 | bool "libmediaart qt backend option renamed" | |
607 | select BR2_LEGACY | |
608 | help | |
609 | For consistency reasons, the option | |
610 | BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to | |
611 | BR2_PACKAGE_LIBMEDIAART_BACKEND_QT | |
612 | ||
4a03a66f YM |
613 | # Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from |
614 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
615 | config BR2_PACKAGE_TI_SGX_AM335X |
616 | bool "ti-sgx-km AM335X option renamed" | |
617 | select BR2_LEGACY | |
618 | help | |
619 | For consistency reasons, the option | |
620 | BR2_PACKAGE_TI_SGX_AM335X has been renamed to | |
621 | BR2_PACKAGE_TI_SGX_KM_AM335X. | |
622 | ||
4a03a66f YM |
623 | # Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from |
624 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
625 | config BR2_PACKAGE_TI_SGX_AM437X |
626 | bool "ti-sgx-km AM437X option renamed" | |
627 | select BR2_LEGACY | |
628 | help | |
629 | For consistency reasons, the option | |
630 | BR2_PACKAGE_TI_SGX_AM437X has been renamed to | |
631 | BR2_PACKAGE_TI_SGX_KM_AM437X. | |
632 | ||
4a03a66f YM |
633 | # Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from |
634 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
635 | config BR2_PACKAGE_TI_SGX_AM4430 |
636 | bool "ti-sgx-km AM4430 option renamed" | |
637 | select BR2_LEGACY | |
638 | help | |
639 | For consistency reasons, the option | |
640 | BR2_PACKAGE_TI_SGX_AM4430 has been renamed to | |
641 | BR2_PACKAGE_TI_SGX_KM_AM4430. | |
642 | ||
4a03a66f YM |
643 | # Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from |
644 | # package/ti-sgx-km/Config.in | |
b54c5464 TP |
645 | config BR2_PACKAGE_TI_SGX_AM5430 |
646 | bool "ti-sgx-km AM5430 option renamed" | |
647 | select BR2_LEGACY | |
648 | help | |
649 | For consistency reasons, the option | |
650 | BR2_PACKAGE_TI_SGX_AM5430 has been renamed to | |
651 | BR2_PACKAGE_TI_SGX_KM_AM5430. | |
652 | ||
a79df201 TP |
653 | config BR2_PACKAGE_JANUS_AUDIO_BRIDGE |
654 | bool "janus-gateway audio-bridge option renamed" | |
655 | select BR2_LEGACY | |
656 | select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE | |
657 | help | |
658 | For consistency reasons, the janus-gateway option | |
659 | BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to | |
660 | BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE. | |
661 | ||
662 | config BR2_PACKAGE_JANUS_ECHO_TEST | |
663 | bool "janus-gateway echo-test option renamed" | |
664 | select BR2_LEGACY | |
665 | select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST | |
666 | help | |
667 | For consistency reasons, the janus-gateway option | |
668 | BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to | |
669 | BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST. | |
670 | ||
671 | config BR2_PACKAGE_JANUS_RECORDPLAY | |
672 | bool "janus-gateway recordplay option renamed" | |
673 | select BR2_LEGACY | |
674 | select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY | |
675 | help | |
676 | For consistency reasons, the janus-gateway option | |
677 | BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to | |
678 | BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY. | |
679 | ||
680 | config BR2_PACKAGE_JANUS_SIP_GATEWAY | |
681 | bool "janus-gateway sip-gateway option renamed" | |
682 | select BR2_LEGACY | |
683 | select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY | |
684 | help | |
685 | For consistency reasons, the janus-gateway option | |
686 | BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to | |
687 | BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY. | |
688 | ||
689 | config BR2_PACKAGE_JANUS_STREAMING | |
690 | bool "janus-gateway streaming option renamed" | |
691 | select BR2_LEGACY | |
692 | select BR2_PACKAGE_JANUS_GATEWAY_STREAMING | |
693 | help | |
694 | For consistency reasons, the janus-gateway option | |
695 | BR2_PACKAGE_JANUS_STREAMING has been renamed to | |
696 | BR2_PACKAGE_JANUS_GATEWAY_STREAMING. | |
697 | ||
698 | config BR2_PACKAGE_JANUS_TEXT_ROOM | |
699 | bool "janus-gateway text-room option renamed" | |
700 | select BR2_LEGACY | |
701 | select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM | |
702 | help | |
703 | For consistency reasons, the janus-gateway option | |
704 | BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to | |
705 | BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM. | |
706 | ||
707 | config BR2_PACKAGE_JANUS_VIDEO_CALL | |
708 | bool "janus-gateway video-call option renamed" | |
709 | select BR2_LEGACY | |
710 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL | |
711 | help | |
712 | For consistency reasons, the janus-gateway option | |
713 | BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to | |
714 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL. | |
715 | ||
716 | config BR2_PACKAGE_JANUS_VIDEO_ROOM | |
717 | bool "janus-gateway video-room option renamed" | |
718 | select BR2_LEGACY | |
719 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM | |
720 | help | |
721 | For consistency reasons, the janus-gateway option | |
722 | BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to | |
723 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM. | |
724 | ||
725 | config BR2_PACKAGE_JANUS_MQTT | |
726 | bool "janus-gateway mqtt option renamed" | |
727 | select BR2_LEGACY | |
728 | select BR2_PACKAGE_JANUS_GATEWAY_MQTT | |
729 | help | |
730 | For consistency reasons, the janus-gateway option | |
731 | BR2_PACKAGE_JANUS_MQTT has been renamed to | |
732 | BR2_PACKAGE_JANUS_GATEWAY_MQTT. | |
733 | ||
734 | config BR2_PACKAGE_JANUS_RABBITMQ | |
735 | bool "janus-gateway rabbitmq option renamed" | |
736 | select BR2_LEGACY | |
737 | select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ | |
738 | help | |
739 | For consistency reasons, the janus-gateway option | |
740 | BR2_PACKAGE_JANUS_RABBITMQ has been renamed to | |
741 | BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ. | |
742 | ||
743 | config BR2_PACKAGE_JANUS_REST | |
744 | bool "janus-gateway rest option renamed" | |
745 | select BR2_LEGACY | |
746 | select BR2_PACKAGE_JANUS_GATEWAY_REST | |
747 | help | |
748 | For consistency reasons, the janus-gateway option | |
749 | BR2_PACKAGE_JANUS_REST has been renamed to | |
750 | BR2_PACKAGE_JANUS_GATEWAY_REST. | |
751 | ||
752 | config BR2_PACKAGE_JANUS_UNIX_SOCKETS | |
753 | bool "janus-gateway unix-sockets option renamed" | |
754 | select BR2_LEGACY | |
755 | select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS | |
756 | help | |
757 | For consistency reasons, the janus-gateway option | |
758 | BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to | |
759 | BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS. | |
760 | ||
761 | config BR2_PACKAGE_JANUS_WEBSOCKETS | |
762 | bool "janus-gateway websockets option renamed" | |
763 | select BR2_LEGACY | |
764 | select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS | |
765 | help | |
766 | For consistency reasons, the janus-gateway option | |
767 | BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to | |
768 | BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS. | |
769 | ||
9d2c5c25 TP |
770 | config BR2_PACKAGE_IPSEC_SECCTX_DISABLE |
771 | bool "ipsec-tools security context disable option renamed" | |
772 | select BR2_LEGACY | |
773 | help | |
774 | For consistency reasons, the option | |
775 | BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to | |
776 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE. | |
777 | ||
778 | config BR2_PACKAGE_IPSEC_SECCTX_ENABLE | |
779 | bool "ipsec-tools SELinux security context enable option renamed" | |
780 | select BR2_LEGACY | |
781 | help | |
782 | For consistency reasons, the option | |
783 | BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to | |
784 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE. | |
785 | ||
786 | config BR2_PACKAGE_IPSEC_SECCTX_KERNEL | |
787 | bool "ipsec-tools kernel security context enable option renamed" | |
788 | select BR2_LEGACY | |
789 | help | |
790 | For consistency reasons, the option | |
791 | BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to | |
792 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL. | |
793 | ||
dc4e4aac TP |
794 | config BR2_PACKAGE_LIBTFDI_CPP |
795 | bool "libftdi C++ bindings option renamed" | |
796 | select BR2_LEGACY | |
797 | select BR2_PACKAGE_LIBFTDI_CPP | |
798 | help | |
799 | The option BR2_PACKAGE_LIBTFDI_CPP was renamed to | |
800 | BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option | |
801 | name. | |
802 | ||
94c14628 TP |
803 | config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE |
804 | bool "jquery-ui-themes option black-tie renamed" | |
805 | select BR2_LEGACY | |
806 | help | |
807 | For consistency reasons, the jquery-ui-themes option for the | |
808 | black-tie theme has been renamed from | |
809 | BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to | |
810 | BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE. | |
811 | ||
812 | config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER | |
813 | bool "jquery-ui-themes option blitzer renamed" | |
814 | select BR2_LEGACY | |
815 | help | |
816 | For consistency reasons, the jquery-ui-themes option for the | |
817 | blitzer theme has been renamed from | |
818 | BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to | |
819 | BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER. | |
820 | ||
821 | config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO | |
822 | bool "jquery-ui-themes option cupertino renamed" | |
823 | select BR2_LEGACY | |
824 | help | |
825 | For consistency reasons, the jquery-ui-themes option for the | |
826 | cupertino theme has been renamed from | |
827 | BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to | |
828 | BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO. | |
829 | ||
830 | config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE | |
831 | bool "jquery-ui-themes option dark-hive renamed" | |
832 | select BR2_LEGACY | |
833 | help | |
834 | For consistency reasons, the jquery-ui-themes option for the | |
835 | dark-hive theme has been renamed from | |
836 | BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to | |
837 | BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE. | |
838 | ||
839 | config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV | |
840 | bool "jquery-ui-themes option dot-luv renamed" | |
841 | select BR2_LEGACY | |
842 | help | |
843 | For consistency reasons, the jquery-ui-themes option for the | |
844 | dot-luv theme has been renamed from | |
845 | BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to | |
846 | BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV. | |
847 | ||
848 | config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT | |
849 | bool "jquery-ui-themes option eggplant renamed" | |
850 | select BR2_LEGACY | |
851 | help | |
852 | For consistency reasons, the jquery-ui-themes option for the | |
853 | eggplant theme has been renamed from | |
854 | BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to | |
855 | BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT. | |
856 | ||
857 | config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE | |
858 | bool "jquery-ui-themes option excite-bike renamed" | |
859 | select BR2_LEGACY | |
860 | help | |
861 | For consistency reasons, the jquery-ui-themes option for the | |
862 | excite-bike theme has been renamed from | |
863 | BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to | |
864 | BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE. | |
865 | ||
866 | config BR2_PACKAGE_JQUERY_UI_THEME_FLICK | |
867 | bool "jquery-ui-themes option flick renamed" | |
868 | select BR2_LEGACY | |
869 | help | |
870 | For consistency reasons, the jquery-ui-themes option for the | |
871 | flick theme has been renamed from | |
872 | BR2_PACKAGE_JQUERY_UI_THEME_FLICK to | |
873 | BR2_PACKAGE_JQUERY_UI_THEMES_FLICK. | |
874 | ||
875 | config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS | |
876 | bool "jquery-ui-themes option hot-sneaks renamed" | |
877 | select BR2_LEGACY | |
878 | help | |
879 | For consistency reasons, the jquery-ui-themes option for the | |
880 | hot-sneaks theme has been renamed from | |
881 | BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to | |
882 | BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS. | |
883 | ||
884 | config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY | |
885 | bool "jquery-ui-themes option humanity renamed" | |
886 | select BR2_LEGACY | |
887 | help | |
888 | For consistency reasons, the jquery-ui-themes option for the | |
889 | humanity theme has been renamed from | |
890 | BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to | |
891 | BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY. | |
892 | ||
893 | config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG | |
894 | bool "jquery-ui-themes option le-frog renamed" | |
895 | select BR2_LEGACY | |
896 | help | |
897 | For consistency reasons, the jquery-ui-themes option for the | |
898 | le-frog theme has been renamed from | |
899 | BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to | |
900 | BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG. | |
901 | ||
902 | config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC | |
903 | bool "jquery-ui-themes option mint-choc renamed" | |
904 | select BR2_LEGACY | |
905 | help | |
906 | For consistency reasons, the jquery-ui-themes option for the | |
907 | mint-choc theme has been renamed from | |
908 | BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to | |
909 | BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC. | |
910 | ||
911 | config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST | |
912 | bool "jquery-ui-themes option overcast renamed" | |
913 | select BR2_LEGACY | |
914 | help | |
915 | For consistency reasons, the jquery-ui-themes option for the | |
916 | overcast theme has been renamed from | |
917 | BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to | |
918 | BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST. | |
919 | ||
920 | config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER | |
921 | bool "jquery-ui-themes option pepper-grinder renamed" | |
922 | select BR2_LEGACY | |
923 | help | |
924 | For consistency reasons, the jquery-ui-themes option for the | |
925 | pepper-grinder theme has been renamed from | |
926 | BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to | |
927 | BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER. | |
928 | ||
929 | config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND | |
930 | bool "jquery-ui-themes option redmond renamed" | |
931 | select BR2_LEGACY | |
932 | help | |
933 | For consistency reasons, the jquery-ui-themes option for the | |
934 | redmond theme has been renamed from | |
935 | BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to | |
936 | BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND. | |
937 | ||
938 | config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS | |
939 | bool "jquery-ui-themes option smoothness renamed" | |
940 | select BR2_LEGACY | |
941 | help | |
942 | For consistency reasons, the jquery-ui-themes option for the | |
943 | smoothness theme has been renamed from | |
944 | BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to | |
945 | BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS. | |
946 | ||
947 | config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET | |
948 | bool "jquery-ui-themes option south-street renamed" | |
949 | select BR2_LEGACY | |
950 | help | |
951 | For consistency reasons, the jquery-ui-themes option for the | |
952 | south-street theme has been renamed from | |
953 | BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to | |
954 | BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET. | |
955 | ||
956 | config BR2_PACKAGE_JQUERY_UI_THEME_START | |
957 | bool "jquery-ui-themes option start renamed" | |
958 | select BR2_LEGACY | |
959 | help | |
960 | For consistency reasons, the jquery-ui-themes option for the | |
961 | start theme has been renamed from | |
962 | BR2_PACKAGE_JQUERY_UI_THEME_START to | |
963 | BR2_PACKAGE_JQUERY_UI_THEMES_START. | |
964 | ||
965 | config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY | |
966 | bool "jquery-ui-themes option sunny renamed" | |
967 | select BR2_LEGACY | |
968 | help | |
969 | For consistency reasons, the jquery-ui-themes option for the | |
970 | sunny theme has been renamed from | |
971 | BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to | |
972 | BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY. | |
973 | ||
974 | config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE | |
975 | bool "jquery-ui-themes option swanky-purse renamed" | |
976 | select BR2_LEGACY | |
977 | help | |
978 | For consistency reasons, the jquery-ui-themes option for the | |
979 | swanky-purse theme has been renamed from | |
980 | BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to | |
981 | BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE. | |
982 | ||
983 | config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC | |
984 | bool "jquery-ui-themes option trontastic renamed" | |
985 | select BR2_LEGACY | |
986 | help | |
987 | For consistency reasons, the jquery-ui-themes option for the | |
988 | trontastic theme has been renamed from | |
989 | BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to | |
990 | BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC. | |
991 | ||
992 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS | |
993 | bool "jquery-ui-themes option ui-darkness renamed" | |
994 | select BR2_LEGACY | |
995 | help | |
996 | For consistency reasons, the jquery-ui-themes option for the | |
997 | ui-darkness theme has been renamed from | |
998 | BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to | |
999 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS. | |
1000 | ||
1001 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS | |
1002 | bool "jquery-ui-themes option ui-lightness renamed" | |
1003 | select BR2_LEGACY | |
1004 | help | |
1005 | For consistency reasons, the jquery-ui-themes option for the | |
1006 | ui-lightness theme has been renamed from | |
1007 | BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to | |
1008 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS. | |
1009 | ||
1010 | config BR2_PACKAGE_JQUERY_UI_THEME_VADER | |
1011 | bool "jquery-ui-themes option vader renamed" | |
1012 | select BR2_LEGACY | |
1013 | help | |
1014 | For consistency reasons, the jquery-ui-themes option for the | |
1015 | vader theme has been renamed from | |
1016 | BR2_PACKAGE_JQUERY_UI_THEME_VADER to | |
1017 | BR2_PACKAGE_JQUERY_UI_THEMES_VADER. | |
1018 | ||
b2b874fe TP |
1019 | config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH |
1020 | bool "bluez5-utils health plugin option renamed" | |
1021 | select BR2_LEGACY | |
1022 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH | |
1023 | help | |
1024 | For consistency reasons, the option | |
1025 | BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to | |
1026 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH. | |
1027 | ||
1028 | config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI | |
1029 | bool "bluez5-utils midi plugin option renamed" | |
1030 | select BR2_LEGACY | |
1031 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI | |
1032 | help | |
1033 | For consistency reasons, the option | |
1034 | BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to | |
1035 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI. | |
1036 | ||
1037 | config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC | |
1038 | bool "bluez5-utils nfc plugin option renamed" | |
1039 | select BR2_LEGACY | |
1040 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC | |
1041 | help | |
1042 | For consistency reasons, the option | |
1043 | BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to | |
1044 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC. | |
1045 | ||
1046 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP | |
1047 | bool "bluez5-utils sap plugin option renamed" | |
1048 | select BR2_LEGACY | |
1049 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP | |
1050 | help | |
1051 | For consistency reasons, the option | |
1052 | BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to | |
1053 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP. | |
1054 | ||
1055 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS | |
1056 | bool "bluez5-utils sixaxis plugin option renamed" | |
1057 | select BR2_LEGACY | |
1058 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS | |
1059 | help | |
1060 | For consistency reasons, the option | |
1061 | BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to | |
1062 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS. | |
1063 | ||
79a678d7 BK |
1064 | config BR2_PACKAGE_TRANSMISSION_REMOTE |
1065 | bool "transmission remote tool option removed" | |
1066 | select BR2_LEGACY | |
1067 | select BR2_PACKAGE_TRANSMISSION_DAEMON | |
1068 | help | |
1069 | Upstream does not provide a separate configure option for | |
1070 | the tool transmission-remote, it is built when the | |
1071 | transmission daemon has been enabled. Therefore, Buildroot | |
1072 | has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON | |
1073 | for you. | |
1074 | ||
f6421150 FF |
1075 | config BR2_PACKAGE_LIBKCAPI_APPS |
1076 | bool "libkcapi test applications removed" | |
1077 | select BR2_LEGACY | |
1078 | select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS | |
1079 | select BR2_PACKAGE_LIBKCAPI_RNGAPP | |
1080 | select BR2_PACKAGE_LIBKCAPI_SPEED | |
1081 | select BR2_PACKAGE_LIBKCAPI_TEST | |
1082 | help | |
1083 | Test applications (hasher, rng read, speed-test, test) now | |
1084 | have their own configuration options in the libkcapi menu. | |
1085 | ||
dacb1765 BK |
1086 | config BR2_PACKAGE_MPLAYER |
1087 | bool "mplayer package removed" | |
1088 | select BR2_LEGACY | |
1089 | help | |
1090 | The mplayer package was removed. | |
1091 | ||
1092 | config BR2_PACKAGE_MPLAYER_MPLAYER | |
1093 | bool "mplayer package removed" | |
1094 | select BR2_LEGACY | |
1095 | help | |
1096 | The mplayer package was removed. | |
1097 | ||
1098 | config BR2_PACKAGE_MPLAYER_MENCODER | |
1099 | bool "mplayer package removed" | |
1100 | select BR2_LEGACY | |
1101 | help | |
1102 | The mplayer package was removed. | |
1103 | ||
3f449119 BK |
1104 | config BR2_PACKAGE_LIBPLAYER_MPLAYER |
1105 | bool "mplayer support in libplayer removed" | |
1106 | select BR2_LEGACY | |
1107 | help | |
1108 | The mplayer package was removed. | |
1109 | ||
46444ba0 TP |
1110 | config BR2_PACKAGE_IQVLINUX |
1111 | bool "iqvlinux package removed" | |
1112 | select BR2_LEGACY | |
1113 | help | |
1114 | This package contained a kernel module from Intel, which | |
1115 | could only be used together with Intel userspace tools | |
1116 | provided under NDA, which also come with the same kernel | |
1117 | module. The copy of the kernel module available on | |
1118 | SourceForge is provided only to comply with the GPLv2 | |
1119 | requirement. Intel engineers were even surprised it even | |
1120 | built and were not willing to make any effort to fix their | |
1121 | tarball naming to contain a version number. Therefore, it | |
1122 | does not make sense for Buildroot to provide such a package. | |
1123 | ||
1124 | See https://sourceforge.net/p/e1000/bugs/589/ for the | |
1125 | discussion. | |
1126 | ||
e2ea4157 TP |
1127 | config BR2_BINFMT_FLAT_SEP_DATA |
1128 | bool "binfmt FLAT with separate code and data removed" | |
1129 | select BR2_LEGACY | |
1130 | help | |
1131 | This FLAT binary format was only used on Blackfin, which has | |
1132 | been removed. | |
1133 | ||
325bb379 TP |
1134 | config BR2_bfin |
1135 | bool "Blackfin architecture support removed" | |
1136 | select BR2_LEGACY | |
1137 | help | |
1138 | Following the removal of Blackfin support for the upstream | |
1139 | Linux kernel, Buildroot has removed support for this CPU | |
1140 | architecture. | |
1141 | ||
9657e964 BK |
1142 | config BR2_PACKAGE_KODI_ADSP_BASIC |
1143 | bool "kodi-adsp-basic package removed" | |
1144 | select BR2_LEGACY | |
1145 | help | |
1146 | kodi-adsp-basic is unmaintained | |
1147 | ||
1148 | config BR2_PACKAGE_KODI_ADSP_FREESURROUND | |
1149 | bool "kodi-adsp-freesurround package removed" | |
1150 | select BR2_LEGACY | |
1151 | help | |
1152 | kodi-adsp-freesurround is unmaintained | |
1153 | ||
1154 | ############################################################################### | |
86dfb429 BS |
1155 | comment "Legacy options removed in 2018.02" |
1156 | ||
2a9b7b8a PK |
1157 | config BR2_KERNEL_HEADERS_3_4 |
1158 | bool "kernel headers version 3.4.x are no longer supported" | |
2a9b7b8a PK |
1159 | select BR2_LEGACY |
1160 | help | |
1161 | Version 3.4.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1162 | maintained upstream and are now removed. |
2a9b7b8a PK |
1163 | |
1164 | config BR2_KERNEL_HEADERS_3_10 | |
1165 | bool "kernel headers version 3.10.x are no longer supported" | |
2a9b7b8a PK |
1166 | select BR2_LEGACY |
1167 | help | |
1168 | Version 3.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1169 | maintained upstream and are now removed. |
2a9b7b8a PK |
1170 | |
1171 | config BR2_KERNEL_HEADERS_3_12 | |
1172 | bool "kernel headers version 3.12.x are no longer supported" | |
2a9b7b8a PK |
1173 | select BR2_LEGACY |
1174 | help | |
1175 | Version 3.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1176 | maintained upstream and are now removed. |
2a9b7b8a | 1177 | |
453d29f1 RN |
1178 | config BR2_BINUTILS_VERSION_2_27_X |
1179 | bool "binutils version 2.27 support removed" | |
1180 | select BR2_LEGACY | |
1181 | help | |
1182 | Support for binutils version 2.27 has been removed. The | |
1183 | current default version (2.29 or later) has been selected | |
1184 | instead. | |
1185 | ||
55d79ed9 BS |
1186 | config BR2_PACKAGE_EEPROG |
1187 | bool "eeprog package removed" | |
1188 | select BR2_LEGACY | |
1189 | select BR2_PACKAGE_I2C_TOOLS | |
1190 | select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS | |
1191 | help | |
1192 | The eeprog program is now provided by the i2c-tools package. | |
1193 | ||
86dfb429 BS |
1194 | config BR2_PACKAGE_GNUPG2_GPGV2 |
1195 | bool "gnupg2 gpgv2 option removed" | |
1196 | select BR2_LEGACY | |
1197 | select BR2_PACKAGE_GNUPG2_GPGV | |
1198 | help | |
1199 | The gpgv2 executable is now named gpgv. The config option | |
1200 | has been renamed accordingly. | |
1201 | ||
f7a7d948 GB |
1202 | config BR2_PACKAGE_IMX_GPU_VIV_APITRACE |
1203 | bool "Vivante apitrace tool option removed" | |
1204 | select BR2_LEGACY | |
1205 | help | |
1206 | The apitrace tool for Vivante is not provided by the | |
1207 | imx-gpu-viv package any longer. | |
1208 | ||
1209 | config BR2_PACKAGE_IMX_GPU_VIV_G2D | |
1210 | bool "Vivante G2D libraries from imx-gpu-viv removed" | |
1211 | select BR2_LEGACY | |
1212 | select BR2_PACKAGE_IMX_GPU_G2D | |
1213 | help | |
1214 | The G2D libraries are now provided by the imx-gpu-g2d package. | |
1215 | ||
f52af619 CS |
1216 | ############################################################################### |
1217 | comment "Legacy options removed in 2017.11" | |
1218 | ||
6c10e40d CS |
1219 | config BR2_PACKAGE_RFKILL |
1220 | bool "rfkill package removed" | |
1221 | select BR2_LEGACY | |
1222 | select BR2_PACKAGE_UTIL_LINUX | |
1223 | select BR2_PACKAGE_UTIL_LINUX_RFKILL | |
1224 | help | |
1225 | The rfkill program is now provided by the util-linux package. | |
1226 | ||
d4382005 CS |
1227 | config BR2_PACKAGE_UTIL_LINUX_RESET |
1228 | bool "util-linux reset option removed" | |
1229 | select BR2_LEGACY | |
1230 | help | |
1231 | The util-linux package no longer offers a "reset" command. Use | |
1232 | either the reset command provided by BusyBox or select ncurses | |
1233 | programs, which will install a symlink from "tset" to reset. | |
1234 | ||
9d6da7a2 AD |
1235 | config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW |
1236 | bool "policycoreutils audit2allow option removed" | |
1237 | select BR2_LEGACY | |
1238 | select BR2_PACKAGE_SELINUX_PYTHON | |
1239 | select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW | |
1240 | help | |
1241 | The policycoreutils package no longer offers audit2allow | |
1242 | as a option. This package has been moved into the | |
1243 | selinux-python package by the SELinux maintainers. | |
1244 | ||
1245 | config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND | |
1246 | bool "policycoreutils restorecond option removed" | |
1247 | select BR2_LEGACY | |
1248 | select BR2_PACKAGE_RESTORECOND | |
1249 | help | |
1250 | The policycoreutils package no longer offers restorecond | |
1251 | as a option. This package has been moved into a seperate | |
1252 | package maintained by the SELinux maintainers. | |
1253 | ||
1254 | config BR2_PACKAGE_SEPOLGEN | |
1255 | bool "sepolgen package has been removed" | |
1256 | select BR2_LEGACY | |
1257 | select BR2_PACKAGE_SELINUX_PYTHON | |
1258 | select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN | |
1259 | help | |
1260 | Sepolgen is no longer a individual package, but instead has | |
1261 | been moved into the selinux-python package by the SELinux | |
1262 | maintainers. | |
1263 | ||
49a9fb0f BK |
1264 | config BR2_PACKAGE_OPENOBEX_BLUEZ |
1265 | bool "openobex bluez option removed" | |
1266 | select BR2_LEGACY | |
1267 | select BR2_PACKAGE_BLUEZ_UTILS | |
1268 | help | |
1269 | The OpenOBEX package no longer offers an option to enable or | |
1270 | disable BlueZ support. Instead, BlueZ support is always | |
1271 | included when the bluez5_utils or bluez_utils package is | |
1272 | selected. | |
1273 | ||
1274 | config BR2_PACKAGE_OPENOBEX_LIBUSB | |
1275 | bool "openobex libusb option removed" | |
1276 | select BR2_LEGACY | |
1277 | select BR2_PACKAGE_LIBUSB | |
1278 | help | |
1279 | The OpenOBEX package no longer offers an option to enable or | |
1280 | disable libusb support. Instead, USB support is always | |
1281 | included when the libusb package is selected. | |
1282 | ||
1283 | config BR2_PACKAGE_OPENOBEX_APPS | |
1284 | bool "openobex apps option removed" | |
1285 | select BR2_LEGACY | |
1286 | help | |
1287 | The OpenOBEX package no longer offers an option to enable or | |
1288 | disable apps support. | |
1289 | ||
1290 | config BR2_PACKAGE_OPENOBEX_SYSLOG | |
1291 | bool "openobex syslog option removed" | |
1292 | select BR2_LEGACY | |
1293 | help | |
1294 | The OpenOBEX package no longer offers an option to enable or | |
1295 | disable syslog support. | |
1296 | ||
1297 | config BR2_PACKAGE_OPENOBEX_DUMP | |
1298 | bool "openobex dump option removed" | |
1299 | select BR2_LEGACY | |
1300 | help | |
1301 | The OpenOBEX package no longer offers an option to enable or | |
1302 | disable dump support. | |
1303 | ||
fca70389 AM |
1304 | config BR2_PACKAGE_AICCU |
1305 | bool "aiccu utility removed" | |
1306 | select BR2_LEGACY | |
1307 | help | |
1308 | As the SixXS project has ceased its operation on 2017-06-06, | |
1309 | the AICCU utility has no use anymore and has been removed. | |
1310 | ||
1311 | https://www.sixxs.net/sunset/ | |
1312 | ||
f52af619 CS |
1313 | config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS |
1314 | bool "util-linux login utilities option removed" | |
1315 | select BR2_LEGACY | |
1316 | select BR2_PACKAGE_UTIL_LINUX_LAST | |
1317 | select BR2_PACKAGE_UTIL_LINUX_LOGIN | |
1318 | select BR2_PACKAGE_UTIL_LINUX_RUNUSER | |
1319 | select BR2_PACKAGE_UTIL_LINUX_SU | |
1320 | select BR2_PACKAGE_UTIL_LINUX_SULOGIN | |
1321 | help | |
1322 | Login utilities (last, login, runuser, su, sulogin) now have | |
1323 | their own configuration options in the util-linux menu. | |
1324 | ||
f6695219 RN |
1325 | ############################################################################### |
1326 | comment "Legacy options removed in 2017.08" | |
1327 | ||
144dc9ca YM |
1328 | config BR2_TARGET_GRUB |
1329 | bool "grub (aka grub-legacy) has been removed" | |
1330 | select BR2_LEGACY | |
1331 | help | |
1332 | grub-legacy is no longer maintained, and no longer builds with | |
1333 | recent binutils versions. | |
1334 | ||
1335 | Use grub2 or syslinux instead. | |
1336 | ||
20db0989 BM |
1337 | config BR2_PACKAGE_SIMICSFS |
1338 | bool "simicsfs support removed" | |
1339 | select BR2_LEGACY | |
1340 | help | |
1341 | Support for simicsfs kernel driver that provides access to a | |
1342 | host computer's local filesystem when the target is | |
1343 | executing within a SIMICS simulation has been removed. | |
1344 | ||
1345 | Simics is now moving away from the simicsfs kernel module, | |
1346 | as the kernel module has required too much maintenance | |
1347 | work. Users should move to the user mode Simics agent | |
1348 | instead. | |
1349 | ||
0b5dc319 TP |
1350 | config BR2_BINUTILS_VERSION_2_26_X |
1351 | bool "binutils version 2.26 support removed" | |
1352 | select BR2_LEGACY | |
1353 | help | |
1354 | Support for binutils version 2.26 has been removed. The | |
1355 | current default version (2.28 or later) has been selected | |
1356 | instead. | |
1357 | ||
b3b60706 YM |
1358 | config BR2_XTENSA_OVERLAY_DIR |
1359 | string "The BR2_XTENSA_OVERLAY_DIR option has been removed" | |
1360 | help | |
1361 | The BR2_XTENSA_OVERLAY_DIR has been removed in favour of | |
1362 | BR2_XTENSA_OVERLAY_FILE. You must now pass the complete | |
1363 | path to the overlay file, not to the directory containing | |
1364 | it. | |
1365 | ||
1366 | config BR2_XTENSA_OVERLAY_DIR_WRAP | |
1367 | bool | |
1368 | default y if BR2_XTENSA_OVERLAY_DIR != "" | |
1369 | select BR2_LEGACY | |
1370 | ||
15a96d1a | 1371 | config BR2_XTENSA_CUSTOM_NAME |
b3b60706 | 1372 | string "The BR2_XTENSA_CUSTOM_NAME option has been removed" |
15a96d1a | 1373 | help |
b3b60706 | 1374 | The BR2_XTENSA_CUSTOM_NAME option has been removed. |
15a96d1a YM |
1375 | |
1376 | config BR2_XTENSA_CUSTOM_NAME_WRAP | |
1377 | bool | |
1378 | default y if BR2_XTENSA_CUSTOM_NAME != "" | |
1379 | select BR2_LEGACY | |
1380 | ||
f47fc957 SS |
1381 | config BR2_PACKAGE_HOST_MKE2IMG |
1382 | bool "host mke2img has been removed" | |
1383 | select BR2_LEGACY | |
1384 | help | |
1385 | We now call mkfs directly to generate ext2/3/4 filesystem | |
1386 | image, so mke2img is no longer necessary. | |
1387 | ||
bee9e881 SM |
1388 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS |
1389 | int "exact size in blocks has been removed" | |
1390 | default 0 | |
1391 | help | |
1392 | This option has been removed in favor of | |
1393 | BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically | |
1394 | to the value you had before. Set to 0 here to remove the | |
1395 | warning. | |
1396 | ||
1397 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP | |
1398 | bool | |
1399 | default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \ | |
1400 | BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value | |
1401 | select BR2_LEGACY | |
1402 | ||
1403 | # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in | |
1404 | ||
235b6f17 SM |
1405 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES |
1406 | int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0 | |
1407 | default 0 | |
1408 | help | |
1409 | Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4 | |
1410 | images. It now automatically selects the number of inodes | |
1411 | based on the image size. The extra number of inodes can no | |
1412 | longer be provided; instead, provide the total number of | |
1413 | inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES. | |
1414 | ||
1415 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP | |
1416 | bool | |
1417 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0 | |
1418 | select BR2_LEGACY | |
1419 | ||
e278d85e VOR |
1420 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE |
1421 | bool "cdxaparse removed" | |
1422 | select BR2_LEGACY | |
1423 | ||
1424 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC | |
1425 | bool "dataurisrc moved to gstreamer1" | |
1426 | select BR2_LEGACY | |
1427 | help | |
1428 | Dataurisrc has moved to gstreamer core and is always built. | |
1429 | ||
1430 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP | |
1431 | bool "dccp removed" | |
1432 | select BR2_LEGACY | |
1433 | ||
1434 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE | |
1435 | bool "hdvparse removed" | |
1436 | select BR2_LEGACY | |
1437 | ||
1438 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE | |
1439 | bool "mve removed" | |
1440 | select BR2_LEGACY | |
1441 | ||
1442 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX | |
1443 | bool "nuvdemux removed" | |
1444 | select BR2_LEGACY | |
1445 | ||
1446 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT | |
1447 | bool "patchdetect removed" | |
1448 | select BR2_LEGACY | |
1449 | ||
1450 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI | |
1451 | bool "sdi removed" | |
1452 | select BR2_LEGACY | |
1453 | ||
1454 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA | |
1455 | bool "tta removed" | |
1456 | select BR2_LEGACY | |
1457 | ||
1458 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE | |
1459 | bool "videomeasure removed" | |
6e3fa33f | 1460 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA |
e278d85e | 1461 | select BR2_LEGACY |
6e3fa33f VOR |
1462 | help |
1463 | videomeasure plugin has been removed and has been replaced by | |
1464 | iqa, which has automatically been enabled. | |
e278d85e VOR |
1465 | |
1466 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK | |
1467 | bool "apexsink removed" | |
1468 | select BR2_LEGACY | |
1469 | ||
1470 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL | |
1471 | bool "sdl removed" | |
1472 | select BR2_LEGACY | |
1473 | ||
b006fe1c VOR |
1474 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD |
1475 | bool "mad (*.mp3 audio) removed" | |
1476 | select BR2_LEGACY | |
1477 | ||
4c06d249 TP |
1478 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC |
1479 | bool "gst1-plugins-bad webrtc renamed to webrtcdsp" | |
1480 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP | |
1481 | select BR2_LEGACY | |
1482 | help | |
1483 | The WebRTC plugin in GStreamer 1.x has always been named | |
1484 | webrtcdsp, but was wrongly introduced in Buildroot under the | |
1485 | name webrtc. Therefore, we have renamed the option to match | |
1486 | the actual name of the GStreamer plugin. | |
1487 | ||
0d643fd3 YM |
1488 | config BR2_STRIP_none |
1489 | bool "Strip command 'none' has been removed" | |
1490 | select BR2_LEGACY | |
1491 | help | |
1492 | The strip command choice has been changed into a single | |
1493 | boolean option. Please check that the new setting is | |
1494 | correct (in the "Build options" sub-menu) | |
1495 | ||
dd4d3c18 BK |
1496 | config BR2_PACKAGE_BEECRYPT_CPP |
1497 | bool "C++ support removed in beecrypt" | |
1498 | select BR2_LEGACY | |
1499 | help | |
1500 | Support for C++ depends on icu. The beecrypt package is | |
1501 | incompatible with icu 59+. | |
1502 | ||
622ff3d6 PK |
1503 | config BR2_PACKAGE_SPICE_CLIENT |
1504 | bool "spice client support removed" | |
1505 | select BR2_LEGACY | |
1506 | help | |
1507 | Spice client support has been removed upstream. The | |
1508 | functionality now lives in the spice-gtk widget and | |
1509 | virt-viewer. | |
1510 | ||
1511 | config BR2_PACKAGE_SPICE_GUI | |
1512 | bool "spice gui support removed" | |
1513 | select BR2_LEGACY | |
1514 | help | |
1515 | Spice gui support has been removed upstream. The | |
1516 | functionality now lives in the spice-gtk widget and | |
1517 | virt-viewer. | |
1518 | ||
6f2c0220 PK |
1519 | config BR2_PACKAGE_SPICE_TUNNEL |
1520 | bool "spice network redirection removed" | |
1521 | select BR2_LEGACY | |
1522 | help | |
1523 | Spice network redirection, aka tunnelling has been removed | |
1524 | upstream. | |
1525 | ||
438b2d13 KM |
1526 | config BR2_PACKAGE_INPUT_TOOLS |
1527 | bool "input-tools removed" | |
1528 | select BR2_LEGACY | |
1529 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1530 | help | |
1531 | input-tools has been removed, it is replaced by | |
1532 | linuxconsoletools, which has automatically been enabled. | |
1533 | ||
1534 | config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH | |
1535 | bool "inputattach moved to linuxconsoletools" | |
1536 | select BR2_LEGACY | |
1537 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1538 | select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH | |
1539 | help | |
1540 | input-tools has been removed, inputattach is now part | |
1541 | of linuxconsoletools, which has automatically been | |
1542 | enabled. | |
1543 | ||
1544 | config BR2_PACKAGE_INPUT_TOOLS_JSCAL | |
1545 | bool "jscal moved to linuxconsoletools" | |
1546 | select BR2_LEGACY | |
1547 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1548 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
1549 | help | |
1550 | input-tools has been removed, jscal is now part | |
1551 | of linuxconsoletools, which has automatically been | |
1552 | enabled. | |
1553 | ||
1554 | config BR2_PACKAGE_INPUT_TOOLS_JSTEST | |
1555 | bool "jstest moved to linuxconsoletools" | |
1556 | select BR2_LEGACY | |
1557 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
1558 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
1559 | help | |
1560 | input-tools has been removed, jstest is now part | |
1561 | of linuxconsoletools, which has automatically been | |
1562 | enabled. | |
1563 | ||
6510a826 BS |
1564 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
1565 | bool "SH Sourcery toolchain has been removed" | |
1566 | select BR2_LEGACY | |
1567 | help | |
1568 | The Sourcery CodeBench toolchain for the sh architecture has | |
d6109172 RM |
1569 | been removed, since it uses glibc older than 2.17 that |
1570 | requires -lrt to link executables using clock_* system calls. | |
1571 | This makes this toolchain difficult to maintain over time. | |
6510a826 | 1572 | |
06cac646 BS |
1573 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
1574 | bool "x86 Sourcery toolchain has been removed" | |
1575 | select BR2_LEGACY | |
1576 | help | |
1577 | The Sourcery CodeBench toolchain for the x86 architecture has | |
d6109172 RM |
1578 | been removed, since it uses glibc older than 2.17 that |
1579 | requires -lrt to link executables using clock_* system calls. | |
1580 | This makes this toolchain difficult to maintain over time. | |
06cac646 | 1581 | |
f6695219 RN |
1582 | config BR2_GCC_VERSION_4_8_X |
1583 | bool "gcc 4.8.x support removed" | |
1584 | select BR2_LEGACY | |
1585 | help | |
1586 | Support for gcc version 4.8.x has been removed. The current | |
1587 | default version (5.x or later) has been selected instead. | |
1588 | ||
a75eeddd GZ |
1589 | ############################################################################### |
1590 | comment "Legacy options removed in 2017.05" | |
1591 | ||
95426afd RN |
1592 | config BR2_PACKAGE_SUNXI_MALI_R2P4 |
1593 | bool "sunxi-mali r2p4 removed" | |
1594 | select BR2_LEGACY | |
1595 | help | |
1596 | sunxi-mali libMali for r2p4 Mali kernel module has been | |
1597 | removed since the libump package only provides libUMP.so.3. | |
1598 | libMali for r2p4 Mali kernel module requires libUMP.so.2. | |
1599 | ||
d999a7f2 MB |
1600 | config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT |
1601 | bool "CoffeeScript option has been removed" | |
1602 | select BR2_LEGACY | |
1603 | help | |
1604 | The option to enable NodeJS CoffeeScript has been removed. | |
1605 | To continue using it, add "coffee-script" to | |
1606 | BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
1607 | ||
096f8b13 MB |
1608 | config BR2_PACKAGE_NODEJS_MODULES_EXPRESS |
1609 | bool "Express web application framework option has been removed" | |
1610 | select BR2_LEGACY | |
1611 | help | |
1612 | The option to enable the NodeJS Express web application | |
1613 | framework has been removed. To continue using it, add | |
1614 | "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
1615 | ||
0364d44f BS |
1616 | config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL |
1617 | bool "bluez5_utils gatttool install option removed" | |
1618 | select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED | |
1619 | help | |
1620 | The option to install gatttool specifically has been removed. | |
1621 | Since version 5.44 gatttool is in the list of deprecated | |
1622 | tools. The option to build and install deprecated tools has | |
1623 | been automatically enabled. | |
1624 | ||
3b6c74d7 CP |
1625 | config BR2_PACKAGE_OPENOCD_FT2XXX |
1626 | bool "openocd ft2232 support has been removed" | |
1627 | select BR2_PACKAGE_OPENOCD_FTDI | |
1628 | select BR2_LEGACY | |
1629 | help | |
1630 | FT2232 support in OpenOCD has been removed, it's replaced by | |
1631 | FDTI support, which has automatically been enabled. | |
1632 | ||
24a07d58 BK |
1633 | config BR2_PACKAGE_KODI_RTMPDUMP |
1634 | bool "kodi rtmp has been removed" | |
1635 | select BR2_LEGACY | |
c894267a | 1636 | select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP |
24a07d58 BK |
1637 | help |
1638 | Internal rtmp support was removed from Kodi. | |
1639 | ||
d393690f BK |
1640 | config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN |
1641 | bool "kodi-visualisation-fountain has been removed" | |
1642 | select BR2_LEGACY | |
1643 | help | |
1644 | According to upstream 'the visualization is not currently | |
1645 | in a working shape.' | |
1646 | ||
1ba88a0b WB |
1647 | config BR2_PACKAGE_PORTMAP |
1648 | bool "portmap has been removed" | |
1649 | select BR2_LEGACY | |
1650 | select BR2_PACKAGE_RPCBIND | |
1651 | help | |
1652 | The portmap upstream tarball is removed, no releases since | |
1653 | ten years and latest change in upstream git in 2014. | |
1654 | You should better use rpcbind as a RPC portmapper. | |
1655 | ||
5847291b TP |
1656 | config BR2_BINUTILS_VERSION_2_25_X |
1657 | bool "binutils version 2.25 support removed" | |
1658 | select BR2_LEGACY | |
1659 | help | |
1660 | Support for binutils version 2.25 has been removed. The | |
1661 | current default version (2.27 or later) has been selected | |
1662 | instead. | |
1663 | ||
98f7de87 WB |
1664 | config BR2_TOOLCHAIN_BUILDROOT_INET_RPC |
1665 | bool "uclibc RPC support has been removed" | |
1666 | select BR2_LEGACY | |
1667 | help | |
1668 | uClibc-ng removed internal RPC implementation in 1.0.23. You | |
1669 | should use libtirpc instead. | |
1670 | ||
c6bca8ce SS |
1671 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS |
1672 | int "extra size in blocks has been removed" | |
1673 | default 0 | |
1674 | help | |
d6109172 RM |
1675 | Since the support for auto calculation of the filesystem size |
1676 | has been removed, this option is now useless and must be 0. | |
1677 | You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS | |
1678 | matchs your needs. | |
c6bca8ce SS |
1679 | |
1680 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP | |
1681 | bool | |
1682 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0 | |
1683 | select BR2_LEGACY | |
1684 | ||
815f7137 VOR |
1685 | config BR2_PACKAGE_SYSTEMD_KDBUS |
1686 | bool "systemd-kdbus has been removed" | |
1687 | select BR2_LEGACY | |
1688 | help | |
1689 | --enable/disable-kdbus configure option has been removed since | |
1690 | systemd-231. | |
1691 | ||
d10b493e GZ |
1692 | config BR2_PACKAGE_POLARSSL |
1693 | bool "polarssl has been removed" | |
1694 | select BR2_LEGACY | |
1695 | help | |
1696 | The polarssl crypto library has been removed since the 1.2.x | |
1697 | release branch is no longer maintained. Newer upstream | |
1698 | branches/releases (mbedtls) have API changes so they're not | |
1699 | drop-in replacements. | |
1700 | ||
6155118f YM |
1701 | config BR2_NBD_CLIENT |
1702 | bool "nbd client option was renamed" | |
1703 | select BR2_LEGACY | |
1704 | select BR2_PACKAGE_NBD_CLIENT | |
1705 | help | |
d6109172 RM |
1706 | The nbd client option has been renamed to |
1707 | BR2_PACKAGE_NBD_CLIENT. | |
6155118f YM |
1708 | |
1709 | config BR2_NBD_SERVER | |
1710 | bool "nbd server option was renamed" | |
1711 | select BR2_LEGACY | |
1712 | select BR2_PACKAGE_NBD_SERVER | |
1713 | help | |
d6109172 RM |
1714 | The nbd server option has been renamed to |
1715 | BR2_PACKAGE_NBD_SERVER. | |
6155118f | 1716 | |
6a9c6311 CS |
1717 | config BR2_PACKAGE_GMOCK |
1718 | bool "gmock merged into gtest package" | |
1719 | select BR2_LEGACY | |
1720 | select BR2_PACKAGE_GTEST | |
1721 | select BR2_PACKAGE_GTEST_GMOCK | |
1722 | help | |
1723 | GMock is now a suboption of the GTest package. | |
1724 | ||
5f73ff53 GZ |
1725 | config BR2_KERNEL_HEADERS_4_8 |
1726 | bool "kernel headers version 4.8.x are no longer supported" | |
5f73ff53 GZ |
1727 | select BR2_LEGACY |
1728 | help | |
1729 | Version 4.8.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1730 | maintained upstream and are now removed. |
5f73ff53 GZ |
1731 | |
1732 | config BR2_KERNEL_HEADERS_3_18 | |
1733 | bool "kernel headers version 3.18.x are no longer supported" | |
5f73ff53 GZ |
1734 | select BR2_LEGACY |
1735 | help | |
1736 | Version 3.18.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1737 | maintained upstream and are now removed. |
5f73ff53 | 1738 | |
a75eeddd GZ |
1739 | config BR2_GLIBC_VERSION_2_22 |
1740 | bool "glibc 2.22 removed" | |
1741 | select BR2_LEGACY | |
1742 | help | |
1743 | Support for glibc version 2.22 has been removed. The current | |
1744 | default version has been selected instead. | |
1745 | ||
ed364d1e TP |
1746 | ############################################################################### |
1747 | comment "Legacy options removed in 2017.02" | |
1748 | ||
8546ff31 FP |
1749 | config BR2_PACKAGE_PERL_DB_FILE |
1750 | bool "perl-db-file removed" | |
1751 | select BR2_LEGACY | |
1752 | select BR2_PACKAGE_BERKELEYDB | |
1753 | select BR2_PACKAGE_PERL | |
1754 | help | |
1755 | DB_File can be built as a core Perl module, so the separate | |
1756 | perl-db-file package has been removed. | |
1757 | ||
6be22624 GZ |
1758 | config BR2_KERNEL_HEADERS_4_7 |
1759 | bool "kernel headers version 4.7.x are no longer supported" | |
6be22624 GZ |
1760 | select BR2_LEGACY |
1761 | help | |
1762 | Version 4.7.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1763 | maintained upstream and are now removed. |
6be22624 GZ |
1764 | |
1765 | config BR2_KERNEL_HEADERS_4_6 | |
1766 | bool "kernel headers version 4.6.x are no longer supported" | |
6be22624 GZ |
1767 | select BR2_LEGACY |
1768 | help | |
1769 | Version 4.6.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1770 | maintained upstream and are now removed. |
6be22624 GZ |
1771 | |
1772 | config BR2_KERNEL_HEADERS_4_5 | |
1773 | bool "kernel headers version 4.5.x are no longer supported" | |
6be22624 GZ |
1774 | select BR2_LEGACY |
1775 | help | |
1776 | Version 4.5.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1777 | maintained upstream and are now removed. |
6be22624 GZ |
1778 | |
1779 | config BR2_KERNEL_HEADERS_3_14 | |
1780 | bool "kernel headers version 3.14.x are no longer supported" | |
6be22624 GZ |
1781 | select BR2_LEGACY |
1782 | help | |
1783 | Version 3.14.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1784 | maintained upstream and are now removed. |
6be22624 | 1785 | |
63abbcce RN |
1786 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
1787 | bool "musl-cross 1.1.12 toolchain removed" | |
1788 | select BR2_LEGACY | |
1789 | help | |
1790 | The support for the prebuilt toolchain based on the Musl C | |
1791 | library provided by the musl-cross project has been removed. | |
d6109172 RM |
1792 | Upstream doesn't provide any prebuilt toolchain anymore, use |
1793 | the Buildroot toolchain instead. | |
63abbcce | 1794 | |
a44d7f2d WB |
1795 | config BR2_UCLIBC_INSTALL_TEST_SUITE |
1796 | bool "uClibc tests now in uclibc-ng-test" | |
1797 | select BR2_LEGACY | |
1798 | select BR2_PACKAGE_UCLIBC_NG_TEST | |
1799 | help | |
1800 | The test suite of the uClibc C library has been moved into a | |
1801 | separate package, uclibc-ng-test. | |
1802 | ||
311bc137 AV |
1803 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
1804 | bool "Blackfin.uclinux.org 2014R1 toolchain removed" | |
1805 | select BR2_LEGACY | |
1806 | help | |
1807 | The ADI Blackfin toolchain has many bugs which are fixed in | |
1808 | more recent gcc and uClibc-ng releases. Use the Buildroot | |
1809 | toolchain instead. | |
1810 | ||
207294ff AV |
1811 | config BR2_PACKAGE_MAKEDEVS |
1812 | bool "makedevs removed" | |
1813 | select BR2_LEGACY | |
1814 | help | |
1815 | The makedevs tool is part of busybox. The Buildroot fork | |
1816 | should not be used outside of the Buildroot infrastructure. | |
1817 | ||
b5c00f09 AV |
1818 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
1819 | bool "Arago ARMv7 2011.09 removed" | |
1820 | select BR2_LEGACY | |
1821 | help | |
1822 | The Arago toolchains are every old and not updated anymore. | |
1823 | ||
1824 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE | |
1825 | bool "Arago ARMv5 2011.09 removed" | |
1826 | select BR2_LEGACY | |
1827 | help | |
1828 | The Arago toolchains are every old and not updated anymore. | |
1829 | ||
ed364d1e TP |
1830 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE |
1831 | bool "snowball-hdmiservice removed" | |
1832 | select BR2_LEGACY | |
1833 | help | |
1834 | We no longer have support for the Snowball platform in | |
1835 | Buildroot, so this package was no longer useful. | |
1836 | ||
1837 | config BR2_PACKAGE_SNOWBALL_INIT | |
1838 | bool "snowball-init removed" | |
1839 | select BR2_LEGACY | |
1840 | help | |
1841 | We no longer have support for the Snowball platform in | |
1842 | Buildroot, so this package was no longer useful. | |
1843 | ||
69aa0574 JK |
1844 | config BR2_GDB_VERSION_7_9 |
1845 | bool "gdb 7.9 has been removed" | |
1846 | select BR2_LEGACY | |
1847 | help | |
1848 | The 7.9 version of gdb has been removed. Use a newer version | |
1849 | instead. | |
1850 | ||
e782cd5b YM |
1851 | ############################################################################### |
1852 | comment "Legacy options removed in 2016.11" | |
1853 | ||
c457213f FF |
1854 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
1855 | bool "PHP CGI and CLI options are now seperate" | |
1856 | select BR2_PACKAGE_PHP_SAPI_CLI | |
1857 | select BR2_PACKAGE_PHP_SAPI_CGI | |
c087cbe5 | 1858 | select BR2_LEGACY |
c457213f FF |
1859 | help |
1860 | The PHP Interface options have been split up into a | |
1861 | separate option for each interface. | |
1862 | ||
1863 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM | |
1864 | bool "PHP CLI and FPM options are now separate" | |
1865 | select BR2_PACKAGE_PHP_SAPI_CLI | |
1866 | select BR2_PACKAGE_PHP_SAPI_FPM | |
c087cbe5 | 1867 | select BR2_LEGACY |
c457213f FF |
1868 | help |
1869 | The PHP Interface options have been split up into a | |
1870 | separate option for each interface. | |
1871 | ||
3534399d AV |
1872 | config BR2_PACKAGE_WVSTREAMS |
1873 | bool "wvstreams removed" | |
1874 | select BR2_LEGACY | |
1875 | help | |
1876 | wvstreams is not maintained anymore since about 2009. It also | |
1877 | doesn't build anymore with recent compilers (GCC 5+). | |
1878 | ||
152d4b66 AV |
1879 | config BR2_PACKAGE_WVDIAL |
1880 | bool "wvdial removed" | |
1881 | select BR2_LEGACY | |
1882 | help | |
1883 | wvdial is not maintained anymore since about 2009. It also | |
1884 | doesn't build anymore with recent compilers (GCC 5+). | |
1885 | ||
79c82a35 AV |
1886 | config BR2_PACKAGE_WEBKITGTK24 |
1887 | bool "webkitgtk 2.4.x removed" | |
1888 | select BR2_LEGACY | |
1889 | help | |
1890 | This legacy package only existed because some other packages | |
1891 | depended on that specific version of webkitgtk. However, the | |
1892 | other packages have been fixed. webkitgtk 2.4 is full of | |
1893 | security issues so it needs to be removed. | |
1894 | ||
ea3a7ee0 AV |
1895 | config BR2_PACKAGE_TORSMO |
1896 | bool "torsmo removed" | |
1897 | select BR2_LEGACY | |
1898 | help | |
1899 | torsmo has been unmaintained for a long time, and nobody | |
1900 | seems to be interested in it. | |
1901 | ||
290166f2 AV |
1902 | config BR2_PACKAGE_SSTRIP |
1903 | bool "sstrip removed" | |
1904 | select BR2_LEGACY | |
1905 | help | |
1906 | sstrip is unmaintained and potentially harmful. It doesn't | |
1907 | save so much compared to normal binutils strip, and there is | |
1908 | a big risk of binaries that don't work. Use normal strip | |
1909 | instead. | |
1910 | ||
133466f5 AV |
1911 | config BR2_KERNEL_HEADERS_4_3 |
1912 | bool "kernel headers version 4.3.x are no longer supported" | |
133466f5 AV |
1913 | select BR2_LEGACY |
1914 | help | |
1915 | Version 4.3.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1916 | maintained upstream and are now removed. |
133466f5 AV |
1917 | |
1918 | config BR2_KERNEL_HEADERS_4_2 | |
1919 | bool "kernel headers version 4.2.x are no longer supported" | |
133466f5 AV |
1920 | select BR2_LEGACY |
1921 | help | |
1922 | Version 4.2.x of the Linux kernel headers are no longer | |
1b3c43f7 | 1923 | maintained upstream and are now removed. |
133466f5 | 1924 | |
1c2a63ad AV |
1925 | config BR2_PACKAGE_KODI_ADDON_XVDR |
1926 | bool "kodi-addon-xvdr removed" | |
1927 | select BR2_LEGACY | |
1928 | help | |
1929 | According to the github project page: | |
1930 | https://github.com/pipelka/xbmc-addon-xvdr | |
1931 | this package is discontinued. | |
1932 | ||
3b80ca89 AV |
1933 | config BR2_PACKAGE_IPKG |
1934 | bool "ipkg removed" | |
1935 | select BR2_LEGACY | |
1936 | help | |
1937 | ipkg dates back to the early 2000s when Compaq started the | |
d6109172 RM |
1938 | handhelds.org project and it hasn't seen development since |
1939 | 2006. Use opkg as a replacement. | |
3b80ca89 | 1940 | |
a7c13c1b AV |
1941 | config BR2_GCC_VERSION_4_7_X |
1942 | bool "gcc 4.7.x support removed" | |
1943 | select BR2_LEGACY | |
1944 | help | |
1945 | Support for gcc version 4.7.x has been removed. The current | |
1946 | default version (4.9.x or later) has been selected instead. | |
1947 | ||
d8878112 AV |
1948 | config BR2_BINUTILS_VERSION_2_24_X |
1949 | bool "binutils version 2.24 support removed" | |
1950 | select BR2_LEGACY | |
1951 | help | |
1952 | Support for binutils version 2.24 has been removed. The | |
1953 | current default version (2.26 or later) has been selected | |
1954 | instead. | |
1955 | ||
8c85a5f0 GZ |
1956 | config BR2_PACKAGE_WESTON_RPI |
1957 | bool "Weston propietary RPI support is gone" | |
1958 | select BR2_LEGACY | |
1959 | help | |
1960 | Upstream decided the propietary (rpi-userland) weston composer | |
1961 | support wasn't worth the effort so it was removed. Switch to | |
1962 | the open VC4 support. | |
1963 | ||
20b14466 YM |
1964 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
1965 | bool "linux-tool cpupower" | |
1966 | depends on BR2_LINUX_KERNEL | |
1967 | select BR2_LEGACY | |
1968 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER | |
1969 | help | |
1970 | Linux tool cpupower option was renamed. | |
1971 | ||
1972 | config BR2_LINUX_KERNEL_TOOL_PERF | |
1973 | bool "linux-tool perf" | |
1974 | depends on BR2_LINUX_KERNEL | |
1975 | select BR2_LEGACY | |
1976 | select BR2_PACKAGE_LINUX_TOOLS_PERF | |
1977 | help | |
1978 | Linux tool perf option was renamed. | |
1979 | ||
1980 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS | |
1981 | bool "linux-tool selftests" | |
1982 | depends on BR2_LINUX_KERNEL | |
1983 | select BR2_LEGACY | |
1984 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS | |
1985 | help | |
1986 | Linux tool selftests option was renamed. | |
1987 | ||
50332a53 TP |
1988 | config BR2_GCC_VERSION_4_8_ARC |
1989 | bool "gcc arc option renamed" | |
1990 | select BR2_LEGACY | |
1991 | select BR2_GCC_VERSION_ARC | |
1992 | help | |
1993 | The option that selects the gcc version for the ARC | |
1994 | architecture has been renamed to BR2_GCC_VERSION_ARC. | |
1995 | ||
3c590a3e GZ |
1996 | config BR2_KERNEL_HEADERS_4_0 |
1997 | bool "kernel headers version 4.0.x are no longer supported" | |
3c590a3e GZ |
1998 | select BR2_LEGACY |
1999 | help | |
2000 | Version 4.0.x of the Linux kernel headers have been deprecated | |
2001 | for more than four buildroot releases and are now removed. | |
3c590a3e GZ |
2002 | |
2003 | config BR2_KERNEL_HEADERS_3_19 | |
2004 | bool "kernel headers version 3.19.x are no longer supported" | |
3c590a3e GZ |
2005 | select BR2_LEGACY |
2006 | help | |
d6109172 RM |
2007 | Version 3.19.x of the Linux kernel headers have been |
2008 | deprecated for more than four buildroot releases and are now | |
2009 | removed. | |
3c590a3e | 2010 | |
0e517317 RN |
2011 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
2012 | bool "libevas-generic-loaders package removed" | |
2013 | select BR2_LEGACY | |
2014 | select BR2_PACKAGE_EFL | |
2015 | help | |
d6109172 RM |
2016 | With EFL 1.18, libevas-generic-loaders is now provided by the |
2017 | efl package. | |
0e517317 | 2018 | |
c22b7580 RN |
2019 | config BR2_PACKAGE_ELEMENTARY |
2020 | bool "elementary package removed" | |
2021 | select BR2_LEGACY | |
2022 | select BR2_PACKAGE_EFL | |
2023 | help | |
2024 | With EFL 1.18, elementary is now provided by the efl package. | |
2025 | ||
e782cd5b YM |
2026 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
2027 | bool "Linux kernel local directory option removed" | |
2028 | help | |
d6109172 RM |
2029 | The option to select a local directory as the source of the |
2030 | Linux kernel has been removed. It hurts reproducibility of | |
2031 | builds. | |
e782cd5b YM |
2032 | |
2033 | In case you were using this option during development of your | |
2034 | Linux kernel, use the override mechanism instead. | |
2035 | ||
20ed897b TP |
2036 | ############################################################################### |
2037 | comment "Legacy options removed in 2016.08" | |
2038 | ||
ac191071 AV |
2039 | config BR2_PACKAGE_EFL_JP2K |
2040 | bool "libevas jp2k loader has been removed" | |
2041 | select BR2_LEGACY | |
5354a75e | 2042 | help |
ac191071 AV |
2043 | JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) |
2044 | while Buildroot only packages openjpeg 2.x. Therefore, the | |
2045 | JP2K loader has been removed from EFL. | |
2046 | ||
638cfb5e MH |
2047 | config BR2_PACKAGE_SYSTEMD_COMPAT |
2048 | bool "systemd compatibility libraries have been removed" | |
d246b984 | 2049 | select BR2_LEGACY |
638cfb5e | 2050 | help |
17bccf17 | 2051 | The systemd option to enable the compatibility libraries has |
638cfb5e MH |
2052 | been removed. Theses libraries have been useless since a few |
2053 | version, and have been fully dropped from the source since | |
2054 | v230. | |
2055 | ||
5baa92b0 MN |
2056 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
2057 | bool "gst1-plugins-bad liveadder plugin removed" | |
2058 | select BR2_LEGACY | |
2059 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
2060 | help | |
2061 | The functionality of the liveadder plugin of the | |
2062 | gst1-plugins-bad package has been merged into audiomixer. | |
2063 | ||
0f92b19d AW |
2064 | config BR2_PACKAGE_LIBFSLVPUWRAP |
2065 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" | |
2066 | select BR2_LEGACY | |
2067 | select BR2_PACKAGE_IMX_VPUWRAP | |
2068 | help | |
d6109172 RM |
2069 | The libfslvpuwrap has been renamed to match the renamed |
2070 | package. | |
0f92b19d | 2071 | |
64998907 AW |
2072 | config BR2_PACKAGE_LIBFSLPARSER |
2073 | bool "libfslparser has been renamed to imx-parser" | |
2074 | select BR2_LEGACY | |
2075 | select BR2_PACKAGE_IMX_PARSER | |
2076 | help | |
d6109172 RM |
2077 | The libfslparser has been renamed to match the renamed |
2078 | package. | |
64998907 | 2079 | |
47e6203f AW |
2080 | config BR2_PACKAGE_LIBFSLCODEC |
2081 | bool "libfslcodec has been renamed to imx-codec" | |
2082 | select BR2_LEGACY | |
2083 | select BR2_PACKAGE_IMX_CODEC | |
2084 | help | |
2085 | The libfslcodec has been renamed to match the renamed package. | |
2086 | ||
b5d99008 CS |
2087 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
2088 | bool "FIT support in uboot-tools has been refactored" | |
2089 | select BR2_LEGACY | |
2090 | select BR2_PACKAGE_DTC | |
2091 | select BR2_PACKAGE_DTC_PROGRAMS | |
2092 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT | |
2093 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT | |
2094 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE | |
2095 | help | |
2096 | This option has been removed in favor of a more fine-grained | |
2097 | configuration, which is recommended. Selecting this option | |
2098 | enables FIT and FIT signature support for the target packages. | |
2099 | It will also select the dtc and openssl packages. | |
2100 | ||
f253c146 WB |
2101 | config BR2_PTHREADS_OLD |
2102 | bool "linuxthreads (stable/old)" | |
2103 | select BR2_LEGACY | |
2104 | help | |
2105 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now | |
2106 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. | |
2107 | ||
ae466a60 TP |
2108 | config BR2_BINUTILS_VERSION_2_23_X |
2109 | bool "binutils 2.23 removed" | |
2110 | select BR2_LEGACY | |
2111 | help | |
2112 | Binutils 2.23 has been removed, using a newer version is | |
2113 | recommended. | |
2114 | ||
500de259 TP |
2115 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
2116 | bool "eglibc support has been removed" | |
2117 | select BR2_LEGACY | |
2118 | help | |
2119 | The eglibc project no longer exists, as it has been merged | |
2120 | back into the glibc project. Therefore, support for eglibc | |
2121 | has been removed, and glibc should be used instead. | |
2122 | ||
20ed897b TP |
2123 | config BR2_GDB_VERSION_7_8 |
2124 | bool "gdb 7.8 has been removed" | |
2125 | select BR2_LEGACY | |
2126 | help | |
2127 | The 7.8 version of gdb has been removed. Use a newer version | |
2128 | instead. | |
2129 | ||
f0c94704 | 2130 | ############################################################################### |
2661c4f1 | 2131 | comment "Legacy options removed in 2016.05" |
f0c94704 | 2132 | |
3380da69 GZ |
2133 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
2134 | bool "openvpn polarssl crypto backend removed" | |
2135 | select BR2_LEGACY | |
2136 | help | |
2137 | The OpenVPN polarssl crypto backend option has been removed. | |
2138 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't | |
2139 | compatible with mbedtls (polarssl) series 2.x which is the | |
2140 | version provided in buildroot. And both can't coexist. | |
2141 | It now uses OpenSSL as the only option. | |
2142 | ||
4dfc2cb5 MB |
2143 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
2144 | bool "nginx http spdy module removed" | |
2145 | select BR2_LEGACY | |
2146 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE | |
2147 | help | |
2148 | The ngx_http_spdy_module has been superseded by the | |
2149 | ngx_http_v2_module since nginx v1.9.5. The | |
2150 | ngx_http_v2_module modules has been automatically selected | |
2151 | in your configuration. | |
2152 | ||
0c956f2d GZ |
2153 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
2154 | bool "gst1-plugins-bad rtp plugin moved to good" | |
2155 | select BR2_LEGACY | |
2156 | help | |
2157 | The rtp plugin has been moved from gst1-plugins-base to | |
2158 | gst1-plugins-good. | |
2159 | ||
4196cf90 GZ |
2160 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
2161 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" | |
2162 | select BR2_LEGACY | |
2163 | help | |
2164 | The mpg123 plugin has been moved from gst1-plugins-bad to | |
2165 | gst1-plugins-ugly. | |
2166 | ||
8490e833 GZ |
2167 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
2168 | bool "PowerPC Sourcery toolchain has been removed" | |
2169 | select BR2_LEGACY | |
2170 | help | |
2171 | The Sourcery CodeBench toolchain for the PowerPC | |
2172 | architecture has been removed, as it was very old, not | |
2173 | maintained, and causing numerous build failures with modern | |
2174 | userspace packages. | |
2175 | ||
2176 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 | |
2177 | bool "PowerPC Sourcery E500v2 toolchain has been removed" | |
2178 | select BR2_LEGACY | |
2179 | help | |
2180 | The Sourcery CodeBench toolchain for the PowerPC E500v2 | |
2181 | architecture has been removed, as it was very old, not | |
2182 | maintained, and causing numerous build failures with modern | |
2183 | userspace packages. | |
2184 | ||
6cb4814c TP |
2185 | config BR2_x86_i386 |
2186 | bool "x86 i386 support removed" | |
7aaa730c | 2187 | select BR2_LEGACY |
6cb4814c TP |
2188 | help |
2189 | The support for the i386 processors of the x86 architecture | |
2190 | has been removed. | |
2191 | ||
f75ee80d JC |
2192 | config BR2_PACKAGE_QT5QUICK1 |
2193 | bool "qt5quick1 package removed" | |
2194 | select BR2_LEGACY | |
2195 | help | |
2196 | The qt5quick1 package has been removed, since it was removed | |
2197 | from upstream starting from Qt 5.6. | |
2198 | ||
21b25d28 | 2199 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
f61583fc | 2200 | string "uboot custom patch dir has been removed" |
21b25d28 GZ |
2201 | help |
2202 | The uboot custom patch directory option has been removed. Use | |
2203 | the improved BR2_TARGET_UBOOT_PATCH option instead. | |
2204 | ||
f61583fc DM |
2205 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP |
2206 | bool | |
2207 | default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != "" | |
2208 | select BR2_LEGACY | |
2209 | ||
2210 | # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from | |
2211 | # boot/uboot/Config.in | |
2212 | ||
f80ad2fd GZ |
2213 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
2214 | bool "xf86-input-void removed" | |
2215 | select BR2_LEGACY | |
2216 | help | |
2217 | The xf86-input-void package has been removed, there's no need | |
2218 | for it in any modern (post-2007) xorg server. | |
2219 | ||
b8de1788 GZ |
2220 | config BR2_KERNEL_HEADERS_3_17 |
2221 | bool "kernel headers version 3.17.x are no longer supported" | |
b8de1788 GZ |
2222 | select BR2_LEGACY |
2223 | help | |
d6109172 RM |
2224 | Version 3.17.x of the Linux kernel headers have been |
2225 | deprecated for more than four buildroot releases and are now | |
2226 | removed. | |
b8de1788 | 2227 | |
ffc324ea GZ |
2228 | config BR2_GDB_VERSION_7_7 |
2229 | bool "gdb 7.7 has been removed" | |
2230 | select BR2_LEGACY | |
2231 | help | |
2232 | The 7.7 version of gdb has been removed. Use a newer version | |
2233 | instead. | |
2234 | ||
75945ddc GZ |
2235 | config BR2_PACKAGE_FOOMATIC_FILTERS |
2236 | bool "foomatic-filters" | |
2237 | select BR2_LEGACY | |
2238 | help | |
2239 | The foomatic-filters package was removed. | |
2240 | ||
7bd9dbc1 GZ |
2241 | config BR2_PACKAGE_SAMBA |
2242 | bool "samba" | |
2243 | select BR2_LEGACY | |
2244 | help | |
2245 | The samba package was removed in favour of samba4 since the | |
2246 | 3.x series isn't supported by upstream any longer. | |
2247 | ||
6922b41d BK |
2248 | config BR2_PACKAGE_KODI_WAVPACK |
2249 | bool "wavpack" | |
2250 | select BR2_LEGACY | |
2251 | help | |
2252 | wavpack support was removed in favour of ffmpeg: | |
2253 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
2254 | ||
75ce17d0 BK |
2255 | config BR2_PACKAGE_KODI_RSXS |
2256 | bool "rsxs support in Kodi was moved to an addon" | |
2257 | select BR2_LEGACY | |
2258 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
2259 | help | |
2260 | rsxs support in Kodi was moved to an addon | |
2261 | ||
56b80ece BK |
2262 | config BR2_PACKAGE_KODI_GOOM |
2263 | bool "Goom support in Kodi was moved to an addon" | |
2264 | select BR2_LEGACY | |
2265 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
2266 | help | |
2267 | Goom support in Kodi was moved to an addon | |
2268 | ||
e5a073ac GE |
2269 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
2270 | bool "systemd all extras option has been removed" | |
2271 | select BR2_LEGACY | |
2272 | select BR2_PACKAGE_XZ | |
2273 | select BR2_PACKAGE_LIBGCRYPT | |
2274 | help | |
2275 | The systemd option to enable "all extras" has been | |
2276 | removed. To get the same features, the libgcrypt and xz | |
2277 | package should now be enabled. | |
2278 | ||
8c0a367d GZ |
2279 | config BR2_GCC_VERSION_4_5_X |
2280 | bool "gcc 4.5.x has been removed" | |
2281 | select BR2_LEGACY | |
2282 | help | |
2283 | The 4.5.x version of gcc has been removed. Use a newer | |
2284 | version instead. | |
2285 | ||
007c2ce9 | 2286 | config BR2_PACKAGE_SQLITE_READLINE |
62da71c9 | 2287 | bool "sqlite command-line editing support was updated" |
007c2ce9 BK |
2288 | select BR2_PACKAGE_NCURSES |
2289 | select BR2_PACKAGE_READLINE | |
2290 | select BR2_LEGACY | |
2291 | help | |
2292 | This option was removed in favour of the sqlite package | |
2293 | deciding itself depending on the enabled packages whether | |
2294 | command-line editing should be enabled, it also also takes | |
2295 | libedit into account. | |
2296 | ||
f0c94704 LC |
2297 | ############################################################################### |
2298 | comment "Legacy options removed in 2016.02" | |
2299 | ||
f39ac4d2 BK |
2300 | config BR2_PACKAGE_DOVECOT_BZIP2 |
2301 | bool "bzip2 support option has been removed" | |
2302 | select BR2_LEGACY | |
2303 | select BR2_PACKAGE_BZIP2 | |
2304 | help | |
2305 | Bzip2 support is built if the bzip2 package is selected. | |
2306 | ||
2307 | config BR2_PACKAGE_DOVECOT_ZLIB | |
2308 | bool "zlib support option has been removed" | |
2309 | select BR2_LEGACY | |
2310 | select BR2_PACKAGE_ZLIB | |
2311 | help | |
2312 | Zlib support is built if the zlib package is selected. | |
2313 | ||
ead1df42 JK |
2314 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
2315 | bool "e2fsprogs findfs option has been removed" | |
2316 | select BR2_LEGACY | |
2317 | help | |
2318 | This option attempted to enable findfs capabilities from | |
2319 | e2fsprogs but has not worked since July 2015 (due to | |
2320 | packaging changes). One can use BusyBox's findfs support or | |
860020f3 | 2321 | enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option. |
ead1df42 | 2322 | |
b1063a01 RN |
2323 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
2324 | bool "openpowerlink debug option has been removed" | |
2325 | select BR2_LEGACY | |
2326 | help | |
d6109172 RM |
2327 | This option depends on BR2_ENABLE_DEBUG which should not be |
2328 | used by packages anymore. | |
b1063a01 RN |
2329 | |
2330 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
2331 | bool "openpowerlink package has been updated" | |
2332 | select BR2_LEGACY | |
2333 | select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB | |
2334 | help | |
2335 | openpowerlink kernel modules are built if the | |
2336 | kernel stack library is selected. | |
2337 | ||
2338 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
2339 | bool "openpowerlink package has been updated" | |
2340 | select BR2_LEGACY | |
2341 | select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB | |
2342 | help | |
2343 | The user space support has been split in two part: | |
2344 | - a monolitic user space library | |
2345 | - a user spae deamon driver | |
2346 | ||
e3e0583f YM |
2347 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
2348 | bool "using the linux headers version for the kernel has been removed" | |
2349 | select BR2_LEGACY | |
2350 | help | |
2351 | The option to use the version of the kernel headers for the | |
2352 | kernel to build has been removed. | |
2353 | ||
2354 | There is now the converse, better-suited and more versatile | |
2355 | option to use the kernel version for the linux headers. | |
2356 | ||
d37ce8e1 OS |
2357 | config BR2_PACKAGE_CUPS_PDFTOPS |
2358 | bool "Pdftops support has been removed from Cups" | |
917de0f7 | 2359 | select BR2_PACKAGE_CUPS_FILTERS |
d37ce8e1 OS |
2360 | select BR2_LEGACY |
2361 | help | |
2362 | Pdftops support has been removed from the cups package | |
2363 | It is now part of the cups-filters package. | |
2364 | ||
d8da5f10 GZ |
2365 | config BR2_KERNEL_HEADERS_3_16 |
2366 | bool "kernel headers version 3.16.x are no longer supported" | |
d8da5f10 GZ |
2367 | select BR2_LEGACY |
2368 | help | |
d6109172 RM |
2369 | Version 3.16.x of the Linux kernel headers have been |
2370 | deprecated for more than four buildroot releases and are now | |
2371 | removed. | |
d8da5f10 | 2372 | |
af45a4f4 YY |
2373 | config BR2_PACKAGE_PYTHON_PYXML |
2374 | bool "python-pyxml package has been removed" | |
2375 | select BR2_LEGACY | |
2376 | help | |
2377 | PyXML is obsolete and its functionality is covered either via | |
2378 | native Python XML support or python-lxml package. | |
2379 | ||
d29c7196 SN |
2380 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
2381 | config BR2_ENABLE_SSP | |
2382 | bool "Stack Smashing protection now has different levels" | |
2383 | help | |
d6109172 RM |
2384 | The protection offered by SSP can now be selected from |
2385 | different protection levels. Be sure to review the SSP level | |
2386 | in the build options menu. | |
d29c7196 | 2387 | |
1e3d2cad | 2388 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 2389 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
2390 | select BR2_LEGACY |
2391 | help | |
2392 | The cle266 directfb driver support has been removed. | |
2393 | It doesn't build in the latest version and it's unlikely | |
2394 | anyone has any use for it. | |
2395 | ||
2396 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 2397 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
2398 | select BR2_LEGACY |
2399 | help | |
2400 | The unichrome directfb driver support has been removed. | |
2401 | It doesn't build in the latest version and it's unlikely | |
2402 | anyone has any use for it. | |
2403 | ||
820e1685 RN |
2404 | config BR2_PACKAGE_LIBELEMENTARY |
2405 | bool "libelementary has been renamed to elementary" | |
2406 | select BR2_LEGACY | |
2407 | select BR2_PACKAGE_ELEMENTARY | |
2408 | help | |
d6109172 RM |
2409 | The libelementary package has been renamed to match the |
2410 | upstream name. | |
820e1685 | 2411 | |
a9d1f5f6 RN |
2412 | config BR2_PACKAGE_LIBEINA |
2413 | bool "libeina package has been removed" | |
2414 | select BR2_LEGACY | |
2415 | select BR2_PACKAGE_EFL | |
2416 | help | |
1f83a7a7 | 2417 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 2418 | |
49700f08 RN |
2419 | config BR2_PACKAGE_LIBEET |
2420 | bool "libeet package has been removed" | |
2421 | select BR2_LEGACY | |
2422 | select BR2_PACKAGE_EFL | |
2423 | help | |
1f83a7a7 | 2424 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 2425 | |
e5989d6c RN |
2426 | config BR2_PACKAGE_LIBEVAS |
2427 | bool "libevas package has been removed" | |
2428 | select BR2_LEGACY | |
2429 | select BR2_PACKAGE_EFL | |
2430 | help | |
1f83a7a7 | 2431 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 2432 | |
1fe1b60b RN |
2433 | config BR2_PACKAGE_LIBECORE |
2434 | bool "libecore package has been removed" | |
2435 | select BR2_LEGACY | |
2436 | select BR2_PACKAGE_EFL | |
2437 | help | |
1f83a7a7 | 2438 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 2439 | |
8c05c38d RN |
2440 | config BR2_PACKAGE_LIBEDBUS |
2441 | bool "libedbus package has been removed" | |
2442 | select BR2_LEGACY | |
2443 | select BR2_PACKAGE_EFL | |
2444 | help | |
1f83a7a7 | 2445 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 2446 | |
d2b042c1 RN |
2447 | config BR2_PACKAGE_LIBEFREET |
2448 | bool "libefreet package has been removed" | |
2449 | select BR2_LEGACY | |
2450 | select BR2_PACKAGE_EFL | |
2451 | help | |
1f83a7a7 | 2452 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 2453 | |
e155c957 RN |
2454 | config BR2_PACKAGE_LIBEIO |
2455 | bool "libeio package has been removed" | |
2456 | select BR2_LEGACY | |
2457 | select BR2_PACKAGE_EFL | |
2458 | help | |
1f83a7a7 | 2459 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 2460 | |
b728fb77 RN |
2461 | config BR2_PACKAGE_LIBEMBRYO |
2462 | bool "libembryo package has been removed" | |
2463 | select BR2_LEGACY | |
2464 | select BR2_PACKAGE_EFL | |
2465 | help | |
1f83a7a7 | 2466 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 2467 | |
4c93c107 RN |
2468 | config BR2_PACKAGE_LIBEDJE |
2469 | bool "libedje package has been removed" | |
2470 | select BR2_LEGACY | |
2471 | select BR2_PACKAGE_EFL | |
2472 | help | |
1f83a7a7 | 2473 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 2474 | |
905dba10 RN |
2475 | config BR2_PACKAGE_LIBETHUMB |
2476 | bool "libethumb package has been removed" | |
2477 | select BR2_LEGACY | |
2478 | select BR2_PACKAGE_EFL | |
2479 | help | |
1f83a7a7 | 2480 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 2481 | |
f0c94704 LC |
2482 | config BR2_PACKAGE_INFOZIP |
2483 | bool "infozip option has been renamed to zip" | |
2484 | select BR2_LEGACY | |
2485 | select BR2_PACKAGE_ZIP | |
2486 | help | |
2487 | Info-Zip's Zip package has been renamed from infozip to zip, | |
d6109172 RM |
2488 | to avoid ambiguities with Info-Zip's UnZip which has been |
2489 | added in the unzip package. | |
f0c94704 | 2490 | |
a2d16600 | 2491 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 2492 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
2493 | select BR2_LEGACY |
2494 | select BR2_PACKAGE_NODEJS | |
2495 | help | |
75b70492 | 2496 | nodejs 0.10.x option has been removed. 0.10.x is now |
d6109172 RM |
2497 | automatically chosen for ARMv5 architectures only and the |
2498 | latest nodejs for all other supported architectures. The | |
2499 | correct nodejs version has been automatically selected in your | |
2500 | configuration. | |
a2d16600 | 2501 | |
a314b878 MB |
2502 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
2503 | bool "nodejs version 0.12.x has been removed" | |
2504 | select BR2_LEGACY | |
2505 | select BR2_PACKAGE_NODEJS | |
2506 | help | |
2507 | nodejs version 0.12.x has been removed. As an alternative, | |
2508 | the latest nodejs version has been automatically selected in | |
2509 | your configuration. | |
2510 | ||
90bf67c0 MB |
2511 | config BR2_BR2_PACKAGE_NODEJS_4_X |
2512 | bool "nodejs version 4.x has been removed" | |
2513 | select BR2_LEGACY | |
2514 | select BR2_PACKAGE_NODEJS | |
2515 | help | |
2516 | nodejs version 4.x has been removed. As an alternative, | |
2517 | the latest nodejs version has been automatically selected in | |
2518 | your configuration. | |
2519 | ||
16b8e813 | 2520 | ############################################################################### |
ae46e8f9 TP |
2521 | comment "Legacy options removed in 2015.11" |
2522 | ||
301e8ffb PS |
2523 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
2524 | bool "gst1-plugins-bad real plugin has been removed" | |
2525 | select BR2_LEGACY | |
2526 | help | |
2527 | The real plugin from GStreamer 1 bad plugins has been | |
2528 | removed. | |
2529 | ||
f7dd5cb2 PS |
2530 | config BR2_PACKAGE_MEDIA_CTL |
2531 | bool "media-ctl package has been removed" | |
2532 | select BR2_LEGACY | |
2533 | select BR2_PACKAGE_LIBV4L | |
2534 | select BR2_PACKAGE_LIBV4L_UTILS | |
2535 | help | |
d6109172 RM |
2536 | media-ctl source and developement have been moved to v4l-utils |
2537 | since June 2014. For an up-to-date media-ctl version select | |
2538 | BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
f7dd5cb2 | 2539 | |
f8031339 RN |
2540 | config BR2_PACKAGE_SCHIFRA |
2541 | bool "schifra package has been removed" | |
758c5c7f | 2542 | select BR2_LEGACY |
f8031339 | 2543 | help |
d6109172 RM |
2544 | Schifra package has been maked broken since 2014.11 release |
2545 | and haven't been fixed since then. | |
f8031339 | 2546 | |
7e5ddbcb MH |
2547 | config BR2_PACKAGE_ZXING |
2548 | bool "zxing option has been renamed" | |
2549 | select BR2_LEGACY | |
2550 | select BR2_PACKAGE_ZXING_CPP | |
2551 | help | |
d6109172 RM |
2552 | ZXing no longer provides the cpp bindings, it has been renamed |
2553 | to BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
7e5ddbcb | 2554 | |
4d131b4d YM |
2555 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
2556 | # infamous "unmet direct dependencies" kconfig error. | |
2557 | config BR2_PACKAGE_FREERDP_CLIENT | |
2558 | bool "freerdp client option renamed" | |
2559 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 2560 | select BR2_LEGACY |
4d131b4d YM |
2561 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
2562 | ||
a658c4d1 GZ |
2563 | config BR2_PACKAGE_BLACKBOX |
2564 | bool "blackbox package has been removed" | |
2565 | select BR2_LEGACY | |
2566 | help | |
2567 | Upstream is dead and the package has been deprecated for | |
2568 | some time. There are other alternative maintained WMs. | |
2569 | ||
4ac4bc32 GZ |
2570 | config BR2_KERNEL_HEADERS_3_0 |
2571 | bool "kernel headers version 3.0.x are no longer supported" | |
4ac4bc32 GZ |
2572 | select BR2_LEGACY |
2573 | help | |
2574 | Version 3.0.x of the Linux kernel headers have been deprecated | |
2575 | for more than four buildroot releases and are now removed. | |
4ac4bc32 GZ |
2576 | |
2577 | config BR2_KERNEL_HEADERS_3_11 | |
2578 | bool "kernel headers version 3.11.x are no longer supported" | |
4ac4bc32 GZ |
2579 | select BR2_LEGACY |
2580 | help | |
d6109172 RM |
2581 | Version 3.11.x of the Linux kernel headers have been |
2582 | deprecated for more than four buildroot releases and are now | |
2583 | removed. | |
4ac4bc32 GZ |
2584 | |
2585 | config BR2_KERNEL_HEADERS_3_13 | |
2586 | bool "kernel headers version 3.13.x are no longer supported" | |
4ac4bc32 GZ |
2587 | select BR2_LEGACY |
2588 | help | |
d6109172 RM |
2589 | Version 3.13.x of the Linux kernel headers have been |
2590 | deprecated for more than four buildroot releases and are now | |
2591 | removed. | |
4ac4bc32 GZ |
2592 | |
2593 | config BR2_KERNEL_HEADERS_3_15 | |
2594 | bool "kernel headers version 3.15.x are no longer supported" | |
4ac4bc32 GZ |
2595 | select BR2_LEGACY |
2596 | help | |
d6109172 RM |
2597 | Version 3.15.x of the Linux kernel headers have been |
2598 | deprecated for more than four buildroot releases and are now | |
2599 | removed. | |
4ac4bc32 | 2600 | |
80404e8c TP |
2601 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
2602 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 2603 | select BR2_LEGACY |
80404e8c TP |
2604 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2605 | help | |
2606 | The per-DirectFB example options have been removed. The | |
2607 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2608 | examples. | |
2609 | ||
2610 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
2611 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 2612 | select BR2_LEGACY |
80404e8c TP |
2613 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2614 | help | |
2615 | The per-DirectFB example options have been removed. The | |
2616 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2617 | examples. | |
2618 | ||
2619 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
2620 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 2621 | select BR2_LEGACY |
80404e8c TP |
2622 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2623 | help | |
2624 | The per-DirectFB example options have been removed. The | |
2625 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2626 | examples. | |
2627 | ||
2628 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
2629 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 2630 | select BR2_LEGACY |
80404e8c TP |
2631 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2632 | help | |
2633 | The per-DirectFB example options have been removed. The | |
2634 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2635 | examples. | |
2636 | ||
2637 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
2638 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 2639 | select BR2_LEGACY |
80404e8c TP |
2640 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2641 | help | |
2642 | The per-DirectFB example options have been removed. The | |
2643 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2644 | examples. | |
2645 | ||
2646 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
2647 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 2648 | select BR2_LEGACY |
80404e8c TP |
2649 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2650 | help | |
2651 | The per-DirectFB example options have been removed. The | |
2652 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2653 | examples. | |
2654 | ||
2655 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
2656 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 2657 | select BR2_LEGACY |
80404e8c TP |
2658 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2659 | help | |
2660 | The per-DirectFB example options have been removed. The | |
2661 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2662 | examples. | |
2663 | ||
80404e8c TP |
2664 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
2665 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 2666 | select BR2_LEGACY |
80404e8c TP |
2667 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2668 | help | |
2669 | The per-DirectFB example options have been removed. The | |
2670 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2671 | examples. | |
2672 | ||
2673 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
2674 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 2675 | select BR2_LEGACY |
80404e8c TP |
2676 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2677 | help | |
2678 | The per-DirectFB example options have been removed. The | |
2679 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2680 | examples. | |
2681 | ||
2682 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
2683 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 2684 | select BR2_LEGACY |
80404e8c TP |
2685 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2686 | help | |
2687 | The per-DirectFB example options have been removed. The | |
2688 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2689 | examples. | |
2690 | ||
2691 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
2692 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 2693 | select BR2_LEGACY |
80404e8c TP |
2694 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2695 | help | |
2696 | The per-DirectFB example options have been removed. The | |
2697 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2698 | examples. | |
2699 | ||
2700 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
2701 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 2702 | select BR2_LEGACY |
80404e8c TP |
2703 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2704 | help | |
2705 | The per-DirectFB example options have been removed. The | |
2706 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2707 | examples. | |
2708 | ||
2709 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
2710 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 2711 | select BR2_LEGACY |
80404e8c TP |
2712 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2713 | help | |
2714 | The per-DirectFB example options have been removed. The | |
2715 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2716 | examples. | |
2717 | ||
2718 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
2719 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 2720 | select BR2_LEGACY |
80404e8c TP |
2721 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2722 | help | |
2723 | The per-DirectFB example options have been removed. The | |
2724 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2725 | examples. | |
2726 | ||
2727 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
2728 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 2729 | select BR2_LEGACY |
80404e8c TP |
2730 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2731 | help | |
2732 | The per-DirectFB example options have been removed. The | |
2733 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2734 | examples. | |
2735 | ||
2736 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
2737 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 2738 | select BR2_LEGACY |
80404e8c TP |
2739 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2740 | help | |
2741 | The per-DirectFB example options have been removed. The | |
2742 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2743 | examples. | |
2744 | ||
2745 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
2746 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 2747 | select BR2_LEGACY |
80404e8c TP |
2748 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2749 | help | |
2750 | The per-DirectFB example options have been removed. The | |
2751 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2752 | examples. | |
2753 | ||
2754 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
2755 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 2756 | select BR2_LEGACY |
80404e8c TP |
2757 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2758 | help | |
2759 | The per-DirectFB example options have been removed. The | |
2760 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2761 | examples. | |
2762 | ||
2763 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
2764 | bool "DirectFB example df_palette has been removed" | |
2765 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
2766 | help | |
2767 | The per-DirectFB example options have been removed. The | |
2768 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2769 | examples. | |
2770 | ||
2771 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
2772 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 2773 | select BR2_LEGACY |
80404e8c TP |
2774 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2775 | help | |
2776 | The per-DirectFB example options have been removed. The | |
2777 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2778 | examples. | |
2779 | ||
2780 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
2781 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 2782 | select BR2_LEGACY |
80404e8c TP |
2783 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2784 | help | |
2785 | The per-DirectFB example options have been removed. The | |
2786 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2787 | examples. | |
2788 | ||
2789 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
2790 | bool "DirectFB example df_stress has been removed" | |
2791 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
2792 | help | |
2793 | The per-DirectFB example options have been removed. The | |
2794 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2795 | examples. | |
2796 | ||
2797 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
2798 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 2799 | select BR2_LEGACY |
80404e8c TP |
2800 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2801 | help | |
2802 | The per-DirectFB example options have been removed. The | |
2803 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2804 | examples. | |
2805 | ||
2806 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
2807 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 2808 | select BR2_LEGACY |
80404e8c TP |
2809 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2810 | help | |
2811 | The per-DirectFB example options have been removed. The | |
2812 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2813 | examples. | |
2814 | ||
2815 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
2816 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 2817 | select BR2_LEGACY |
80404e8c TP |
2818 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2819 | help | |
2820 | The per-DirectFB example options have been removed. The | |
2821 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2822 | examples. | |
2823 | ||
2824 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
2825 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 2826 | select BR2_LEGACY |
80404e8c TP |
2827 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
2828 | help | |
2829 | The per-DirectFB example options have been removed. The | |
2830 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
2831 | examples. | |
2832 | ||
2b78fb21 GB |
2833 | config BR2_PACKAGE_KOBS_NG |
2834 | bool "kobs-ng was replaced by imx-kobs" | |
2835 | select BR2_LEGACY | |
2836 | select BR2_PACKAGE_IMX_KOBS | |
2837 | help | |
2838 | The outdated kobs-ng has been replaced by the Freescale- | |
2839 | maintained imx-kobs package. | |
2840 | ||
11573f5a TP |
2841 | config BR2_PACKAGE_SAWMAN |
2842 | bool "sawman package removed" | |
2843 | select BR2_LEGACY | |
2844 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
2845 | help | |
2846 | This option has been removed because the sawman package no | |
2847 | longer exists: it was merged inside DirectFB itself. This | |
2848 | feature can now be enabled using the | |
2849 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
2850 | ||
ae46e8f9 TP |
2851 | config BR2_PACKAGE_DIVINE |
2852 | bool "divine package removed" | |
2853 | select BR2_LEGACY | |
2854 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
2855 | help | |
2856 | This option has been removed because the divine package no | |
2857 | longer exists: it was merged inside DirectFB itself. This | |
2858 | feature can now be enabled using the | |
2859 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
2860 | ||
2861 | ############################################################################### | |
16b8e813 GZ |
2862 | comment "Legacy options removed in 2015.08" |
2863 | ||
9d9f1a92 BK |
2864 | config BR2_PACKAGE_KODI_PVR_ADDONS |
2865 | bool "Kodi PVR addon was split" | |
2866 | select BR2_LEGACY | |
2579ec20 | 2867 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 2868 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 2869 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 2870 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 2871 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 2872 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 2873 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 2874 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 2875 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 2876 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 2877 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 2878 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 2879 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 2880 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 2881 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 2882 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 BK |
2883 | help |
2884 | Kodi PVR addon was split into seperate modules | |
2885 | ||
f84cc202 GZ |
2886 | config BR2_BINUTILS_VERSION_2_23_2 |
2887 | bool "binutils 2.23 option renamed" | |
2888 | select BR2_LEGACY | |
f84cc202 | 2889 | help |
ae466a60 TP |
2890 | Binutils 2.23.2 has been removed, using a newer version is |
2891 | recommended. | |
f84cc202 GZ |
2892 | |
2893 | config BR2_BINUTILS_VERSION_2_24 | |
2894 | bool "binutils 2.24 option renamed" | |
2895 | select BR2_LEGACY | |
2896 | select BR2_BINUTILS_VERSION_2_24_X | |
2897 | help | |
2898 | The binutils version option has been renamed to match the | |
2899 | same patchlevel logic used by gcc. The new option is now | |
2900 | BR2_BINUTILS_VERSION_2_24_X. | |
2901 | ||
2902 | config BR2_BINUTILS_VERSION_2_25 | |
2903 | bool "binutils 2.25 option renamed" | |
2904 | select BR2_LEGACY | |
2905 | select BR2_BINUTILS_VERSION_2_25_X | |
2906 | help | |
2907 | The binutils version option has been renamed to match the | |
2908 | same patchlevel logic used by gcc. The new option is now | |
2909 | BR2_BINUTILS_VERSION_2_25_X. | |
2910 | ||
1326e761 RN |
2911 | config BR2_PACKAGE_PERF |
2912 | bool "perf option has been renamed" | |
2913 | select BR2_LEGACY | |
2914 | select BR2_LINUX_KERNEL_TOOL_PERF | |
2915 | help | |
2916 | The perf package has been moved as a Linux tools package, | |
2917 | and the option to enable it is now | |
2918 | BR2_LINUX_KERNEL_TOOL_PERF. | |
2919 | ||
2f845953 TP |
2920 | config BR2_BINUTILS_VERSION_2_22 |
2921 | bool "binutils 2.22 removed" | |
2922 | select BR2_LEGACY | |
2923 | help | |
2924 | Binutils 2.22 has been removed, using a newer version is | |
2925 | recommended. | |
2926 | ||
4c0613e7 GB |
2927 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
2928 | bool "gpu-viv-bin-mx6q" | |
2929 | select BR2_LEGACY | |
2930 | select BR2_PACKAGE_IMX_GPU_VIV | |
2931 | help | |
2932 | Vivante graphics libraries have been renamed to | |
2933 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
2934 | name. | |
2935 | ||
7742abe0 | 2936 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
7742abe0 | 2937 | bool "libsemanage python bindings removed" |
a1264445 | 2938 | depends on BR2_PACKAGE_PYTHON |
758c5c7f | 2939 | select BR2_LEGACY |
7742abe0 MW |
2940 | help |
2941 | This option has been removed, since the libsemanage Python | |
2942 | bindings on the target were not useful. | |
2943 | ||
16b8e813 GZ |
2944 | config BR2_TARGET_UBOOT_NETWORK |
2945 | bool "U-Boot custom network settings removed" | |
2946 | select BR2_LEGACY | |
2947 | help | |
2948 | U-Boot's custom network settings options have been removed. | |
2949 | ||
120136ee | 2950 | ############################################################################### |
fd0e5f6b | 2951 | comment "Legacy options removed in 2015.05" |
665e13c8 | 2952 | |
e3904a89 ML |
2953 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K |
2954 | bool "jffs2 16kB erasesize NAND flash option renamed" | |
2955 | select BR2_LEGACY | |
2956 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K | |
2957 | help | |
2958 | The JFFS2 NAND flash options now longer include the page | |
2959 | size. | |
2960 | ||
2961 | config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K | |
2962 | bool "jffs2 128kB erasesize NAND flash option renamed" | |
2963 | select BR2_LEGACY | |
2964 | select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K | |
2965 | help | |
2966 | The JFFS2 NAND flash options now longer include the page | |
2967 | size. | |
2968 | ||
eff7c144 AC |
2969 | config BR2_PACKAGE_MONO_20 |
2970 | bool "2.0/3.5 .Net Runtime" | |
2971 | select BR2_LEGACY | |
2972 | help | |
2973 | This option no longer exists, all versions of the .Net | |
2974 | runtime are now installed. | |
2975 | ||
2976 | config BR2_PACKAGE_MONO_40 | |
2977 | bool "4.0 .Net Runtime" | |
2978 | select BR2_LEGACY | |
2979 | help | |
2980 | This option no longer exists, all versions of the .Net | |
2981 | runtime are now installed. | |
2982 | ||
2983 | config BR2_PACKAGE_MONO_45 | |
2984 | bool "4.5 .Net Runtime" | |
2985 | select BR2_LEGACY | |
2986 | help | |
2987 | This option no longer exists, all versions of the .Net | |
2988 | runtime are now installed. | |
2989 | ||
efd49e33 PK |
2990 | config BR2_CIVETWEB_WITH_LUA |
2991 | bool "civetweb lua option renamed" | |
2992 | select BR2_LEGACY | |
2993 | select BR2_PACKAGE_CIVETWEB_WITH_LUA | |
2994 | help | |
2995 | civetweb's lua option has been renamed to | |
2996 | BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other | |
2997 | packages name options. | |
2998 | ||
e6c7ad17 BK |
2999 | config BR2_PACKAGE_TIFF_TIFF2PDF |
3000 | bool "tiff utility-specific option removed" | |
3001 | select BR2_LEGACY | |
3002 | select BR2_PACKAGE_TIFF_UTILITIES | |
3003 | help | |
3004 | utility-specific options have been removed in favour of | |
3005 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
3006 | ||
3007 | config BR2_PACKAGE_TIFF_TIFFCP | |
3008 | bool "tiff utility-specific option removed" | |
3009 | select BR2_LEGACY | |
3010 | select BR2_PACKAGE_TIFF_UTILITIES | |
3011 | help | |
3012 | utility-specific options have been removed in favour of | |
3013 | the new option BR2_PACKAGE_TIFF_UTILITIES. | |
3014 | ||
e7035d4e TP |
3015 | config BR2_LINUX_KERNEL_EXT_RTAI_PATCH |
3016 | bool "RTAI patch file path has been removed" | |
758c5c7f | 3017 | select BR2_LEGACY |
e7035d4e TP |
3018 | help |
3019 | This option has never worked, so it has been removed. | |
3020 | ||
02917961 YM |
3021 | config BR2_TARGET_GENERIC_PASSWD_DES |
3022 | bool "Encoding passwords with DES has been removed" | |
3023 | select BR2_LEGACY | |
3024 | help | |
d6109172 RM |
3025 | Paswords can now only be encoded with either of md5, sha256 or |
3026 | sha512. The default is md5, which is stronger that DES (but | |
3027 | still pretty weak). | |
02917961 | 3028 | |
0d31b5e4 GZ |
3029 | config BR2_PACKAGE_GTK2_THEME_HICOLOR |
3030 | bool "hicolor (default theme) is a duplicate" | |
3031 | select BR2_LEGACY | |
3032 | select BR2_PACKAGE_HICOLOR_ICON_THEME | |
3033 | help | |
3034 | The option was just a duplicate of hicolor icon theme. | |
3035 | ||
fd0e5f6b MW |
3036 | config BR2_PACKAGE_VALGRIND_PTRCHECK |
3037 | bool "valgrind's PTRCheck was renamed to SGCheck" | |
3038 | select BR2_LEGACY | |
3039 | select BR2_PACKAGE_VALGRIND_SGCHECK | |
3040 | help | |
3041 | PTRCheck was renamed to SGCheck in valgrind | |
3042 | ||
3043 | ############################################################################### | |
665e13c8 TP |
3044 | comment "Legacy options removed in 2015.02" |
3045 | ||
10900c07 PA |
3046 | config BR2_PACKAGE_LIBGC |
3047 | bool "libgc package removed" | |
3048 | select BR2_LEGACY | |
3049 | select BR2_PACKAGE_BDWGC | |
3050 | help | |
d6109172 RM |
3051 | libgc has been removed because we have the same package under |
3052 | a different name, bdwgc. | |
10900c07 | 3053 | |
8d702aca YM |
3054 | config BR2_PACKAGE_WDCTL |
3055 | bool "util-linux' wdctl option has been renamed" | |
3056 | select BR2_LEGACY | |
3057 | select BR2_PACKAGE_UTIL_LINUX_WDCTL | |
3058 | help | |
d6109172 RM |
3059 | util-linux' wdctl option has been renamed to |
3060 | BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other | |
3061 | options are named. | |
8d702aca | 3062 | |
e44edb82 DM |
3063 | config BR2_PACKAGE_UTIL_LINUX_ARCH |
3064 | bool "util-linux' arch option has been removed" | |
3065 | select BR2_LEGACY | |
3066 | help | |
3067 | util-linux' arch was dropped in util-linux 2.23, in favor of | |
3068 | the coreutils version. | |
3069 | ||
3070 | config BR2_PACKAGE_UTIL_LINUX_DDATE | |
3071 | bool "util-linux' ddate option has been removed" | |
3072 | select BR2_LEGACY | |
3073 | help | |
3074 | util-linux' ddate was dropped in util-linux 2.23. | |
3075 | ||
3c476540 RN |
3076 | config BR2_PACKAGE_RPM_BZIP2_PAYLOADS |
3077 | bool "rpm's bzip2 payloads option has been removed" | |
3078 | select BR2_LEGACY | |
3079 | select BR2_PACKAGE_BZIP2 | |
3080 | help | |
d6109172 RM |
3081 | The bzip2 payloads option rely entirely on the dependant |
3082 | package bzip2. So, you need to select it to enable this | |
3083 | feature. | |
3c476540 RN |
3084 | |
3085 | config BR2_PACKAGE_RPM_XZ_PAYLOADS | |
3086 | bool "rpm's xz payloads option has been removed" | |
3087 | select BR2_LEGACY | |
3088 | select BR2_PACKAGE_XZ | |
3089 | help | |
d6109172 RM |
3090 | The xz payloads option rely entirely on the dependant package |
3091 | xz. So, you need to select it to enable this feature. | |
3c476540 | 3092 | |
6927bc91 GZ |
3093 | config BR2_PACKAGE_M4 |
3094 | bool "m4 target package removed" | |
3095 | select BR2_LEGACY | |
3096 | help | |
3097 | The m4 target package has been removed, it's been | |
3098 | deprecated for some time now. | |
3099 | ||
aa6ea7ab GZ |
3100 | config BR2_PACKAGE_FLEX_BINARY |
3101 | bool "flex binary in target option removed" | |
3102 | select BR2_LEGACY | |
3103 | help | |
3104 | The flex binary in the target option has been removed. | |
3105 | It's been deprecated for some time now and is essentially a | |
3106 | development tool which isn't very useful in the target. | |
3107 | ||
38dabc6e GZ |
3108 | config BR2_PACKAGE_BISON |
3109 | bool "bison target package removed" | |
3110 | select BR2_LEGACY | |
3111 | help | |
3112 | The bison target package has been removed, it's been | |
3113 | deprecated for some time now and is essentially a development | |
3114 | tool which isn't very useful in the target. | |
3115 | ||
7f9d4441 GZ |
3116 | config BR2_PACKAGE_GOB2 |
3117 | bool "gob2 target package removed" | |
3118 | select BR2_LEGACY | |
3119 | help | |
3120 | The gob2 target package has been removed, it's been | |
3121 | deprecated for some time now and was essentially useless | |
3122 | without a target toolchain. | |
3123 | ||
c2e3d0be GZ |
3124 | config BR2_PACKAGE_DISTCC |
3125 | bool "distcc target package removed" | |
3126 | select BR2_LEGACY | |
3127 | help | |
3128 | The distcc target package has been removed, it's been | |
3129 | deprecated for some time now and was essentially useless | |
3130 | without a target toolchain. | |
3131 | ||
b64cde60 GZ |
3132 | config BR2_PACKAGE_HASERL_VERSION_0_8_X |
3133 | bool "haserl 0.8.x version removed" | |
3134 | select BR2_LEGACY | |
3135 | help | |
3136 | The 0.8.x version option for haserl has been removed since it | |
3137 | has been deprecated for some time now. | |
3138 | You should be able to use the 0.9.x version without issues. | |
3139 | ||
0120d9f3 GZ |
3140 | config BR2_PACKAGE_STRONGSWAN_TOOLS |
3141 | bool "strongswan option has been removed" | |
3142 | select BR2_LEGACY | |
3143 | select BR2_PACKAGE_STRONGSWAN_PKI | |
3144 | select BR2_PACKAGE_STRONGSWAN_SCEP | |
3145 | help | |
d6109172 RM |
3146 | The tools option has been removed upstream and the different |
3147 | tools have been split between the pki and scep options, with | |
3148 | others deprecated. | |
0120d9f3 | 3149 | |
db78eb07 | 3150 | config BR2_PACKAGE_XBMC_ADDON_XVDR |
1c2a63ad | 3151 | bool "xbmc-addon-xvdr removed" |
db78eb07 | 3152 | select BR2_LEGACY |
db78eb07 | 3153 | help |
1c2a63ad AV |
3154 | According to the github project page: |
3155 | https://github.com/pipelka/xbmc-addon-xvdr | |
3156 | this package is discontinued. | |
db78eb07 | 3157 | |
b3df2a35 BK |
3158 | config BR2_PACKAGE_XBMC_PVR_ADDONS |
3159 | bool "xbmc options have been renamed" | |
3160 | select BR2_LEGACY | |
3161 | select BR2_PACKAGE_KODI_PVR_ADDONS | |
3162 | help | |
d6109172 RM |
3163 | The XBMC media center project was renamed to Kodi |
3164 | entertainment center | |
b3df2a35 | 3165 | |
35784597 BK |
3166 | config BR2_PACKAGE_XBMC |
3167 | bool "xbmc options have been renamed" | |
3168 | select BR2_LEGACY | |
3169 | select BR2_PACKAGE_KODI | |
3170 | help | |
d6109172 RM |
3171 | The XBMC media center project was renamed to Kodi |
3172 | entertainment center | |
35784597 BK |
3173 | |
3174 | config BR2_PACKAGE_XBMC_ALSA_LIB | |
3175 | bool "xbmc options have been renamed" | |
3176 | select BR2_LEGACY | |
3177 | select BR2_PACKAGE_KODI_ALSA_LIB | |
3178 | help | |
d6109172 RM |
3179 | The XBMC media center project was renamed to Kodi |
3180 | entertainment center | |
35784597 BK |
3181 | |
3182 | config BR2_PACKAGE_XBMC_AVAHI | |
3183 | bool "xbmc options have been renamed" | |
3184 | select BR2_LEGACY | |
3185 | select BR2_PACKAGE_KODI_AVAHI | |
3186 | help | |
d6109172 RM |
3187 | The XBMC media center project was renamed to Kodi |
3188 | entertainment center | |
35784597 BK |
3189 | |
3190 | config BR2_PACKAGE_XBMC_DBUS | |
3191 | bool "xbmc options have been renamed" | |
3192 | select BR2_LEGACY | |
3193 | select BR2_PACKAGE_KODI_DBUS | |
3194 | help | |
d6109172 RM |
3195 | The XBMC media center project was renamed to Kodi |
3196 | entertainment center | |
35784597 BK |
3197 | |
3198 | config BR2_PACKAGE_XBMC_LIBBLURAY | |
3199 | bool "xbmc options have been renamed" | |
3200 | select BR2_LEGACY | |
3201 | select BR2_PACKAGE_KODI_LIBBLURAY | |
3202 | help | |
d6109172 RM |
3203 | The XBMC media center project was renamed to Kodi |
3204 | entertainment center | |
35784597 BK |
3205 | |
3206 | config BR2_PACKAGE_XBMC_GOOM | |
3207 | bool "xbmc options have been renamed" | |
3208 | select BR2_LEGACY | |
3209 | select BR2_PACKAGE_KODI_GOOM | |
3210 | help | |
d6109172 RM |
3211 | The XBMC media center project was renamed to Kodi |
3212 | entertainment center | |
35784597 BK |
3213 | |
3214 | config BR2_PACKAGE_XBMC_RSXS | |
3215 | bool "xbmc options have been renamed" | |
3216 | select BR2_LEGACY | |
3217 | select BR2_PACKAGE_KODI_RSXS | |
3218 | help | |
d6109172 RM |
3219 | The XBMC media center project was renamed to Kodi |
3220 | entertainment center | |
35784597 BK |
3221 | |
3222 | config BR2_PACKAGE_XBMC_LIBCEC | |
3223 | bool "xbmc options have been renamed" | |
3224 | select BR2_LEGACY | |
3225 | select BR2_PACKAGE_KODI_LIBCEC | |
3226 | help | |
d6109172 RM |
3227 | The XBMC media center project was renamed to Kodi |
3228 | entertainment center | |
35784597 BK |
3229 | |
3230 | config BR2_PACKAGE_XBMC_LIBMICROHTTPD | |
3231 | bool "xbmc options have been renamed" | |
3232 | select BR2_LEGACY | |
3233 | select BR2_PACKAGE_KODI_LIBMICROHTTPD | |
3234 | help | |
d6109172 RM |
3235 | The XBMC media center project was renamed to Kodi |
3236 | entertainment center | |
35784597 BK |
3237 | |
3238 | config BR2_PACKAGE_XBMC_LIBNFS | |
3239 | bool "xbmc options have been renamed" | |
3240 | select BR2_LEGACY | |
3241 | select BR2_PACKAGE_KODI_LIBNFS | |
3242 | help | |
d6109172 RM |
3243 | The XBMC media center project was renamed to Kodi |
3244 | entertainment center | |
35784597 BK |
3245 | |
3246 | config BR2_PACKAGE_XBMC_RTMPDUMP | |
3247 | bool "xbmc options have been renamed" | |
3248 | select BR2_LEGACY | |
3249 | select BR2_PACKAGE_KODI_RTMPDUMP | |
3250 | help | |
d6109172 RM |
3251 | The XBMC media center project was renamed to Kodi |
3252 | entertainment center | |
35784597 BK |
3253 | |
3254 | config BR2_PACKAGE_XBMC_LIBSHAIRPLAY | |
3255 | bool "xbmc options have been renamed" | |
3256 | select BR2_LEGACY | |
3257 | select BR2_PACKAGE_KODI_LIBSHAIRPLAY | |
3258 | help | |
d6109172 RM |
3259 | The XBMC media center project was renamed to Kodi |
3260 | entertainment center | |
35784597 BK |
3261 | |
3262 | config BR2_PACKAGE_XBMC_LIBSMBCLIENT | |
3263 | bool "xbmc options have been renamed" | |
3264 | select BR2_LEGACY | |
3265 | select BR2_PACKAGE_KODI_LIBSMBCLIENT | |
3266 | help | |
d6109172 RM |
3267 | The XBMC media center project was renamed to Kodi |
3268 | entertainment center | |
35784597 BK |
3269 | |
3270 | config BR2_PACKAGE_XBMC_LIBTHEORA | |
3271 | bool "xbmc options have been renamed" | |
3272 | select BR2_LEGACY | |
3273 | select BR2_PACKAGE_KODI_LIBTHEORA | |
3274 | help | |
d6109172 RM |
3275 | The XBMC media center project was renamed to Kodi |
3276 | entertainment center | |
35784597 BK |
3277 | |
3278 | config BR2_PACKAGE_XBMC_LIBUSB | |
3279 | bool "xbmc options have been renamed" | |
3280 | select BR2_LEGACY | |
3281 | select BR2_PACKAGE_KODI_LIBUSB | |
3282 | help | |
d6109172 RM |
3283 | The XBMC media center project was renamed to Kodi |
3284 | entertainment center | |
35784597 BK |
3285 | |
3286 | config BR2_PACKAGE_XBMC_LIBVA | |
3287 | bool "xbmc options have been renamed" | |
3288 | select BR2_LEGACY | |
3289 | select BR2_PACKAGE_KODI_LIBVA | |
3290 | help | |
d6109172 RM |
3291 | The XBMC media center project was renamed to Kodi |
3292 | entertainment center | |
35784597 BK |
3293 | |
3294 | config BR2_PACKAGE_XBMC_WAVPACK | |
3295 | bool "xbmc options have been renamed" | |
3296 | select BR2_LEGACY | |
3297 | select BR2_PACKAGE_KODI_WAVPACK | |
3298 | help | |
d6109172 RM |
3299 | The XBMC media center project was renamed to Kodi |
3300 | entertainment center | |
35784597 | 3301 | |
665e13c8 TP |
3302 | config BR2_PREFER_STATIC_LIB |
3303 | bool "static library option renamed" | |
a44b1c14 | 3304 | select BR2_LEGACY |
665e13c8 TP |
3305 | help |
3306 | The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It | |
3307 | highlights the fact that the option no longer "prefers" | |
3308 | static libraries, but "enforces" static libraries (i.e | |
3309 | shared libraries are completely unused). | |
3310 | ||
a44b1c14 SM |
3311 | Take care of updating the type of libraries you want under the |
3312 | "Build options" menu. | |
3313 | ||
35784597 | 3314 | ############################################################################### |
120136ee YM |
3315 | comment "Legacy options removed in 2014.11" |
3316 | ||
a52bad85 PK |
3317 | config BR2_x86_generic |
3318 | bool "x86 generic variant has been removed" | |
3319 | select BR2_LEGACY | |
3320 | help | |
3321 | The generic x86 CPU variant has been removed. Use another | |
a95e98c0 | 3322 | CPU variant instead. |
a52bad85 | 3323 | |
40e18f29 AL |
3324 | config BR2_GCC_VERSION_4_4_X |
3325 | bool "gcc 4.4.x has been removed" | |
3326 | select BR2_LEGACY | |
3327 | help | |
3328 | The 4.4.x version of gcc has been removed. Use a newer | |
3329 | version instead. | |
3330 | ||
43b78e72 AL |
3331 | config BR2_sparc_sparchfleon |
3332 | bool "sparchfleon CPU has been removed" | |
3333 | select BR2_LEGACY | |
3334 | help | |
3335 | The sparchfleon CPU was only supported in a patched gcc 4.4 | |
3336 | version. Its support has been removed in favor of the leon3 | |
3337 | CPU starting from gcc 4.8.x. | |
3338 | ||
3339 | config BR2_sparc_sparchfleonv8 | |
3340 | bool "sparchfleonv8 CPU has been removed" | |
3341 | select BR2_LEGACY | |
3342 | help | |
3343 | The sparchfleonv8 CPU was only supported in a patched gcc | |
3344 | 4.4 version. Its support has been removed in favor of the | |
3345 | leon3 CPU starting from gcc 4.8.x. | |
3346 | ||
3347 | config BR2_sparc_sparcsfleon | |
3348 | bool "sparcsfleon CPU has been removed" | |
3349 | select BR2_LEGACY | |
3350 | help | |
3351 | The sparcsfleon CPU was only supported in a patched gcc 4.4 | |
3352 | version. Its support has been removed in favor of the leon3 | |
3353 | CPU starting from gcc 4.8.x. | |
3354 | ||
3355 | config BR2_sparc_sparcsfleonv8 | |
3356 | bool "sparcsfleonv8 CPU has been removed" | |
3357 | select BR2_LEGACY | |
3358 | help | |
3359 | The sparcsfleonv8 CPU was only supported in a patched gcc | |
3360 | 4.4 version. Its support has been removed in favor of the | |
3361 | leon3 CPU starting from gcc 4.8.x. | |
3362 | ||
bfd87877 BK |
3363 | config BR2_PACKAGE_XLIB_LIBPCIACCESS |
3364 | bool "xlib-libpciaccess option has been renamed" | |
3365 | depends on BR2_PACKAGE_XORG7 | |
3366 | select BR2_LEGACY | |
3367 | select BR2_PACKAGE_LIBPCIACCESS | |
3368 | help | |
3369 | libpciaccess neither depends on X11 nor Xlib. Thus the | |
3370 | package has been renamed BR2_PACKAGE_LIBPCIACCESS | |
3371 | ||
b581bba9 YM |
3372 | config BR2_PACKAGE_LINUX_FIRMWARE_XC5000 |
3373 | bool "Xceive xc5000 option has been renamed" | |
758c5c7f | 3374 | select BR2_LEGACY |
b581bba9 YM |
3375 | select BR2_PACKAGE_LINUX_FIRMWARE_XCx000 |
3376 | help | |
3377 | The Xceive xc5000 option now also handles older firmwares from | |
d6109172 RM |
3378 | Xceive (the xc4000 series), as well as new firmwares (the |
3379 | xc5000c) from Cresta, who bought Xceive. | |
b581bba9 | 3380 | |
dac546e9 YM |
3381 | config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 |
3382 | bool "Chelsio T4 option has been renamed" | |
758c5c7f | 3383 | select BR2_LEGACY |
dac546e9 YM |
3384 | select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 |
3385 | help | |
3386 | The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4 | |
3387 | has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4 | |
3388 | to better account for the fact that a T5 variant exists. | |
3389 | ||
120136ee YM |
3390 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 |
3391 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed" | |
758c5c7f | 3392 | select BR2_LEGACY |
120136ee YM |
3393 | help |
3394 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was | |
3395 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must | |
3396 | select it in: | |
3397 | Target packages -> Hardware handling -> | |
3398 | Firmware -> linux-firmware -> WiFi firmware -> | |
3399 | iwlwifi 3160/726x revision to use (revision 7) | |
3400 | ||
3401 | config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 | |
3402 | bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed" | |
758c5c7f | 3403 | select BR2_LEGACY |
120136ee YM |
3404 | help |
3405 | The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was | |
3406 | renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must | |
3407 | select it in: | |
3408 | Target packages -> Hardware handling -> | |
3409 | Firmware -> linux-firmware -> WiFi firmware -> | |
3410 | iwlwifi 3160/726x revision to use (revision 8) | |
3411 | ||
5cd1c4fe YM |
3412 | ############################################################################### |
3413 | comment "Legacy options removed in 2014.08" | |
3414 | ||
52fac6a2 GC |
3415 | config BR2_PACKAGE_LIBELF |
3416 | bool "libelf has been removed" | |
3417 | select BR2_PACKAGE_ELFUTILS | |
3418 | select BR2_LEGACY | |
3419 | help | |
d6109172 RM |
3420 | The libelf package provided an old version of the libelf |
3421 | library and is deprecated. The libelf library is now provided | |
3422 | by the elfutils package. | |
52fac6a2 | 3423 | |
dfae6f67 TDS |
3424 | config BR2_KERNEL_HEADERS_3_8 |
3425 | bool "kernel headers version 3.8.x are no longer supported" | |
dfae6f67 TDS |
3426 | select BR2_LEGACY |
3427 | help | |
3428 | Version 3.8.x of the Linux kernel headers have been deprecated | |
3429 | for more than four buildroot releases and are now removed. | |
dfae6f67 | 3430 | |
187b4d68 TP |
3431 | config BR2_PACKAGE_GETTEXT_TOOLS |
3432 | bool "support for gettext-tools on target has been removed" | |
3433 | select BR2_LEGACY | |
3434 | help | |
3435 | The option to install the gettext utilities on the target | |
3436 | has been removed. This is not necessary as Buildroot is not | |
3437 | designed to provide a full development environment on the | |
3438 | target. gettext tools should be used on the build machine | |
3439 | instead. | |
3440 | ||
5cd1c4fe YM |
3441 | config BR2_PACKAGE_PROCPS |
3442 | bool "procps has been replaced by procps-ng" | |
3443 | select BR2_PACKAGE_PROCPS_NG | |
3444 | select BR2_LEGACY | |
3445 | help | |
d6109172 RM |
3446 | The procps package has been replaced by the equivalent |
3447 | procps-ng. | |
5cd1c4fe | 3448 | |
d4839ffc TP |
3449 | config BR2_BINUTILS_VERSION_2_20_1 |
3450 | bool "binutils 2.20.1 has been removed" | |
3451 | select BR2_LEGACY | |
3452 | help | |
3453 | The 2.20.1 version of binutils has been removed. Use a newer | |
3454 | version instead. | |
3455 | ||
3456 | config BR2_BINUTILS_VERSION_2_21 | |
3457 | bool "binutils 2.21 has been removed" | |
3458 | select BR2_LEGACY | |
3459 | help | |
3460 | The 2.21 version of binutils has been removed. Use a newer | |
3461 | version instead. | |
3462 | ||
3463 | config BR2_BINUTILS_VERSION_2_23_1 | |
3464 | bool "binutils 2.23.1 has been removed" | |
3465 | select BR2_LEGACY | |
3466 | help | |
3467 | The 2.23.1 version of binutils has been removed. Use a newer | |
3468 | version instead. | |
3469 | ||
506b964d TP |
3470 | config BR2_UCLIBC_VERSION_0_9_32 |
3471 | bool "uclibc 0.9.32 has been removed" | |
3472 | select BR2_LEGACY | |
3473 | help | |
3474 | The 0.9.32 version of uClibc has been removed. Use a newer | |
3475 | version instead. | |
3476 | ||
d10e0805 TP |
3477 | config BR2_GCC_VERSION_4_3_X |
3478 | bool "gcc 4.3.x has been removed" | |
3479 | select BR2_LEGACY | |
3480 | help | |
3481 | The 4.3.x version of gcc has been removed. Use a newer | |
3482 | version instead. | |
3483 | ||
3484 | config BR2_GCC_VERSION_4_6_X | |
3485 | bool "gcc 4.6.x has been removed" | |
3486 | select BR2_LEGACY | |
3487 | help | |
3488 | The 4.6.x version of gcc has been removed. Use a newer | |
3489 | version instead. | |
3490 | ||
02d85f65 TP |
3491 | config BR2_GDB_VERSION_7_4 |
3492 | bool "gdb 7.4 has been removed" | |
3493 | select BR2_LEGACY | |
3494 | help | |
3495 | The 7.4 version of gdb has been removed. Use a newer version | |
3496 | instead. | |
3497 | ||
3498 | config BR2_GDB_VERSION_7_5 | |
3499 | bool "gdb 7.5 has been removed" | |
3500 | select BR2_LEGACY | |
3501 | help | |
3502 | The 7.5 version of gdb has been removed. Use a newer version | |
3503 | instead. | |
3504 | ||
b18dca0d TP |
3505 | config BR2_BUSYBOX_VERSION_1_19_X |
3506 | bool "busybox version selection has been removed" | |
3507 | select BR2_LEGACY | |
3508 | help | |
3509 | The possibility of selecting the Busybox version has been | |
3510 | removed. Use the latest version provided by the Busybox | |
3511 | package instead. | |
3512 | ||
3513 | config BR2_BUSYBOX_VERSION_1_20_X | |
3514 | bool "busybox version selection has been removed" | |
3515 | select BR2_LEGACY | |
3516 | help | |
3517 | The possibility of selecting the Busybox version has been | |
3518 | removed. Use the latest version provided by the Busybox | |
3519 | package instead. | |
3520 | ||
3521 | config BR2_BUSYBOX_VERSION_1_21_X | |
3522 | bool "busybox version selection has been removed" | |
3523 | select BR2_LEGACY | |
3524 | help | |
3525 | The possibility of selecting the Busybox version has been | |
3526 | removed. Use the latest version provided by the Busybox | |
3527 | package instead. | |
3528 | ||
07ac0456 EG |
3529 | config BR2_PACKAGE_LIBV4L_DECODE_TM6000 |
3530 | bool "decode_tm6000" | |
3531 | select BR2_PACKAGE_LIBV4L_UTILS | |
3532 | select BR2_LEGACY | |
3533 | help | |
d6109172 RM |
3534 | This libv4l option has been deprecated and replaced by a |
3535 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3536 | |
3537 | config BR2_PACKAGE_LIBV4L_IR_KEYTABLE | |
3538 | bool "ir-keytable" | |
3539 | select BR2_PACKAGE_LIBV4L_UTILS | |
3540 | select BR2_LEGACY | |
3541 | help | |
d6109172 RM |
3542 | This libv4l option has been deprecated and replaced by a |
3543 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3544 | |
3545 | config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE | |
3546 | bool "v4l2-compliance" | |
3547 | select BR2_PACKAGE_LIBV4L_UTILS | |
3548 | select BR2_LEGACY | |
3549 | help | |
d6109172 RM |
3550 | This libv4l option has been deprecated and replaced by a |
3551 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3552 | |
3553 | config BR2_PACKAGE_LIBV4L_V4L2_CTL | |
3554 | bool "v4l2-ctl" | |
3555 | select BR2_PACKAGE_LIBV4L_UTILS | |
3556 | select BR2_LEGACY | |
3557 | help | |
d6109172 RM |
3558 | This libv4l option has been deprecated and replaced by a |
3559 | single option to build all the libv4l utilities. | |
07ac0456 EG |
3560 | |
3561 | config BR2_PACKAGE_LIBV4L_V4L2_DBG | |
3562 | bool "v4l2-dbg" | |
3563 | select BR2_PACKAGE_LIBV4L_UTILS | |
3564 | select BR2_LEGACY | |
3565 | help | |
d6109172 RM |
3566 | This libv4l option has been deprecated and replaced by a |
3567 | single option to build all the libv4l utilities. | |
07ac0456 | 3568 | |
fabcb119 | 3569 | ############################################################################### |
3570 | comment "Legacy options removed in 2014.05" | |
3571 | ||
4990a381 PS |
3572 | config BR2_PACKAGE_EVTEST_CAPTURE |
3573 | bool "evtest-capture support removed (dropped since evtest 1.31)" | |
3574 | select BR2_LEGACY | |
3575 | help | |
3576 | Support for evtest-capture has been removed (dropped from | |
3577 | evtest package since version 1.31), use evemu package | |
3578 | instead. | |
3579 | ||
47c2d1b4 TDS |
3580 | config BR2_KERNEL_HEADERS_3_6 |
3581 | bool "kernel headers version 3.6.x are no longer supported" | |
47c2d1b4 TDS |
3582 | select BR2_LEGACY |
3583 | help | |
3584 | Version 3.6.x of the Linux kernel headers have been deprecated | |
3585 | for more than four buildroot releases and are now removed. | |
47c2d1b4 TDS |
3586 | |
3587 | config BR2_KERNEL_HEADERS_3_7 | |
3588 | bool "kernel headers version 3.7.x are no longer supported" | |
47c2d1b4 TDS |
3589 | select BR2_LEGACY |
3590 | help | |
3591 | Version 3.7.x of the Linux kernel headers have been deprecated | |
3592 | for more than four buildroot releases and are now removed. | |
47c2d1b4 | 3593 | |
947ca9e1 TDS |
3594 | config BR2_PACKAGE_VALA |
3595 | bool "vala target package has been removed" | |
3596 | select BR2_LEGACY | |
3597 | help | |
3598 | The 'vala' target package has been removed since it has been | |
3599 | deprecated for more than four buildroot releases. | |
3600 | Note: the host vala package still exists. | |
3601 | ||
d6a37917 YM |
3602 | config BR2_TARGET_TZ_ZONELIST |
3603 | default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
3604 | ||
3605 | config BR2_PACKAGE_TZDATA_ZONELIST | |
3606 | string "tzdata: the timezone list option has been renamed" | |
3607 | help | |
3608 | The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to | |
d6109172 RM |
3609 | BR2_TARGET_TZ_ZONELIST, and moved to the "System |
3610 | configuration" menu. You'll need to select BR2_TARGET_TZ_INFO. | |
d6a37917 YM |
3611 | |
3612 | config BR2_PACKAGE_TZDATA_ZONELIST_WRAP | |
3613 | bool | |
3614 | default y if BR2_PACKAGE_TZDATA_ZONELIST != "" | |
3615 | select BR2_LEGACY | |
3616 | ||
c97aeb7e YM |
3617 | config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE |
3618 | bool "Lua command-line editing none has been renamed" | |
3619 | select BR2_LEGACY | |
3620 | help | |
3621 | The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been | |
d6109172 RM |
3622 | renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to |
3623 | select it in the corresponding choice. | |
c97aeb7e YM |
3624 | |
3625 | config BR2_PACKAGE_LUA_INTERPRETER_READLINE | |
3626 | bool "Lua command-line editing using readline has been renamed" | |
3627 | select BR2_LEGACY | |
3628 | help | |
3629 | The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been | |
3630 | renamed to BR2_PACKAGE_LUA_READLINE. You will have to select | |
3631 | it in the corresponding choice. | |
3632 | ||
3633 | config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE | |
3634 | bool "Lua command-line editing using linenoise has been renamed" | |
3635 | select BR2_LEGACY | |
3636 | help | |
3637 | The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been | |
3638 | renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select | |
3639 | it in the corresponding choice. | |
3640 | ||
365ae61c YM |
3641 | config BR2_PACKAGE_DVB_APPS_UTILS |
3642 | bool "dvb-apps utilities now built by default" | |
3643 | select BR2_LEGACY | |
3644 | help | |
3645 | The dvb-apps utilities are now always built when the dvb-apps | |
3646 | package is selected. | |
3647 | ||
971e331c YM |
3648 | config BR2_KERNEL_HEADERS_SNAP |
3649 | bool "Local Linux snapshot support removed" | |
3650 | select BR2_LEGACY | |
3651 | help | |
3652 | Support for using a custom snapshot to install the Linux | |
3653 | kernel headers has been removed. | |
3654 | ||
fabcb119 | 3655 | config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV |
3656 | bool "/dev management by udev removed" | |
3657 | select BR2_LEGACY | |
3658 | help | |
3659 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3660 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3661 | |
2c66e442 | 3662 | Therefore, if you are not using 'systemd' as init system, you |
3663 | must choose 'Dynamic using eudev' in the '/dev management' | |
3664 | menu to get the same behaviour as in your old configuration. | |
3665 | ||
3666 | If you are using 'systemd', its internal implementation of | |
3667 | 'udev' will be used automatically. | |
fabcb119 | 3668 | |
3669 | You must also check the packages depending on 'udev' are still | |
3670 | selected. | |
3671 | ||
3672 | config BR2_PACKAGE_UDEV | |
3673 | bool "udev is now a virtual package" | |
3674 | select BR2_LEGACY | |
3675 | select BR2_PACKAGE_HAS_UDEV | |
3676 | help | |
3677 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3678 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3679 | |
3680 | Your old configuration refers to packages depending on 'udev', | |
3681 | either for build or at runtime. | |
3682 | ||
2c66e442 | 3683 | Check that a 'udev' provider is selected. If you are not using |
3684 | 'systemd' as init system, 'eudev' should be selected, which is | |
3685 | the case if '/dev management' is set to 'Dynamic using eudev'. | |
3686 | ||
d6109172 RM |
3687 | If you are using 'systemd', its internal implementation of |
3688 | 'udev' is used. | |
fabcb119 | 3689 | |
3690 | config BR2_PACKAGE_UDEV_RULES_GEN | |
2c66e442 | 3691 | bool "udev rules generation handled by provider" |
fabcb119 | 3692 | select BR2_LEGACY |
2c66e442 | 3693 | select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD |
3694 | select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD | |
fabcb119 | 3695 | help |
3696 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3697 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3698 | |
2c66e442 | 3699 | If you are not using 'systemd' as init system, udev rules |
3700 | generation will be handled by 'eudev'. Check that | |
3701 | '/dev management' is set to 'Dynamic using eudev' to get | |
3702 | the same behaviour as in your old configuration. | |
fabcb119 | 3703 | |
d6109172 RM |
3704 | If you are using 'systemd', it internal implementation of |
3705 | 'udev' will generate the rules. | |
fabcb119 | 3706 | |
3707 | config BR2_PACKAGE_UDEV_ALL_EXTRAS | |
3708 | bool "udev extras removed" | |
3709 | select BR2_LEGACY | |
3710 | help | |
3711 | The 'udev' package has been converted to a virtual package. | |
2c66e442 | 3712 | The providers for this feature are: 'eudev', 'systemd'. |
fabcb119 | 3713 | |
3714 | The option to enable the extra features of 'udev' (gudev, ...) | |
3715 | has been removed. These features are automatically enabled in | |
3716 | the 'udev' providers if the dependencies are selected. For | |
3717 | example, selecting 'libglib2' will trigger the build of gudev. | |
3718 | ||
5562be13 BK |
3719 | config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS |
3720 | bool "xlib-libpthread-stubs option has been renamed" | |
3721 | depends on BR2_PACKAGE_XORG7 | |
3722 | select BR2_LEGACY | |
3723 | select BR2_PACKAGE_LIBPTHREAD_STUBS | |
3724 | help | |
3725 | The pthread stubs neither depend on X11 nor Xlib. Thus the | |
3726 | package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS | |
3727 | ||
8b2e2357 | 3728 | ############################################################################### |
f169e5e1 YM |
3729 | comment "Legacy options removed in 2014.02" |
3730 | ||
e543f5a1 TP |
3731 | config BR2_sh2 |
3732 | bool "sh2 support removed" | |
758c5c7f | 3733 | select BR2_LEGACY |
e543f5a1 TP |
3734 | help |
3735 | Due to an inexistent user base and generally poor Linux | |
3736 | support, the support for the SH2 architecture was removed. | |
3737 | ||
3738 | config BR2_sh3 | |
3739 | bool "sh3 support removed" | |
758c5c7f | 3740 | select BR2_LEGACY |
e543f5a1 TP |
3741 | help |
3742 | Due to an inexistent user base and generally poor Linux | |
3743 | support, the support for the SH3 architecture was removed. | |
3744 | ||
3745 | config BR2_sh3eb | |
3746 | bool "sh3eb support removed" | |
758c5c7f | 3747 | select BR2_LEGACY |
e543f5a1 TP |
3748 | help |
3749 | Due to an inexistent user base and generally poor Linux | |
3750 | support, the support for the SH3eb architecture was removed. | |
3751 | ||
334dca61 TDS |
3752 | config BR2_KERNEL_HEADERS_3_1 |
3753 | bool "kernel headers version 3.1.x are no longer supported" | |
334dca61 TDS |
3754 | select BR2_LEGACY |
3755 | help | |
3756 | Version 3.1.x of the Linux kernel headers have been deprecated | |
3757 | for more than four buildroot releases and are now removed. | |
334dca61 TDS |
3758 | |
3759 | config BR2_KERNEL_HEADERS_3_3 | |
3760 | bool "kernel headers version 3.3.x are no longer supported" | |
334dca61 TDS |
3761 | select BR2_LEGACY |
3762 | help | |
3763 | Version 3.3.x of the Linux kernel headers have been deprecated | |
3764 | for more than four buildroot releases and are now removed. | |
334dca61 TDS |
3765 | |
3766 | config BR2_KERNEL_HEADERS_3_5 | |
3767 | bool "kernel headers version 3.5.x are no longer supported" | |
334dca61 TDS |
3768 | select BR2_LEGACY |
3769 | help | |
3770 | Version 3.5.x of the Linux kernel headers have been deprecated | |
3771 | for more than four buildroot releases and are now removed. | |
334dca61 | 3772 | |
348060f9 TDS |
3773 | config BR2_GDB_VERSION_7_2 |
3774 | bool "gdb 7.2.x is no longer supported" | |
02d85f65 | 3775 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
3776 | select BR2_LEGACY |
3777 | help | |
3778 | Version 7.2.x of gdb has been deprecated for more than four | |
3779 | buildroot releases and is now removed. As an alternative, gdb | |
3780 | 7.5.x has been automatically selected in your configuration. | |
3781 | ||
3782 | config BR2_GDB_VERSION_7_3 | |
3783 | bool "gdb 7.3.x is no longer supported" | |
02d85f65 | 3784 | select BR2_GDB_VERSION_7_6 |
348060f9 TDS |
3785 | select BR2_LEGACY |
3786 | help | |
3787 | Version 7.3.x of gdb has been deprecated for more than four | |
3788 | buildroot releases and is now removed. As an alternative, gdb | |
3789 | 7.5.x has been automatically selected in your configuration. | |
3790 | ||
831624c4 TDS |
3791 | config BR2_PACKAGE_CCACHE |
3792 | bool "ccache target package has been removed" | |
3793 | select BR2_LEGACY | |
3794 | help | |
3795 | The 'ccache' target package has been removed since it has been | |
3796 | deprecated for more than four buildroot releases. | |
3797 | Note: using ccache for speeding up builds is still supported. | |
3798 | ||
7164a326 TDS |
3799 | config BR2_HAVE_DOCUMENTATION |
3800 | bool "support for documentation on target has been removed" | |
3801 | select BR2_LEGACY | |
3802 | help | |
d6109172 RM |
3803 | Support for documentation on target has been removed since it |
3804 | has been deprecated for more than four buildroot releases. | |
7164a326 | 3805 | |
f75245d9 TDS |
3806 | config BR2_PACKAGE_AUTOMAKE |
3807 | bool "automake target package has been removed" | |
3808 | select BR2_LEGACY | |
3809 | help | |
d6109172 RM |
3810 | The 'automake' target package has been removed since it has |
3811 | been deprecated for more than four buildroot releases. | |
f75245d9 TDS |
3812 | Note: the host automake still exists. |
3813 | ||
e7af2ac6 TDS |
3814 | config BR2_PACKAGE_AUTOCONF |
3815 | bool "autoconf target package has been removed" | |
3816 | select BR2_LEGACY | |
3817 | help | |
d6109172 RM |
3818 | The 'autoconf' target package has been removed since it has |
3819 | been deprecated for more than four buildroot releases. | |
e7af2ac6 TDS |
3820 | Note: the host autoconf still exists. |
3821 | ||
ddf5424f TDS |
3822 | config BR2_PACKAGE_XSTROKE |
3823 | bool "xstroke has been removed" | |
3824 | select BR2_LEGACY | |
3825 | help | |
3826 | The 'xstroke' package has been removed since it has been | |
3827 | deprecated for more than four buildroot releases. | |
3828 | ||
0a077319 TDS |
3829 | config BR2_PACKAGE_LZMA |
3830 | bool "lzma target package has been removed" | |
3831 | select BR2_LEGACY | |
3832 | help | |
3833 | The 'lzma' target package has been removed since it has been | |
3834 | deprecated for more than four buildroot releases. | |
d6109172 RM |
3835 | Note: generating lzma-compressed rootfs images is still |
3836 | supported. | |
0a077319 | 3837 | |
7ef5c3a5 TDS |
3838 | config BR2_PACKAGE_TTCP |
3839 | bool "ttcp has been removed" | |
3840 | select BR2_LEGACY | |
3841 | help | |
3842 | The 'ttcp' package has been removed since it has been | |
3843 | deprecated for more than four buildroot releases. | |
3844 | ||
8b2e2357 | 3845 | config BR2_PACKAGE_LIBNFC_LLCP |
93341046 | 3846 | bool "libnfc-llcp has been replaced by libllcp" |
8b2e2357 | 3847 | select BR2_LEGACY |
93341046 | 3848 | select BR2_PACKAGE_LIBLLCP |
8b2e2357 | 3849 | help |
d6109172 RM |
3850 | The 'libnfc-llcp' package has been removed since upstream |
3851 | renamed to 'libllcp'. We have added a new package for | |
3852 | 'libllcp' and bumped the version at the same time. | |
8b2e2357 | 3853 | |
06c82128 MGUF |
3854 | config BR2_PACKAGE_MYSQL_CLIENT |
3855 | bool "MySQL client renamed to MySQL" | |
3856 | select BR2_LEGACY | |
3857 | select BR2_PACKAGE_MYSQL | |
3858 | help | |
3859 | The option has been renamed BR2_PACKAGE_MYSQL | |
3860 | ||
2f7a53ee TDS |
3861 | config BR2_PACKAGE_SQUASHFS3 |
3862 | bool "squashfs3 has been removed" | |
3863 | select BR2_LEGACY | |
3864 | select BR2_PACKAGE_SQUASHFS | |
3865 | help | |
3866 | The 'squashfs3' package has been removed since it has been | |
3867 | deprecated for more than four buildroot releases. Package | |
3868 | 'squashfs' (4) has been selected automatically as replacement. | |
3869 | ||
3870 | config BR2_TARGET_ROOTFS_SQUASHFS3 | |
3871 | bool "squashfs3 rootfs support has been removed" | |
3872 | select BR2_LEGACY | |
3873 | help | |
3874 | Together with the removal of the squashfs3 package, support | |
3875 | for squashfs3 root filesystems has been removed too. Squashfs | |
3876 | root filesystems will automatically use squashfs4 now. | |
3877 | ||
560fe85b AA |
3878 | config BR2_PACKAGE_NETKITBASE |
3879 | bool "netkitbase has been removed" | |
3880 | select BR2_LEGACY | |
3881 | help | |
3882 | The 'netkitbase' package has been removed since it has been | |
3883 | deprecated since 2012.11. This package provided 'inetd' | |
3884 | which is replaced by 'xinet' and 'ping' which is replaced by | |
3885 | 'busybox' or 'fping'. | |
3886 | ||
3887 | config BR2_PACKAGE_NETKITTELNET | |
3888 | bool "netkittelnet has been removed" | |
3889 | select BR2_LEGACY | |
3890 | help | |
3891 | The 'netkittelnet' package has been removed since it has | |
3892 | been deprecated since 2012.11. 'busybox' provides a telnet | |
3893 | client and should be used instead. | |
3894 | ||
63058f8b FP |
3895 | config BR2_PACKAGE_LUASQL |
3896 | bool "luasql has been replaced by luasql-sqlite3" | |
3897 | select BR2_PACKAGE_LUASQL_SQLITE3 | |
3898 | select BR2_LEGACY | |
3899 | help | |
3900 | The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3. | |
3901 | ||
a6c53478 FP |
3902 | config BR2_PACKAGE_LUACJSON |
3903 | bool "luacjson has been replaced by lua-cjson" | |
3904 | select BR2_PACKAGE_LUA_CJSON | |
3905 | select BR2_LEGACY | |
3906 | help | |
3907 | The option has been renamed BR2_PACKAGE_LUA_CJSON. | |
3908 | ||
94c72087 TP |
3909 | ############################################################################### |
3910 | comment "Legacy options removed in 2013.11" | |
3911 | ||
ff0f55e3 AV |
3912 | config BR2_PACKAGE_LVM2_DMSETUP_ONLY |
3913 | bool "lvm2's 'dmsetup only' option removed" | |
3914 | select BR2_LEGACY | |
3915 | help | |
3916 | The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which | |
3917 | led to problems with other packages that need the full lvm2 | |
d6109172 RM |
3918 | suite. Therefore, the option has been replaced with the |
3919 | positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option. | |
ff0f55e3 AV |
3920 | |
3921 | # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in | |
3922 | # in order to automatically propagate old configs | |
3923 | ||
1f9c04f6 TP |
3924 | config BR2_PACKAGE_QT_JAVASCRIPTCORE |
3925 | bool "qt javascriptcore option removed" | |
3926 | select BR2_LEGACY | |
3927 | help | |
3928 | The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to | |
3929 | force the activation or disabling of the JIT compiler in the | |
3930 | Qt Javascript interpreter. However, the JIT compiler is not | |
3931 | available for all architectures, so forcing its activation | |
3932 | does not always work. Moreover, Qt knows by itself for which | |
3933 | architectures JIT support is possible, and will | |
3934 | automatically enable it if possible. | |
3935 | ||
3936 | Therefore, this option was in fact useless, and causing | |
3937 | build problems when enabled on architectures for which the | |
3938 | JIT support was not available. It has been removed, and | |
3939 | there is no replacement: Qt will enable JIT at compile time | |
3940 | when possible. | |
3941 | ||
94c72087 TP |
3942 | config BR2_PACKAGE_MODULE_INIT_TOOLS |
3943 | bool "module-init-tools replaced by kmod" | |
3944 | select BR2_PACKAGE_KMOD | |
3945 | select BR2_PACKAGE_KMOD_TOOLS | |
0f401f91 | 3946 | select BR2_LEGACY |
94c72087 TP |
3947 | help |
3948 | The 'module-init-tools' package has been removed, since it | |
3949 | has been depracated upstream and replaced by 'kmod'. | |
3950 | ||
f2c2193b TDS |
3951 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL |
3952 | string "u-boot: the git repository URL option has been renamed" | |
3953 | help | |
3954 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has | |
3955 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL. | |
3956 | ||
3957 | config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP | |
3958 | bool | |
3959 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != "" | |
3960 | select BR2_LEGACY | |
3961 | ||
3962 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from | |
3963 | # boot/uboot/Config.in | |
3964 | ||
3965 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION | |
3966 | string "u-boot: the git repository version option has been renamed" | |
3967 | help | |
3968 | The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has | |
3969 | been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION. | |
3970 | ||
3971 | config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP | |
3972 | bool | |
3973 | default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" | |
3974 | select BR2_LEGACY | |
3975 | ||
3976 | # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from | |
3977 | # boot/uboot/Config.in | |
3978 | ||
63ecded2 TDS |
3979 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL |
3980 | string "linux: the git repository URL option has been renamed" | |
3981 | help | |
3982 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has | |
3983 | been renamed to | |
3984 | BR2_LINUX_KERNEL_CUSTOM_REPO_URL. | |
3985 | ||
3986 | config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP | |
3987 | bool | |
3988 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != "" | |
3989 | select BR2_LEGACY | |
3990 | ||
3991 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from | |
3992 | # linux/Config.in | |
3993 | ||
3994 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION | |
3995 | string "linux: the git repository version option has been renamed" | |
3996 | help | |
3997 | The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has | |
3998 | been renamed to | |
3999 | BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION. | |
4000 | ||
4001 | config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP | |
4002 | bool | |
4003 | default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" | |
4004 | select BR2_LEGACY | |
4005 | ||
4006 | # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from | |
4007 | # linux/Config.in | |
4008 | ||
67eaf705 YM |
4009 | ############################################################################### |
4010 | comment "Legacy options removed in 2013.08" | |
c6e4fcb1 | 4011 | |
1f3078b1 TP |
4012 | config BR2_ARM_OABI |
4013 | bool "ARM OABI support has been removed" | |
4014 | select BR2_LEGACY | |
4015 | help | |
4016 | The support for the ARM OABI was deprecated since a while, | |
4017 | and has been removed completely from Buildroot. It is also | |
4018 | deprecated in upstream gcc, since gcc 4.7. People should | |
4019 | switch to EABI instead, which should not be a problem as | |
4020 | long as you don't have pre-built OABI binaries in your | |
4021 | system that you can't recompile. | |
4022 | ||
c6e4fcb1 GZ |
4023 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK |
4024 | bool "dosfstools dosfsck renamed to fsck.fat" | |
4025 | select BR2_LEGACY | |
4026 | select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT | |
4027 | help | |
4028 | dosfsck was renamed upstream to fsck.fat for consistency. | |
4029 | ||
4030 | config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL | |
4031 | bool "dosfstools dosfslabel renamed to fatlabel" | |
4032 | select BR2_LEGACY | |
4033 | select BR2_PACKAGE_DOSFSTOOLS_FATLABEL | |
4034 | help | |
4035 | doslabel was renamed upstream to fatlabel for consistency. | |
4036 | ||
4037 | config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS | |
4038 | bool "dosfstools mkdosfs renamed to mkfs.fat" | |
4039 | select BR2_LEGACY | |
4040 | select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT | |
4041 | help | |
4042 | mkdosfs was renamed upstream to mkfs.fat for consistency. | |
4043 | ||
e21db000 TP |
4044 | config BR2_ELF2FLT |
4045 | bool "the elf2flt option has been renamed" | |
4046 | select BR2_LEGACY | |
4047 | help | |
4048 | The BR2_ELF2FLT option has been renamed to | |
4049 | BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to | |
4050 | the package infrastructure. | |
4051 | ||
d806005b TP |
4052 | config BR2_VFP_FLOAT |
4053 | bool "the ARM VFP floating point option has been renamed" | |
4054 | select BR2_LEGACY | |
4055 | help | |
4056 | Due to a major refactoring of the floating-point handling of | |
4057 | the ARM architecture support, the BR2_VFP_FLOAT option has | |
4058 | been replaced with a choice of options that allows to select | |
4059 | between various VFP versions/capabilities. | |
4060 | ||
ba8f82b0 SM |
4061 | config BR2_PACKAGE_GCC_TARGET |
4062 | bool "gcc on the target filesystem has been removed" | |
4063 | select BR2_LEGACY | |
4064 | help | |
4065 | The support for gcc in the target filesystem was deprecated | |
4066 | since a while, and has been removed completely from Buildroot. | |
4067 | See Buildroot's documentation for more explanations. | |
4068 | ||
4069 | config BR2_HAVE_DEVFILES | |
4070 | bool "development files in target filesystem has been removed" | |
4071 | select BR2_LEGACY | |
4072 | help | |
4073 | The installation of the development files in the target | |
4074 | filesystem was deprecated since a while, and has been removed | |
4075 | completely from Buildroot. | |
4076 | See Buildroot's documentation for more explanations. | |
4077 | ||
a91a5c16 | 4078 | endmenu |
53903a15 AV |
4079 | |
4080 | endif # !SKIP_LEGACY |