]>
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 | 145 | ############################################################################### |
bf362600 | 146 | |
216e99e9 | 147 | comment "Legacy options removed in 2024.05" |
8a55a0bf | 148 | |
1680e491 WB |
149 | config BR2_GCC_VERSION_11_X |
150 | bool "gcc 11.x support removed" | |
151 | select BR2_LEGACY | |
152 | help | |
153 | Support for gcc version 11.x has been removed. The current | |
154 | default version (13.x or later) has been selected instead. | |
155 | ||
5cfda600 WB |
156 | config BR2_BINFMT_FLAT_SHARED |
157 | bool "FLAT shared binary format removed" | |
e942b78c | 158 | select BR2_LEGACY |
5cfda600 WB |
159 | help |
160 | Support for the FLAT shared binary format has been removed: | |
161 | its support was removed from the Linux kernel, and also from | |
162 | uClibc-ng, the only C library that supported it. | |
163 | ||
93a7b372 BK |
164 | config BR2_PACKAGE_OMXPLAYER |
165 | bool "omxplayer removed" | |
166 | select BR2_LEGACY | |
167 | help | |
168 | Package was deprecated in 2020 and is broken with ffmpeg 6.x | |
169 | ||
2a2a1c38 BK |
170 | config BR2_KERNEL_HEADERS_6_7 |
171 | bool "kernel headers version 6.7.x are no longer supported" | |
172 | select BR2_LEGACY | |
173 | help | |
174 | Version 6.7.x of the Linux kernel headers are no longer | |
175 | maintained upstream and are now removed. | |
176 | ||
1e6f6252 RN |
177 | config BR2_TARGET_TI_K3_IMAGE_GEN |
178 | bool "ti-k3-image-gen removed" | |
179 | select BR2_LEGACY | |
180 | help | |
181 | ti-k3-image-gen tool has been removed and replaced by | |
182 | U-Boot binman tool (requires U-boot >= 2023.10). | |
183 | ||
182756a0 | 184 | config BR2_TARGET_UBOOT_NEEDS_TI_K3_DM |
e4d07f8d | 185 | bool "u-boot TI K3 DM option has been removed." |
182756a0 | 186 | select BR2_LEGACY |
182756a0 RN |
187 | help |
188 | The TI K3 Device Manager is already included in | |
189 | ti-k3-boot-firmware. | |
190 | ||
c6f7ad6d AD |
191 | config BR2_PACKAGE_FLUTTER_GALLERY |
192 | bool "flutter-gallery removed" | |
193 | select BR2_LEGACY | |
194 | help | |
195 | flutter-gallery has been removed due to being abandoned | |
196 | and no longer working with flutter 3.19+. It is replaced by | |
197 | flutter-packages, where individual sub-packages (examples) | |
198 | must be selected for the build. | |
199 | ||
33605ea6 FF |
200 | config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS |
201 | bool "Codescape IMG GNU Linux Toolchain 2018.09 has been removed" | |
202 | select BR2_LEGACY | |
203 | help | |
204 | The Codescape IMG GNU Linux toolchain has been removed, use a | |
205 | Bootlin toolchain instead. | |
206 | ||
207 | config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS | |
208 | bool "Codescape MTI GNU Linux Toolchain 2018.09 has been removed" | |
209 | select BR2_LEGACY | |
210 | help | |
211 | The Codescape MTI GNU Linux toolchain has been removed, use a | |
212 | Bootlin toolchain instead. | |
213 | ||
53a8c515 | 214 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 |
33605ea6 | 215 | bool "CodeSourcery AArch64 2014.11 has been removed" |
53a8c515 FF |
216 | select BR2_LEGACY |
217 | help | |
218 | The Sourcery CodeBench AArch64 toolchain has been removed, | |
219 | use an ARM/Bootlin/Linaro toolchain instead. | |
220 | ||
221 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM | |
2b59ee9f | 222 | bool "Sourcery CodeBench ARM 2014.05 has been removed" |
53a8c515 FF |
223 | select BR2_LEGACY |
224 | help | |
225 | The Sourcery CodeBench ARM toolchain has been removed, use | |
226 | an ARM/Bootlin/Linaro toolchain instead. | |
227 | ||
f4187bd1 TP |
228 | config BR2_BINUTILS_VERSION_2_39_X |
229 | bool "binutils 2.39 has been removed" | |
230 | select BR2_LEGACY | |
231 | help | |
232 | binutils 2.39 has been removed, use a newer version. | |
233 | ||
7b93aade | 234 | comment "Legacy options removed in 2024.02" |
8a55a0bf | 235 | |
8708f3a2 PK |
236 | config BR2_PACKAGE_MYSQL |
237 | bool "mysql virtual package removed" | |
238 | select BR2_LEGACY | |
239 | help | |
240 | The mysql virtual package has been removed as mariadb is the | |
241 | only supported mysql variant. Use the mariadb package | |
242 | instead. | |
243 | ||
7cc49fc6 PK |
244 | config BR2_PACKAGE_ORACLE_MYSQL |
245 | bool "oracle mysql removed" | |
246 | select BR2_LEGACY | |
247 | help | |
248 | Oracle mysql has been removed as the package was | |
249 | unmaintained. Consider using mariadb instead. | |
250 | ||
ed209071 FF |
251 | config BR2_PACKAGE_STRONGSWAN_SCEP |
252 | bool "strongswan SCEP client tool removed" | |
253 | select BR2_LEGACY | |
254 | help | |
255 | "ipsec scepclient" tool has been removed and replaced by the | |
256 | pki subcommands "pki --scep" and "pki --scepca" which | |
257 | implement the new SCEP RFC 8894 standard that was released in | |
258 | September 2020 and which supports trusted "certificate | |
259 | renewal" based on the existing client certificate. | |
260 | ||
7781cdca FF |
261 | config BR2_PACKAGE_SHADOW_UTMPX |
262 | bool "shadow utmpx removed" | |
263 | select BR2_LEGACY | |
264 | help | |
265 | UTMPX has been dropped by upstream. | |
266 | ||
16eec251 FF |
267 | config BR2_PACKAGE_TINYMEMBENCH |
268 | bool "tinymembench removed" | |
269 | select BR2_LEGACY | |
270 | help | |
271 | tinymembench has been removed due to being abandoned. | |
272 | ||
678cf889 DB |
273 | config BR2_PACKAGE_DAVINCI_BOOTCOUNT |
274 | bool "davinci-bootcount has been renamed" | |
275 | select BR2_LEGACY | |
276 | select BR2_PACKAGE_UBOOT_BOOTCOUNT | |
277 | help | |
278 | The davinci-bootcount package has been renamed to | |
279 | uboot-bootcount. | |
280 | ||
dcf0c361 AD |
281 | config BR2_PACKAGE_PYTHON_CROSSBAR |
282 | bool "python-crossbar removed" | |
283 | select BR2_LEGACY | |
284 | help | |
285 | python-crossbar has been removed. The current package has | |
286 | not received an update since Sat Oct 9 13:55:06 2021 commit: | |
287 | 33ece2446e25e20929d1c7eefa9f3244a3b79a92 and is not python | |
288 | 3.12.0 compatible. | |
289 | ||
290 | Furthermore, the current version requires at least 42 new | |
291 | packages worth of depedencies of which several require | |
292 | patches to be python 3.12.0 compatible. As nobody has | |
293 | stepped up to maintain the package and its ever-growing list | |
294 | of dependencies, along with the other problems, it was time | |
295 | to drop the package. | |
296 | ||
bd8b5d18 AD |
297 | config BR2_PACKAGE_PYTHON_PYGAME |
298 | bool "python-pygame removed" | |
299 | select BR2_LEGACY | |
300 | help | |
301 | python-pygame has been removed due to being abandoned and | |
302 | the old version no longer building with python 3.12.0. | |
303 | ||
a959e1ba BK |
304 | config BR2_KERNEL_HEADERS_4_14 |
305 | bool "kernel headers version 4.14.x are no longer supported" | |
306 | select BR2_LEGACY | |
307 | help | |
308 | Version 4.14.x of the Linux kernel headers are no longer | |
309 | maintained upstream and are now removed. | |
310 | ||
782d268a PS |
311 | config BR2_PACKAGE_LIBCAMERA_PIPELINE_RASPBERRYPI |
312 | bool "libcamera pipeline 'raspberrypi' was renamed to 'rpi/vc4'" | |
313 | depends on BR2_arm || BR2_aarch64 | |
314 | depends on BR2_USE_WCHAR | |
315 | select BR2_LEGACY | |
316 | select BR2_PACKAGE_LIBCAMERA_PIPELINE_RPI_VC4 | |
317 | help | |
f29c5b57 | 318 | Since version 0.1.0, the pipeline option 'raspberrypi' was |
782d268a PS |
319 | renamed to 'rpi/vc4'. |
320 | ||
030497be TP |
321 | config BR2_GDB_VERSION_11 |
322 | bool "gdb 11.x removed" | |
323 | select BR2_LEGACY | |
324 | help | |
325 | GDB 11.x has been removed, use a newer version. | |
326 | ||
64a58316 TP |
327 | config BR2_PACKAGE_LIBMPD |
328 | bool "libmpd package was removed" | |
329 | select BR2_LEGACY | |
330 | help | |
331 | The libmpd package was only used by gmpc, both of which are | |
332 | no longer maintained upstream. | |
333 | ||
f93380ab TP |
334 | config BR2_PACKAGE_GMPC |
335 | bool "gmpc package was removed" | |
336 | select BR2_LEGACY | |
337 | help | |
338 | The gmpc package was removed because it was unmaintained, | |
339 | and still using the old libsoup2 library. | |
340 | ||
6d8c7aec TP |
341 | config BR2_PACKAGE_FLICKCURL |
342 | bool "flickcurl package was removed" | |
343 | select BR2_LEGACY | |
344 | help | |
345 | The flickcurl package was removed because it was | |
346 | unmaintained upstream and causing build failures. | |
347 | ||
f6acde11 BK |
348 | config BR2_PACKAGE_ONEVPL |
349 | bool "onevpl package was renamed" | |
350 | select BR2_LEGACY | |
351 | select BR2_PACKAGE_LIBVPL | |
352 | ||
fffb245f BK |
353 | config BR2_KERNEL_HEADERS_6_5 |
354 | bool "kernel headers version 6.5.x are no longer supported" | |
355 | select BR2_LEGACY | |
356 | help | |
357 | Version 6.5.x of the Linux kernel headers are no longer | |
358 | maintained upstream and are now removed. | |
359 | ||
7371cb29 JW |
360 | config BR2_PACKAGE_WATCHDOGD_GENERIC_POLL |
361 | int "watchdogd generic poll has been replaced" | |
362 | default 0 | |
363 | help | |
364 | The generic script poll interval has been replaced upstream | |
365 | with a boolean on/off. Your configuration has been migrated. | |
366 | ||
367 | Set this legacy option to 0 here to remove the warning. | |
368 | ||
369 | # Note: BR2_PACKAGE_WATCHDOGD_*_POLL_WRAP referenced in package/watchdogd/Config.in | |
370 | config BR2_PACKAGE_WATCHDOGD_GENERIC_POLL_WRAP | |
371 | bool | |
372 | default y if BR2_PACKAGE_WATCHDOGD_GENERIC_POLL != 0 | |
373 | select BR2_LEGACY | |
374 | ||
375 | config BR2_PACKAGE_WATCHDOGD_LOADAVG_POLL | |
376 | int "watchdogd loadavg poll has been replaced" | |
377 | default 0 | |
378 | help | |
379 | The CPU load average poll interval has been replaced upstream | |
380 | with a boolean on/off. Your configuration has been migrated. | |
381 | ||
382 | Set this legacy option to 0 here to remove the warning. | |
383 | ||
384 | # Note: BR2_PACKAGE_WATCHDOGD_*_POLL_WRAP referenced in package/watchdogd/Config.in | |
385 | config BR2_PACKAGE_WATCHDOGD_LOADAVG_POLL_WRAP | |
386 | bool | |
387 | default y if BR2_PACKAGE_WATCHDOGD_LOADAVG_POLL != 0 | |
388 | select BR2_LEGACY | |
389 | ||
390 | config BR2_PACKAGE_WATCHDOGD_FILENR_POLL | |
391 | int "watchdogd filenr poll has been replaced" | |
392 | default 0 | |
393 | help | |
394 | The file descriptor leak poll has been replaced upstream with | |
395 | a boolean on/off. Your configuration has been migrated. | |
396 | ||
397 | Set this legacy option to 0 here to remove the warning. | |
398 | ||
399 | # Note: BR2_PACKAGE_WATCHDOGD_*_POLL_WRAP referenced in package/watchdogd/Config.in | |
400 | config BR2_PACKAGE_WATCHDOGD_FILENR_POLL_WRAP | |
401 | bool | |
402 | default y if BR2_PACKAGE_WATCHDOGD_FILENR_POLL != 0 | |
403 | select BR2_LEGACY | |
404 | ||
405 | config BR2_PACKAGE_WATCHDOGD_MEMINFO_POLL | |
406 | int "watchdogd meminfo poll has been replaced" | |
407 | default 0 | |
408 | help | |
409 | The memleak detector poll interval has been replaced upstream | |
410 | with a boolean on/off. Your configuration has been migrated. | |
411 | ||
412 | Set this legacy option to 0 here to remove the warning. | |
413 | ||
414 | # Note: BR2_PACKAGE_WATCHDOGD_*_POLL_WRAP referenced in package/watchdogd/Config.in | |
415 | config BR2_PACKAGE_WATCHDOGD_MEMINFO_POLL_WRAP | |
416 | bool | |
417 | default y if BR2_PACKAGE_WATCHDOGD_MEMINFO_POLL != 0 | |
418 | select BR2_LEGACY | |
419 | ||
7b93aade YM |
420 | comment "Legacy options removed in 2023.11" |
421 | ||
c0799123 AD |
422 | config BR2_PACKAGE_PYTHON_PYXB |
423 | bool "python-pyxb removed" | |
424 | select BR2_LEGACY | |
425 | help | |
426 | python-pyxb has been removed due to being abandoned and | |
427 | distutils no longer being supported in python 3.12.0. | |
428 | ||
095cab35 AD |
429 | config BR2_PACKAGE_OPENJDK_VERSION_11 |
430 | bool "openjdk 11 has been removed" | |
431 | select BR2_LEGACY | |
432 | help | |
433 | Version 11 of OpenJDK is no longer supported, version 17 | |
434 | should now be used as the new LTS release. | |
435 | ||
2a711479 BK |
436 | config BR2_KERNEL_HEADERS_6_4 |
437 | bool "kernel headers version 6.4.x are no longer supported" | |
438 | select BR2_LEGACY | |
439 | help | |
440 | Version 6.4.x of the Linux kernel headers are no longer | |
441 | maintained upstream and are now removed. | |
442 | ||
31d48b8a JK |
443 | config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS |
444 | bool "google-material-design-icons removed" | |
445 | select BR2_LEGACY | |
446 | help | |
447 | The google-material-design-icons package has been removed. | |
448 | ||
809fdb3a TP |
449 | config BR2_GDB_VERSION_10 |
450 | bool "gdb 10.x removed" | |
451 | select BR2_LEGACY | |
452 | help | |
453 | gdb 10.x has been removed, use a newer version. | |
454 | ||
8a55a0bf RN |
455 | comment "Legacy options removed in 2023.08" |
456 | ||
503252d8 TP |
457 | config BR2_TARGET_LPC32XXCDL |
458 | bool "lpc32xxcdl has been removed" | |
459 | select BR2_LEGACY | |
460 | help | |
461 | lpc32xxcdl has been removed, due to licensing concerns. | |
462 | ||
1391c99d BK |
463 | config BR2_BINUTILS_VERSION_2_38_X |
464 | bool "binutils 2.38.x has been removed" | |
465 | select BR2_LEGACY | |
466 | help | |
467 | binutils 2.38 has been removed, use a newer version. | |
468 | ||
d37a8f3a RN |
469 | config BR2_GCC_VERSION_10_X |
470 | bool "gcc 10.x support removed" | |
471 | select BR2_LEGACY | |
472 | help | |
473 | Support for gcc version 10.x has been removed. The current | |
474 | default version (12.x or later) has been selected instead. | |
475 | ||
cd8028b2 BK |
476 | config BR2_KERNEL_HEADERS_6_3 |
477 | bool "kernel headers version 6.3.x are no longer supported" | |
478 | select BR2_LEGACY | |
479 | help | |
480 | Version 6.3.x of the Linux kernel headers are no longer | |
481 | maintained upstream and are now removed. | |
482 | ||
7be241b4 BK |
483 | config BR2_PACKAGE_TOVID |
484 | bool "tovid removed" | |
485 | select BR2_LEGACY | |
486 | help | |
487 | tovid was removed | |
488 | ||
506f018b BK |
489 | config BR2_PACKAGE_LIBASPLIB |
490 | bool "libasplib removed" | |
491 | select BR2_LEGACY | |
492 | help | |
493 | libasplib is no longer needed. | |
494 | ||
8ebfce3c BK |
495 | config BR2_PACKAGE_OCF_LINUX |
496 | bool "ocf-linux has been removed" | |
497 | select BR2_LEGACY | |
498 | help | |
499 | ocf-linux is incompatible with newer kernels. | |
500 | ||
8a55a0bf RN |
501 | config BR2_BINUTILS_VERSION_2_37_X |
502 | bool "binutils 2.37.x has been removed" | |
503 | select BR2_LEGACY | |
504 | help | |
505 | binutils 2.37 has been removed, use a newer version. | |
506 | ||
5bfc02c0 VS |
507 | comment "Legacy options removed in 2023.05" |
508 | ||
4030a7eb BK |
509 | config BR2_KERNEL_HEADERS_6_2 |
510 | bool "kernel headers version 6.2.x are no longer supported" | |
511 | select BR2_LEGACY | |
512 | help | |
513 | Version 6.2.x of the Linux kernel headers are no longer | |
514 | maintained upstream and are now removed. | |
515 | ||
2c3ca7be DL |
516 | config BR2_PACKAGE_ATK |
517 | bool "atk removed" | |
518 | select BR2_LEGACY | |
519 | help | |
520 | atk is now part of at-spi2-core. | |
521 | ||
2f43af1b DL |
522 | config BR2_PACKAGE_AT_SPI2_ATK |
523 | bool "at-spi2-atk removed" | |
524 | select BR2_LEGACY | |
525 | help | |
526 | at-spi2-atk is now part of at-spi2-core. | |
527 | ||
fe0e4bf5 YM |
528 | config BR2_PACKAGE_OPTEE_BENCHMARK |
529 | bool "optee-benchmark has been removed" | |
530 | select BR2_LEGACY | |
531 | help | |
532 | optee-benchmark is no longer maintained upstream. | |
533 | ||
5bfc02c0 VS |
534 | config BR2_PACAKGE_OPENFPGALOADER_CMSIS |
535 | bool "openfpgaloader cmsis option name fixed" | |
536 | select BR2_LEGACY | |
537 | help | |
538 | A typo on BR2_PACAKGE_OPENFPGALOADER_CMSIS was fixed by | |
539 | renaming the option to BR2_PACKAGE_OPENFPGALOADER_CMSIS. | |
540 | ||
6ca0edcb | 541 | comment "Legacy options removed in 2023.02" |
5c89b00a | 542 | |
6454358f FF |
543 | config BR2_PACKAGE_PUGIXML_HEADER_ONLY |
544 | bool "pugixml header-only removed" | |
545 | select BR2_LEGACY | |
546 | help | |
547 | The header-only version raises a build failure with gerbera. | |
548 | ||
a34ac445 FF |
549 | config BR2_PACKAGE_UCCP420WLAN |
550 | bool "uccp420wlan removed" | |
551 | select BR2_LEGACY | |
552 | help | |
553 | The uccp420wlan package is unmaintained and doesn't build | |
554 | with any "recent" kernel (e.g. >= 4.7). | |
555 | ||
333580b6 SS |
556 | config BR2_PACKAGE_IMX_GPU_G2D_EXAMPLES |
557 | bool "imx-gpu-g2d examples removed" | |
558 | select BR2_LEGACY | |
559 | help | |
560 | The examples are not provided by NXP anymore. | |
561 | ||
e2b70aa9 PK |
562 | config BR2_KERNEL_HEADERS_6_0 |
563 | bool "kernel headers version 6.0.x are no longer supported" | |
564 | select BR2_LEGACY | |
565 | help | |
566 | Version 6.0.x of the Linux kernel headers are no longer | |
567 | maintained upstream and are now removed. | |
568 | ||
6634710c PK |
569 | config BR2_KERNEL_HEADERS_4_9 |
570 | bool "kernel headers version 4.9.x are no longer supported" | |
571 | select BR2_LEGACY | |
572 | help | |
573 | Version 4.9.x of the Linux kernel headers are no longer | |
574 | maintained upstream and are now removed. | |
575 | ||
9ae48b70 CS |
576 | config BR2_PACKAGE_DOCKER_PROXY |
577 | bool "docker-proxy removed" | |
578 | select BR2_LEGACY | |
579 | select BR2_PACKAGE_DOCKER_ENGINE | |
580 | help | |
581 | docker-proxy has been dropped by upstream since version | |
582 | 563fe8. it has been merged into docker-engine (moby). | |
583 | ||
29fd8481 JH |
584 | config BR2_PACKAGE_PYTHON_BUNCH |
585 | bool "python-bunch removed" | |
586 | select BR2_LEGACY | |
587 | help | |
588 | The python-bunch package is unmaintained and is replaced | |
589 | by the python-munch package. | |
590 | ||
488a8751 TP |
591 | config BR2_TARGET_GUMMIBOOT |
592 | bool "gummiboot removed" | |
593 | select BR2_LEGACY | |
594 | help | |
595 | gummiboot has been deprecated since 2015, with no further | |
596 | updates. It became integrated into the systemd project as | |
597 | systemd-boot. | |
598 | ||
b89eff42 PV |
599 | config BR2_PACKAGE_IPUTILS_NINFOD |
600 | bool "iputils 20221126 removed ninfod" | |
601 | select BR2_LEGACY | |
602 | help | |
603 | iputils 20221126 removed ninfod. | |
604 | ||
605 | config BR2_PACKAGE_IPUTILS_RARPD | |
606 | bool "iputils 20221126 removed rarpd" | |
607 | select BR2_LEGACY | |
608 | help | |
609 | iputils 20221126 removed rarpd. | |
610 | ||
611 | config BR2_PACKAGE_IPUTILS_RDISC | |
612 | bool "iputils 20221126 removed rdisc" | |
613 | select BR2_LEGACY | |
614 | help | |
615 | iputils 20221126 removed rdisc. | |
616 | ||
617 | config BR2_PACKAGE_IPUTILS_RDISC_SERVER | |
618 | bool "iputils 20221126 removed rdisc" | |
619 | select BR2_LEGACY | |
620 | help | |
621 | iputils 20221126 removed rdisc. | |
622 | ||
2f1fef14 JH |
623 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_XINGMUX |
624 | bool "xingmux moved" | |
625 | select BR2_LEGACY | |
626 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_XINGMUX | |
627 | help | |
628 | The xingmux option has been moved to gst1-plugins-good. | |
629 | ||
dde95c58 JH |
630 | config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOSCALE |
631 | bool "videoscale removed" | |
632 | select BR2_LEGACY | |
633 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERTSCALE | |
634 | help | |
635 | The videoscale option has been combined with videoconvert. | |
636 | ||
637 | config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERT | |
638 | bool "videoconvert removed" | |
639 | select BR2_LEGACY | |
640 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERTSCALE | |
641 | help | |
642 | The videoconvert option has been combined with videoscale. | |
643 | ||
424f53ac LD |
644 | config BR2_PACKAGE_IMX_GPU_VIV_OUTPUT_X11 |
645 | bool "imx-gpu-viv X11 output has been removed" | |
646 | select BR2_LEGACY | |
647 | help | |
648 | The X11 output was dropped by NXP. | |
649 | ||
aa7d11a2 PK |
650 | config BR2_PACKAGE_XDRIVER_XF86_VIDEO_IMX_VIV |
651 | bool "xf86-video-imx-viv has been removed" | |
652 | select BR2_LEGACY | |
653 | help | |
654 | The X11 output was dropped by NXP. | |
655 | ||
44be514b CS |
656 | config BR2_PACKAGE_QEMU_CUSTOM_TARGETS |
657 | string "the QEMU specific targets option has been removed" | |
658 | help | |
659 | This option has been replaced by a list of individual targets | |
660 | for the many architectures supported by QEMU. | |
661 | ||
662 | config BR2_PACKAGE_QEMU_CUSTOM_TARGETS_WRAP | |
663 | bool | |
664 | default y if BR2_PACKAGE_QEMU_CUSTOM_TARGETS != "" | |
665 | select BR2_LEGACY | |
666 | ||
1100ead7 BK |
667 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_KEYBOARD |
668 | bool "xf86-input-keyboard removed" | |
00410ab6 | 669 | select BR2_LEGACY |
1100ead7 BK |
670 | help |
671 | The X.org keyboard input driver no longer support Linux. | |
672 | ||
0a3a7169 PK |
673 | config BR2_TARGET_SUN20I_D1_SPL |
674 | bool "sun20-d1-spl removed" | |
675 | select BR2_LEGACY | |
676 | help | |
677 | U-Boot has gained SPL support for D1, so this temporary | |
678 | bootloader is no longer supported. | |
679 | ||
470ce5d8 JH |
680 | config BR2_PACKAGE_PYTHON_M2R |
681 | bool "python-m2r removed" | |
682 | select BR2_LEGACY | |
683 | help | |
684 | The python-m2r package is unmaintained. | |
685 | ||
e4a1183d BK |
686 | config BR2_PACKAGE_MESA3D_XVMC |
687 | bool "mesa Gallium XvMC state tracker removed" | |
688 | select BR2_LEGACY | |
689 | help | |
690 | The Gallium XvMC state tracker was removed upstream. | |
691 | ||
5449ea7d BK |
692 | config BR2_KERNEL_HEADERS_5_19 |
693 | bool "kernel headers version 5.19.x are no longer supported" | |
694 | select BR2_LEGACY | |
695 | help | |
696 | Version 5.19.x of the Linux kernel headers are no longer | |
697 | maintained upstream and are now removed. | |
698 | ||
87a09b10 BK |
699 | config BR2_PACKAGE_XDRIVER_XF86_VIDEO_TGA |
700 | bool "xf86-video-tga removed" | |
701 | select BR2_LEGACY | |
702 | help | |
703 | The X.org xf86-video-tga package was removed. | |
704 | ||
565f41e2 BK |
705 | config BR2_PACKAGE_XDRIVER_XF86_VIDEO_GLINT |
706 | bool "xf86-video-glint removed" | |
707 | select BR2_LEGACY | |
708 | help | |
709 | The X.org xf86-video-glint package no longer builds with | |
710 | Xserver 21 and is unmaintained. | |
711 | ||
d31447bc FF |
712 | config BR2_PACKAGE_USBREDIR_SERVER |
713 | bool "usbredirserver removed" | |
714 | select BR2_LEGACY | |
715 | help | |
716 | usbredirserver has been dropped by upstream since version | |
717 | 0.13.0. usbredir tools (which include usbredirect binary) can | |
718 | be used as a replacement. | |
719 | ||
5c89b00a TP |
720 | comment "Legacy options removed in 2022.11" |
721 | ||
272bfb4c RN |
722 | config BR2_BINUTILS_VERSION_2_36_X |
723 | bool "binutils 2.36.x has been removed" | |
724 | select BR2_LEGACY | |
725 | help | |
726 | binutils 2.36 has been removed, use a newer version. | |
727 | ||
89815bad PK |
728 | config BR2_PACKAGE_RABBITMQ_SERVER |
729 | bool "rabbitmq-server removed" | |
730 | select BR2_LEGACY | |
731 | help | |
732 | Package was removed because it was unmaintained and had | |
733 | known security issues. | |
734 | ||
d7178dd4 YM |
735 | config BR2_PACKAGE_LIBOPENSSL_ENABLE_RC5 |
736 | bool "libopenssl rc5 was never enabled" | |
737 | select BR2_LEGACY | |
738 | help | |
739 | The libopenssl option for rc5 never actually enabled rc5, | |
740 | which had always been disabled in Buildroot. | |
741 | ||
c6aed212 BK |
742 | config BR2_PACKAGE_LIBDCADEC |
743 | bool "package was deprecated upstream, use ffmpeg instead" | |
744 | select BR2_LEGACY | |
745 | help | |
746 | This decoder has been fully integrated into FFmpeg master | |
747 | branch and further development will continue there. Using | |
748 | FFmpeg for DTS decoding is now recommended. | |
749 | ||
9647bf80 PK |
750 | config BR2_KERNEL_HEADERS_5_17 |
751 | bool "kernel headers version 5.17.x are no longer supported" | |
752 | select BR2_LEGACY | |
753 | help | |
754 | Version 5.17.x of the Linux kernel headers are no longer | |
755 | maintained upstream and are now removed. | |
756 | ||
6211c9e3 TP |
757 | config BR2_iwmmxt |
758 | bool "ARM iwmmxt variant removed" | |
759 | select BR2_LEGACY | |
760 | help | |
761 | Support for the ARM iwmmxt architecture variant in GCC has | |
762 | bitroten and is no longer maintained. GCC maintainers | |
763 | recommend to no longer use it, and suggest to use "xscale" | |
764 | as a replacement architecture variant. See | |
765 | https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106972 | |
766 | ||
358f4a01 FF |
767 | config BR2_PACKAGE_UHD_N230 |
768 | bool "uhd N230 support removed" | |
769 | select BR2_LEGACY | |
770 | help | |
771 | uhd N230 support has been dropped by upstream since version | |
772 | 4.0.0.0. | |
773 | ||
774 | config BR2_PACKAGE_UHD_RFNOC | |
775 | bool "uhd RFNoC support removed" | |
776 | select BR2_LEGACY | |
777 | help | |
778 | uhd RFNoC support has been dropped by upstream since version | |
779 | 4.0.0.0. | |
780 | ||
a99f1ee0 YM |
781 | config BR2_PACKAGE_GPSD_OLDSTYLE |
782 | bool "gpsd oldstyle removed" | |
783 | select BR2_LEGACY | |
784 | help | |
785 | gpsd oldstyle option has been removed by upstream in 2015. | |
786 | ||
5c89b00a TP |
787 | config BR2_GDB_VERSION_9_2 |
788 | bool "gdb 9.2 removed" | |
5cd140ca | 789 | select BR2_LEGACY |
5c89b00a TP |
790 | help |
791 | Support for GDB 9.2 has been removed. A new version has | |
792 | automatically been selected. | |
793 | ||
07044207 BK |
794 | comment "Legacy options removed in 2022.08" |
795 | ||
c857b8ff TP |
796 | config BR2_ECLIPSE_REGISTER |
797 | bool "Eclipse integration removed" | |
798 | select BR2_LEGACY | |
799 | help | |
800 | The Buildroot integration with the Eclipse IDE has been | |
801 | removed, as the corresponding Eclipse plugin is no longer | |
802 | maintained, and is no longer usable with current versions of | |
803 | Eclipse. | |
804 | ||
9e4da84a YM |
805 | config BR2_csky |
806 | bool "csky architecture removed" | |
807 | select BR2_LEGACY | |
808 | help | |
809 | The csky architecture was removed, by lack of toolchain | |
810 | support. | |
811 | ||
6c25d109 BK |
812 | config BR2_PACKAGE_MESA3D_DRI_DRIVER_I915 |
813 | bool "mesa DRI i915 driver removed" | |
814 | select BR2_LEGACY | |
815 | help | |
816 | The DRI i915 driver was removed upstream. | |
817 | ||
818 | config BR2_PACKAGE_MESA3D_DRI_DRIVER_I965 | |
819 | bool "mesa DRI i965 driver removed" | |
820 | select BR2_LEGACY | |
821 | help | |
822 | The DRI i965 driver was removed upstream. | |
823 | ||
824 | config BR2_PACKAGE_MESA3D_DRI_DRIVER_NOUVEAU | |
825 | bool "mesa DRI nouveau driver removed" | |
826 | select BR2_LEGACY | |
827 | help | |
828 | The DRI radeon nouveau was removed upstream. | |
829 | ||
830 | config BR2_PACKAGE_MESA3D_DRI_DRIVER_RADEON | |
831 | bool "mesa DRI radeon r100 driver removed" | |
832 | select BR2_LEGACY | |
833 | help | |
834 | The DRI radeon r100 driver was removed upstream. | |
835 | ||
d159163e RN |
836 | config BR2_GCC_VERSION_9_X |
837 | bool "gcc 9.x support removed" | |
838 | select BR2_LEGACY | |
839 | help | |
840 | Support for gcc version 9.x has been removed. The current | |
841 | default version (11.x or later) has been selected instead. | |
842 | ||
07044207 BK |
843 | config BR2_PACKAGE_PHP_EXT_WDDX |
844 | bool "php wddx removed" | |
845 | select BR2_LEGACY | |
846 | help | |
847 | The WDDX extension was removed from php. | |
848 | ||
793ee101 TP |
849 | config BR2_nds32 |
850 | bool "nds32 architecture removed" | |
851 | select BR2_LEGACY | |
852 | help | |
853 | Support for the nds32 architecture has been removed, due to | |
854 | its support being removed from the upstream Linux kernel, | |
855 | and its lack of maintenance in Buildroot. | |
856 | ||
7763ba70 FF |
857 | config BR2_PACKAGE_RTL8723BS |
858 | bool "rtl8723bs removed" | |
859 | select BR2_LEGACY | |
860 | help | |
861 | Package was removed because it is not compatible with latest | |
862 | kernels and is not maintained anymore: code has been removed | |
863 | in 2017 as driver is available in the linux-next tree. | |
864 | ||
55b26bdf FF |
865 | comment "Legacy options removed in 2022.05" |
866 | ||
bd40451b FF |
867 | config BR2_PACKAGE_KTAP |
868 | bool "ktap removed" | |
869 | select BR2_LEGACY | |
870 | help | |
871 | Package was removed because it is not compatible with latest | |
872 | kernels and is not maintained anymore (no release since 2013). | |
873 | ||
33492419 PK |
874 | config BR2_KERNEL_HEADERS_5_16 |
875 | bool "kernel headers version 5.16.x are no longer supported" | |
876 | select BR2_LEGACY | |
877 | help | |
878 | Version 5.16.x of the Linux kernel headers are no longer | |
879 | maintained upstream and are now removed. | |
880 | ||
5cc46a07 PK |
881 | config BR2_KERNEL_HEADERS_4_4 |
882 | bool "kernel headers version 4.4.x are no longer supported" | |
883 | select BR2_LEGACY | |
884 | help | |
885 | Version 4.4.x of the Linux kernel headers are no longer | |
886 | maintained upstream and are now removed. | |
887 | ||
6030cea9 TP |
888 | config BR2_BINUTILS_VERSION_2_32_X |
889 | bool "binutils 2.32.x has been removed" | |
890 | select BR2_LEGACY | |
891 | help | |
892 | binutils 2.32 has been removed, use a newer version. | |
893 | ||
04ea3d38 TP |
894 | config BR2_sh2a |
895 | bool "sh2a architecture support removed" | |
896 | select BR2_LEGACY | |
897 | help | |
898 | The SuperH 2A (SH2A) architecture was not maintained, and | |
899 | broken, so its support was dropped. | |
900 | ||
5706080f WB |
901 | config BR2_BINUTILS_VERSION_2_35_X |
902 | bool "binutils 2.35.x has been removed" | |
903 | select BR2_LEGACY | |
904 | help | |
905 | binutils 2.35 has been removed, use a newer version. | |
906 | ||
fc68bcf9 FF |
907 | config BR2_PACKAGE_BOOST_LAYOUT_TAGGED |
908 | bool "boost tagged layout removed" | |
909 | select BR2_LEGACY | |
910 | help | |
911 | Boost tagged layout isn't handled by some packages (e.g. botan | |
912 | or libcpprestsdk). | |
913 | ||
ec3ed4da FF |
914 | config BR2_PACKAGE_BOOST_LAYOUT_VERSIONED |
915 | bool "boost versioned layout removed" | |
916 | select BR2_LEGACY | |
917 | help | |
918 | Boost versioned layout isn't handled by a number of autotools | |
919 | and cmake packages (e.g. azmq, cc-tool, i2pd). | |
920 | ||
3db4d486 FF |
921 | comment "Legacy options removed in 2022.02" |
922 | ||
08d65d81 YM |
923 | config BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS |
924 | string "entrypoint argumetns has been changed as command" | |
925 | help | |
926 | The OCI image BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS option | |
927 | has been renamed to BR2_TARGET_ROOTFS_OCI_CMD to better | |
928 | reflect its relation to the actual 'command' of the OCI | |
929 | image. | |
930 | ||
931 | The new semantic for BR2_TARGET_ROOTFS_OCI_CMD is slightly | |
932 | differnt in relation to how it is interpreted, so be sure to | |
933 | review the help entry for it. | |
934 | ||
935 | Due to this breaking change, the old value here could not be | |
936 | set to the new variable. | |
937 | ||
938 | config BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS_WRAP | |
939 | bool | |
940 | default y if BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS != "" | |
941 | select BR2_LEGACY | |
942 | ||
8afb945b BK |
943 | config BR2_PACKAGE_LIBCURL_LIBNSS |
944 | bool "libcurl NSS removed" | |
945 | select BR2_LEGACY | |
946 | help | |
947 | NSS was deprecated in libcurl 7.82.0. | |
948 | ||
72021742 FF |
949 | config BR2_PACKAGE_WESTON_DEFAULT_FBDEV |
950 | bool "weston fbdev removed" | |
951 | select BR2_LEGACY | |
952 | help | |
953 | fbdev was deprecated in weston 10.0.0. | |
954 | ||
955 | config BR2_PACKAGE_WESTON_FBDEV | |
956 | bool "weston fbdev compositor removed" | |
957 | select BR2_LEGACY | |
958 | help | |
959 | fbdev compositor was deprecated in weston 10.0.0. | |
960 | ||
0e9565f8 FF |
961 | config BR2_PACKAGE_PYTHON_PYCLI |
962 | bool "python-pycli removed" | |
963 | select BR2_LEGACY | |
964 | help | |
965 | Package was removed because it is not compatible with python | |
966 | 3.10 and is not maintained anymore (no release since 2012). | |
967 | ||
3675131e JH |
968 | config BR2_PACKAGE_LINUX_TOOLS_BPFTOOL |
969 | bool "bpftool was moved" | |
970 | select BR2_LEGACY | |
971 | select BR2_PACKAGE_BPFTOOL | |
972 | help | |
973 | The linux-tools bpftool build has been moved out | |
974 | of the linux-tools package. | |
975 | ||
ea6a0a60 PK |
976 | config BR2_TARGET_UBOOT_NEEDS_PYTHON2 |
977 | bool "host-python 2.7 support for U-Boot was removed" | |
978 | select BR2_LEGACY | |
979 | help | |
980 | Option was removed together with python 2.7 support. | |
981 | ||
3aa07290 PS |
982 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBMMS |
983 | bool "gst1-plugins-bad plugin libmms was removed" | |
984 | depends on BR2_USE_WCHAR | |
985 | depends on BR2_TOOLCHAIN_HAS_THREADS | |
986 | select BR2_LEGACY | |
987 | help | |
988 | This plugin was removed with gst1-plugins-bad-1.20.0. | |
989 | ||
71d5d8c1 PK |
990 | config BR2_PACKAGE_PYTHON_FUNCTOOLS32 |
991 | bool "python-functools32 removed" | |
992 | select BR2_LEGACY | |
993 | help | |
994 | Package was removed together with python 2.7 support. | |
995 | ||
cbd2900b PK |
996 | config BR2_PACKAGE_PYTHON_ENUM34 |
997 | bool "python-enum34 removed" | |
998 | select BR2_LEGACY | |
999 | help | |
1000 | Package was removed together with python 2.7 support. | |
1001 | ||
ef2c5ce5 PK |
1002 | config BR2_PACKAGE_PYTHON_ENUM |
1003 | bool "python-enum removed" | |
1004 | select BR2_LEGACY | |
1005 | help | |
1006 | Package was removed together with python 2.7 support. | |
1007 | ||
1e44c7bc PK |
1008 | config BR2_PACKAGE_PYTHON_DIALOG |
1009 | bool "python-dialog removed" | |
1010 | select BR2_LEGACY | |
1011 | help | |
1012 | Package was removed together with python 2.7 support. | |
1013 | ||
8d264a96 PK |
1014 | config BR2_PACKAGE_PYTHON_CONFIGOBJ |
1015 | bool "python-configobj removed" | |
1016 | select BR2_LEGACY | |
1017 | help | |
1018 | Package was removed together with python 2.7 support. | |
1019 | ||
ecee967c PK |
1020 | config BR2_PACKAGE_PYTHON_YIELDFROM |
1021 | bool "python-yieldfrom removed" | |
1022 | select BR2_LEGACY | |
1023 | help | |
1024 | Package was removed together with python 2.7 support. | |
1025 | ||
53b288cb PK |
1026 | config BR2_PACKAGE_PYTHON_TYPING |
1027 | bool "python-typing removed" | |
1028 | select BR2_LEGACY | |
1029 | help | |
1030 | Package was removed together with python 2.7 support. | |
1031 | ||
c2d0a365 PK |
1032 | config BR2_PACKAGE_PYTHON_SUBPROCESS32 |
1033 | bool "python-subprocess32 removed" | |
1034 | select BR2_LEGACY | |
1035 | help | |
1036 | Package was removed together with python 2.7 support. | |
1037 | ||
5fce56ae PK |
1038 | config BR2_PACKAGE_PYTHON_SINGLEDISPATCH |
1039 | bool "python-singledispatch removed" | |
1040 | select BR2_LEGACY | |
1041 | help | |
1042 | Package was removed together with python 2.7 support. | |
1043 | ||
6449cc73 PK |
1044 | config BR2_PACKAGE_PYTHON_PYRO |
1045 | bool "python-pyro removed" | |
1046 | select BR2_LEGACY | |
1047 | help | |
1048 | Package was removed together with python 2.7 support. | |
1049 | ||
aec1a69a PK |
1050 | config BR2_PACKAGE_PYTHON_PYPCAP |
1051 | bool "python-pypcap removed" | |
1052 | select BR2_LEGACY | |
1053 | help | |
1054 | Package was removed together with python 2.7 support. | |
1055 | ||
cc3eda10 PK |
1056 | config BR2_PACKAGE_PYTHON_PATHLIB2 |
1057 | bool "python-pathlib2 removed" | |
1058 | select BR2_LEGACY | |
1059 | help | |
1060 | Package was removed together with python 2.7 support. | |
1061 | ||
c8ab3034 PK |
1062 | config BR2_PACKAGE_PYTHON_PAM |
1063 | bool "python-pam removed" | |
1064 | select BR2_LEGACY | |
1065 | help | |
1066 | Package was removed together with python 2.7 support. | |
1067 | ||
67aad59d PK |
1068 | config BR2_PACKAGE_PYTHON_NFC |
1069 | bool "python-nfc removed" | |
1070 | select BR2_LEGACY | |
1071 | help | |
1072 | Package was removed together with python 2.7 support. | |
1073 | ||
82e096a2 PK |
1074 | config BR2_PACKAGE_PYTHON_MAD |
1075 | bool "python-mad removed" | |
1076 | select BR2_LEGACY | |
1077 | help | |
1078 | Package was removed together with python 2.7 support. | |
1079 | ||
e990a926 PK |
1080 | config BR2_PACKAGE_PYTHON_IPADDRESS |
1081 | bool "python-ipaddress removed" | |
1082 | select BR2_LEGACY | |
1083 | help | |
1084 | Package was removed together with python 2.7 support. | |
1085 | ||
da9233ce PK |
1086 | config BR2_PACKAGE_PYTHON_IPADDR |
1087 | bool "python-ipaddr removed" | |
1088 | select BR2_LEGACY | |
1089 | help | |
1090 | Package was removed together with python 2.7 support. | |
1091 | ||
6ad80649 PK |
1092 | config BR2_PACKAGE_PYTHON_ID3 |
1093 | bool "python-id3 removed" | |
1094 | select BR2_LEGACY | |
1095 | help | |
1096 | Package was removed together with python 2.7 support. | |
1097 | ||
c24cc667 PK |
1098 | config BR2_PACKAGE_PYTHON_FUTURES |
1099 | bool "python-futures removed" | |
1100 | select BR2_LEGACY | |
1101 | help | |
1102 | Package was removed together with python 2.7 support. | |
1103 | ||
ee520d5a PK |
1104 | config BR2_PACKAGE_PYTHON_BACKPORTS_SSL_MATCH_HOSTNAME |
1105 | bool "python-backports-ssl-match-hostname removed" | |
1106 | select BR2_LEGACY | |
1107 | help | |
1108 | Package was removed together with python 2.7 support. | |
1109 | ||
1727e80d PK |
1110 | config BR2_PACKAGE_PYTHON_BACKPORTS_SHUTIL_GET_TERMINAL_SIZE |
1111 | bool "python-backports-shutil-get-terminal-size removed" | |
1112 | select BR2_LEGACY | |
1113 | help | |
1114 | Package was removed together with python 2.7 support. | |
1115 | ||
532dd66e PK |
1116 | config BR2_PACKAGE_PYTHON_BACKPORTS_ABC |
1117 | bool "python-backports-abc removed" | |
1118 | select BR2_LEGACY | |
1119 | help | |
1120 | Package was removed together with python 2.7 support. | |
1121 | ||
30683958 PK |
1122 | config BR2_PACKAGE_PYTHON |
1123 | bool "python2.7 package removed" | |
1124 | select BR2_LEGACY | |
1125 | help | |
1126 | Python 2.7 is EOL since April 2020 and has been removed. | |
1127 | ||
1128 | https://www.python.org/dev/peps/pep-0373/ | |
1129 | ||
f22bff4a YM |
1130 | config BR2_TARGET_UBOOT_ZYNQ_IMAGE |
1131 | bool "Generate image for Xilinx Zynq" | |
1132 | select BR2_LEGACY | |
1133 | help | |
1134 | Since 2016.1, U-Boot can natively generate the Zynq boot | |
1135 | image, and so the Xilinx-specific format and tools have been | |
1136 | removed. Should you still have an older U-Boot that needs | |
1137 | this, a python3 version of the zynq-boot-bin.py script can be | |
1138 | downloaded from the URL below and called from a post-build | |
1139 | script. | |
1140 | ||
1141 | https://gist.githubusercontent.com/jameshilliard/e09235dfc6f96c11418a134e6ebf7890/raw/135b7480c405ae8a77a9db615e495f9a9f2d3242/zynq-boot-bin.py | |
1142 | ||
75273241 PS |
1143 | config BR2_PACKAGE_RPI_BT_FIRMWARE |
1144 | bool "rpi-bt-firmware package was renamed" | |
1145 | depends on BR2_arm || BR2_aarch64 | |
1146 | select BR2_LEGACY | |
1147 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI | |
1148 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI_BT | |
1149 | help | |
1150 | Package rpi-bt-firmware was moved as option to | |
0ed2b747 | 1151 | package brcmfmac_sdio-firmware-rpi. |
75273241 PS |
1152 | |
1153 | config BR2_PACKAGE_RPI_WIFI_FIRMWARE | |
1154 | bool "rpi-wifi-firmware package was renamed" | |
1155 | depends on BR2_arm || BR2_aarch64 | |
1156 | select BR2_LEGACY | |
1157 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI | |
1158 | select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI_WIFI | |
1159 | help | |
1160 | Package rpi-wifi-firmware was moved as option to | |
0ed2b747 | 1161 | package brcmfmac_sdio-firmware-rpi. |
75273241 | 1162 | |
a607efc6 AD |
1163 | config BR2_PACKAGE_HOST_GDB_PYTHON |
1164 | bool "GDB Python2 support removed" | |
1165 | select BR2_LEGACY | |
1166 | help | |
1167 | Python2 is deprecated and no longer supported. | |
1168 | Please migrate to Python3. | |
1169 | ||
bdb8cbb1 FF |
1170 | config BR2_PACKAGE_GSTREAMER1_MM |
1171 | bool "gstreamer1-mm package removed" | |
1172 | select BR2_LEGACY | |
1173 | help | |
1174 | This package has been removed as it is not actively | |
1175 | maintained anymore and does not support glibmm-2.68 API. | |
1176 | ||
27eb296a PK |
1177 | config BR2_KERNEL_HEADERS_5_14 |
1178 | bool "kernel headers version 5.14.x are no longer supported" | |
1179 | select BR2_LEGACY | |
1180 | help | |
1181 | Version 5.14.x of the Linux kernel headers are no longer | |
1182 | maintained upstream and are now removed. | |
1183 | ||
31848ba5 FF |
1184 | config BR2_PACKAGE_PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE |
1185 | bool "python-backports-functools-lru-cache package removed" | |
1186 | select BR2_LEGACY | |
1187 | help | |
1188 | This package has been removed as python-setuptools-scm | |
1189 | dropped support of python 2 since version 6.0.0. | |
1190 | ||
329f71ed FF |
1191 | config BR2_PACKAGE_CIVETWEB_WITH_LUA |
1192 | bool "civetweb lua support option removed" | |
1193 | select BR2_LEGACY | |
1194 | help | |
1195 | Lua support does not depend on a version of Lua bundled | |
1196 | within the Civetweb sources anymore. Lua support is | |
1197 | automatically enabled if an Lua interpreter (lua or luajit) | |
1198 | is enabled in Buildroot. | |
1199 | ||
c8324bf8 MR |
1200 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE_DRIVER |
1201 | bool "sunxi-mali-mainline-driver package was renamed" | |
1202 | select BR2_LEGACY | |
1203 | select BR2_PACKAGE_SUNXI_MALI_UTGARD_DRIVER | |
1204 | help | |
1205 | Since the removal of the sunxi-mali-driver package, the | |
1206 | sunxi-mali-mainline-driver package that coexisted became the | |
1207 | only package to provide the Sunxi Mali driver. The "-mainline" | |
1208 | suffix being undescriptive nowadays and before adding new | |
1209 | packages bringing Mali support for other SoCs/GPU flavors, it | |
1210 | is clearer to rename it SUNXI_MALI_UTGARD_DRIVER. | |
1211 | ||
6a7a652b MR |
1212 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE |
1213 | bool "sunxi-mali-mainline package was renamed" | |
1214 | select BR2_LEGACY | |
1215 | select BR2_PACKAGE_SUNXI_MALI_UTGARD | |
1216 | help | |
1217 | Since the removal of the sunxi-mali package, the | |
1218 | sunxi-mali-mainline package that coexisted became the only | |
1219 | package to provide Mali blobs. The "-mainline" suffix being | |
1220 | undescriptive nowadays and before adding new packages bringing | |
1221 | Mali support for other SoCs/GPU flavors, it is clearer to | |
1222 | rename it SUNXI_MALI_UTGARD. | |
1223 | ||
1224 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2 | |
1225 | bool "sunxi-mali-mainline-r6p2 was renamed" | |
1226 | select BR2_LEGACY | |
6a7a652b MR |
1227 | help |
1228 | The sunxi-mali-mainline package has been renamed | |
1229 | sunxi-mali-utgard, the suboptions of this package have also | |
1230 | been renamed accordingly. | |
efc223ab RM |
1231 | # Note: BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2 is still referenced from |
1232 | # package/sunxi-mali-utgard/Config.in | |
6a7a652b MR |
1233 | |
1234 | config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1 | |
1235 | bool "sunxi-mali-mainline-r8p1 was renamed" | |
1236 | select BR2_LEGACY | |
6a7a652b MR |
1237 | help |
1238 | The sunxi-mali-mainline package has been renamed | |
1239 | sunxi-mali-utgard, the suboptions of this package have also | |
1240 | been renamed accordingly. | |
efc223ab RM |
1241 | # Note: BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1 is still referenced from |
1242 | # package/sunxi-mali-utgard/Config.in | |
6a7a652b | 1243 | |
b4841d72 JH |
1244 | config BR2_PACKAGE_QT5WEBKIT_EXAMPLES |
1245 | bool "qt5webkit-examples removed" | |
1246 | select BR2_LEGACY | |
1247 | help | |
1248 | The qt5webkit-examples package is unmaintained and has been | |
1249 | removed. | |
1250 | ||
b3c66481 TP |
1251 | config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_GLIBC_BLEEDING_EDGE |
1252 | bool "Bootlin riscv64 glibc bleeding-edge toolchain removed" | |
1253 | select BR2_LEGACY | |
1254 | help | |
1255 | The RISC-V 64-bit LP64 Bootlin toolchains have been removed, | |
1256 | in favor of RISC-V 64-bit LP64D toolchains. | |
1257 | ||
d9290c6e AVEM |
1258 | config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_MUSL_BLEEDING_EDGE |
1259 | bool "Bootlin riscv64 musl bleeding-edge toolchain removed" | |
b3c66481 TP |
1260 | select BR2_LEGACY |
1261 | help | |
1262 | The RISC-V 64-bit LP64 Bootlin toolchains have been removed, | |
1263 | in favor of RISC-V 64-bit LP64D toolchains. | |
1264 | ||
db0c2a28 | 1265 | config BR2_PACKAGE_IPUTILS_TFTPD |
44cd33ba | 1266 | bool "iputils tftpd option removed" |
db0c2a28 PV |
1267 | select BR2_LEGACY |
1268 | help | |
44cd33ba | 1269 | tftpd has been removed from iputils since version 20211215. |
db0c2a28 PV |
1270 | |
1271 | config BR2_PACKAGE_IPUTILS_TRACEROUTE6 | |
44cd33ba | 1272 | bool "iputils traceroute6 option removed" |
db0c2a28 PV |
1273 | select BR2_LEGACY |
1274 | help | |
44cd33ba FF |
1275 | traceroute6 has been removed from iputils since version |
1276 | 20211215. | |
db0c2a28 | 1277 | |
3db4d486 FF |
1278 | config BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE |
1279 | bool "libmediaart 'none' backend removed" | |
1280 | select BR2_LEGACY | |
1281 | help | |
1282 | 'none' backend has been removed from libmediaart since version | |
1283 | 1.9.5. | |
1284 | ||
e5a74af2 AZ |
1285 | config BR2_PACKAGE_MPD_UPNP |
1286 | bool "MPD UPnP configuration changed" | |
1287 | select BR2_LEGACY | |
1288 | help | |
1289 | From version 0.23, MPD supports npupnp in addition to pupnp to | |
1290 | provide database access to a UPnP media server. To preserve | |
1291 | the existing functionality, the pupnp option has been selected | |
1292 | in the MPD UPnP configuration. | |
1293 | # Note: BR2_PACKAGE_MPD_UPNP is still referenced from package/mpd/Config.in | |
1294 | ||
5045cab6 FF |
1295 | comment "Legacy options removed in 2021.11" |
1296 | ||
a610bf99 AD |
1297 | config BR2_OPENJDK_VERSION_LTS |
1298 | bool "OpenJDK LTS version was renamed to OpenJDK 11" | |
1299 | select BR2_LEGACY | |
a610bf99 AD |
1300 | help |
1301 | The LTS version option was renamed to OpenJDK 11 to make it | |
1302 | clear what LTS version is. | |
a97a4a74 RM |
1303 | # Note: BR2_OPENJDK_VERSION_LTS is still referenced from |
1304 | # package/openjdk/Config.in | |
a610bf99 AD |
1305 | |
1306 | config BR2_OPENJDK_VERSION_LATEST | |
1307 | bool "OpenJDK latest version (16.x) was removed" | |
1308 | select BR2_LEGACY | |
a610bf99 AD |
1309 | help |
1310 | OpenJDK 16.x is no longer mainted, so the option has been | |
1311 | removed. Use OpenJDK 17.x instead. | |
a97a4a74 RM |
1312 | # Note: BR2_OPENJDK_VERSION_LATEST is still referenced from |
1313 | # package/openjdk/Config.in | |
a610bf99 | 1314 | |
c89e0cd9 FF |
1315 | config BR2_PACKAGE_MPD_TIDAL |
1316 | bool "mpd tidal option removed" | |
1317 | select BR2_LEGACY | |
1318 | help | |
1319 | tidal has been removed from mpd since version 0.22.10. | |
1320 | ||
b0080a09 JW |
1321 | config BR2_PACKAGE_MROUTED_RSRR |
1322 | bool "RSRR for RSVP removed in mrouted v4.4" | |
1323 | select BR2_LEGACY | |
1324 | help | |
1325 | The RSRR configure option and feature was dropped in upstream | |
1326 | mrouted as of v4.4. This feature was marked as experimental | |
1327 | since its inception well before v4.0 and was never deployed | |
1328 | in the field outside of academia. | |
1329 | ||
1abeae18 RN |
1330 | config BR2_BINUTILS_VERSION_CSKY |
1331 | bool "binutils csky version removed" | |
1332 | select BR2_LEGACY | |
1333 | help | |
1334 | Support for binutils csky version has been removed. | |
1335 | ||
547d681b RN |
1336 | config BR2_GCC_VERSION_CSKY |
1337 | bool "gcc csky version removed" | |
1338 | select BR2_LEGACY | |
1339 | help | |
1340 | Support for gcc csky version has been removed. | |
1341 | ||
b7e8da22 AD |
1342 | config BR2_PACKAGE_CANFESTIVAL |
1343 | bool "canfestival package removed" | |
1344 | select BR2_LEGACY | |
1345 | help | |
1346 | This package has been removed as it is unmaintained since | |
1347 | November 2017. | |
1348 | ||
41f982f7 AD |
1349 | config BR2_PACKAGE_NMAP_NDIFF |
1350 | bool "The ndiff utility has been removed" | |
1351 | select BR2_LEGACY | |
1352 | select BR2_PACKAGE_PYTHON_PYNDIFF | |
1353 | help | |
1354 | The ndiff utility provided by nmap requires python2 which is | |
1355 | deprecated. The same functionality is provided by the python | |
1356 | package pyndiff. | |
1357 | ||
5b2a5cd3 TP |
1358 | config BR2_GDB_VERSION_8_3 |
1359 | bool "gdb version 8.3.x removed" | |
1360 | select BR2_LEGACY | |
1361 | help | |
1362 | gdb 8.3.x has been removed, use a newer version instead. | |
1363 | ||
24d608d2 AK |
1364 | config BR2_PACKAGE_PYTHON_MELD3 |
1365 | bool "python-meld3 package removed" | |
1366 | select BR2_LEGACY | |
1367 | help | |
1368 | This package has been removed as it is unmaintained since | |
1369 | April 2020. | |
1370 | ||
89f20c1c ME |
1371 | config BR2_PACKAGE_STRONGSWAN_EAP |
1372 | bool "strongswan EAP plugins now individually selectable" | |
1373 | select BR2_LEGACY | |
1374 | help | |
1375 | The various EAP plugins are now individually selectable. | |
1376 | ||
5045cab6 FF |
1377 | config BR2_PACKAGE_GNURADIO_PAGER |
1378 | bool "gnuradio gr-flex support removed" | |
1379 | select BR2_LEGACY | |
1380 | help | |
1381 | gr-flex has been removed from gnuradio since version 3.8.0.0. | |
1382 | ||
144acc31 PK |
1383 | config BR2_KERNEL_HEADERS_5_11 |
1384 | bool "kernel headers version 5.11.x are no longer supported" | |
1385 | select BR2_LEGACY | |
1386 | help | |
1387 | Version 5.11.x of the Linux kernel headers are no longer | |
1388 | maintained upstream and are now removed. | |
1389 | ||
1390 | config BR2_KERNEL_HEADERS_5_12 | |
1391 | bool "kernel headers version 5.12.x are no longer supported" | |
1392 | select BR2_LEGACY | |
1393 | help | |
1394 | Version 5.12.x of the Linux kernel headers are no longer | |
1395 | maintained upstream and are now removed. | |
1396 | ||
e444baf8 PK |
1397 | config BR2_KERNEL_HEADERS_5_13 |
1398 | bool "kernel headers version 5.13.x are no longer supported" | |
1399 | select BR2_LEGACY | |
1400 | help | |
1401 | Version 5.13.x of the Linux kernel headers are no longer | |
1402 | maintained upstream and are now removed. | |
1403 | ||
1fe532c0 | 1404 | comment "Legacy options removed in 2021.08" |
49eb73ca | 1405 | |
b68810e7 KM |
1406 | config BR2_TARGET_GRUB2_BUILTIN_MODULES |
1407 | string "the grub2 builtin modules has been renamed" | |
1408 | help | |
1409 | This option has been split to separate the builtin modules | |
1410 | between BR2_TARGET_GRUB2_BUILTIN_MODULES_PC and | |
1411 | BR2_TARGET_GRUB2_BUILTIN_MODULES_EFI. | |
1412 | ||
1413 | config BR2_TARGET_GRUB2_BUILTIN_MODULES_WRAP | |
1414 | bool | |
1415 | default y if BR2_TARGET_GRUB2_BUILTIN_MODULES != "" | |
1416 | select BR2_LEGACY | |
1417 | ||
1418 | config BR2_TARGET_GRUB2_BUILTIN_CONFIG | |
1419 | string "the grub2 builtin configuration has been renamed" | |
1420 | help | |
1421 | This option has been split to separate the builtin | |
1422 | configuration between BR2_TARGET_GRUB2_BUILTIN_CONFIG_PC and | |
1423 | BR2_TARGET_GRUB2_BUILTIN_CONFIG_EFI. | |
1424 | ||
1425 | config BR2_TARGET_GRUB2_BUILTIN_CONFIG_WRAP | |
1426 | bool | |
1427 | default y if BR2_TARGET_GRUB2_BUILTIN_CONFIG != "" | |
1428 | select BR2_LEGACY | |
1429 | ||
e24c5731 FF |
1430 | config BR2_PACKAGE_LIBMCRYPT |
1431 | bool "libmcrypt package was removed" | |
1432 | select BR2_LEGACY | |
1433 | help | |
1434 | This package has been removed as "the last update to libmcrypt | |
1435 | was in 2007, despite years of unmerged patches. These facts | |
1436 | have led security experts to declare mcrypt abandonware and | |
1437 | discourage its use in new development" (extract from | |
1438 | https://en.wikipedia.org/wiki/Mcrypt). | |
1439 | ||
66eb8cd0 FF |
1440 | config BR2_PACKAGE_MCRYPT |
1441 | bool "mcrypt package was removed" | |
1442 | select BR2_LEGACY | |
1443 | help | |
1444 | This package has been removed as "the last update to libmcrypt | |
1445 | was in 2007, despite years of unmerged patches. These facts | |
1446 | have led security experts to declare mcrypt abandonware and | |
1447 | discourage its use in new development" (extract from | |
1448 | https://en.wikipedia.org/wiki/Mcrypt). | |
1449 | ||
c1e6b82e FF |
1450 | config BR2_PACKAGE_PHP_EXT_MCRYPT |
1451 | bool "PHP mcrypt extension removed" | |
1452 | select BR2_LEGACY | |
1453 | help | |
1454 | mcrypt has been removed from php since version 7.2.0. | |
1455 | ||
594f5218 TP |
1456 | config BR2_BINUTILS_VERSION_2_34_X |
1457 | bool "binutils 2.34 has been removed" | |
1458 | select BR2_LEGACY | |
1459 | help | |
1460 | binutils 2.34 has been removed, use a newer version. | |
1461 | ||
4a3f27b1 BK |
1462 | config BR2_PACKAGE_LIBSOIL |
1463 | bool "libsoil package removed" | |
1464 | select BR2_LEGACY | |
1465 | help | |
1466 | The libsoil package was removed. All packages needing | |
1467 | libsoil removed the dependency. | |
1468 | ||
e9a37dd1 AVEM |
1469 | config BR2_PACKAGE_CLAPACK |
1470 | bool "cblas/clapack package removed" | |
1471 | select BR2_LEGACY | |
1472 | select BR2_PACKAGE_LAPACK if BR2_PACKAGE_LAPACK_ARCH_SUPPORTS && BR2_TOOLCHAIN_HAS_FORTRAN | |
1473 | help | |
1474 | The clapack package was removed. LAPACK no longer generates a | |
1475 | C version. Use lapack instead. This does require a Fortran | |
1476 | compiler however. | |
1477 | ||
6418d31b AD |
1478 | config BR2_PACKAGE_SPIDERMONKEY |
1479 | bool "spidermonkey package removed" | |
1480 | select BR2_LEGACY | |
1481 | help | |
1482 | The spidermonkey package was removed. The only package that | |
1483 | depended on spidermonkey was polkit. The spidermonkey | |
1484 | dependency is replaced with duktape. | |
1485 | ||
80c1135d BK |
1486 | config BR2_PACKAGE_KODI_LIBVA |
1487 | bool "kodi option to add libva support removed" | |
1488 | select BR2_LEGACY | |
1489 | help | |
1490 | Kodi still has support for libva if the package is enabled but | |
1491 | the kodi-specific dependencies limiting libva support to non- | |
1492 | OPENGLES platforms were removed including this option. | |
1493 | ||
0c7e30b4 FF |
1494 | config BR2_PACKAGE_PYTHON_COHERENCE |
1495 | bool "python-coherence package removed" | |
1496 | select BR2_LEGACY | |
1497 | help | |
1498 | This package has been removed as it can't be built anymore due | |
1499 | to python-twisted being now incompatible with python 2. | |
1500 | ||
469c11c5 AD |
1501 | config BR2_PACKAGE_PHP_EXT_XMLRPC |
1502 | bool "PHP XMLRPC extension removed" | |
1503 | select BR2_LEGACY | |
1504 | help | |
1505 | The XMLRPC php extension was removed. | |
1506 | See: https://wiki.php.net/rfc/unbundle_xmlprc | |
1507 | ||
531b2a10 RN |
1508 | config BR2_GCC_VERSION_8_X |
1509 | bool "gcc 8.x support removed" | |
1510 | select BR2_LEGACY | |
1511 | help | |
1512 | Support for gcc version 8.x has been removed. The current | |
1513 | default version (10.x or later) has been selected instead. | |
1514 | ||
1fe532c0 FF |
1515 | comment "Legacy options removed in 2021.05" |
1516 | ||
eb251b30 FF |
1517 | config BR2_PACKAGE_UDISKS_LVM2 |
1518 | bool "udisks lvm2 support removed" | |
1519 | select BR2_LEGACY | |
1520 | help | |
1521 | The lvm2 support was removed because udisks < 2.7.0 still | |
1522 | depends on lvm2 application library, which was removed | |
0a2942af | 1523 | in lvm2. |
eb251b30 FF |
1524 | |
1525 | config BR2_PACKAGE_LVM2_APP_LIBRARY | |
1526 | bool "lvm2 application library removed" | |
1527 | select BR2_LEGACY | |
1528 | help | |
1529 | The lvm2 application library was removed upstream. | |
1530 | ||
0b10ed0d FF |
1531 | config BR2_PACKAGE_LVM2_LVMETAD |
1532 | bool "lvm2 lvmetad removed" | |
1533 | select BR2_LEGACY | |
1534 | help | |
1535 | The lvm2 lvmetad was removed upstream. | |
1536 | ||
ac0cb278 FF |
1537 | config BR2_PACKAGE_MONKEY |
1538 | bool "monkey package removed" | |
1539 | select BR2_LEGACY | |
1540 | help | |
1541 | This package has been removed as it has not seen any release | |
1542 | since 2016 and because TLS is broken on master. | |
1543 | ||
35af2bb8 CS |
1544 | config BR2_PACKAGE_DOCKER_CONTAINERD |
1545 | bool "docker-containerd package was renamed to containerd" | |
1546 | select BR2_LEGACY | |
1547 | select BR2_PACKAGE_CONTAINERD | |
1548 | help | |
1549 | The containerd project is now independent from Docker. | |
1550 | The package was renamed to containerd accordingly. | |
1551 | ||
281e5af3 | 1552 | config BR2_PACKAGE_IOSTAT |
104df75e | 1553 | bool "iostat package removed" |
281e5af3 FF |
1554 | select BR2_LEGACY |
1555 | help | |
1556 | This package has been removed, use sysstat instead. | |
1557 | ||
fdb6fc2b FF |
1558 | config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE |
1559 | bool "sconeserver http::sconesite::image removed" | |
0c4c7675 | 1560 | select BR2_LEGACY |
fdb6fc2b FF |
1561 | help |
1562 | Sconeserver cannot be built with ImageMagick - it uses the | |
1563 | "transofrm" function which is removed from public API. | |
1564 | ||
553a1235 BK |
1565 | config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV |
1566 | bool "KDrive/TinyX evdev input driver removed" | |
1567 | select BR2_LEGACY | |
1568 | help | |
1569 | The evdev input driver in KDrive was removed. | |
1570 | ||
eea0da85 BK |
1571 | config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD |
1572 | bool "KDrive/TinyX kbd input driver removed" | |
1573 | select BR2_LEGACY | |
1574 | help | |
1575 | The kbd input driver in KDrive was removed. | |
1576 | ||
1577 | config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE | |
1578 | bool "KDrive/TinyX mouse input driver removed" | |
1579 | select BR2_LEGACY | |
1580 | help | |
1581 | The mouse input driver in KDrive was removed. | |
1582 | ||
15a2f9b8 BK |
1583 | config BR2_PACKAGE_MESA3D_OSMESA_CLASSIC |
1584 | bool "mesa OSMesa (classic) option removed" | |
1585 | select BR2_LEGACY | |
1586 | select BR2_PACKAGE_MESA3D_OSMESA_GALLIUM | |
1587 | help | |
1588 | The OSMesa "classic" library option was removed upstream. | |
1589 | Only the Gallium-based implementation remains. | |
1590 | ||
1591 | config BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST | |
1592 | bool "mesa DRI swrast driver removed" | |
1593 | select BR2_LEGACY | |
1594 | select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST | |
1595 | help | |
1596 | The DRI swrast driver was removed upstream. | |
1597 | Only the Gallium-based implementation remains. | |
1598 | ||
49eb73ca BK |
1599 | config BR2_PACKAGE_KODI_SCREENSAVER_CRYSTALMORPH |
1600 | bool "kodi-screensaver-crystalmorph removed" | |
1601 | select BR2_LEGACY | |
1602 | help | |
1603 | The package received its last updates in 2017, is not part | |
1604 | of the official Kodi github repo and its build is broken | |
1605 | with Kodi 19.x, so it was removed. | |
1606 | ||
a3f58a74 FF |
1607 | comment "Legacy options removed in 2021.02" |
1608 | ||
8d93a300 FF |
1609 | config BR2_PACKAGE_MPD_AUDIOFILE |
1610 | bool "mpd audiofile support removed" | |
1611 | select BR2_LEGACY | |
1612 | help | |
1613 | The audiofile support was removed from mpd as audiofile is | |
1614 | affected by multiple CVEs and is not maintained anymore (no | |
1615 | release since 2013). | |
1616 | ||
1617 | config BR2_PACKAGE_AUDIOFILE | |
1618 | bool "audiofile package removed" | |
1619 | select BR2_LEGACY | |
1620 | help | |
1621 | The audiofile package was removed as it is affected by | |
1622 | multiple CVEs and is not maintained anymore (no release since | |
1623 | 2013). | |
1624 | ||
ade5f503 TP |
1625 | config BR2_BINUTILS_VERSION_2_33_X |
1626 | bool "binutils 2.33.x has been removed" | |
1627 | select BR2_LEGACY | |
1628 | help | |
1629 | binutils 2.33.x has been removed, use a newer version. | |
1630 | ||
eddc9df9 FF |
1631 | config BR2_PACKAGE_LIBUPNP18 |
1632 | bool "libupnp18 package removed" | |
1633 | select BR2_LEGACY | |
1634 | select BR2_PACKAGE_LIBUPNP | |
1635 | help | |
1636 | Version 1.8.x of libupnp (i.e. libupnp18) has been removed | |
1637 | because it will never be fixed against CallStranger a.k.a. | |
1638 | CVE-2020-12695. The libupnp package (which has been updated to | |
1639 | version 1.14.x) has been selected instead. | |
1640 | ||
906a4668 FF |
1641 | config BR2_PACKAGE_BOA |
1642 | bool "boa package removed" | |
1643 | select BR2_LEGACY | |
1644 | help | |
1645 | The boa package was removed as it is affected by multiple | |
1646 | CVEs and is not maintained anymore (no release since 2005). | |
1647 | ||
8d398f7f RN |
1648 | config BR2_PACKAGE_LINUX_FIRMWARE_IMX_SDMA |
1649 | bool "imx sdma firmware is provided by firmware-imx" | |
1650 | select BR2_LEGACY | |
7e2d5aa2 | 1651 | select BR2_PACKAGE_FREESCALE_IMX |
8d398f7f RN |
1652 | select BR2_PACKAGE_FIRMWARE_IMX |
1653 | help | |
1654 | linux-firmware provide the same firmware as firmware-imx. | |
1655 | We prefer using firmware-imx as the only provider. | |
1656 | ||
86c779ee TP |
1657 | config BR2_GDB_VERSION_8_2 |
1658 | bool "gdb 8.2.x has been removed" | |
1659 | select BR2_LEGACY | |
1660 | help | |
1661 | gdb 8.2 support has been removed, you can use a newer | |
1662 | version such as 8.3 or more recent. | |
1663 | ||
ad50d8a4 | 1664 | config BR2_PACKAGE_HOST_RCW |
af6cbe07 | 1665 | bool "rcw package was renamed to qoriq-rcw" |
ad50d8a4 CH |
1666 | select BR2_PACKAGE_HOST_QORIQ_RCW |
1667 | select BR2_LEGACY | |
1668 | help | |
1669 | The rcw package was specific to the QorIQ platform, so it has | |
1670 | been renamed to qoriq-rcw, to leave room for other *-rcw | |
1671 | packages for other platforms. | |
1672 | ||
54584d23 PV |
1673 | config BR2_KERNEL_HEADERS_5_9 |
1674 | bool "kernel headers version 5.9.x are no longer supported" | |
1675 | select BR2_LEGACY | |
1676 | help | |
1677 | Version 5.9.x of the Linux kernel headers are no longer | |
1678 | maintained upstream and are now removed. | |
1679 | ||
b829a60b PK |
1680 | config BR2_KERNEL_HEADERS_5_8 |
1681 | bool "kernel headers version 5.8.x are no longer supported" | |
1682 | select BR2_LEGACY | |
1683 | help | |
1684 | Version 5.8.x of the Linux kernel headers are no longer | |
1685 | maintained upstream and are now removed. | |
1686 | ||
f33009bb MW |
1687 | config BR2_powerpc_601 |
1688 | bool "PowerPC 601 support removed" | |
1689 | select BR2_LEGACY | |
1690 | help | |
1691 | The support for the PowerPC 601 processors has been removed. | |
1692 | ||
814bfc5e AD |
1693 | config BR2_PACKAGE_TI_SGX_LIBGBM |
1694 | bool "ti-sgx-libgbm support removed" | |
1695 | select BR2_LEGACY | |
1696 | help | |
1697 | TI has merged the ti-sgx-libgbm package with the ti-sgx-um | |
1698 | package | |
1699 | ||
a3f58a74 FF |
1700 | config BR2_PACKAGE_IPSEC_TOOLS |
1701 | bool "ipsec-tools package was removed" | |
1702 | select BR2_LEGACY | |
1703 | help | |
1704 | This package has been removed as it has security issues and | |
1705 | has been abandoned since 2014. | |
1706 | ||
ed33cecb | 1707 | comment "Legacy options removed in 2020.11" |
2a58ba89 | 1708 | |
5b3e7213 OD |
1709 | config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED |
1710 | bool "compile with fixed serial port speed" | |
1711 | select BR2_LEGACY | |
1712 | help | |
1713 | Since gpsd 3.20, GPSD_FIXED_PORT_SPEED is replaced | |
1714 | by runtime option --speed. | |
1715 | ||
1716 | config BR2_PACKAGE_GPSD_RECONFIGURE | |
1717 | bool "allow gpsd to change device settings" | |
1718 | select BR2_LEGACY | |
1719 | help | |
1720 | Since gpsd 3.21, GPSD_RECONFIGURE is replaced | |
1721 | by runtime option --passive. | |
1722 | ||
1723 | config BR2_PACKAGE_GPSD_CONTROLSEND | |
1724 | bool "allow gpsctl/gpsmon to change device settings" | |
1725 | select BR2_LEGACY | |
1726 | help | |
1727 | Option removed in gpsd 3.21 | |
1728 | ||
c87c0b33 FF |
1729 | config BR2_PACKAGE_OPENCV |
1730 | bool "opencv package was removed" | |
1731 | select BR2_LEGACY | |
1732 | help | |
1733 | This package has been removed, use opencv3 instead. | |
1734 | ||
6fe9994c FF |
1735 | config BR2_PACKAGE_LIBCROCO |
1736 | bool "libcroco package was removed" | |
1737 | select BR2_LEGACY | |
1738 | help | |
1739 | This package has been removed as it is affected by several | |
1740 | security issues such as CVE-2020-12825 which will never be | |
1741 | fixed as libcroco has been archived. | |
1742 | ||
34f464e7 PS |
1743 | config BR2_PACKAGE_BELLAGIO |
1744 | bool "bellagio package was removed" | |
1745 | select BR2_LEGACY | |
1746 | help | |
1747 | This package has been removed as it is not maintained anymore | |
1748 | (no release since 2011). | |
1749 | ||
e46fe9a6 MN |
1750 | config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY |
1751 | bool "systemd-journal-gatewayd now in systemd-journal-remote" | |
1752 | select BR2_LEGACY | |
1753 | select BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE | |
1754 | help | |
1755 | All system journal remote programs are now enabled using | |
1756 | BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE. | |
1757 | ||
db2b6841 MW |
1758 | config BR2_TARGET_UBOOT_BOOT_SCRIPT |
1759 | bool "u-boot script generation was moved" | |
1760 | select BR2_LEGACY | |
1761 | select BR2_PACKAGE_HOST_UBOOT_TOOLS | |
1762 | select BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT | |
1763 | help | |
1764 | Migrated U-Boot script generation to uboot-tools | |
1765 | ||
1766 | # Note: BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE is still referenced from | |
1767 | # package/uboot-tools/Config.in | |
1768 | config BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE | |
1769 | string "The uboot script source string has been renamed" | |
1770 | depends on BR2_TARGET_UBOOT_BOOT_SCRIPT | |
1771 | help | |
1772 | Migrated U-Boot script generation to uboot-tools. | |
1773 | New option is named | |
1774 | BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE | |
1775 | ||
78559d69 MW |
1776 | config BR2_TARGET_UBOOT_ENVIMAGE |
1777 | bool "u-boot env generation was moved" | |
1778 | select BR2_LEGACY | |
1779 | select BR2_PACKAGE_HOST_UBOOT_TOOLS | |
1780 | select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE | |
1781 | help | |
1782 | Migrated U-Boot env generation to uboot-tools | |
1783 | ||
1784 | # Note: BR2_TARGET_UBOOT_ENVIMAGE_SOURCE is still referenced from | |
1785 | # package/uboot-tools/Config.in | |
1786 | config BR2_TARGET_UBOOT_ENVIMAGE_SOURCE | |
1787 | string "The uboot env image source string has been renamed" | |
1788 | depends on BR2_TARGET_UBOOT_ENVIMAGE | |
1789 | help | |
1790 | Migrated U-Boot env generation to uboot-tools. | |
1791 | New option is named | |
1792 | BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE | |
1793 | ||
1794 | # Note: BR2_TARGET_UBOOT_ENVIMAGE_SIZE is still referenced from | |
1795 | # package/uboot-tools/Config.in | |
1796 | config BR2_TARGET_UBOOT_ENVIMAGE_SIZE | |
1797 | string "The uboot env image size string has been renamed" | |
1798 | depends on BR2_TARGET_UBOOT_ENVIMAGE | |
1799 | help | |
1800 | Migrated U-Boot env generation to uboot-tools. | |
1801 | New option is named BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SIZE | |
1802 | ||
1803 | config BR2_TARGET_UBOOT_ENVIMAGE_REDUNDANT | |
1804 | bool "u-boot env generation was moved" | |
1805 | depends on BR2_TARGET_UBOOT_ENVIMAGE | |
1806 | select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_REDUNDANT | |
1807 | help | |
1808 | Migrated U-Boot env generation to uboot-tools | |
1809 | ||
3a92ce24 FF |
1810 | config BR2_PACKAGE_KISMET_CLIENT |
1811 | bool "kismet client support was removed" | |
1812 | select BR2_LEGACY | |
1813 | help | |
1814 | Kismet client support was removed since version 2019-04-R1. | |
1815 | ||
1816 | config BR2_PACKAGE_KISMET_DRONE | |
1817 | bool "kismet drone support was removed" | |
1818 | select BR2_LEGACY | |
1819 | help | |
1820 | Kismet drone support was removed since version 2019-04-R1. | |
1821 | ||
4504bf37 RN |
1822 | config BR2_GCC_VERSION_7_X |
1823 | bool "gcc 7.x support removed" | |
1824 | select BR2_LEGACY | |
1825 | help | |
1826 | Support for gcc version 7.x has been removed. The current | |
1827 | default version (9.x or later) has been selected instead. | |
1828 | ||
0e4be467 | 1829 | config BR2_PACKAGE_GST1_VALIDATE |
60b4e7a5 PS |
1830 | bool "gst1-validate was moved to gst1-devtools" |
1831 | select BR2_PACKAGE_GST1_DEVTOOLS | |
1832 | select BR2_LEGACY | |
1833 | help | |
1834 | This package has been removed, use gst1-devtools instead. | |
1835 | ||
f8a02bba PS |
1836 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF |
1837 | bool "gst1-plugins-bad yadif plugin was removed" | |
1838 | select BR2_LEGACY | |
1839 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEINTERLACE | |
1840 | help | |
1841 | This plugin was removed with gst1-plugins-bad-1.18.0, the | |
1842 | same functionality has moved to gst1-plugins-good | |
1843 | deinterlace plugin (method=yadif). | |
1844 | ||
8f639ffb FF |
1845 | config BR2_PACKAGE_GQVIEW |
1846 | bool "gqview package was removed" | |
1847 | select BR2_LEGACY | |
1848 | help | |
1849 | This package has been removed as it is not maintained anymore | |
1850 | (no release since 2006). | |
1851 | ||
3ef7160b GB |
1852 | config BR2_PACKAGE_WESTON_IMX |
1853 | bool "weston-imx package was removed" | |
1854 | select BR2_LEGACY | |
1855 | help | |
1856 | This package has been removed, use weston instead. | |
1857 | ||
6f593733 PK |
1858 | config BR2_KERNEL_HEADERS_5_7 |
1859 | bool "kernel headers version 5.7.x are no longer supported" | |
1860 | select BR2_LEGACY | |
1861 | help | |
1862 | Version 5.7.x of the Linux kernel headers are no longer | |
1863 | maintained upstream and are now removed. | |
1864 | ||
fa25e783 FF |
1865 | config BR2_PACKAGE_TINYHTTPD |
1866 | bool "tinyhttpd package removed" | |
1867 | select BR2_LEGACY | |
1868 | help | |
1869 | The tinyhttpd package was removed as it is affected by | |
1870 | CVE-2002-1819 and is not maintained anymore (no release since | |
1871 | 2001). | |
1872 | ||
e6dc4f18 BK |
1873 | config BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX |
1874 | bool "X.org Enable AIGLX Extension" | |
1875 | select BR2_LEGACY | |
1876 | help | |
1877 | AIGLX Extension was removed in X.org X server version 1.19.0 | |
1878 | ||
10097869 BK |
1879 | config BR2_PACKAGE_AMD_CATALYST |
1880 | bool "amd-catalyst" | |
1881 | select BR2_LEGACY | |
1882 | help | |
1883 | Current X.org server is incompatible with this driver. | |
1884 | ||
6b2355fe BK |
1885 | config BR2_PACKAGE_NVIDIA_TEGRA23 |
1886 | bool "nvidia-tegra23 package removed" | |
1887 | select BR2_LEGACY | |
1888 | help | |
1889 | Current X.org server is incompatible with this driver. | |
1890 | ||
a57e123b TP |
1891 | config BR2_GDB_VERSION_8_1 |
1892 | bool "gdb 8.1.x has been removed" | |
1893 | select BR2_LEGACY | |
1894 | help | |
1895 | The 8.1.x version of gdb has been removed. Use a newer | |
1896 | version instead. | |
1897 | ||
2a58ba89 BK |
1898 | comment "Legacy options removed in 2020.08" |
1899 | ||
d87e114a TP |
1900 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64 |
1901 | bool "toolchain-external-codesourcery-amd64 removed" | |
1902 | select BR2_LEGACY | |
1903 | help | |
1904 | The CodeSourcery toolchain for AMD64, in version 2016.11 was | |
1905 | dropped, due to it using a too old gcc 6.2.0 compiler which | |
1906 | caused issues compiling a number of recent packages | |
1907 | (e.g. Boost). CodeSourcery has stopped making newer versions | |
1908 | of this toolchain publicly available, so it was not possible | |
1909 | to update it. | |
1910 | ||
6699d69d PK |
1911 | config BR2_KERNEL_HEADERS_5_6 |
1912 | bool "kernel headers version 5.6.x are no longer supported" | |
1913 | select BR2_LEGACY | |
1914 | help | |
1915 | Version 5.6.x of the Linux kernel headers are no longer | |
1916 | maintained upstream and are now removed. | |
1917 | ||
04c5da18 PK |
1918 | config BR2_KERNEL_HEADERS_5_5 |
1919 | bool "kernel headers version 5.5.x are no longer supported" | |
1920 | select BR2_LEGACY | |
1921 | help | |
1922 | Version 5.5.x of the Linux kernel headers are no longer | |
1923 | maintained upstream and are now removed. | |
1924 | ||
25129ad3 RN |
1925 | config BR2_BINUTILS_VERSION_2_31_X |
1926 | bool "binutils version 2.31.1 support removed" | |
1927 | select BR2_LEGACY | |
1928 | help | |
1929 | Support for binutils version 2.31.1 has been removed. The | |
1930 | current default version (2.33.1 or later) has been selected | |
1931 | instead. | |
1932 | ||
2a58ba89 BK |
1933 | config BR2_PACKAGE_KODI_PERIPHERAL_STEAMCONTROLLER |
1934 | bool "kodi-peripheral-steamcontroller package was removed" | |
1935 | select BR2_LEGACY | |
1936 | help | |
1937 | This package is broken. | |
1938 | ||
cf2074db RN |
1939 | comment "Legacy options removed in 2020.05" |
1940 | ||
90dd7803 YM |
1941 | config BR2_PACKAGE_WIRINGPI |
1942 | bool "wiringpi package removed" | |
1943 | select BR2_LEGACY | |
1944 | help | |
1945 | The author of wiringpi has deprecated the package, and | |
1946 | completely removed the git tree that was serving the | |
1947 | sources, with this message: | |
1948 | Please look for alternatives for wiringPi | |
1949 | ||
7ef76ed3 RN |
1950 | config BR2_PACKAGE_PYTHON_PYCRYPTO |
1951 | bool "python-pycrypto package removed" | |
1952 | select BR2_LEGACY | |
1953 | help | |
1954 | This package has been removed, use python-pycryptodomex | |
1955 | instead. | |
1956 | ||
64a2bfcf SH |
1957 | config BR2_PACKAGE_MTDEV2TUIO |
1958 | bool "mtdev2tuio package removed" | |
1959 | select BR2_LEGACY | |
1960 | help | |
1961 | The mtdev2tuio package was removed as it breaks the builds | |
1962 | every now and then and is not maintained upstream. | |
1963 | ||
94cb0cc7 FF |
1964 | config BR2_PACKAGE_EZXML |
1965 | bool "ezxml package removed" | |
1966 | select BR2_LEGACY | |
1967 | help | |
1968 | The ezXML package was removed as it is affected by several | |
1969 | CVEs and is not maintained anymore (no release since 2006). | |
1970 | ||
01192342 FF |
1971 | config BR2_PACKAGE_COLLECTD_LVM |
1972 | bool "lvm support in collectd was removed" | |
1973 | select BR2_LEGACY | |
1974 | help | |
1975 | collectd removed LVM plugin, liblvm2app has been deprecated | |
1976 | ||
9de136ff JH |
1977 | config BR2_PACKAGE_PYTHON_PYASN |
1978 | bool "duplicate python-pyasn1 package removed" | |
1979 | select BR2_LEGACY | |
1980 | select BR2_PACKAGE_PYTHON_PYASN1 | |
1981 | help | |
1982 | This package was a duplicate of python-pyasn1. | |
1983 | ||
5511c07f JH |
1984 | config BR2_PACKAGE_PYTHON_PYASN_MODULES |
1985 | bool "duplicate python-pyasn1-modules package removed" | |
1986 | select BR2_LEGACY | |
1987 | select BR2_PACKAGE_PYTHON_PYASN1_MODULES | |
1988 | help | |
1989 | This package was a duplicate of python-pyasn1-modules. | |
1990 | ||
b47da10b BS |
1991 | config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_10K_QCA6174 |
1992 | bool "duplicate QCA6174 firmware symbol removed" | |
1993 | select BR2_LEGACY | |
1994 | select BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174 | |
1995 | help | |
1996 | This config symbol duplicates existing symbol for QCA6174 | |
1997 | firmware. | |
1998 | ||
fcae317d PS |
1999 | config BR2_PACKAGE_QT5CANVAS3D |
2000 | bool "qt5canvas3d was removed" | |
2001 | select BR2_LEGACY | |
2002 | help | |
2003 | This Qt5 module was removed by the upstream Qt project since | |
2004 | Qt 5.13, so the corresponding Buildroot package was removed | |
2005 | as well. | |
2006 | ||
2ba1fb9b BK |
2007 | config BR2_PACKAGE_KODI_LIBTHEORA |
2008 | bool "libtheora support in Kodi was removed" | |
2009 | select BR2_LEGACY | |
2010 | help | |
2011 | Kodi does not need libtheora | |
2012 | ||
662bc3c8 BB |
2013 | config BR2_PACKAGE_CEGUI06 |
2014 | bool "BR2_PACKAGE_CEGUI06 was renamed" | |
2015 | select BR2_PACKAGE_CEGUI | |
2016 | select BR2_LEGACY | |
2017 | help | |
2018 | The BR2_PACKAGE_CEGUI06 config symbol was renamed to | |
2019 | BR2_PACKAGE_CEGUI. | |
2020 | ||
cf2074db RN |
2021 | config BR2_GCC_VERSION_5_X |
2022 | bool "gcc 5.x support removed" | |
2023 | select BR2_LEGACY | |
2024 | help | |
2025 | Support for gcc version 5.x has been removed. The current | |
2026 | default version (8.x or later) has been selected instead. | |
2027 | ||
c4293d0e TP |
2028 | comment "Legacy options removed in 2020.02" |
2029 | ||
fcb7b2a5 JH |
2030 | config BR2_PACKAGE_JAMVM |
2031 | bool "jamvm removed" | |
2032 | select BR2_LEGACY | |
2033 | help | |
2034 | JamVM has not had a release since 2014 and is unmaintained. | |
2035 | ||
d8fd0b24 JH |
2036 | config BR2_PACKAGE_CLASSPATH |
2037 | bool "classpath removed" | |
2038 | select BR2_LEGACY | |
2039 | help | |
2040 | GNU Classpath package was removed. The last upstream | |
2041 | release was in 2012 and there hasn't been a commit | |
2042 | since 2016. | |
2043 | ||
a69df083 PK |
2044 | config BR2_PACKAGE_QT5_VERSION_5_6 |
2045 | bool "qt 5.6 support removed" | |
2046 | select BR2_LEGACY | |
2047 | help | |
2048 | Support for Qt 5.6 is EOL and has been removed. The current | |
2049 | version (5.12 or later) has been selected instead. | |
2050 | ||
2a057339 BS |
2051 | config BR2_PACKAGE_CURL |
2052 | bool "BR2_PACKAGE_CURL was renamed" | |
2053 | select BR2_PACKAGE_LIBCURL_CURL | |
2054 | select BR2_LEGACY | |
2055 | help | |
2056 | The BR2_PACKAGE_CURL config symbol was renamed to | |
2057 | BR2_PACKAGE_LIBCURL_CURL. | |
2058 | ||
fb49c7a2 PK |
2059 | config BR2_PACKAGE_GSTREAMER |
2060 | bool "gstreamer-0.10 removed" | |
2061 | select BR2_LEGACY | |
2062 | help | |
2063 | Gstreamer-0.10 package was removed. It has been deprecated | |
2064 | upstream since 2012, and is missing a lot of features and | |
2065 | fixes compared to gstreamer-1.x. | |
2066 | ||
602e9680 PK |
2067 | config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_GSTREAMER_PLUGINS |
2068 | bool "nvidia-tegra23 binaries gstreamer 0.10.x support removed" | |
2069 | select BR2_LEGACY | |
2070 | help | |
2071 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
2072 | neither is the support in nvidia-tegra23 binaries. | |
2073 | ||
2074 | config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_NV_SAMPLE_APPS | |
2075 | bool "nvidia-tegra23 binaries sample apps removed" | |
2076 | select BR2_LEGACY | |
2077 | help | |
2078 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
2079 | neither is the support in nvidia-tegra23 binaries. | |
2080 | ||
545ffdc1 PK |
2081 | config BR2_PACKAGE_FREERDP_GSTREAMER |
2082 | bool "freerdp gstreamer 0.10.x support removed" | |
2083 | select BR2_LEGACY | |
2084 | help | |
2085 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
2086 | neither is the support in freerdp. | |
2087 | ||
ceb23e88 PK |
2088 | config BR2_PACKAGE_OPENCV3_WITH_GSTREAMER |
2089 | bool "opencv3 gstreamer 0.10.x support removed" | |
2090 | select BR2_LEGACY | |
2091 | help | |
2092 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
2093 | neither is the support in opencv3. | |
2094 | ||
0220ad8b PK |
2095 | config BR2_PACKAGE_OPENCV_WITH_GSTREAMER |
2096 | bool "opencv gstreamer 0.10.x support removed" | |
2097 | select BR2_LEGACY | |
2098 | help | |
2099 | Gstreamer 0.10.x is no longer available in Buildroot, so | |
2100 | neither is the support in opencv. | |
2101 | ||
d89fa735 PK |
2102 | config BR2_PACKAGE_LIBPLAYER |
2103 | bool "libplayer package was removed" | |
2104 | select BR2_LEGACY | |
2105 | help | |
2106 | The libplayer package was removed. The latest release is | |
2107 | from 2010 and none of the backends are available in | |
2108 | Buildroot any more. | |
2109 | ||
f424b8af RN |
2110 | config BR2_GCC_VERSION_OR1K |
2111 | bool "gcc 5.x fork for or1k has been removed" | |
2112 | select BR2_LEGACY | |
2113 | help | |
2114 | Support for gcc 5.x for or1k has been removed. The current | |
2115 | default version (9.x or later) has been selected instead. | |
2116 | ||
61a81333 FF |
2117 | config BR2_PACKAGE_BLUEZ_UTILS |
2118 | bool "bluez-utils was removed" | |
2119 | select BR2_LEGACY | |
9a46a016 FF |
2120 | select BR2_PACKAGE_BLUEZ5_UTILS if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 \ |
2121 | && BR2_TOOLCHAIN_HAS_SYNC_4 | |
61a81333 FF |
2122 | help |
2123 | The bluez-utils (BlueZ 4.x) package was removed as it is | |
2124 | deprecated since a long time. As an alternative, the | |
2125 | bluez5-utils (BlueZ 5.x) has been automatically selected in | |
2126 | your configuration. | |
2127 | ||
c4cf3e62 MC |
2128 | config BR2_PACKAGE_GADGETFS_TEST |
2129 | bool "gadgetfs-test was removed" | |
2130 | select BR2_LEGACY | |
2131 | help | |
2132 | The gadgetfs-test package was removed. Gadgetfs has been | |
2133 | deprecated in favour of functionfs. Consider using | |
2134 | gadget-tool (gt) instead. | |
2135 | ||
ce142f29 MC |
2136 | config BR2_PACKAGE_FIS |
2137 | bool "fis was removed" | |
2138 | select BR2_LEGACY | |
2139 | help | |
2140 | The fis package was removed. | |
2141 | ||
10e19b75 AD |
2142 | config BR2_PACKAGE_REFPOLICY_POLICY_VERSION |
2143 | string "refpolicy policy version" | |
2144 | help | |
2145 | The refpolicy policy version option has been moved to the | |
2146 | libsepol package. | |
2147 | ||
2148 | config BR2_PACKAGE_REFPOLICY_POLICY_VERSION_WRAP | |
2149 | bool | |
2150 | default y if BR2_PACKAGE_REFPOLICY_POLICY_VERSION != "" | |
2151 | select BR2_LEGACY | |
2152 | ||
b32efbdb FF |
2153 | config BR2_PACKAGE_CELT051 |
2154 | bool "celt051 package was removed" | |
2155 | select BR2_LEGACY | |
2156 | select BR2_PACKAGE_OPUS | |
2157 | help | |
2158 | The celt051 package was removed as it is now obsolete since | |
2159 | the CELT codec has been merged into the IETF Opus codec. As | |
2160 | a result, the opus package has been automatically selected | |
2161 | in your configuration. | |
2162 | ||
a269c49f PK |
2163 | config BR2_PACKAGE_WIREGUARD |
2164 | bool "wireguard package renamed" | |
2165 | depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 | |
2166 | select BR2_LEGACY | |
de591c5c | 2167 | select BR2_PACKAGE_WIREGUARD_LINUX_COMPAT if BR2_LINUX_KERNEL |
a269c49f PK |
2168 | select BR2_PACKAGE_WIREGUARD_TOOLS |
2169 | help | |
de591c5c PK |
2170 | The wireguard package has been renamed to wireguard-tools |
2171 | for the userspace tooling and wireguard-linux-compat for the | |
2172 | kernel side for legacy (<5.6) kernels to match upstream. | |
a269c49f | 2173 | |
e1e54f71 FP |
2174 | config BR2_PACKAGE_PERL_NET_PING |
2175 | bool "perl-net-ping was removed" | |
2176 | select BR2_LEGACY | |
2177 | help | |
2178 | Net::Ping is a Perl core module (ie. bundled with perl). | |
2179 | ||
bdbc1dd5 FP |
2180 | config BR2_PACKAGE_PERL_MIME_BASE64 |
2181 | bool "perl-mime-base64 was removed" | |
2182 | select BR2_LEGACY | |
2183 | help | |
2184 | MIME::Base64 is a Perl core module (ie. bundled with perl). | |
2185 | ||
f3fbcfff FP |
2186 | config BR2_PACKAGE_PERL_DIGEST_MD5 |
2187 | bool "perl-digest-md5 was removed" | |
2188 | select BR2_LEGACY | |
2189 | help | |
2190 | Digest::MD5 is a Perl core module (ie. bundled with perl). | |
2191 | ||
48daa29c JO |
2192 | config BR2_PACKAGE_ERLANG_P1_ICONV |
2193 | bool "erlang-p1-iconv has been removed" | |
2194 | select BR2_LEGACY | |
2195 | help | |
2196 | The erlang-p1-iconv package was no longer used by ejabberd, | |
2197 | and was no longer maintained upstream, so it was removed. | |
2198 | ||
6343127e BK |
2199 | config BR2_KERNEL_HEADERS_5_3 |
2200 | bool "kernel headers version 5.3.x are no longer supported" | |
2201 | select BR2_LEGACY | |
2202 | help | |
2203 | Version 5.3.x of the Linux kernel headers are no longer | |
2204 | maintained upstream and are now removed. | |
2205 | ||
689ba599 GP |
2206 | config BR2_PACKAGE_PYTHON_SCAPY3K |
2207 | bool "python-scapy3k is replaced by python-scapy" | |
2208 | select BR2_LEGACY | |
2209 | select BR2_PACKAGE_PYTHON_SCAPY | |
2210 | help | |
2211 | python-scapy3k has been deprecated, since python-scapy has | |
2212 | gained Python 3 support. Use BR2_PACKAGE_PYTHON_SCAPY | |
2213 | instead. | |
2214 | ||
a4d38f02 RN |
2215 | config BR2_BINUTILS_VERSION_2_30_X |
2216 | bool "binutils version 2.30 support removed" | |
2217 | select BR2_LEGACY | |
2218 | help | |
2219 | Support for binutils version 2.30 has been removed. The | |
2220 | current default version (2.31 or later) has been selected | |
2221 | instead. | |
2222 | ||
ce10b1ef PS |
2223 | config BR2_PACKAGE_RPI_USERLAND_START_VCFILED |
2224 | bool "rpi-userland start vcfiled was removed" | |
2225 | select BR2_LEGACY | |
2226 | help | |
2227 | The vcfiled support was removed upstream. | |
2228 | ||
b2661fe6 RM |
2229 | config BR2_PACKAGE_TI_SGX_KM_AM335X |
2230 | bool "ti-sgx-km AM335X option removed" | |
2231 | select BR2_LEGACY | |
2232 | select BR2_PACKAGE_TI_SGX_KM | |
2233 | help | |
2234 | Starting from buildroot release 2020.02, the buildroot package | |
2235 | only supports the target am335x. | |
2236 | ||
2237 | config BR2_PACKAGE_TI_SGX_KM_AM437X | |
2238 | bool "ti-sgx-km AM437X option removed" | |
2239 | select BR2_LEGACY | |
2240 | help | |
2241 | Starting from buildroot release 2020.02, the buildroot package | |
2242 | only supports the target am335x. | |
2243 | ||
2244 | config BR2_PACKAGE_TI_SGX_KM_AM4430 | |
2245 | bool "ti-sgx-km AM4430 option removed" | |
2246 | select BR2_LEGACY | |
2247 | help | |
2248 | Starting from buildroot release 2020.02, the buildroot package | |
2249 | only supports the target am335x. | |
2250 | ||
2251 | config BR2_PACKAGE_TI_SGX_KM_AM5430 | |
2252 | bool "ti-sgx-km AM5430 option removed" | |
2253 | select BR2_LEGACY | |
2254 | help | |
2255 | Starting from buildroot release 2020.02, the buildroot package | |
2256 | only supports the target am335x. | |
2257 | ||
f2ffdbee BK |
2258 | comment "Legacy options removed in 2019.11" |
2259 | ||
6b663015 | 2260 | config BR2_PACKAGE_OPENVMTOOLS_PROCPS |
cf741893 | 2261 | bool "openvmtools' procps support was removed" |
6b663015 YM |
2262 | select BR2_LEGACY |
2263 | help | |
2264 | Upstream stopped supporting this option a while ago. | |
2265 | ||
4167c96a TC |
2266 | config BR2_PACKAGE_ALLJOYN |
2267 | bool "alljoyn was removed" | |
2268 | select BR2_LEGACY | |
2269 | help | |
2270 | The alljoyn framework is dead | |
2271 | ||
2272 | config BR2_PACKAGE_ALLJOYN_BASE | |
2273 | bool "alljoyn-base was removed" | |
2274 | select BR2_LEGACY | |
2275 | help | |
2276 | The alljoyn framework is dead | |
2277 | ||
2278 | config BR2_PACKAGE_ALLJOYN_BASE_CONTROLPANEL | |
2279 | bool "alljoyn-base control panel was removed" | |
2280 | select BR2_LEGACY | |
2281 | help | |
2282 | The alljoyn framework is dead | |
2283 | ||
2284 | config BR2_PACKAGE_ALLJOYN_BASE_NOTIFICATION | |
2285 | bool "alljoyn-base notification was removed" | |
2286 | select BR2_LEGACY | |
2287 | help | |
2288 | The alljoyn framework is dead | |
2289 | ||
2290 | config BR2_PACKAGE_ALLJOYN_BASE_ONBOARDING | |
2291 | bool "alljoyn-base onboarding was removed" | |
2292 | select BR2_LEGACY | |
2293 | help | |
2294 | The alljoyn framework is dead | |
2295 | ||
2296 | config BR2_PACKAGE_ALLJOYN_TCL_BASE | |
2297 | bool "alljoyn-tcl-base was removed" | |
2298 | select BR2_LEGACY | |
2299 | help | |
2300 | The alljoyn framework is dead | |
2301 | ||
2302 | config BR2_PACKAGE_ALLJOYN_TCL | |
2303 | bool "alljoyn-tcl was removed" | |
2304 | select BR2_LEGACY | |
2305 | help | |
2306 | The alljoyn framework is dead | |
2307 | ||
25a5b966 MW |
2308 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS |
2309 | string "toolchain-external extra libs option has been renamed" | |
2310 | help | |
2311 | The option BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS has | |
2312 | been renamed to BR2_TOOLCHAIN_EXTRA_LIBS. | |
2313 | ||
2314 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS_WRAP | |
2315 | bool | |
2316 | default y if BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS != "" | |
2317 | select BR2_LEGACY | |
2318 | ||
ae2781d7 AK |
2319 | config BR2_PACKAGE_PYTHON_PYSNMP_APPS |
2320 | bool "python-pysnmp-apps was removed" | |
2321 | select BR2_LEGACY | |
2322 | select BR2_PACKAGE_SNMPCLITOOLS | |
2323 | help | |
2324 | Following upstream changes, the python-pysnmp-apps package | |
2325 | has been removed, and snmpclitools should be used as a | |
2326 | replacement. | |
2327 | ||
29ada329 BK |
2328 | config BR2_KERNEL_HEADERS_5_2 |
2329 | bool "kernel headers version 5.2.x are no longer supported" | |
2330 | select BR2_LEGACY | |
2331 | help | |
2332 | Version 5.2.x of the Linux kernel headers are no longer | |
2333 | maintained upstream and are now removed. | |
2334 | ||
67cfae0f AF |
2335 | config BR2_TARGET_RISCV_PK |
2336 | bool "riscv-pk was removed" | |
2337 | select BR2_LEGACY | |
2338 | help | |
2339 | The RISC-V Proxy Kernel (pk) and Berkley Boot Loader (BBL) | |
2340 | have been replaced with OpenSBI. | |
2341 | ||
7ba88d0d BK |
2342 | config BR2_PACKAGE_SQLITE_STAT3 |
2343 | bool "sqlite stat3 support was removed" | |
2344 | select BR2_LEGACY | |
2345 | help | |
2346 | Upstream removed the support for stat3. | |
2347 | ||
1dc7e048 PK |
2348 | config BR2_KERNEL_HEADERS_5_1 |
2349 | bool "kernel headers version 5.1.x are no longer supported" | |
2350 | select BR2_LEGACY | |
2351 | help | |
2352 | Version 5.1.x of the Linux kernel headers are no longer | |
2353 | maintained upstream and are now removed. | |
2354 | ||
2b2579af CS |
2355 | config BR2_PACKAGE_DEVMEM2 |
2356 | bool "devmem2 package was removed" | |
2357 | select BR2_LEGACY | |
2358 | help | |
2359 | Use the the Busybox devmem utility, instead, which provides | |
2360 | the same functionality. | |
2361 | ||
5d13b7a6 TP |
2362 | config BR2_PACKAGE_USTR |
2363 | bool "ustr package removed" | |
2364 | select BR2_LEGACY | |
2365 | help | |
2366 | The 'ustr' package was only used by SELinux libsemanage, but | |
2367 | since SELinux 2.7, ustr is no longer used. Therefore, we | |
2368 | removed this package from Buildroot. | |
2369 | ||
64c9bc8e BK |
2370 | config BR2_PACKAGE_KODI_SCREENSAVER_PLANESTATE |
2371 | bool "kodi-screensaver-planestate package was removed" | |
2372 | select BR2_LEGACY | |
2373 | help | |
2374 | This package is incompatible with Kodi 18.x. | |
2375 | ||
eeb069f9 BK |
2376 | config BR2_PACKAGE_KODI_VISUALISATION_WAVEFORHUE |
2377 | bool "kodi-visualisation-waveforhue package was removed" | |
2378 | select BR2_LEGACY | |
2379 | help | |
2380 | This package is incompatible with Kodi 18.x. | |
2381 | ||
5e11f348 BK |
2382 | config BR2_PACKAGE_KODI_AUDIODECODER_OPUS |
2383 | bool "kodi-audiodecoder-opus package was removed" | |
2384 | select BR2_LEGACY | |
2385 | help | |
2386 | This package is incompatible with Kodi 18.x. | |
2387 | ||
46221537 RN |
2388 | config BR2_PACKAGE_MESA3D_OSMESA |
2389 | bool "mesa OSMesa option renamed" | |
c16f3e47 | 2390 | select BR2_PACKAGE_MESA3D_OSMESA_CLASSIC if BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST |
46221537 RN |
2391 | select BR2_LEGACY |
2392 | help | |
2393 | The option was renamed in order to match the naming used | |
2394 | by the meson buildsystem. | |
2395 | ||
b35ac6fa AM |
2396 | config BR2_PACKAGE_HOSTAPD_DRIVER_RTW |
2397 | bool "hostapd rtl871xdrv driver removed" | |
2398 | select BR2_LEGACY | |
2399 | help | |
2400 | Since the update of hostapd to 2.9, the patch provided for | |
2401 | the rtl871xdrv no longer works, although it | |
2402 | applies. Moreover, AP support for Realtek chips is broken | |
2403 | anyway in kernels > 4.9. Therefore, this option has been | |
2404 | removed. | |
2405 | ||
f2ffdbee BK |
2406 | config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW |
2407 | bool "new dbus support option in wpa_supplicant was renamed" | |
2408 | select BR2_PACKAGE_WPA_SUPPLICANT_DBUS if BR2_TOOLCHAIN_HAS_THREADS | |
2409 | select BR2_LEGACY | |
2410 | help | |
2411 | The new dbus support option was renamed. | |
2412 | ||
2413 | config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD | |
2414 | bool "old dbus support in wpa_supplicant was removed" | |
2415 | select BR2_LEGACY | |
2416 | help | |
2417 | The old dbus support was removed. | |
2418 | ||
7680f9ea RN |
2419 | comment "Legacy options removed in 2019.08" |
2420 | ||
aba1d2dc TP |
2421 | config BR2_TARGET_TS4800_MBRBOOT |
2422 | bool "ts4800-mbrboot package was removed" | |
2423 | select BR2_LEGACY | |
2424 | help | |
2425 | The defconfig for the TS4800 platform has been removed, so | |
2426 | the ts4800-mbrboot package, containing the boot code for | |
2427 | this specific platform has been removed as welL. | |
2428 | ||
d7e3f6da BK |
2429 | config BR2_PACKAGE_LIBAMCODEC |
2430 | bool "liamcodec package was removed" | |
2431 | select BR2_LEGACY | |
2432 | help | |
2433 | Support for odroidc2 based systems was removed, making the | |
2434 | libamcodec package useless. | |
2435 | ||
7d18f299 BK |
2436 | config BR2_PACKAGE_ODROID_SCRIPTS |
2437 | bool "odroid-scripts package was removed" | |
2438 | select BR2_LEGACY | |
2439 | help | |
2440 | Support for odroidc2 based systems was removed, making the | |
2441 | odroid-scripts package useless. | |
2442 | ||
336a47da BK |
2443 | config BR2_PACKAGE_ODROID_MALI |
2444 | bool "odroid-mali package was removed" | |
2445 | select BR2_LEGACY | |
2446 | help | |
2447 | Support for odroidc2 based systems was removed, making the | |
2448 | odroid-mali package useless. | |
2449 | ||
5a53cce3 BK |
2450 | config BR2_PACKAGE_KODI_PLATFORM_AML |
2451 | bool "Kodi AMLogic support was removed" | |
2452 | select BR2_LEGACY | |
2453 | help | |
2454 | Support for AMLogic was removed due to the removal of the | |
2455 | odroidc2 defconfig. | |
2456 | ||
983361ab RN |
2457 | config BR2_GCC_VERSION_6_X |
2458 | bool "gcc 6.x support removed" | |
2459 | select BR2_LEGACY | |
2460 | help | |
2461 | Support for gcc version 6.x has been removed. The current | |
2462 | default version (8.x or later) has been selected instead. | |
2463 | ||
baf17750 RN |
2464 | config BR2_GCC_VERSION_4_9_X |
2465 | bool "gcc 4.9.x support removed" | |
2466 | select BR2_LEGACY | |
2467 | help | |
2468 | Support for gcc version 4.9.x has been removed. The current | |
2469 | default version (8.x or later) has been selected instead. | |
2470 | ||
d36f2c73 RN |
2471 | config BR2_GDB_VERSION_7_12 |
2472 | bool "gdb 7.12.x has been removed" | |
2473 | select BR2_LEGACY | |
2474 | help | |
2475 | The 7.12.x version of gdb has been removed. Use a newer | |
2476 | version instead. | |
2477 | ||
ff74bb88 BK |
2478 | config BR2_PACKAGE_XAPP_MKFONTDIR |
2479 | bool "mkfontdir is now included in xapp_mkfontscale" | |
2480 | select BR2_PACKAGE_XAPP_MKFONTSCALE | |
2481 | select BR2_LEGACY | |
2482 | help | |
2483 | xapp_mkfontscale now includes the mkfontdir script previously | |
2484 | distributed separately for compatibility with older X11 | |
2485 | versions. | |
2486 | ||
7680f9ea RN |
2487 | config BR2_GDB_VERSION_8_0 |
2488 | bool "gdb 8.0.x has been removed" | |
2489 | select BR2_LEGACY | |
2490 | help | |
2491 | The 8.0.x version of gdb has been removed. Use a newer | |
2492 | version instead. | |
2493 | ||
8f60d308 PK |
2494 | config BR2_KERNEL_HEADERS_4_20 |
2495 | bool "kernel headers version 4.20.x are no longer supported" | |
2496 | select BR2_LEGACY | |
2497 | help | |
2498 | Version 4.20.x of the Linux kernel headers are no longer | |
2499 | maintained upstream and are now removed. | |
2500 | ||
9e9a480a PK |
2501 | config BR2_KERNEL_HEADERS_5_0 |
2502 | bool "kernel headers version 5.0.x are no longer supported" | |
2503 | select BR2_LEGACY | |
2504 | help | |
2505 | Version 5.0.x of the Linux kernel headers are no longer | |
2506 | maintained upstream and are now removed. | |
2507 | ||
c8421565 FF |
2508 | comment "Legacy options removed in 2019.05" |
2509 | ||
55c64228 GR |
2510 | config BR2_CSKY_DSP |
2511 | bool "C-SKY DSP support removed" | |
2512 | select BR2_LEGACY | |
2513 | help | |
d6295b1d TP |
2514 | C-SKY DSP instruction support for ck810 / ck807 was removed, |
2515 | as it was no longer supported in C-SKY gcc. Perhaps the VDSP | |
2516 | instructions should be used instead, using the BR2_CSKY_VDSP | |
2517 | option. | |
55c64228 | 2518 | |
8efabd14 AD |
2519 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COMPOSITOR |
2520 | bool "compositor moved to gst1-plugins-base" | |
2521 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR | |
2522 | select BR2_LEGACY | |
2523 | help | |
2524 | The gst1-plugins-bad compositor plugin has moved | |
2525 | to gst1-plugins-base. | |
2526 | ||
2527 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA | |
8efabd14 | 2528 | bool "gst-plugins-bad IQA option was removed" |
950e081f | 2529 | select BR2_LEGACY |
8efabd14 AD |
2530 | help |
2531 | The gst1-plugins-bad IQA option was removed. | |
2532 | ||
2533 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV | |
2534 | bool "gst-plugins-bad opencv option was removed" | |
2535 | select BR2_LEGACY | |
2536 | help | |
2537 | The gst1-plugins-bad opencv option was removed because | |
2538 | buildroot does not have the opencv_contrib package which | |
2539 | is required for the bgsegm module which gst1-plugins-bad | |
2540 | now requires along with opencv3. | |
2541 | ||
2542 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_STEREO | |
2543 | bool "stereo was merged into audiofx in gst1-plugins-good" | |
2544 | select BR2_LEGACY | |
2545 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX | |
2546 | help | |
2547 | The gst1-plugins-bad stereo plugin has merged with the | |
2548 | gst1-plugins-base audiofx plugin. | |
2549 | ||
2550 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD | |
2551 | bool "gst-plugins-bad vcd plugin was removed." | |
2552 | select BR2_LEGACY | |
2553 | help | |
2554 | The gst1-plugins-bad vcd plugin was removed. | |
2555 | ||
1f33ec41 FP |
2556 | config BR2_PACKAGE_LUNIT |
2557 | bool "lunit package removed" | |
2558 | select BR2_LEGACY | |
2559 | select BR2_PACKAGE_LUA_LUNITX | |
2560 | help | |
2561 | The lunit package was removed in favor of its fork lunitx, | |
2562 | which supports all versions of Lua. | |
2563 | ||
93be7887 LPC |
2564 | config BR2_PACKAGE_FFMPEG_FFSERVER |
2565 | bool "ffmpeg ffserver removed" | |
2566 | select BR2_LEGACY | |
2567 | help | |
2568 | On July 10th, 2016, ffserver program has been dropped. | |
2569 | ||
b643a75b FP |
2570 | config BR2_PACKAGE_LIBUMP |
2571 | bool "libump package removed" | |
2572 | select BR2_LEGACY | |
2573 | help | |
2574 | The libump package was removed, it was only used as a | |
2575 | dependency of sunxi-mali, which itself was removed. | |
2576 | ||
732066a5 FP |
2577 | config BR2_PACKAGE_SUNXI_MALI |
2578 | bool "sunxi-mali package removed" | |
2579 | select BR2_LEGACY | |
6a7a652b | 2580 | select BR2_PACKAGE_SUNXI_MALI_UTGARD |
732066a5 FP |
2581 | help |
2582 | The sunxi-mali package was removed, as the | |
2583 | sunxi-mali-mainline package replaces it for mainline | |
2584 | kernels on Allwinner platforms. | |
2585 | ||
9a05759b RN |
2586 | config BR2_BINUTILS_VERSION_2_29_X |
2587 | bool "binutils version 2.29 support removed" | |
2588 | select BR2_LEGACY | |
2589 | help | |
2590 | Support for binutils version 2.29 has been removed. The | |
2591 | current default version (2.31 or later) has been selected | |
2592 | instead. | |
2593 | ||
dc5d9515 RN |
2594 | config BR2_BINUTILS_VERSION_2_28_X |
2595 | bool "binutils version 2.28 support removed" | |
2596 | select BR2_LEGACY | |
2597 | help | |
2598 | Support for binutils version 2.28 has been removed. The | |
2599 | current default version (2.31 or later) has been selected | |
2600 | instead. | |
2601 | ||
c8421565 FF |
2602 | config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK |
2603 | bool "gst-plugins-bad apexsink option removed" | |
2604 | select BR2_LEGACY | |
2605 | help | |
2606 | The gst-plugins-bad apexsink option was removed. | |
2607 | ||
297613f1 FP |
2608 | comment "Legacy options removed in 2019.02" |
2609 | ||
5a8bc808 PK |
2610 | config BR2_PACKAGE_QT |
2611 | bool "qt package removed" | |
2612 | select BR2_LEGACY | |
2613 | help | |
2614 | The qt package was removed. | |
2615 | ||
e228a9fe PK |
2616 | config BR2_PACKAGE_QTUIO |
2617 | bool "qtuio package removed" | |
2618 | select BR2_LEGACY | |
2619 | help | |
2620 | The qtuio package was removed. | |
2621 | ||
5de7c039 PK |
2622 | config BR2_PACKAGE_PINENTRY_QT4 |
2623 | bool "pinentry-qt4 option removed" | |
2624 | select BR2_LEGACY | |
2625 | help | |
2626 | The pinentry-qt4 option was removed. | |
2627 | ||
3f821fcc PK |
2628 | config BR2_PACKAGE_POPPLER_QT |
2629 | bool "poppler qt option removed" | |
2630 | select BR2_LEGACY | |
2631 | help | |
2632 | The poppler qt option was removed. | |
2633 | ||
3a3fdaeb PK |
2634 | config BR2_PACKAGE_OPENCV3_WITH_QT |
2635 | bool "opencv3 qt backend option removed" | |
2636 | select BR2_LEGACY | |
2637 | help | |
2638 | The opencv3 qt backend option was removed. | |
2639 | ||
882ab1c2 PK |
2640 | config BR2_PACKAGE_OPENCV_WITH_QT |
2641 | bool "opencv qt backend option removed" | |
2642 | select BR2_LEGACY | |
2643 | help | |
2644 | The opencv qt backend option was removed. | |
2645 | ||
ef842792 PK |
2646 | config BR2_PACKAGE_AMD_CATALYST_CCCLE |
2647 | bool "catalyst control center option removed" | |
2648 | select BR2_LEGACY | |
2649 | help | |
2650 | The AMD Catalyst Control Center option was removed. | |
2651 | ||
3a56bc5f PK |
2652 | config BR2_PACKAGE_SDL_QTOPIA |
2653 | bool "sdl qtopia video driver option removed" | |
2654 | select BR2_LEGACY | |
2655 | help | |
2656 | The SDL QTopia video driver option was removed. | |
2657 | ||
90bbfe58 PK |
2658 | config BR2_PACKAGE_PYTHON_PYQT |
2659 | bool "python-pyqt package removed" | |
2660 | select BR2_LEGACY | |
2661 | help | |
2662 | The python-pyqt package was removed. Consider python-pyqt5 | |
2663 | instead. | |
2664 | ||
e0d540bd PK |
2665 | config BR2_PACKAGE_LUACRYPTO |
2666 | bool "luacrypto package removed" | |
2667 | select BR2_LEGACY | |
2668 | help | |
2669 | The luacrypto package was removed. Consider luaossl instead. | |
2670 | ||
0478beaa PK |
2671 | config BR2_PACKAGE_TN5250 |
2672 | bool "tn5250 package removed" | |
2673 | select BR2_LEGACY | |
2674 | help | |
2675 | The tn5250 package was removed. | |
2676 | ||
428ed394 FF |
2677 | config BR2_PACKAGE_BOOST_SIGNALS |
2678 | bool "Boost signals removed" | |
2679 | select BR2_LEGACY | |
2680 | help | |
2681 | Its removal was announced in boost 1.68 and its deprecation | |
2682 | was announced in 1.54. Users are encouraged to use Signals2 | |
2683 | instead. | |
2684 | ||
7883e559 TP |
2685 | config BR2_PACKAGE_FFTW_PRECISION_SINGLE |
2686 | bool "single" | |
2687 | select BR2_LEGACY | |
2688 | select BR2_PACKAGE_FFTW_SINGLE | |
2689 | help | |
2690 | This option has been removed in favor of | |
2691 | BR2_PACKAGE_FFTW_SINGLE. | |
2692 | ||
2693 | config BR2_PACKAGE_FFTW_PRECISION_DOUBLE | |
2694 | bool "double" | |
2695 | select BR2_LEGACY | |
2696 | select BR2_PACKAGE_FFTW_DOUBLE | |
2697 | help | |
2698 | This option has been removed in favor of | |
2699 | BR2_PACKAGE_FFTW_DOUBLE. | |
2700 | ||
2701 | config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE | |
2702 | bool "long double" | |
2703 | depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \ | |
2704 | (BR2_arm || BR2_mips || BR2_mipsel)) | |
2705 | select BR2_LEGACY | |
2706 | select BR2_PACKAGE_FFTW_LONG_DOUBLE | |
2707 | help | |
2708 | This option has been removed in favor of | |
2709 | BR2_PACKAGE_FFTW_LONG_DOUBLE. | |
2710 | ||
2711 | config BR2_PACKAGE_FFTW_PRECISION_QUAD | |
2712 | bool "quad" | |
2713 | depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR | |
2714 | select BR2_LEGACY | |
2715 | select BR2_PACKAGE_FFTW_QUAD | |
2716 | help | |
2717 | This option has been removed in favor of | |
2718 | BR2_PACKAGE_FFTW_QUAD. | |
2719 | ||
297613f1 FP |
2720 | config BR2_PACKAGE_LUA_5_2 |
2721 | bool "Lua 5.2.x version removed" | |
2722 | select BR2_LEGACY | |
297613f1 FP |
2723 | help |
2724 | The Lua 5.2.x version was removed. | |
f461543d | 2725 | # Note: BR2_PACKAGE_LUA_5_2 is still referenced from package/lua/Config.in |
297613f1 | 2726 | |
bf362600 MW |
2727 | config BR2_TARGET_GENERIC_PASSWD_MD5 |
2728 | bool "target passwd md5 format support has been removed" | |
2729 | select BR2_LEGACY | |
2730 | help | |
2731 | The default has been moved to SHA256 and all C libraries | |
2732 | now support that method by default | |
2733 | ||
a2d44ec6 BK |
2734 | comment "Legacy options removed in 2018.11" |
2735 | ||
070b183d MW |
2736 | config BR2_TARGET_XLOADER |
2737 | bool "xloader has been removed" | |
2738 | select BR2_LEGACY | |
2739 | help | |
2740 | The package has been removed as u-boot SPL provides | |
2741 | similar functionality | |
2742 | ||
5e8790d5 MW |
2743 | config BR2_PACKAGE_TIDSP_BINARIES |
2744 | bool "tidsp-binaries package removed" | |
2745 | select BR2_LEGACY | |
2746 | help | |
2747 | The tidsp-binaries package was removed. | |
2748 | ||
e8eb7f5b MW |
2749 | config BR2_PACKAGE_DSP_TOOLS |
2750 | bool "dsp-tools package removed" | |
2751 | select BR2_LEGACY | |
2752 | help | |
2753 | The dsp-tools package was removed. | |
2754 | ||
91542907 MW |
2755 | config BR2_PACKAGE_GST_DSP |
2756 | bool "gst-dsp package removed" | |
2757 | select BR2_LEGACY | |
2758 | help | |
2759 | The gst-dsp package was removed. | |
2760 | ||
2c3c7c4f FF |
2761 | config BR2_PACKAGE_BOOTUTILS |
2762 | bool "bootutils package removed" | |
2763 | select BR2_LEGACY | |
2764 | help | |
2765 | The bootutils package was removed. | |
2766 | ||
addcc393 RN |
2767 | config BR2_PACKAGE_EXPEDITE |
2768 | bool "expedite package has been removed" | |
2769 | select BR2_LEGACY | |
2770 | help | |
2771 | expedite is not actively maintained anymore. | |
2772 | https://sourceforge.net/p/enlightenment/mailman/message/36428571 | |
2773 | ||
3d3235f9 BK |
2774 | config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT |
2775 | bool "mesa3d opengl texture float option removed" | |
2776 | select BR2_LEGACY | |
2777 | help | |
2778 | mesa3d now unconditionally enables floating-point textures, | |
2779 | as the corresponding patent has expired. | |
2780 | ||
a2d44ec6 BK |
2781 | config BR2_KERNEL_HEADERS_4_10 |
2782 | bool "kernel headers version 4.10.x are no longer supported" | |
a2d44ec6 BK |
2783 | select BR2_LEGACY |
2784 | help | |
2785 | Version 4.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2786 | maintained upstream and are now removed. |
a2d44ec6 BK |
2787 | |
2788 | config BR2_KERNEL_HEADERS_4_11 | |
2789 | bool "kernel headers version 4.11.x are no longer supported" | |
a2d44ec6 BK |
2790 | select BR2_LEGACY |
2791 | help | |
2792 | Version 4.11.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2793 | maintained upstream and are now removed. |
a2d44ec6 BK |
2794 | |
2795 | config BR2_KERNEL_HEADERS_4_12 | |
2796 | bool "kernel headers version 4.12.x are no longer supported" | |
a2d44ec6 BK |
2797 | select BR2_LEGACY |
2798 | help | |
2799 | Version 4.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2800 | maintained upstream and are now removed. |
a2d44ec6 BK |
2801 | |
2802 | config BR2_KERNEL_HEADERS_4_13 | |
2803 | bool "kernel headers version 4.13.x are no longer supported" | |
a2d44ec6 BK |
2804 | select BR2_LEGACY |
2805 | help | |
2806 | Version 4.13.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2807 | maintained upstream and are now removed. |
a2d44ec6 BK |
2808 | |
2809 | config BR2_KERNEL_HEADERS_4_15 | |
2810 | bool "kernel headers version 4.15.x are no longer supported" | |
a2d44ec6 BK |
2811 | select BR2_LEGACY |
2812 | help | |
2813 | Version 4.15.x of the Linux kernel headers are no longer | |
1b3c43f7 | 2814 | maintained upstream and are now removed. |
a2d44ec6 | 2815 | |
d220ce6d YM |
2816 | config BR2_KERNEL_HEADERS_4_17 |
2817 | bool "kernel headers version 4.17.x are no longer supported" | |
2818 | select BR2_LEGACY | |
2819 | help | |
2820 | Version 4.17.x of the Linux kernel headers are no longer | |
2821 | maintained upstream and are now removed. | |
2822 | ||
00d63a15 BS |
2823 | config BR2_PACKAGE_LIBNFTNL_XML |
2824 | bool "libnftl no longer supports XML output" | |
2825 | select BR2_LEGACY | |
2826 | help | |
2827 | libnftnl removed integration with libmxml. | |
2828 | ||
ebee2c64 PK |
2829 | config BR2_KERNEL_HEADERS_3_2 |
2830 | bool "kernel headers version 3.2.x are no longer supported" | |
2831 | select BR2_LEGACY | |
2832 | help | |
2833 | Version 3.2.x of the Linux kernel headers are no longer | |
2834 | maintained upstream and are now removed. | |
2835 | ||
2836 | config BR2_KERNEL_HEADERS_4_1 | |
2837 | bool "kernel headers version 4.1.x are no longer supported" | |
2838 | select BR2_LEGACY | |
2839 | help | |
2840 | Version 4.1.x of the Linux kernel headers are no longer | |
2841 | maintained upstream and are now removed. | |
2842 | ||
2843 | config BR2_KERNEL_HEADERS_4_16 | |
2844 | bool "kernel headers version 4.16.x are no longer supported" | |
2845 | select BR2_LEGACY | |
2846 | help | |
2847 | Version 4.16.x of the Linux kernel headers are no longer | |
2848 | maintained upstream and are now removed. | |
2849 | ||
2850 | config BR2_KERNEL_HEADERS_4_18 | |
2851 | bool "kernel headers version 4.18.x are no longer supported" | |
2852 | select BR2_LEGACY | |
2853 | help | |
2854 | Version 4.18.x of the Linux kernel headers are no longer | |
2855 | maintained upstream and are now removed. | |
2856 | ||
54a2e7a3 RN |
2857 | ############################################################################### |
2858 | comment "Legacy options removed in 2018.08" | |
2859 | ||
de336584 CS |
2860 | config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT |
2861 | bool "docker-engine static client option renamed" | |
2862 | select BR2_LEGACY | |
2863 | select BR2_PACKAGE_DOCKER_CLI_STATIC | |
2864 | help | |
2865 | BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to | |
2866 | BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of | |
2867 | docker-engine and docker-cli. | |
2868 | ||
14c52533 BK |
2869 | config BR2_PACKAGE_XPROTO_APPLEWMPROTO |
2870 | bool "xproto-applewmproto package replaced by xorgproto" | |
2871 | select BR2_LEGACY | |
2872 | select BR2_PACKAGE_XORGPROTO | |
2873 | help | |
2874 | The xproto-applewmproto package has been replaced by the | |
2875 | xorgproto package, which combines all xproto_* packages. | |
2876 | ||
2877 | config BR2_PACKAGE_XPROTO_BIGREQSPROTO | |
2878 | bool "xproto-bigreqsproto package replaced by xorgproto" | |
2879 | select BR2_LEGACY | |
2880 | select BR2_PACKAGE_XORGPROTO | |
2881 | help | |
2882 | The xproto-bigreqsproto package has been replaced by the | |
2883 | xorgproto package, which combines all xproto_* packages. | |
2884 | ||
2885 | config BR2_PACKAGE_XPROTO_COMPOSITEPROTO | |
2886 | bool "xproto-compositeproto package replaced by xorgproto" | |
2887 | select BR2_LEGACY | |
2888 | select BR2_PACKAGE_XORGPROTO | |
2889 | help | |
2890 | The xproto-compositeproto package has been replaced by the | |
2891 | xorgproto package, which combines all xproto_* packages. | |
2892 | ||
2893 | config BR2_PACKAGE_XPROTO_DAMAGEPROTO | |
2894 | bool "xproto-dameproto package replaced by xorgproto" | |
2895 | select BR2_LEGACY | |
2896 | select BR2_PACKAGE_XORGPROTO | |
2897 | help | |
2898 | The xproto-dameproto package has been replaced by the | |
2899 | xorgproto package, which combines all xproto_* packages. | |
2900 | ||
2901 | config BR2_PACKAGE_XPROTO_DMXPROTO | |
2902 | bool "xproto-dmxproto package replaced by xorgproto" | |
2903 | select BR2_LEGACY | |
2904 | select BR2_PACKAGE_XORGPROTO | |
2905 | help | |
2906 | The xproto-dmxproto package has been replaced by the | |
2907 | xorgproto package, which combines all xproto_* packages. | |
2908 | ||
2909 | config BR2_PACKAGE_XPROTO_DRI2PROTO | |
2910 | bool "xproto-dri2proto package replaced by xorgproto" | |
2911 | select BR2_LEGACY | |
2912 | select BR2_PACKAGE_XORGPROTO | |
2913 | help | |
2914 | The xproto-dri2proto package has been replaced by the | |
2915 | xorgproto package, which combines all xproto_* packages. | |
2916 | ||
2917 | config BR2_PACKAGE_XPROTO_DRI3PROTO | |
2918 | bool "xproto-dri3proto package replaced by xorgproto" | |
2919 | select BR2_LEGACY | |
2920 | select BR2_PACKAGE_XORGPROTO | |
2921 | help | |
2922 | The xproto-dri3proto package has been replaced by the | |
2923 | xorgproto package, which combines all xproto_* packages. | |
2924 | ||
2925 | config BR2_PACKAGE_XPROTO_FIXESPROTO | |
2926 | bool "xproto-fixesproto package replaced by xorgproto" | |
2927 | select BR2_LEGACY | |
2928 | select BR2_PACKAGE_XORGPROTO | |
2929 | help | |
2930 | The xproto-fixesproto package has been replaced by the | |
2931 | xorgproto package, which combines all xproto_* packages. | |
2932 | ||
2933 | config BR2_PACKAGE_XPROTO_FONTCACHEPROTO | |
2934 | bool "xproto-fontcacheproto package replaced by xorgproto" | |
2935 | select BR2_LEGACY | |
2936 | select BR2_PACKAGE_XORGPROTO | |
2937 | help | |
2938 | The xproto-fontcacheproto package has been replaced by the | |
2939 | xorgproto package, which combines all xproto_* packages. | |
2940 | ||
2941 | config BR2_PACKAGE_XPROTO_FONTSPROTO | |
2942 | bool "xproto-fontsproto package replaced by xorgproto" | |
2943 | select BR2_LEGACY | |
2944 | select BR2_PACKAGE_XORGPROTO | |
2945 | help | |
2946 | The xproto-fontsproto package has been replaced by the | |
2947 | xorgproto package, which combines all xproto_* packages. | |
2948 | ||
2949 | config BR2_PACKAGE_XPROTO_GLPROTO | |
2950 | bool "xproto-glproto package replaced by xorgproto" | |
2951 | select BR2_LEGACY | |
2952 | select BR2_PACKAGE_XORGPROTO | |
2953 | help | |
2954 | The xproto-glproto package has been replaced by the | |
2955 | xorgproto package, which combines all xproto_* packages. | |
2956 | ||
2957 | config BR2_PACKAGE_XPROTO_INPUTPROTO | |
2958 | bool "xproto-inputproto package replaced by xorgproto" | |
2959 | select BR2_LEGACY | |
2960 | select BR2_PACKAGE_XORGPROTO | |
2961 | help | |
2962 | The xproto-inputproto package has been replaced by the | |
2963 | xorgproto package, which combines all xproto_* packages. | |
2964 | ||
2965 | config BR2_PACKAGE_XPROTO_KBPROTO | |
2966 | bool "xproto-kbproto package replaced by xorgproto" | |
2967 | select BR2_LEGACY | |
2968 | select BR2_PACKAGE_XORGPROTO | |
2969 | help | |
2970 | The xproto-kbproto package has been replaced by the | |
2971 | xorgproto package, which combines all xproto_* packages. | |
2972 | ||
2973 | config BR2_PACKAGE_XPROTO_PRESENTPROTO | |
2974 | bool "xproto-presentproto package replaced by xorgproto" | |
2975 | select BR2_LEGACY | |
2976 | select BR2_PACKAGE_XORGPROTO | |
2977 | help | |
2978 | The xproto-presentproto package has been replaced by the | |
2979 | xorgproto package, which combines all xproto_* packages. | |
2980 | ||
2981 | config BR2_PACKAGE_XPROTO_RANDRPROTO | |
2982 | bool "xproto-randrproto package replaced by xorgproto" | |
2983 | select BR2_LEGACY | |
2984 | select BR2_PACKAGE_XORGPROTO | |
2985 | help | |
2986 | The xproto-randrproto package has been replaced by the | |
2987 | xorgproto package, which combines all xproto_* packages. | |
2988 | ||
2989 | config BR2_PACKAGE_XPROTO_RECORDPROTO | |
2990 | bool "xproto-recordproto package replaced by xorgproto" | |
2991 | select BR2_LEGACY | |
2992 | select BR2_PACKAGE_XORGPROTO | |
2993 | help | |
2994 | The xproto-recordproto package has been replaced by the | |
2995 | xorgproto package, which combines all xproto_* packages. | |
2996 | ||
2997 | config BR2_PACKAGE_XPROTO_RENDERPROTO | |
2998 | bool "xproto-renderproto package replaced by xorgproto" | |
2999 | select BR2_LEGACY | |
3000 | select BR2_PACKAGE_XORGPROTO | |
3001 | help | |
3002 | The xproto-renderproto package has been replaced by the | |
3003 | xorgproto package, which combines all xproto_* packages. | |
3004 | ||
3005 | config BR2_PACKAGE_XPROTO_RESOURCEPROTO | |
3006 | bool "xproto-resourceproto package replaced by xorgproto" | |
3007 | select BR2_LEGACY | |
3008 | select BR2_PACKAGE_XORGPROTO | |
3009 | help | |
3010 | The xproto-resourceproto package has been replaced by the | |
3011 | xorgproto package, which combines all xproto_* packages. | |
3012 | ||
3013 | config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO | |
3014 | bool "xproto-scrnsaverprot package replaced by xorgproto" | |
3015 | select BR2_LEGACY | |
3016 | select BR2_PACKAGE_XORGPROTO | |
3017 | help | |
3018 | The xproto-scrnsaverprot package has been replaced by the | |
3019 | xorgproto package, which combines all xproto_* packages. | |
3020 | ||
3021 | config BR2_PACKAGE_XPROTO_VIDEOPROTO | |
3022 | bool "xproto-videoproto package replaced by xorgproto" | |
3023 | select BR2_LEGACY | |
3024 | select BR2_PACKAGE_XORGPROTO | |
3025 | help | |
3026 | The xproto-videoproto package has been replaced by the | |
3027 | xorgproto package, which combines all xproto_* packages. | |
3028 | ||
3029 | config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO | |
3030 | bool "xproto-windowswmproto package replaced by xorgproto" | |
3031 | select BR2_LEGACY | |
3032 | select BR2_PACKAGE_XORGPROTO | |
3033 | help | |
3034 | The xproto-windowswmproto package has been replaced by the | |
3035 | xorgproto package, which combines all xproto_* packages. | |
3036 | ||
3037 | config BR2_PACKAGE_XPROTO_XCMISCPROTO | |
3038 | bool "xproto-xcmiscproto package replaced by xorgproto" | |
3039 | select BR2_LEGACY | |
3040 | select BR2_PACKAGE_XORGPROTO | |
3041 | help | |
3042 | The xproto-xcmiscproto package has been replaced by the | |
3043 | xorgproto package, which combines all xproto_* packages. | |
3044 | ||
3045 | config BR2_PACKAGE_XPROTO_XEXTPROTO | |
3046 | bool "xproto-xextproto package replaced by xorgproto" | |
3047 | select BR2_LEGACY | |
3048 | select BR2_PACKAGE_XORGPROTO | |
3049 | help | |
3050 | The xproto-xextproto package has been replaced by the | |
3051 | xorgproto package, which combines all xproto_* packages. | |
3052 | ||
3053 | config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO | |
3054 | bool "xproto-xf86bigfontproto package replaced by xorgproto" | |
3055 | select BR2_LEGACY | |
3056 | select BR2_PACKAGE_XORGPROTO | |
3057 | help | |
3058 | The xproto-xf86bigfontproto package has been replaced by the | |
3059 | xorgproto package, which combines all xproto_* packages. | |
3060 | ||
3061 | config BR2_PACKAGE_XPROTO_XF86DGAPROTO | |
3062 | bool "xproto-xf86dgaproto package replaced by xorgproto" | |
3063 | select BR2_LEGACY | |
3064 | select BR2_PACKAGE_XORGPROTO | |
3065 | help | |
3066 | The xproto-xf86dgaproto package has been replaced by the | |
3067 | xorgproto package, which combines all xproto_* packages. | |
3068 | ||
3069 | config BR2_PACKAGE_XPROTO_XF86DRIPROTO | |
3070 | bool "xproto-xf86driproto package replaced by xorgproto" | |
3071 | select BR2_LEGACY | |
3072 | select BR2_PACKAGE_XORGPROTO | |
3073 | help | |
3074 | The xproto-xf86driproto package has been replaced by the | |
3075 | xorgproto package, which combines all xproto_* packages. | |
3076 | ||
3077 | config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO | |
3078 | bool "xproto-xf86vidmodeproto package replaced by xorgproto" | |
3079 | select BR2_LEGACY | |
3080 | select BR2_PACKAGE_XORGPROTO | |
3081 | help | |
3082 | The xproto-xf86vidmodeproto package has been replaced by the | |
3083 | xorgproto package, which combines all xproto_* packages. | |
3084 | ||
3085 | config BR2_PACKAGE_XPROTO_XINERAMAPROTO | |
3086 | bool "xproto-xineramaproto package replaced by xorgproto" | |
3087 | select BR2_LEGACY | |
3088 | select BR2_PACKAGE_XORGPROTO | |
3089 | help | |
3090 | The xproto-xineramaproto package has been replaced by the | |
3091 | xorgproto package, which combines all xproto_* packages. | |
3092 | ||
3093 | config BR2_PACKAGE_XPROTO_XPROTO | |
3094 | bool "xproto-xproto package replaced by xorgproto" | |
3095 | select BR2_LEGACY | |
3096 | select BR2_PACKAGE_XORGPROTO | |
3097 | help | |
3098 | The xproto-xproto package has been replaced by the | |
3099 | xorgproto package, which combines all xproto_* packages. | |
3100 | ||
3101 | config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL | |
3102 | bool "xproto-xproxymanagementprotocol package replaced by xorgproto" | |
3103 | select BR2_LEGACY | |
3104 | select BR2_PACKAGE_XORGPROTO | |
3105 | help | |
3106 | The xproto-xproxymanagementprotocol package has been | |
3107 | replaced by the xorgproto package, which combines all | |
3108 | xproto_* packages. | |
3109 | ||
3f2aef56 AD |
3110 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL |
3111 | bool "gst1-plugins-bad opengl option moved to gst1-plugins-base" | |
3112 | select BR2_LEGACY | |
3113 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL | |
3114 | help | |
3115 | The opengl option has been moved from gst1-plugins-bad to | |
3116 | gst1-plugins-base. | |
3117 | ||
3118 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2 | |
3119 | bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base" | |
3120 | select BR2_LEGACY | |
3121 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2 | |
3122 | help | |
3123 | The gles2 option has been moved from gst1-plugins-bad to | |
3124 | gst1-plugins-base. | |
3125 | ||
3126 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX | |
3127 | bool "gst1-plugins-bad glx option moved to gst1-plugins-base" | |
3128 | select BR2_LEGACY | |
3129 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX | |
3130 | help | |
3131 | The glx option has been moved from gst1-plugins-bad to | |
3132 | gst1-plugins-base. | |
3133 | ||
3134 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL | |
3135 | bool "gst1-plugins-bad egl option moved to gst1-plugins-base" | |
3136 | select BR2_LEGACY | |
3137 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL | |
3138 | help | |
3139 | The egl option has been moved from gst1-plugins-bad to | |
3140 | gst1-plugins-base. | |
3141 | ||
3142 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11 | |
3143 | bool "gst1-plugins-bad x11 option moved to gst1-plugins-base" | |
3144 | select BR2_LEGACY | |
3145 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11 | |
3146 | help | |
3147 | The x11 option has been moved from gst1-plugins-bad to | |
3148 | gst1-plugins-base. | |
3149 | ||
3150 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND | |
3151 | bool "gst1-plugins-bad wayland option moved to gst1-plugins-base" | |
3152 | select BR2_LEGACY | |
3153 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND | |
3154 | help | |
3155 | The wayland option has been moved from gst1-plugins-bad to | |
3156 | gst1-plugins-base. | |
3157 | ||
3158 | config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX | |
3159 | bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base" | |
3160 | select BR2_LEGACY | |
3161 | select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX | |
3162 | help | |
3163 | The dispmanx option has been moved from gst1-plugins-mad to | |
3164 | gst1-plugins-base. | |
3165 | ||
3166 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
3167 | bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base" | |
3168 | select BR2_LEGACY | |
3169 | select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER | |
3170 | help | |
3171 | The audiomixer option has been moved from gst1-plugins-bad to | |
3172 | gst1-plugins-base. | |
3173 | ||
3174 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME | |
3175 | bool "gst1-plugins-ugly lame option moved to gst1-plugins-good" | |
3176 | select BR2_LEGACY | |
3177 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME | |
3178 | help | |
3179 | The lame option has been moved from gst1-plugins-ugly to | |
3180 | gst1-plugins-good. | |
3181 | ||
3182 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123 | |
3183 | bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good" | |
3184 | select BR2_LEGACY | |
3185 | select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123 | |
3186 | help | |
3187 | The mpg123 option has been moved from gst1-plugins-ugly to | |
3188 | gst1-plugins-good. | |
3189 | ||
bae35c80 RN |
3190 | config BR2_GDB_VERSION_7_11 |
3191 | bool "gdb 7.11 has been removed" | |
3192 | select BR2_LEGACY | |
3193 | help | |
3194 | The 7.11 version of gdb has been removed. Use a newer version | |
3195 | instead. | |
3196 | ||
54a2e7a3 RN |
3197 | config BR2_GDB_VERSION_7_10 |
3198 | bool "gdb 7.10 has been removed" | |
3199 | select BR2_LEGACY | |
3200 | help | |
3201 | The 7.10 version of gdb has been removed. Use a newer version | |
3202 | instead. | |
3203 | ||
86dfb429 | 3204 | ############################################################################### |
9657e964 BK |
3205 | comment "Legacy options removed in 2018.05" |
3206 | ||
8553b398 PV |
3207 | config BR2_PACKAGE_MEDIAART_BACKEND_NONE |
3208 | bool "libmediaart none backend option renamed" | |
3209 | select BR2_LEGACY | |
3210 | help | |
3211 | For consistency reasons, the option | |
3212 | BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to | |
3213 | BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE | |
3214 | ||
3215 | config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF | |
3216 | bool "libmediaart gdk-pixbuf backend option renamed" | |
3217 | select BR2_LEGACY | |
3218 | help | |
3219 | For consistency reasons, the option | |
3220 | BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to | |
3221 | BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF | |
3222 | ||
316e1496 | 3223 | config BR2_PACKAGE_MEDIAART_BACKEND_QT |
8553b398 PV |
3224 | bool "libmediaart qt backend option renamed" |
3225 | select BR2_LEGACY | |
3226 | help | |
3227 | For consistency reasons, the option | |
3228 | BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to | |
3229 | BR2_PACKAGE_LIBMEDIAART_BACKEND_QT | |
3230 | ||
b54c5464 | 3231 | config BR2_PACKAGE_TI_SGX_AM335X |
b2661fe6 | 3232 | bool "ti-sgx-km AM335X option removed" |
b54c5464 | 3233 | select BR2_LEGACY |
b2661fe6 | 3234 | select BR2_PACKAGE_TI_SGX_KM |
b54c5464 | 3235 | help |
b2661fe6 RM |
3236 | Starting from buildroot release 2020.02, the buildroot package |
3237 | only supports the target am335x. | |
b54c5464 TP |
3238 | |
3239 | config BR2_PACKAGE_TI_SGX_AM437X | |
b2661fe6 | 3240 | bool "ti-sgx-km AM437X option removed" |
b54c5464 TP |
3241 | select BR2_LEGACY |
3242 | help | |
b2661fe6 RM |
3243 | Starting from buildroot release 2020.02, the buildroot package |
3244 | only supports the target am335x. | |
b54c5464 TP |
3245 | |
3246 | config BR2_PACKAGE_TI_SGX_AM4430 | |
b2661fe6 | 3247 | bool "ti-sgx-km AM4430 option removed" |
b54c5464 TP |
3248 | select BR2_LEGACY |
3249 | help | |
b2661fe6 RM |
3250 | Starting from buildroot release 2020.02, the buildroot package |
3251 | only supports the target am335x. | |
b54c5464 TP |
3252 | |
3253 | config BR2_PACKAGE_TI_SGX_AM5430 | |
b2661fe6 | 3254 | bool "ti-sgx-km AM5430 option removed" |
b54c5464 TP |
3255 | select BR2_LEGACY |
3256 | help | |
b2661fe6 RM |
3257 | Starting from buildroot release 2020.02, the buildroot package |
3258 | only supports the target am335x. | |
b54c5464 | 3259 | |
a79df201 TP |
3260 | config BR2_PACKAGE_JANUS_AUDIO_BRIDGE |
3261 | bool "janus-gateway audio-bridge option renamed" | |
3262 | select BR2_LEGACY | |
3263 | select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE | |
3264 | help | |
3265 | For consistency reasons, the janus-gateway option | |
3266 | BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to | |
3267 | BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE. | |
3268 | ||
3269 | config BR2_PACKAGE_JANUS_ECHO_TEST | |
3270 | bool "janus-gateway echo-test option renamed" | |
3271 | select BR2_LEGACY | |
3272 | select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST | |
3273 | help | |
3274 | For consistency reasons, the janus-gateway option | |
3275 | BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to | |
3276 | BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST. | |
3277 | ||
3278 | config BR2_PACKAGE_JANUS_RECORDPLAY | |
3279 | bool "janus-gateway recordplay option renamed" | |
3280 | select BR2_LEGACY | |
3281 | select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY | |
3282 | help | |
3283 | For consistency reasons, the janus-gateway option | |
3284 | BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to | |
3285 | BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY. | |
3286 | ||
3287 | config BR2_PACKAGE_JANUS_SIP_GATEWAY | |
3288 | bool "janus-gateway sip-gateway option renamed" | |
3289 | select BR2_LEGACY | |
3290 | select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY | |
3291 | help | |
3292 | For consistency reasons, the janus-gateway option | |
3293 | BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to | |
3294 | BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY. | |
3295 | ||
3296 | config BR2_PACKAGE_JANUS_STREAMING | |
3297 | bool "janus-gateway streaming option renamed" | |
3298 | select BR2_LEGACY | |
3299 | select BR2_PACKAGE_JANUS_GATEWAY_STREAMING | |
3300 | help | |
3301 | For consistency reasons, the janus-gateway option | |
3302 | BR2_PACKAGE_JANUS_STREAMING has been renamed to | |
3303 | BR2_PACKAGE_JANUS_GATEWAY_STREAMING. | |
3304 | ||
3305 | config BR2_PACKAGE_JANUS_TEXT_ROOM | |
3306 | bool "janus-gateway text-room option renamed" | |
3307 | select BR2_LEGACY | |
3308 | select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM | |
3309 | help | |
3310 | For consistency reasons, the janus-gateway option | |
3311 | BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to | |
3312 | BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM. | |
3313 | ||
3314 | config BR2_PACKAGE_JANUS_VIDEO_CALL | |
3315 | bool "janus-gateway video-call option renamed" | |
3316 | select BR2_LEGACY | |
3317 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL | |
3318 | help | |
3319 | For consistency reasons, the janus-gateway option | |
3320 | BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to | |
3321 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL. | |
3322 | ||
3323 | config BR2_PACKAGE_JANUS_VIDEO_ROOM | |
3324 | bool "janus-gateway video-room option renamed" | |
3325 | select BR2_LEGACY | |
3326 | select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM | |
3327 | help | |
3328 | For consistency reasons, the janus-gateway option | |
3329 | BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to | |
3330 | BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM. | |
3331 | ||
3332 | config BR2_PACKAGE_JANUS_MQTT | |
3333 | bool "janus-gateway mqtt option renamed" | |
3334 | select BR2_LEGACY | |
3335 | select BR2_PACKAGE_JANUS_GATEWAY_MQTT | |
3336 | help | |
3337 | For consistency reasons, the janus-gateway option | |
3338 | BR2_PACKAGE_JANUS_MQTT has been renamed to | |
3339 | BR2_PACKAGE_JANUS_GATEWAY_MQTT. | |
3340 | ||
3341 | config BR2_PACKAGE_JANUS_RABBITMQ | |
3342 | bool "janus-gateway rabbitmq option renamed" | |
3343 | select BR2_LEGACY | |
3344 | select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ | |
3345 | help | |
3346 | For consistency reasons, the janus-gateway option | |
3347 | BR2_PACKAGE_JANUS_RABBITMQ has been renamed to | |
3348 | BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ. | |
3349 | ||
3350 | config BR2_PACKAGE_JANUS_REST | |
3351 | bool "janus-gateway rest option renamed" | |
3352 | select BR2_LEGACY | |
3353 | select BR2_PACKAGE_JANUS_GATEWAY_REST | |
3354 | help | |
3355 | For consistency reasons, the janus-gateway option | |
3356 | BR2_PACKAGE_JANUS_REST has been renamed to | |
3357 | BR2_PACKAGE_JANUS_GATEWAY_REST. | |
3358 | ||
3359 | config BR2_PACKAGE_JANUS_UNIX_SOCKETS | |
3360 | bool "janus-gateway unix-sockets option renamed" | |
3361 | select BR2_LEGACY | |
3362 | select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS | |
3363 | help | |
3364 | For consistency reasons, the janus-gateway option | |
3365 | BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to | |
3366 | BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS. | |
3367 | ||
3368 | config BR2_PACKAGE_JANUS_WEBSOCKETS | |
3369 | bool "janus-gateway websockets option renamed" | |
3370 | select BR2_LEGACY | |
3371 | select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS | |
3372 | help | |
3373 | For consistency reasons, the janus-gateway option | |
3374 | BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to | |
3375 | BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS. | |
3376 | ||
9d2c5c25 TP |
3377 | config BR2_PACKAGE_IPSEC_SECCTX_DISABLE |
3378 | bool "ipsec-tools security context disable option renamed" | |
3379 | select BR2_LEGACY | |
3380 | help | |
3381 | For consistency reasons, the option | |
3382 | BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to | |
3383 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE. | |
3384 | ||
3385 | config BR2_PACKAGE_IPSEC_SECCTX_ENABLE | |
3386 | bool "ipsec-tools SELinux security context enable option renamed" | |
3387 | select BR2_LEGACY | |
3388 | help | |
3389 | For consistency reasons, the option | |
3390 | BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to | |
3391 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE. | |
3392 | ||
3393 | config BR2_PACKAGE_IPSEC_SECCTX_KERNEL | |
3394 | bool "ipsec-tools kernel security context enable option renamed" | |
3395 | select BR2_LEGACY | |
3396 | help | |
3397 | For consistency reasons, the option | |
3398 | BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to | |
3399 | BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL. | |
3400 | ||
dc4e4aac TP |
3401 | config BR2_PACKAGE_LIBTFDI_CPP |
3402 | bool "libftdi C++ bindings option renamed" | |
3403 | select BR2_LEGACY | |
3404 | select BR2_PACKAGE_LIBFTDI_CPP | |
3405 | help | |
3406 | The option BR2_PACKAGE_LIBTFDI_CPP was renamed to | |
3407 | BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option | |
3408 | name. | |
3409 | ||
94c14628 TP |
3410 | config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE |
3411 | bool "jquery-ui-themes option black-tie renamed" | |
3412 | select BR2_LEGACY | |
3413 | help | |
3414 | For consistency reasons, the jquery-ui-themes option for the | |
3415 | black-tie theme has been renamed from | |
3416 | BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to | |
3417 | BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE. | |
3418 | ||
3419 | config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER | |
3420 | bool "jquery-ui-themes option blitzer renamed" | |
3421 | select BR2_LEGACY | |
3422 | help | |
3423 | For consistency reasons, the jquery-ui-themes option for the | |
3424 | blitzer theme has been renamed from | |
3425 | BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to | |
3426 | BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER. | |
3427 | ||
3428 | config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO | |
3429 | bool "jquery-ui-themes option cupertino renamed" | |
3430 | select BR2_LEGACY | |
3431 | help | |
3432 | For consistency reasons, the jquery-ui-themes option for the | |
3433 | cupertino theme has been renamed from | |
3434 | BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to | |
3435 | BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO. | |
3436 | ||
3437 | config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE | |
3438 | bool "jquery-ui-themes option dark-hive renamed" | |
3439 | select BR2_LEGACY | |
3440 | help | |
3441 | For consistency reasons, the jquery-ui-themes option for the | |
3442 | dark-hive theme has been renamed from | |
3443 | BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to | |
3444 | BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE. | |
3445 | ||
3446 | config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV | |
3447 | bool "jquery-ui-themes option dot-luv renamed" | |
3448 | select BR2_LEGACY | |
3449 | help | |
3450 | For consistency reasons, the jquery-ui-themes option for the | |
3451 | dot-luv theme has been renamed from | |
3452 | BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to | |
3453 | BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV. | |
3454 | ||
3455 | config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT | |
3456 | bool "jquery-ui-themes option eggplant renamed" | |
3457 | select BR2_LEGACY | |
3458 | help | |
3459 | For consistency reasons, the jquery-ui-themes option for the | |
3460 | eggplant theme has been renamed from | |
3461 | BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to | |
3462 | BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT. | |
3463 | ||
3464 | config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE | |
3465 | bool "jquery-ui-themes option excite-bike renamed" | |
3466 | select BR2_LEGACY | |
3467 | help | |
3468 | For consistency reasons, the jquery-ui-themes option for the | |
3469 | excite-bike theme has been renamed from | |
3470 | BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to | |
3471 | BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE. | |
3472 | ||
3473 | config BR2_PACKAGE_JQUERY_UI_THEME_FLICK | |
3474 | bool "jquery-ui-themes option flick renamed" | |
3475 | select BR2_LEGACY | |
3476 | help | |
3477 | For consistency reasons, the jquery-ui-themes option for the | |
3478 | flick theme has been renamed from | |
3479 | BR2_PACKAGE_JQUERY_UI_THEME_FLICK to | |
3480 | BR2_PACKAGE_JQUERY_UI_THEMES_FLICK. | |
3481 | ||
3482 | config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS | |
3483 | bool "jquery-ui-themes option hot-sneaks renamed" | |
3484 | select BR2_LEGACY | |
3485 | help | |
3486 | For consistency reasons, the jquery-ui-themes option for the | |
3487 | hot-sneaks theme has been renamed from | |
3488 | BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to | |
3489 | BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS. | |
3490 | ||
3491 | config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY | |
3492 | bool "jquery-ui-themes option humanity renamed" | |
3493 | select BR2_LEGACY | |
3494 | help | |
3495 | For consistency reasons, the jquery-ui-themes option for the | |
3496 | humanity theme has been renamed from | |
3497 | BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to | |
3498 | BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY. | |
3499 | ||
3500 | config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG | |
3501 | bool "jquery-ui-themes option le-frog renamed" | |
3502 | select BR2_LEGACY | |
3503 | help | |
3504 | For consistency reasons, the jquery-ui-themes option for the | |
3505 | le-frog theme has been renamed from | |
3506 | BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to | |
3507 | BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG. | |
3508 | ||
3509 | config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC | |
3510 | bool "jquery-ui-themes option mint-choc renamed" | |
3511 | select BR2_LEGACY | |
3512 | help | |
3513 | For consistency reasons, the jquery-ui-themes option for the | |
3514 | mint-choc theme has been renamed from | |
3515 | BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to | |
3516 | BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC. | |
3517 | ||
3518 | config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST | |
3519 | bool "jquery-ui-themes option overcast renamed" | |
3520 | select BR2_LEGACY | |
3521 | help | |
3522 | For consistency reasons, the jquery-ui-themes option for the | |
3523 | overcast theme has been renamed from | |
3524 | BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to | |
3525 | BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST. | |
3526 | ||
3527 | config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER | |
3528 | bool "jquery-ui-themes option pepper-grinder renamed" | |
3529 | select BR2_LEGACY | |
3530 | help | |
3531 | For consistency reasons, the jquery-ui-themes option for the | |
3532 | pepper-grinder theme has been renamed from | |
3533 | BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to | |
3534 | BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER. | |
3535 | ||
3536 | config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND | |
3537 | bool "jquery-ui-themes option redmond renamed" | |
3538 | select BR2_LEGACY | |
3539 | help | |
3540 | For consistency reasons, the jquery-ui-themes option for the | |
3541 | redmond theme has been renamed from | |
3542 | BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to | |
3543 | BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND. | |
3544 | ||
3545 | config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS | |
3546 | bool "jquery-ui-themes option smoothness renamed" | |
3547 | select BR2_LEGACY | |
3548 | help | |
3549 | For consistency reasons, the jquery-ui-themes option for the | |
3550 | smoothness theme has been renamed from | |
3551 | BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to | |
3552 | BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS. | |
3553 | ||
3554 | config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET | |
3555 | bool "jquery-ui-themes option south-street renamed" | |
3556 | select BR2_LEGACY | |
3557 | help | |
3558 | For consistency reasons, the jquery-ui-themes option for the | |
3559 | south-street theme has been renamed from | |
3560 | BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to | |
3561 | BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET. | |
3562 | ||
3563 | config BR2_PACKAGE_JQUERY_UI_THEME_START | |
3564 | bool "jquery-ui-themes option start renamed" | |
3565 | select BR2_LEGACY | |
3566 | help | |
3567 | For consistency reasons, the jquery-ui-themes option for the | |
3568 | start theme has been renamed from | |
3569 | BR2_PACKAGE_JQUERY_UI_THEME_START to | |
3570 | BR2_PACKAGE_JQUERY_UI_THEMES_START. | |
3571 | ||
3572 | config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY | |
3573 | bool "jquery-ui-themes option sunny renamed" | |
3574 | select BR2_LEGACY | |
3575 | help | |
3576 | For consistency reasons, the jquery-ui-themes option for the | |
3577 | sunny theme has been renamed from | |
3578 | BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to | |
3579 | BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY. | |
3580 | ||
3581 | config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE | |
3582 | bool "jquery-ui-themes option swanky-purse renamed" | |
3583 | select BR2_LEGACY | |
3584 | help | |
3585 | For consistency reasons, the jquery-ui-themes option for the | |
3586 | swanky-purse theme has been renamed from | |
3587 | BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to | |
3588 | BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE. | |
3589 | ||
3590 | config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC | |
3591 | bool "jquery-ui-themes option trontastic renamed" | |
3592 | select BR2_LEGACY | |
3593 | help | |
3594 | For consistency reasons, the jquery-ui-themes option for the | |
3595 | trontastic theme has been renamed from | |
3596 | BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to | |
3597 | BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC. | |
3598 | ||
3599 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS | |
3600 | bool "jquery-ui-themes option ui-darkness renamed" | |
3601 | select BR2_LEGACY | |
3602 | help | |
3603 | For consistency reasons, the jquery-ui-themes option for the | |
3604 | ui-darkness theme has been renamed from | |
3605 | BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to | |
3606 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS. | |
3607 | ||
3608 | config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS | |
3609 | bool "jquery-ui-themes option ui-lightness renamed" | |
3610 | select BR2_LEGACY | |
3611 | help | |
3612 | For consistency reasons, the jquery-ui-themes option for the | |
3613 | ui-lightness theme has been renamed from | |
3614 | BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to | |
3615 | BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS. | |
3616 | ||
3617 | config BR2_PACKAGE_JQUERY_UI_THEME_VADER | |
3618 | bool "jquery-ui-themes option vader renamed" | |
3619 | select BR2_LEGACY | |
3620 | help | |
3621 | For consistency reasons, the jquery-ui-themes option for the | |
3622 | vader theme has been renamed from | |
3623 | BR2_PACKAGE_JQUERY_UI_THEME_VADER to | |
3624 | BR2_PACKAGE_JQUERY_UI_THEMES_VADER. | |
3625 | ||
b2b874fe TP |
3626 | config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH |
3627 | bool "bluez5-utils health plugin option renamed" | |
3628 | select BR2_LEGACY | |
3629 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH | |
3630 | help | |
3631 | For consistency reasons, the option | |
3632 | BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to | |
3633 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH. | |
3634 | ||
3635 | config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI | |
3636 | bool "bluez5-utils midi plugin option renamed" | |
3637 | select BR2_LEGACY | |
3638 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI | |
3639 | help | |
3640 | For consistency reasons, the option | |
3641 | BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to | |
3642 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI. | |
3643 | ||
3644 | config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC | |
3645 | bool "bluez5-utils nfc plugin option renamed" | |
3646 | select BR2_LEGACY | |
3647 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC | |
3648 | help | |
3649 | For consistency reasons, the option | |
3650 | BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to | |
3651 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC. | |
3652 | ||
3653 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP | |
3654 | bool "bluez5-utils sap plugin option renamed" | |
3655 | select BR2_LEGACY | |
3656 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP | |
3657 | help | |
3658 | For consistency reasons, the option | |
3659 | BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to | |
3660 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP. | |
3661 | ||
3662 | config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS | |
3663 | bool "bluez5-utils sixaxis plugin option renamed" | |
3664 | select BR2_LEGACY | |
3665 | select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS | |
3666 | help | |
3667 | For consistency reasons, the option | |
3668 | BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to | |
3669 | BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS. | |
3670 | ||
79a678d7 BK |
3671 | config BR2_PACKAGE_TRANSMISSION_REMOTE |
3672 | bool "transmission remote tool option removed" | |
3673 | select BR2_LEGACY | |
3674 | select BR2_PACKAGE_TRANSMISSION_DAEMON | |
3675 | help | |
3676 | Upstream does not provide a separate configure option for | |
3677 | the tool transmission-remote, it is built when the | |
3678 | transmission daemon has been enabled. Therefore, Buildroot | |
3679 | has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON | |
3680 | for you. | |
3681 | ||
f6421150 FF |
3682 | config BR2_PACKAGE_LIBKCAPI_APPS |
3683 | bool "libkcapi test applications removed" | |
3684 | select BR2_LEGACY | |
3685 | select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS | |
3686 | select BR2_PACKAGE_LIBKCAPI_RNGAPP | |
3687 | select BR2_PACKAGE_LIBKCAPI_SPEED | |
3688 | select BR2_PACKAGE_LIBKCAPI_TEST | |
3689 | help | |
3690 | Test applications (hasher, rng read, speed-test, test) now | |
3691 | have their own configuration options in the libkcapi menu. | |
3692 | ||
dacb1765 BK |
3693 | config BR2_PACKAGE_MPLAYER |
3694 | bool "mplayer package removed" | |
3695 | select BR2_LEGACY | |
3696 | help | |
3697 | The mplayer package was removed. | |
3698 | ||
3699 | config BR2_PACKAGE_MPLAYER_MPLAYER | |
3700 | bool "mplayer package removed" | |
3701 | select BR2_LEGACY | |
3702 | help | |
3703 | The mplayer package was removed. | |
3704 | ||
3705 | config BR2_PACKAGE_MPLAYER_MENCODER | |
3706 | bool "mplayer package removed" | |
3707 | select BR2_LEGACY | |
3708 | help | |
3709 | The mplayer package was removed. | |
3710 | ||
3f449119 BK |
3711 | config BR2_PACKAGE_LIBPLAYER_MPLAYER |
3712 | bool "mplayer support in libplayer removed" | |
3713 | select BR2_LEGACY | |
3714 | help | |
3715 | The mplayer package was removed. | |
3716 | ||
46444ba0 TP |
3717 | config BR2_PACKAGE_IQVLINUX |
3718 | bool "iqvlinux package removed" | |
3719 | select BR2_LEGACY | |
3720 | help | |
3721 | This package contained a kernel module from Intel, which | |
3722 | could only be used together with Intel userspace tools | |
3723 | provided under NDA, which also come with the same kernel | |
3724 | module. The copy of the kernel module available on | |
3725 | SourceForge is provided only to comply with the GPLv2 | |
3726 | requirement. Intel engineers were even surprised it even | |
3727 | built and were not willing to make any effort to fix their | |
3728 | tarball naming to contain a version number. Therefore, it | |
3729 | does not make sense for Buildroot to provide such a package. | |
3730 | ||
3731 | See https://sourceforge.net/p/e1000/bugs/589/ for the | |
3732 | discussion. | |
3733 | ||
e2ea4157 TP |
3734 | config BR2_BINFMT_FLAT_SEP_DATA |
3735 | bool "binfmt FLAT with separate code and data removed" | |
3736 | select BR2_LEGACY | |
3737 | help | |
3738 | This FLAT binary format was only used on Blackfin, which has | |
3739 | been removed. | |
3740 | ||
325bb379 TP |
3741 | config BR2_bfin |
3742 | bool "Blackfin architecture support removed" | |
3743 | select BR2_LEGACY | |
3744 | help | |
3745 | Following the removal of Blackfin support for the upstream | |
3746 | Linux kernel, Buildroot has removed support for this CPU | |
3747 | architecture. | |
3748 | ||
9657e964 BK |
3749 | config BR2_PACKAGE_KODI_ADSP_BASIC |
3750 | bool "kodi-adsp-basic package removed" | |
3751 | select BR2_LEGACY | |
3752 | help | |
3753 | kodi-adsp-basic is unmaintained | |
3754 | ||
3755 | config BR2_PACKAGE_KODI_ADSP_FREESURROUND | |
3756 | bool "kodi-adsp-freesurround package removed" | |
3757 | select BR2_LEGACY | |
3758 | help | |
3759 | kodi-adsp-freesurround is unmaintained | |
3760 | ||
3761 | ############################################################################### | |
86dfb429 BS |
3762 | comment "Legacy options removed in 2018.02" |
3763 | ||
2a9b7b8a PK |
3764 | config BR2_KERNEL_HEADERS_3_4 |
3765 | bool "kernel headers version 3.4.x are no longer supported" | |
2a9b7b8a PK |
3766 | select BR2_LEGACY |
3767 | help | |
3768 | Version 3.4.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3769 | maintained upstream and are now removed. |
2a9b7b8a PK |
3770 | |
3771 | config BR2_KERNEL_HEADERS_3_10 | |
3772 | bool "kernel headers version 3.10.x are no longer supported" | |
2a9b7b8a PK |
3773 | select BR2_LEGACY |
3774 | help | |
3775 | Version 3.10.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3776 | maintained upstream and are now removed. |
2a9b7b8a PK |
3777 | |
3778 | config BR2_KERNEL_HEADERS_3_12 | |
3779 | bool "kernel headers version 3.12.x are no longer supported" | |
2a9b7b8a PK |
3780 | select BR2_LEGACY |
3781 | help | |
3782 | Version 3.12.x of the Linux kernel headers are no longer | |
1b3c43f7 | 3783 | maintained upstream and are now removed. |
2a9b7b8a | 3784 | |
453d29f1 RN |
3785 | config BR2_BINUTILS_VERSION_2_27_X |
3786 | bool "binutils version 2.27 support removed" | |
3787 | select BR2_LEGACY | |
3788 | help | |
3789 | Support for binutils version 2.27 has been removed. The | |
3790 | current default version (2.29 or later) has been selected | |
3791 | instead. | |
3792 | ||
55d79ed9 BS |
3793 | config BR2_PACKAGE_EEPROG |
3794 | bool "eeprog package removed" | |
3795 | select BR2_LEGACY | |
3796 | select BR2_PACKAGE_I2C_TOOLS | |
3797 | select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS | |
3798 | help | |
3799 | The eeprog program is now provided by the i2c-tools package. | |
3800 | ||
86dfb429 BS |
3801 | config BR2_PACKAGE_GNUPG2_GPGV2 |
3802 | bool "gnupg2 gpgv2 option removed" | |
3803 | select BR2_LEGACY | |
3804 | select BR2_PACKAGE_GNUPG2_GPGV | |
3805 | help | |
3806 | The gpgv2 executable is now named gpgv. The config option | |
3807 | has been renamed accordingly. | |
3808 | ||
f7a7d948 GB |
3809 | config BR2_PACKAGE_IMX_GPU_VIV_APITRACE |
3810 | bool "Vivante apitrace tool option removed" | |
3811 | select BR2_LEGACY | |
3812 | help | |
3813 | The apitrace tool for Vivante is not provided by the | |
3814 | imx-gpu-viv package any longer. | |
3815 | ||
3816 | config BR2_PACKAGE_IMX_GPU_VIV_G2D | |
3817 | bool "Vivante G2D libraries from imx-gpu-viv removed" | |
3818 | select BR2_LEGACY | |
3819 | select BR2_PACKAGE_IMX_GPU_G2D | |
3820 | help | |
3821 | The G2D libraries are now provided by the imx-gpu-g2d package. | |
3822 | ||
f52af619 CS |
3823 | ############################################################################### |
3824 | comment "Legacy options removed in 2017.11" | |
3825 | ||
6c10e40d CS |
3826 | config BR2_PACKAGE_RFKILL |
3827 | bool "rfkill package removed" | |
3828 | select BR2_LEGACY | |
3829 | select BR2_PACKAGE_UTIL_LINUX | |
3830 | select BR2_PACKAGE_UTIL_LINUX_RFKILL | |
3831 | help | |
3832 | The rfkill program is now provided by the util-linux package. | |
3833 | ||
d4382005 CS |
3834 | config BR2_PACKAGE_UTIL_LINUX_RESET |
3835 | bool "util-linux reset option removed" | |
3836 | select BR2_LEGACY | |
3837 | help | |
3838 | The util-linux package no longer offers a "reset" command. Use | |
3839 | either the reset command provided by BusyBox or select ncurses | |
3840 | programs, which will install a symlink from "tset" to reset. | |
3841 | ||
9d6da7a2 AD |
3842 | config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW |
3843 | bool "policycoreutils audit2allow option removed" | |
3844 | select BR2_LEGACY | |
3845 | select BR2_PACKAGE_SELINUX_PYTHON | |
3846 | select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW | |
3847 | help | |
3848 | The policycoreutils package no longer offers audit2allow | |
3849 | as a option. This package has been moved into the | |
3850 | selinux-python package by the SELinux maintainers. | |
3851 | ||
3852 | config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND | |
3853 | bool "policycoreutils restorecond option removed" | |
3854 | select BR2_LEGACY | |
3855 | select BR2_PACKAGE_RESTORECOND | |
3856 | help | |
3857 | The policycoreutils package no longer offers restorecond | |
4092d2a3 | 3858 | as a option. This package has been moved into a separate |
9d6da7a2 AD |
3859 | package maintained by the SELinux maintainers. |
3860 | ||
3861 | config BR2_PACKAGE_SEPOLGEN | |
3862 | bool "sepolgen package has been removed" | |
3863 | select BR2_LEGACY | |
3864 | select BR2_PACKAGE_SELINUX_PYTHON | |
3865 | select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN | |
3866 | help | |
3867 | Sepolgen is no longer a individual package, but instead has | |
3868 | been moved into the selinux-python package by the SELinux | |
3869 | maintainers. | |
3870 | ||
49a9fb0f BK |
3871 | config BR2_PACKAGE_OPENOBEX_BLUEZ |
3872 | bool "openobex bluez option removed" | |
3873 | select BR2_LEGACY | |
3874 | select BR2_PACKAGE_BLUEZ_UTILS | |
3875 | help | |
3876 | The OpenOBEX package no longer offers an option to enable or | |
3877 | disable BlueZ support. Instead, BlueZ support is always | |
3878 | included when the bluez5_utils or bluez_utils package is | |
3879 | selected. | |
3880 | ||
3881 | config BR2_PACKAGE_OPENOBEX_LIBUSB | |
3882 | bool "openobex libusb option removed" | |
3883 | select BR2_LEGACY | |
3884 | select BR2_PACKAGE_LIBUSB | |
3885 | help | |
3886 | The OpenOBEX package no longer offers an option to enable or | |
3887 | disable libusb support. Instead, USB support is always | |
3888 | included when the libusb package is selected. | |
3889 | ||
3890 | config BR2_PACKAGE_OPENOBEX_APPS | |
3891 | bool "openobex apps option removed" | |
3892 | select BR2_LEGACY | |
3893 | help | |
3894 | The OpenOBEX package no longer offers an option to enable or | |
3895 | disable apps support. | |
3896 | ||
3897 | config BR2_PACKAGE_OPENOBEX_SYSLOG | |
3898 | bool "openobex syslog option removed" | |
3899 | select BR2_LEGACY | |
3900 | help | |
3901 | The OpenOBEX package no longer offers an option to enable or | |
3902 | disable syslog support. | |
3903 | ||
3904 | config BR2_PACKAGE_OPENOBEX_DUMP | |
3905 | bool "openobex dump option removed" | |
3906 | select BR2_LEGACY | |
3907 | help | |
3908 | The OpenOBEX package no longer offers an option to enable or | |
3909 | disable dump support. | |
3910 | ||
fca70389 AM |
3911 | config BR2_PACKAGE_AICCU |
3912 | bool "aiccu utility removed" | |
3913 | select BR2_LEGACY | |
3914 | help | |
3915 | As the SixXS project has ceased its operation on 2017-06-06, | |
3916 | the AICCU utility has no use anymore and has been removed. | |
3917 | ||
3918 | https://www.sixxs.net/sunset/ | |
3919 | ||
f52af619 CS |
3920 | config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS |
3921 | bool "util-linux login utilities option removed" | |
3922 | select BR2_LEGACY | |
3923 | select BR2_PACKAGE_UTIL_LINUX_LAST | |
3924 | select BR2_PACKAGE_UTIL_LINUX_LOGIN | |
3925 | select BR2_PACKAGE_UTIL_LINUX_RUNUSER | |
3926 | select BR2_PACKAGE_UTIL_LINUX_SU | |
3927 | select BR2_PACKAGE_UTIL_LINUX_SULOGIN | |
3928 | help | |
3929 | Login utilities (last, login, runuser, su, sulogin) now have | |
3930 | their own configuration options in the util-linux menu. | |
3931 | ||
f6695219 RN |
3932 | ############################################################################### |
3933 | comment "Legacy options removed in 2017.08" | |
3934 | ||
144dc9ca YM |
3935 | config BR2_TARGET_GRUB |
3936 | bool "grub (aka grub-legacy) has been removed" | |
3937 | select BR2_LEGACY | |
3938 | help | |
3939 | grub-legacy is no longer maintained, and no longer builds with | |
3940 | recent binutils versions. | |
3941 | ||
3942 | Use grub2 or syslinux instead. | |
3943 | ||
20db0989 BM |
3944 | config BR2_PACKAGE_SIMICSFS |
3945 | bool "simicsfs support removed" | |
3946 | select BR2_LEGACY | |
3947 | help | |
3948 | Support for simicsfs kernel driver that provides access to a | |
3949 | host computer's local filesystem when the target is | |
3950 | executing within a SIMICS simulation has been removed. | |
3951 | ||
3952 | Simics is now moving away from the simicsfs kernel module, | |
3953 | as the kernel module has required too much maintenance | |
3954 | work. Users should move to the user mode Simics agent | |
3955 | instead. | |
3956 | ||
0b5dc319 TP |
3957 | config BR2_BINUTILS_VERSION_2_26_X |
3958 | bool "binutils version 2.26 support removed" | |
3959 | select BR2_LEGACY | |
3960 | help | |
3961 | Support for binutils version 2.26 has been removed. The | |
3962 | current default version (2.28 or later) has been selected | |
3963 | instead. | |
3964 | ||
b3b60706 YM |
3965 | config BR2_XTENSA_OVERLAY_DIR |
3966 | string "The BR2_XTENSA_OVERLAY_DIR option has been removed" | |
3967 | help | |
3968 | The BR2_XTENSA_OVERLAY_DIR has been removed in favour of | |
3969 | BR2_XTENSA_OVERLAY_FILE. You must now pass the complete | |
3970 | path to the overlay file, not to the directory containing | |
3971 | it. | |
3972 | ||
3973 | config BR2_XTENSA_OVERLAY_DIR_WRAP | |
3974 | bool | |
3975 | default y if BR2_XTENSA_OVERLAY_DIR != "" | |
3976 | select BR2_LEGACY | |
3977 | ||
15a96d1a | 3978 | config BR2_XTENSA_CUSTOM_NAME |
b3b60706 | 3979 | string "The BR2_XTENSA_CUSTOM_NAME option has been removed" |
15a96d1a | 3980 | help |
b3b60706 | 3981 | The BR2_XTENSA_CUSTOM_NAME option has been removed. |
15a96d1a YM |
3982 | |
3983 | config BR2_XTENSA_CUSTOM_NAME_WRAP | |
3984 | bool | |
3985 | default y if BR2_XTENSA_CUSTOM_NAME != "" | |
3986 | select BR2_LEGACY | |
3987 | ||
f47fc957 SS |
3988 | config BR2_PACKAGE_HOST_MKE2IMG |
3989 | bool "host mke2img has been removed" | |
3990 | select BR2_LEGACY | |
3991 | help | |
3992 | We now call mkfs directly to generate ext2/3/4 filesystem | |
3993 | image, so mke2img is no longer necessary. | |
3994 | ||
bee9e881 SM |
3995 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS |
3996 | int "exact size in blocks has been removed" | |
3997 | default 0 | |
3998 | help | |
3999 | This option has been removed in favor of | |
4000 | BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically | |
4001 | to the value you had before. Set to 0 here to remove the | |
4002 | warning. | |
4003 | ||
4004 | config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP | |
4005 | bool | |
4006 | default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \ | |
4007 | BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value | |
4008 | select BR2_LEGACY | |
4009 | ||
4010 | # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in | |
4011 | ||
235b6f17 SM |
4012 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES |
4013 | int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0 | |
4014 | default 0 | |
4015 | help | |
4016 | Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4 | |
4017 | images. It now automatically selects the number of inodes | |
4018 | based on the image size. The extra number of inodes can no | |
4019 | longer be provided; instead, provide the total number of | |
4020 | inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES. | |
4021 | ||
4022 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP | |
4023 | bool | |
4024 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0 | |
4025 | select BR2_LEGACY | |
4026 | ||
e278d85e VOR |
4027 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE |
4028 | bool "cdxaparse removed" | |
4029 | select BR2_LEGACY | |
4030 | ||
4031 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC | |
4032 | bool "dataurisrc moved to gstreamer1" | |
4033 | select BR2_LEGACY | |
4034 | help | |
4035 | Dataurisrc has moved to gstreamer core and is always built. | |
4036 | ||
4037 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP | |
4038 | bool "dccp removed" | |
4039 | select BR2_LEGACY | |
4040 | ||
4041 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE | |
4042 | bool "hdvparse removed" | |
4043 | select BR2_LEGACY | |
4044 | ||
4045 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE | |
4046 | bool "mve removed" | |
4047 | select BR2_LEGACY | |
4048 | ||
4049 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX | |
4050 | bool "nuvdemux removed" | |
4051 | select BR2_LEGACY | |
4052 | ||
4053 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT | |
4054 | bool "patchdetect removed" | |
4055 | select BR2_LEGACY | |
4056 | ||
4057 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI | |
4058 | bool "sdi removed" | |
4059 | select BR2_LEGACY | |
4060 | ||
4061 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA | |
4062 | bool "tta removed" | |
4063 | select BR2_LEGACY | |
4064 | ||
4065 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE | |
4066 | bool "videomeasure removed" | |
6e3fa33f | 4067 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA |
e278d85e | 4068 | select BR2_LEGACY |
6e3fa33f VOR |
4069 | help |
4070 | videomeasure plugin has been removed and has been replaced by | |
4071 | iqa, which has automatically been enabled. | |
e278d85e VOR |
4072 | |
4073 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK | |
4074 | bool "apexsink removed" | |
4075 | select BR2_LEGACY | |
4076 | ||
4077 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL | |
4078 | bool "sdl removed" | |
4079 | select BR2_LEGACY | |
4080 | ||
b006fe1c VOR |
4081 | config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD |
4082 | bool "mad (*.mp3 audio) removed" | |
4083 | select BR2_LEGACY | |
4084 | ||
0d643fd3 YM |
4085 | config BR2_STRIP_none |
4086 | bool "Strip command 'none' has been removed" | |
4087 | select BR2_LEGACY | |
4088 | help | |
4089 | The strip command choice has been changed into a single | |
4090 | boolean option. Please check that the new setting is | |
4091 | correct (in the "Build options" sub-menu) | |
4092 | ||
dd4d3c18 BK |
4093 | config BR2_PACKAGE_BEECRYPT_CPP |
4094 | bool "C++ support removed in beecrypt" | |
4095 | select BR2_LEGACY | |
4096 | help | |
4097 | Support for C++ depends on icu. The beecrypt package is | |
4098 | incompatible with icu 59+. | |
4099 | ||
622ff3d6 PK |
4100 | config BR2_PACKAGE_SPICE_CLIENT |
4101 | bool "spice client support removed" | |
4102 | select BR2_LEGACY | |
4103 | help | |
4104 | Spice client support has been removed upstream. The | |
4105 | functionality now lives in the spice-gtk widget and | |
4106 | virt-viewer. | |
4107 | ||
4108 | config BR2_PACKAGE_SPICE_GUI | |
4109 | bool "spice gui support removed" | |
4110 | select BR2_LEGACY | |
4111 | help | |
4112 | Spice gui support has been removed upstream. The | |
4113 | functionality now lives in the spice-gtk widget and | |
4114 | virt-viewer. | |
4115 | ||
6f2c0220 PK |
4116 | config BR2_PACKAGE_SPICE_TUNNEL |
4117 | bool "spice network redirection removed" | |
4118 | select BR2_LEGACY | |
4119 | help | |
4120 | Spice network redirection, aka tunnelling has been removed | |
4121 | upstream. | |
4122 | ||
438b2d13 KM |
4123 | config BR2_PACKAGE_INPUT_TOOLS |
4124 | bool "input-tools removed" | |
4125 | select BR2_LEGACY | |
4126 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
4127 | help | |
4128 | input-tools has been removed, it is replaced by | |
4129 | linuxconsoletools, which has automatically been enabled. | |
4130 | ||
4131 | config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH | |
4132 | bool "inputattach moved to linuxconsoletools" | |
4133 | select BR2_LEGACY | |
4134 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
4135 | select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH | |
4136 | help | |
4137 | input-tools has been removed, inputattach is now part | |
4138 | of linuxconsoletools, which has automatically been | |
4139 | enabled. | |
4140 | ||
4141 | config BR2_PACKAGE_INPUT_TOOLS_JSCAL | |
4142 | bool "jscal moved to linuxconsoletools" | |
4143 | select BR2_LEGACY | |
4144 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
4145 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
4146 | help | |
4147 | input-tools has been removed, jscal is now part | |
4148 | of linuxconsoletools, which has automatically been | |
4149 | enabled. | |
4150 | ||
4151 | config BR2_PACKAGE_INPUT_TOOLS_JSTEST | |
4152 | bool "jstest moved to linuxconsoletools" | |
4153 | select BR2_LEGACY | |
4154 | select BR2_PACKAGE_LINUXCONSOLETOOLS | |
4155 | select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK | |
4156 | help | |
4157 | input-tools has been removed, jstest is now part | |
4158 | of linuxconsoletools, which has automatically been | |
4159 | enabled. | |
4160 | ||
6510a826 BS |
4161 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
4162 | bool "SH Sourcery toolchain has been removed" | |
4163 | select BR2_LEGACY | |
4164 | help | |
4165 | The Sourcery CodeBench toolchain for the sh architecture has | |
d6109172 RM |
4166 | been removed, since it uses glibc older than 2.17 that |
4167 | requires -lrt to link executables using clock_* system calls. | |
4168 | This makes this toolchain difficult to maintain over time. | |
6510a826 | 4169 | |
06cac646 BS |
4170 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
4171 | bool "x86 Sourcery toolchain has been removed" | |
4172 | select BR2_LEGACY | |
4173 | help | |
4174 | The Sourcery CodeBench toolchain for the x86 architecture has | |
d6109172 RM |
4175 | been removed, since it uses glibc older than 2.17 that |
4176 | requires -lrt to link executables using clock_* system calls. | |
4177 | This makes this toolchain difficult to maintain over time. | |
06cac646 | 4178 | |
f6695219 RN |
4179 | config BR2_GCC_VERSION_4_8_X |
4180 | bool "gcc 4.8.x support removed" | |
4181 | select BR2_LEGACY | |
4182 | help | |
4183 | Support for gcc version 4.8.x has been removed. The current | |
4184 | default version (5.x or later) has been selected instead. | |
4185 | ||
a75eeddd GZ |
4186 | ############################################################################### |
4187 | comment "Legacy options removed in 2017.05" | |
4188 | ||
95426afd RN |
4189 | config BR2_PACKAGE_SUNXI_MALI_R2P4 |
4190 | bool "sunxi-mali r2p4 removed" | |
4191 | select BR2_LEGACY | |
4192 | help | |
4193 | sunxi-mali libMali for r2p4 Mali kernel module has been | |
4194 | removed since the libump package only provides libUMP.so.3. | |
4195 | libMali for r2p4 Mali kernel module requires libUMP.so.2. | |
4196 | ||
d999a7f2 MB |
4197 | config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT |
4198 | bool "CoffeeScript option has been removed" | |
4199 | select BR2_LEGACY | |
4200 | help | |
4201 | The option to enable NodeJS CoffeeScript has been removed. | |
4202 | To continue using it, add "coffee-script" to | |
4203 | BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
4204 | ||
096f8b13 MB |
4205 | config BR2_PACKAGE_NODEJS_MODULES_EXPRESS |
4206 | bool "Express web application framework option has been removed" | |
4207 | select BR2_LEGACY | |
4208 | help | |
4209 | The option to enable the NodeJS Express web application | |
4210 | framework has been removed. To continue using it, add | |
4211 | "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL. | |
4212 | ||
0364d44f BS |
4213 | config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL |
4214 | bool "bluez5_utils gatttool install option removed" | |
4215 | select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED | |
4216 | help | |
4217 | The option to install gatttool specifically has been removed. | |
4218 | Since version 5.44 gatttool is in the list of deprecated | |
4219 | tools. The option to build and install deprecated tools has | |
4220 | been automatically enabled. | |
4221 | ||
3b6c74d7 CP |
4222 | config BR2_PACKAGE_OPENOCD_FT2XXX |
4223 | bool "openocd ft2232 support has been removed" | |
4224 | select BR2_PACKAGE_OPENOCD_FTDI | |
4225 | select BR2_LEGACY | |
4226 | help | |
4227 | FT2232 support in OpenOCD has been removed, it's replaced by | |
4228 | FDTI support, which has automatically been enabled. | |
4229 | ||
24a07d58 BK |
4230 | config BR2_PACKAGE_KODI_RTMPDUMP |
4231 | bool "kodi rtmp has been removed" | |
4232 | select BR2_LEGACY | |
c894267a | 4233 | select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP |
24a07d58 BK |
4234 | help |
4235 | Internal rtmp support was removed from Kodi. | |
4236 | ||
d393690f BK |
4237 | config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN |
4238 | bool "kodi-visualisation-fountain has been removed" | |
4239 | select BR2_LEGACY | |
4240 | help | |
4241 | According to upstream 'the visualization is not currently | |
4242 | in a working shape.' | |
4243 | ||
1ba88a0b WB |
4244 | config BR2_PACKAGE_PORTMAP |
4245 | bool "portmap has been removed" | |
4246 | select BR2_LEGACY | |
4247 | select BR2_PACKAGE_RPCBIND | |
4248 | help | |
4249 | The portmap upstream tarball is removed, no releases since | |
4250 | ten years and latest change in upstream git in 2014. | |
4251 | You should better use rpcbind as a RPC portmapper. | |
4252 | ||
5847291b TP |
4253 | config BR2_BINUTILS_VERSION_2_25_X |
4254 | bool "binutils version 2.25 support removed" | |
4255 | select BR2_LEGACY | |
4256 | help | |
4257 | Support for binutils version 2.25 has been removed. The | |
4258 | current default version (2.27 or later) has been selected | |
4259 | instead. | |
4260 | ||
98f7de87 WB |
4261 | config BR2_TOOLCHAIN_BUILDROOT_INET_RPC |
4262 | bool "uclibc RPC support has been removed" | |
4263 | select BR2_LEGACY | |
4264 | help | |
4265 | uClibc-ng removed internal RPC implementation in 1.0.23. You | |
4266 | should use libtirpc instead. | |
4267 | ||
c6bca8ce SS |
4268 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS |
4269 | int "extra size in blocks has been removed" | |
4270 | default 0 | |
4271 | help | |
d6109172 RM |
4272 | Since the support for auto calculation of the filesystem size |
4273 | has been removed, this option is now useless and must be 0. | |
4274 | You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS | |
4275 | matchs your needs. | |
c6bca8ce SS |
4276 | |
4277 | config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP | |
4278 | bool | |
4279 | default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0 | |
4280 | select BR2_LEGACY | |
4281 | ||
815f7137 VOR |
4282 | config BR2_PACKAGE_SYSTEMD_KDBUS |
4283 | bool "systemd-kdbus has been removed" | |
4284 | select BR2_LEGACY | |
4285 | help | |
4286 | --enable/disable-kdbus configure option has been removed since | |
4287 | systemd-231. | |
4288 | ||
d10b493e GZ |
4289 | config BR2_PACKAGE_POLARSSL |
4290 | bool "polarssl has been removed" | |
4291 | select BR2_LEGACY | |
4292 | help | |
4293 | The polarssl crypto library has been removed since the 1.2.x | |
4294 | release branch is no longer maintained. Newer upstream | |
4295 | branches/releases (mbedtls) have API changes so they're not | |
4296 | drop-in replacements. | |
4297 | ||
6155118f YM |
4298 | config BR2_NBD_CLIENT |
4299 | bool "nbd client option was renamed" | |
4300 | select BR2_LEGACY | |
4301 | select BR2_PACKAGE_NBD_CLIENT | |
4302 | help | |
d6109172 RM |
4303 | The nbd client option has been renamed to |
4304 | BR2_PACKAGE_NBD_CLIENT. | |
6155118f YM |
4305 | |
4306 | config BR2_NBD_SERVER | |
4307 | bool "nbd server option was renamed" | |
4308 | select BR2_LEGACY | |
4309 | select BR2_PACKAGE_NBD_SERVER | |
4310 | help | |
d6109172 RM |
4311 | The nbd server option has been renamed to |
4312 | BR2_PACKAGE_NBD_SERVER. | |
6155118f | 4313 | |
6a9c6311 CS |
4314 | config BR2_PACKAGE_GMOCK |
4315 | bool "gmock merged into gtest package" | |
4316 | select BR2_LEGACY | |
4317 | select BR2_PACKAGE_GTEST | |
4318 | select BR2_PACKAGE_GTEST_GMOCK | |
4319 | help | |
4320 | GMock is now a suboption of the GTest package. | |
4321 | ||
5f73ff53 GZ |
4322 | config BR2_KERNEL_HEADERS_4_8 |
4323 | bool "kernel headers version 4.8.x are no longer supported" | |
5f73ff53 GZ |
4324 | select BR2_LEGACY |
4325 | help | |
4326 | Version 4.8.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4327 | maintained upstream and are now removed. |
5f73ff53 GZ |
4328 | |
4329 | config BR2_KERNEL_HEADERS_3_18 | |
4330 | bool "kernel headers version 3.18.x are no longer supported" | |
5f73ff53 GZ |
4331 | select BR2_LEGACY |
4332 | help | |
4333 | Version 3.18.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4334 | maintained upstream and are now removed. |
5f73ff53 | 4335 | |
a75eeddd GZ |
4336 | config BR2_GLIBC_VERSION_2_22 |
4337 | bool "glibc 2.22 removed" | |
4338 | select BR2_LEGACY | |
4339 | help | |
4340 | Support for glibc version 2.22 has been removed. The current | |
4341 | default version has been selected instead. | |
4342 | ||
ed364d1e TP |
4343 | ############################################################################### |
4344 | comment "Legacy options removed in 2017.02" | |
4345 | ||
8546ff31 FP |
4346 | config BR2_PACKAGE_PERL_DB_FILE |
4347 | bool "perl-db-file removed" | |
4348 | select BR2_LEGACY | |
4349 | select BR2_PACKAGE_BERKELEYDB | |
4350 | select BR2_PACKAGE_PERL | |
4351 | help | |
4352 | DB_File can be built as a core Perl module, so the separate | |
4353 | perl-db-file package has been removed. | |
4354 | ||
6be22624 GZ |
4355 | config BR2_KERNEL_HEADERS_4_7 |
4356 | bool "kernel headers version 4.7.x are no longer supported" | |
6be22624 GZ |
4357 | select BR2_LEGACY |
4358 | help | |
4359 | Version 4.7.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4360 | maintained upstream and are now removed. |
6be22624 GZ |
4361 | |
4362 | config BR2_KERNEL_HEADERS_4_6 | |
4363 | bool "kernel headers version 4.6.x are no longer supported" | |
6be22624 GZ |
4364 | select BR2_LEGACY |
4365 | help | |
4366 | Version 4.6.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4367 | maintained upstream and are now removed. |
6be22624 GZ |
4368 | |
4369 | config BR2_KERNEL_HEADERS_4_5 | |
4370 | bool "kernel headers version 4.5.x are no longer supported" | |
6be22624 GZ |
4371 | select BR2_LEGACY |
4372 | help | |
4373 | Version 4.5.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4374 | maintained upstream and are now removed. |
6be22624 GZ |
4375 | |
4376 | config BR2_KERNEL_HEADERS_3_14 | |
4377 | bool "kernel headers version 3.14.x are no longer supported" | |
6be22624 GZ |
4378 | select BR2_LEGACY |
4379 | help | |
4380 | Version 3.14.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4381 | maintained upstream and are now removed. |
6be22624 | 4382 | |
63abbcce RN |
4383 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
4384 | bool "musl-cross 1.1.12 toolchain removed" | |
4385 | select BR2_LEGACY | |
4386 | help | |
4387 | The support for the prebuilt toolchain based on the Musl C | |
4388 | library provided by the musl-cross project has been removed. | |
d6109172 RM |
4389 | Upstream doesn't provide any prebuilt toolchain anymore, use |
4390 | the Buildroot toolchain instead. | |
63abbcce | 4391 | |
a44d7f2d WB |
4392 | config BR2_UCLIBC_INSTALL_TEST_SUITE |
4393 | bool "uClibc tests now in uclibc-ng-test" | |
4394 | select BR2_LEGACY | |
4395 | select BR2_PACKAGE_UCLIBC_NG_TEST | |
4396 | help | |
4397 | The test suite of the uClibc C library has been moved into a | |
4398 | separate package, uclibc-ng-test. | |
4399 | ||
311bc137 AV |
4400 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
4401 | bool "Blackfin.uclinux.org 2014R1 toolchain removed" | |
4402 | select BR2_LEGACY | |
4403 | help | |
4404 | The ADI Blackfin toolchain has many bugs which are fixed in | |
4405 | more recent gcc and uClibc-ng releases. Use the Buildroot | |
4406 | toolchain instead. | |
4407 | ||
207294ff AV |
4408 | config BR2_PACKAGE_MAKEDEVS |
4409 | bool "makedevs removed" | |
4410 | select BR2_LEGACY | |
4411 | help | |
4412 | The makedevs tool is part of busybox. The Buildroot fork | |
4413 | should not be used outside of the Buildroot infrastructure. | |
4414 | ||
b5c00f09 AV |
4415 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
4416 | bool "Arago ARMv7 2011.09 removed" | |
4417 | select BR2_LEGACY | |
4418 | help | |
4419 | The Arago toolchains are every old and not updated anymore. | |
4420 | ||
4421 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE | |
4422 | bool "Arago ARMv5 2011.09 removed" | |
4423 | select BR2_LEGACY | |
4424 | help | |
4425 | The Arago toolchains are every old and not updated anymore. | |
4426 | ||
ed364d1e TP |
4427 | config BR2_PACKAGE_SNOWBALL_HDMISERVICE |
4428 | bool "snowball-hdmiservice removed" | |
4429 | select BR2_LEGACY | |
4430 | help | |
4431 | We no longer have support for the Snowball platform in | |
4432 | Buildroot, so this package was no longer useful. | |
4433 | ||
4434 | config BR2_PACKAGE_SNOWBALL_INIT | |
4435 | bool "snowball-init removed" | |
4436 | select BR2_LEGACY | |
4437 | help | |
4438 | We no longer have support for the Snowball platform in | |
4439 | Buildroot, so this package was no longer useful. | |
4440 | ||
69aa0574 JK |
4441 | config BR2_GDB_VERSION_7_9 |
4442 | bool "gdb 7.9 has been removed" | |
4443 | select BR2_LEGACY | |
4444 | help | |
4445 | The 7.9 version of gdb has been removed. Use a newer version | |
4446 | instead. | |
4447 | ||
e782cd5b YM |
4448 | ############################################################################### |
4449 | comment "Legacy options removed in 2016.11" | |
4450 | ||
c457213f | 4451 | config BR2_PACKAGE_PHP_SAPI_CLI_CGI |
4092d2a3 | 4452 | bool "PHP CGI and CLI options are now separate" |
c457213f FF |
4453 | select BR2_PACKAGE_PHP_SAPI_CLI |
4454 | select BR2_PACKAGE_PHP_SAPI_CGI | |
c087cbe5 | 4455 | select BR2_LEGACY |
c457213f FF |
4456 | help |
4457 | The PHP Interface options have been split up into a | |
4458 | separate option for each interface. | |
4459 | ||
4460 | config BR2_PACKAGE_PHP_SAPI_CLI_FPM | |
4461 | bool "PHP CLI and FPM options are now separate" | |
4462 | select BR2_PACKAGE_PHP_SAPI_CLI | |
4463 | select BR2_PACKAGE_PHP_SAPI_FPM | |
c087cbe5 | 4464 | select BR2_LEGACY |
c457213f FF |
4465 | help |
4466 | The PHP Interface options have been split up into a | |
4467 | separate option for each interface. | |
4468 | ||
3534399d AV |
4469 | config BR2_PACKAGE_WVSTREAMS |
4470 | bool "wvstreams removed" | |
4471 | select BR2_LEGACY | |
4472 | help | |
4473 | wvstreams is not maintained anymore since about 2009. It also | |
4474 | doesn't build anymore with recent compilers (GCC 5+). | |
4475 | ||
152d4b66 AV |
4476 | config BR2_PACKAGE_WVDIAL |
4477 | bool "wvdial removed" | |
4478 | select BR2_LEGACY | |
4479 | help | |
4480 | wvdial is not maintained anymore since about 2009. It also | |
4481 | doesn't build anymore with recent compilers (GCC 5+). | |
4482 | ||
79c82a35 AV |
4483 | config BR2_PACKAGE_WEBKITGTK24 |
4484 | bool "webkitgtk 2.4.x removed" | |
4485 | select BR2_LEGACY | |
4486 | help | |
4487 | This legacy package only existed because some other packages | |
4488 | depended on that specific version of webkitgtk. However, the | |
4489 | other packages have been fixed. webkitgtk 2.4 is full of | |
4490 | security issues so it needs to be removed. | |
4491 | ||
ea3a7ee0 AV |
4492 | config BR2_PACKAGE_TORSMO |
4493 | bool "torsmo removed" | |
4494 | select BR2_LEGACY | |
4495 | help | |
4496 | torsmo has been unmaintained for a long time, and nobody | |
4497 | seems to be interested in it. | |
4498 | ||
290166f2 AV |
4499 | config BR2_PACKAGE_SSTRIP |
4500 | bool "sstrip removed" | |
4501 | select BR2_LEGACY | |
4502 | help | |
4503 | sstrip is unmaintained and potentially harmful. It doesn't | |
4504 | save so much compared to normal binutils strip, and there is | |
4505 | a big risk of binaries that don't work. Use normal strip | |
4506 | instead. | |
4507 | ||
133466f5 AV |
4508 | config BR2_KERNEL_HEADERS_4_3 |
4509 | bool "kernel headers version 4.3.x are no longer supported" | |
133466f5 AV |
4510 | select BR2_LEGACY |
4511 | help | |
4512 | Version 4.3.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4513 | maintained upstream and are now removed. |
133466f5 AV |
4514 | |
4515 | config BR2_KERNEL_HEADERS_4_2 | |
4516 | bool "kernel headers version 4.2.x are no longer supported" | |
133466f5 AV |
4517 | select BR2_LEGACY |
4518 | help | |
4519 | Version 4.2.x of the Linux kernel headers are no longer | |
1b3c43f7 | 4520 | maintained upstream and are now removed. |
133466f5 | 4521 | |
1c2a63ad AV |
4522 | config BR2_PACKAGE_KODI_ADDON_XVDR |
4523 | bool "kodi-addon-xvdr removed" | |
4524 | select BR2_LEGACY | |
4525 | help | |
4526 | According to the github project page: | |
4527 | https://github.com/pipelka/xbmc-addon-xvdr | |
4528 | this package is discontinued. | |
4529 | ||
3b80ca89 AV |
4530 | config BR2_PACKAGE_IPKG |
4531 | bool "ipkg removed" | |
4532 | select BR2_LEGACY | |
4533 | help | |
4534 | ipkg dates back to the early 2000s when Compaq started the | |
d6109172 RM |
4535 | handhelds.org project and it hasn't seen development since |
4536 | 2006. Use opkg as a replacement. | |
3b80ca89 | 4537 | |
a7c13c1b AV |
4538 | config BR2_GCC_VERSION_4_7_X |
4539 | bool "gcc 4.7.x support removed" | |
4540 | select BR2_LEGACY | |
4541 | help | |
4542 | Support for gcc version 4.7.x has been removed. The current | |
4543 | default version (4.9.x or later) has been selected instead. | |
4544 | ||
d8878112 AV |
4545 | config BR2_BINUTILS_VERSION_2_24_X |
4546 | bool "binutils version 2.24 support removed" | |
4547 | select BR2_LEGACY | |
4548 | help | |
4549 | Support for binutils version 2.24 has been removed. The | |
4550 | current default version (2.26 or later) has been selected | |
4551 | instead. | |
4552 | ||
8c85a5f0 GZ |
4553 | config BR2_PACKAGE_WESTON_RPI |
4554 | bool "Weston propietary RPI support is gone" | |
4555 | select BR2_LEGACY | |
4556 | help | |
4557 | Upstream decided the propietary (rpi-userland) weston composer | |
4558 | support wasn't worth the effort so it was removed. Switch to | |
4559 | the open VC4 support. | |
4560 | ||
20b14466 YM |
4561 | config BR2_LINUX_KERNEL_TOOL_CPUPOWER |
4562 | bool "linux-tool cpupower" | |
4563 | depends on BR2_LINUX_KERNEL | |
4564 | select BR2_LEGACY | |
4565 | select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER | |
4566 | help | |
4567 | Linux tool cpupower option was renamed. | |
4568 | ||
4569 | config BR2_LINUX_KERNEL_TOOL_PERF | |
4570 | bool "linux-tool perf" | |
4571 | depends on BR2_LINUX_KERNEL | |
4572 | select BR2_LEGACY | |
4573 | select BR2_PACKAGE_LINUX_TOOLS_PERF | |
4574 | help | |
4575 | Linux tool perf option was renamed. | |
4576 | ||
4577 | config BR2_LINUX_KERNEL_TOOL_SELFTESTS | |
4578 | bool "linux-tool selftests" | |
4579 | depends on BR2_LINUX_KERNEL | |
4580 | select BR2_LEGACY | |
4581 | select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS | |
4582 | help | |
4583 | Linux tool selftests option was renamed. | |
4584 | ||
50332a53 TP |
4585 | config BR2_GCC_VERSION_4_8_ARC |
4586 | bool "gcc arc option renamed" | |
4587 | select BR2_LEGACY | |
50332a53 TP |
4588 | help |
4589 | The option that selects the gcc version for the ARC | |
4590 | architecture has been renamed to BR2_GCC_VERSION_ARC. | |
eb8f3889 RM |
4591 | # Note: BR2_GCC_VERSION_4_8_ARC is still referenced from |
4592 | # package/gcc/Config.in.host | |
50332a53 | 4593 | |
3c590a3e GZ |
4594 | config BR2_KERNEL_HEADERS_4_0 |
4595 | bool "kernel headers version 4.0.x are no longer supported" | |
3c590a3e GZ |
4596 | select BR2_LEGACY |
4597 | help | |
4598 | Version 4.0.x of the Linux kernel headers have been deprecated | |
4599 | for more than four buildroot releases and are now removed. | |
3c590a3e GZ |
4600 | |
4601 | config BR2_KERNEL_HEADERS_3_19 | |
4602 | bool "kernel headers version 3.19.x are no longer supported" | |
3c590a3e GZ |
4603 | select BR2_LEGACY |
4604 | help | |
d6109172 RM |
4605 | Version 3.19.x of the Linux kernel headers have been |
4606 | deprecated for more than four buildroot releases and are now | |
4607 | removed. | |
3c590a3e | 4608 | |
0e517317 RN |
4609 | config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS |
4610 | bool "libevas-generic-loaders package removed" | |
4611 | select BR2_LEGACY | |
4612 | select BR2_PACKAGE_EFL | |
4613 | help | |
d6109172 RM |
4614 | With EFL 1.18, libevas-generic-loaders is now provided by the |
4615 | efl package. | |
0e517317 | 4616 | |
c22b7580 RN |
4617 | config BR2_PACKAGE_ELEMENTARY |
4618 | bool "elementary package removed" | |
4619 | select BR2_LEGACY | |
4620 | select BR2_PACKAGE_EFL | |
4621 | help | |
4622 | With EFL 1.18, elementary is now provided by the efl package. | |
4623 | ||
e782cd5b YM |
4624 | config BR2_LINUX_KERNEL_CUSTOM_LOCAL |
4625 | bool "Linux kernel local directory option removed" | |
e07fcf80 | 4626 | select BR2_LEGACY |
e782cd5b | 4627 | help |
d6109172 RM |
4628 | The option to select a local directory as the source of the |
4629 | Linux kernel has been removed. It hurts reproducibility of | |
4630 | builds. | |
e782cd5b YM |
4631 | |
4632 | In case you were using this option during development of your | |
4633 | Linux kernel, use the override mechanism instead. | |
4634 | ||
20ed897b TP |
4635 | ############################################################################### |
4636 | comment "Legacy options removed in 2016.08" | |
4637 | ||
ac191071 AV |
4638 | config BR2_PACKAGE_EFL_JP2K |
4639 | bool "libevas jp2k loader has been removed" | |
4640 | select BR2_LEGACY | |
5354a75e | 4641 | help |
ac191071 AV |
4642 | JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc) |
4643 | while Buildroot only packages openjpeg 2.x. Therefore, the | |
4644 | JP2K loader has been removed from EFL. | |
4645 | ||
638cfb5e MH |
4646 | config BR2_PACKAGE_SYSTEMD_COMPAT |
4647 | bool "systemd compatibility libraries have been removed" | |
d246b984 | 4648 | select BR2_LEGACY |
638cfb5e | 4649 | help |
17bccf17 | 4650 | The systemd option to enable the compatibility libraries has |
638cfb5e MH |
4651 | been removed. Theses libraries have been useless since a few |
4652 | version, and have been fully dropped from the source since | |
4653 | v230. | |
4654 | ||
5baa92b0 MN |
4655 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER |
4656 | bool "gst1-plugins-bad liveadder plugin removed" | |
4657 | select BR2_LEGACY | |
4658 | select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER | |
4659 | help | |
4660 | The functionality of the liveadder plugin of the | |
4661 | gst1-plugins-bad package has been merged into audiomixer. | |
4662 | ||
0f92b19d AW |
4663 | config BR2_PACKAGE_LIBFSLVPUWRAP |
4664 | bool "libfslvpuwrap has been renamed to imx-vpuwrap" | |
4665 | select BR2_LEGACY | |
4666 | select BR2_PACKAGE_IMX_VPUWRAP | |
4667 | help | |
d6109172 RM |
4668 | The libfslvpuwrap has been renamed to match the renamed |
4669 | package. | |
0f92b19d | 4670 | |
64998907 AW |
4671 | config BR2_PACKAGE_LIBFSLPARSER |
4672 | bool "libfslparser has been renamed to imx-parser" | |
4673 | select BR2_LEGACY | |
4674 | select BR2_PACKAGE_IMX_PARSER | |
4675 | help | |
d6109172 RM |
4676 | The libfslparser has been renamed to match the renamed |
4677 | package. | |
64998907 | 4678 | |
47e6203f AW |
4679 | config BR2_PACKAGE_LIBFSLCODEC |
4680 | bool "libfslcodec has been renamed to imx-codec" | |
4681 | select BR2_LEGACY | |
4682 | select BR2_PACKAGE_IMX_CODEC | |
4683 | help | |
4684 | The libfslcodec has been renamed to match the renamed package. | |
4685 | ||
b5d99008 CS |
4686 | config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT |
4687 | bool "FIT support in uboot-tools has been refactored" | |
4688 | select BR2_LEGACY | |
4689 | select BR2_PACKAGE_DTC | |
4690 | select BR2_PACKAGE_DTC_PROGRAMS | |
4691 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT | |
4692 | select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT | |
4693 | select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE | |
4694 | help | |
4695 | This option has been removed in favor of a more fine-grained | |
4696 | configuration, which is recommended. Selecting this option | |
4697 | enables FIT and FIT signature support for the target packages. | |
4698 | It will also select the dtc and openssl packages. | |
4699 | ||
f253c146 WB |
4700 | config BR2_PTHREADS_OLD |
4701 | bool "linuxthreads (stable/old)" | |
4702 | select BR2_LEGACY | |
4703 | help | |
4704 | Linuxthreads have been reworked, BR2_PTHREADS_OLD is now | |
4705 | BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed. | |
4706 | ||
ae466a60 TP |
4707 | config BR2_BINUTILS_VERSION_2_23_X |
4708 | bool "binutils 2.23 removed" | |
4709 | select BR2_LEGACY | |
4710 | help | |
4711 | Binutils 2.23 has been removed, using a newer version is | |
4712 | recommended. | |
4713 | ||
500de259 TP |
4714 | config BR2_TOOLCHAIN_BUILDROOT_EGLIBC |
4715 | bool "eglibc support has been removed" | |
4716 | select BR2_LEGACY | |
4717 | help | |
4718 | The eglibc project no longer exists, as it has been merged | |
4719 | back into the glibc project. Therefore, support for eglibc | |
4720 | has been removed, and glibc should be used instead. | |
4721 | ||
20ed897b TP |
4722 | config BR2_GDB_VERSION_7_8 |
4723 | bool "gdb 7.8 has been removed" | |
4724 | select BR2_LEGACY | |
4725 | help | |
4726 | The 7.8 version of gdb has been removed. Use a newer version | |
4727 | instead. | |
4728 | ||
f0c94704 | 4729 | ############################################################################### |
2661c4f1 | 4730 | comment "Legacy options removed in 2016.05" |
f0c94704 | 4731 | |
3380da69 GZ |
4732 | config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL |
4733 | bool "openvpn polarssl crypto backend removed" | |
4734 | select BR2_LEGACY | |
4735 | help | |
4736 | The OpenVPN polarssl crypto backend option has been removed. | |
4737 | Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't | |
4738 | compatible with mbedtls (polarssl) series 2.x which is the | |
4739 | version provided in buildroot. And both can't coexist. | |
4740 | It now uses OpenSSL as the only option. | |
4741 | ||
4dfc2cb5 MB |
4742 | config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE |
4743 | bool "nginx http spdy module removed" | |
4744 | select BR2_LEGACY | |
4745 | select BR2_PACKAGE_NGINX_HTTP_V2_MODULE | |
4746 | help | |
4747 | The ngx_http_spdy_module has been superseded by the | |
4748 | ngx_http_v2_module since nginx v1.9.5. The | |
4749 | ngx_http_v2_module modules has been automatically selected | |
4750 | in your configuration. | |
4751 | ||
0c956f2d GZ |
4752 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP |
4753 | bool "gst1-plugins-bad rtp plugin moved to good" | |
4754 | select BR2_LEGACY | |
4755 | help | |
4756 | The rtp plugin has been moved from gst1-plugins-base to | |
4757 | gst1-plugins-good. | |
4758 | ||
4196cf90 GZ |
4759 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 |
4760 | bool "gst1-plugins-bad mpg123 plugin moved to ugly" | |
4761 | select BR2_LEGACY | |
4762 | help | |
4763 | The mpg123 plugin has been moved from gst1-plugins-bad to | |
4764 | gst1-plugins-ugly. | |
4765 | ||
8490e833 GZ |
4766 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC |
4767 | bool "PowerPC Sourcery toolchain has been removed" | |
4768 | select BR2_LEGACY | |
4769 | help | |
4770 | The Sourcery CodeBench toolchain for the PowerPC | |
4771 | architecture has been removed, as it was very old, not | |
4772 | maintained, and causing numerous build failures with modern | |
4773 | userspace packages. | |
4774 | ||
4775 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2 | |
4776 | bool "PowerPC Sourcery E500v2 toolchain has been removed" | |
4777 | select BR2_LEGACY | |
4778 | help | |
4779 | The Sourcery CodeBench toolchain for the PowerPC E500v2 | |
4780 | architecture has been removed, as it was very old, not | |
4781 | maintained, and causing numerous build failures with modern | |
4782 | userspace packages. | |
4783 | ||
6cb4814c TP |
4784 | config BR2_x86_i386 |
4785 | bool "x86 i386 support removed" | |
7aaa730c | 4786 | select BR2_LEGACY |
6cb4814c TP |
4787 | help |
4788 | The support for the i386 processors of the x86 architecture | |
4789 | has been removed. | |
4790 | ||
f75ee80d JC |
4791 | config BR2_PACKAGE_QT5QUICK1 |
4792 | bool "qt5quick1 package removed" | |
4793 | select BR2_LEGACY | |
4794 | help | |
4795 | The qt5quick1 package has been removed, since it was removed | |
4796 | from upstream starting from Qt 5.6. | |
4797 | ||
21b25d28 | 4798 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR |
f61583fc | 4799 | string "uboot custom patch dir has been removed" |
21b25d28 GZ |
4800 | help |
4801 | The uboot custom patch directory option has been removed. Use | |
4802 | the improved BR2_TARGET_UBOOT_PATCH option instead. | |
4803 | ||
f61583fc DM |
4804 | config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP |
4805 | bool | |
4806 | default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != "" | |
4807 | select BR2_LEGACY | |
4808 | ||
4809 | # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from | |
4810 | # boot/uboot/Config.in | |
4811 | ||
f80ad2fd GZ |
4812 | config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID |
4813 | bool "xf86-input-void removed" | |
4814 | select BR2_LEGACY | |
4815 | help | |
4816 | The xf86-input-void package has been removed, there's no need | |
4817 | for it in any modern (post-2007) xorg server. | |
4818 | ||
b8de1788 GZ |
4819 | config BR2_KERNEL_HEADERS_3_17 |
4820 | bool "kernel headers version 3.17.x are no longer supported" | |
b8de1788 GZ |
4821 | select BR2_LEGACY |
4822 | help | |
d6109172 RM |
4823 | Version 3.17.x of the Linux kernel headers have been |
4824 | deprecated for more than four buildroot releases and are now | |
4825 | removed. | |
b8de1788 | 4826 | |
ffc324ea GZ |
4827 | config BR2_GDB_VERSION_7_7 |
4828 | bool "gdb 7.7 has been removed" | |
4829 | select BR2_LEGACY | |
4830 | help | |
4831 | The 7.7 version of gdb has been removed. Use a newer version | |
4832 | instead. | |
4833 | ||
75945ddc GZ |
4834 | config BR2_PACKAGE_FOOMATIC_FILTERS |
4835 | bool "foomatic-filters" | |
4836 | select BR2_LEGACY | |
4837 | help | |
4838 | The foomatic-filters package was removed. | |
4839 | ||
7bd9dbc1 GZ |
4840 | config BR2_PACKAGE_SAMBA |
4841 | bool "samba" | |
4842 | select BR2_LEGACY | |
4843 | help | |
4844 | The samba package was removed in favour of samba4 since the | |
4845 | 3.x series isn't supported by upstream any longer. | |
4846 | ||
6922b41d BK |
4847 | config BR2_PACKAGE_KODI_WAVPACK |
4848 | bool "wavpack" | |
4849 | select BR2_LEGACY | |
4850 | help | |
4851 | wavpack support was removed in favour of ffmpeg: | |
4852 | https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4 | |
4853 | ||
75ce17d0 BK |
4854 | config BR2_PACKAGE_KODI_RSXS |
4855 | bool "rsxs support in Kodi was moved to an addon" | |
4856 | select BR2_LEGACY | |
4857 | select BR2_PACKAGE_KODI_SCREENSAVER_RSXS | |
4858 | help | |
4859 | rsxs support in Kodi was moved to an addon | |
4860 | ||
56b80ece BK |
4861 | config BR2_PACKAGE_KODI_GOOM |
4862 | bool "Goom support in Kodi was moved to an addon" | |
4863 | select BR2_LEGACY | |
4864 | select BR2_PACKAGE_KODI_VISUALISATION_GOOM | |
4865 | help | |
4866 | Goom support in Kodi was moved to an addon | |
4867 | ||
e5a073ac GE |
4868 | config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS |
4869 | bool "systemd all extras option has been removed" | |
4870 | select BR2_LEGACY | |
4871 | select BR2_PACKAGE_XZ | |
4872 | select BR2_PACKAGE_LIBGCRYPT | |
4873 | help | |
4874 | The systemd option to enable "all extras" has been | |
4875 | removed. To get the same features, the libgcrypt and xz | |
4876 | package should now be enabled. | |
4877 | ||
8c0a367d GZ |
4878 | config BR2_GCC_VERSION_4_5_X |
4879 | bool "gcc 4.5.x has been removed" | |
4880 | select BR2_LEGACY | |
4881 | help | |
4882 | The 4.5.x version of gcc has been removed. Use a newer | |
4883 | version instead. | |
4884 | ||
007c2ce9 | 4885 | config BR2_PACKAGE_SQLITE_READLINE |
62da71c9 | 4886 | bool "sqlite command-line editing support was updated" |
007c2ce9 BK |
4887 | select BR2_PACKAGE_NCURSES |
4888 | select BR2_PACKAGE_READLINE | |
4889 | select BR2_LEGACY | |
4890 | help | |
4891 | This option was removed in favour of the sqlite package | |
4892 | deciding itself depending on the enabled packages whether | |
4893 | command-line editing should be enabled, it also also takes | |
4894 | libedit into account. | |
4895 | ||
f0c94704 LC |
4896 | ############################################################################### |
4897 | comment "Legacy options removed in 2016.02" | |
4898 | ||
f39ac4d2 BK |
4899 | config BR2_PACKAGE_DOVECOT_BZIP2 |
4900 | bool "bzip2 support option has been removed" | |
4901 | select BR2_LEGACY | |
4902 | select BR2_PACKAGE_BZIP2 | |
4903 | help | |
4904 | Bzip2 support is built if the bzip2 package is selected. | |
4905 | ||
4906 | config BR2_PACKAGE_DOVECOT_ZLIB | |
4907 | bool "zlib support option has been removed" | |
4908 | select BR2_LEGACY | |
4909 | select BR2_PACKAGE_ZLIB | |
4910 | help | |
4911 | Zlib support is built if the zlib package is selected. | |
4912 | ||
ead1df42 JK |
4913 | config BR2_PACKAGE_E2FSPROGS_FINDFS |
4914 | bool "e2fsprogs findfs option has been removed" | |
4915 | select BR2_LEGACY | |
4916 | help | |
4917 | This option attempted to enable findfs capabilities from | |
4918 | e2fsprogs but has not worked since July 2015 (due to | |
4919 | packaging changes). One can use BusyBox's findfs support or | |
860020f3 | 4920 | enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option. |
ead1df42 | 4921 | |
b1063a01 RN |
4922 | config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL |
4923 | bool "openpowerlink debug option has been removed" | |
4924 | select BR2_LEGACY | |
4925 | help | |
d6109172 RM |
4926 | This option depends on BR2_ENABLE_DEBUG which should not be |
4927 | used by packages anymore. | |
b1063a01 RN |
4928 | |
4929 | config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE | |
4930 | bool "openpowerlink package has been updated" | |
4931 | select BR2_LEGACY | |
b1063a01 RN |
4932 | help |
4933 | openpowerlink kernel modules are built if the | |
4934 | kernel stack library is selected. | |
e1e4f395 RM |
4935 | # Note: BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE is still referenced from |
4936 | # package/openpowerlink/Config.in | |
b1063a01 RN |
4937 | |
4938 | config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP | |
4939 | bool "openpowerlink package has been updated" | |
4940 | select BR2_LEGACY | |
b1063a01 RN |
4941 | help |
4942 | The user space support has been split in two part: | |
6a9feaab RM |
4943 | - a monolithic user space library |
4944 | - a user space daemon driver | |
e1e4f395 RM |
4945 | # Note: BR2_PACKAGE_OPENPOWERLINK_LIBPCAP is still referenced from |
4946 | # package/openpowerlink/Config.in | |
b1063a01 | 4947 | |
e3e0583f YM |
4948 | config BR2_LINUX_KERNEL_SAME_AS_HEADERS |
4949 | bool "using the linux headers version for the kernel has been removed" | |
4950 | select BR2_LEGACY | |
4951 | help | |
4952 | The option to use the version of the kernel headers for the | |
4953 | kernel to build has been removed. | |
4954 | ||
4955 | There is now the converse, better-suited and more versatile | |
4956 | option to use the kernel version for the linux headers. | |
4957 | ||
d37ce8e1 OS |
4958 | config BR2_PACKAGE_CUPS_PDFTOPS |
4959 | bool "Pdftops support has been removed from Cups" | |
917de0f7 | 4960 | select BR2_PACKAGE_CUPS_FILTERS |
d37ce8e1 OS |
4961 | select BR2_LEGACY |
4962 | help | |
4963 | Pdftops support has been removed from the cups package | |
4964 | It is now part of the cups-filters package. | |
4965 | ||
d8da5f10 GZ |
4966 | config BR2_KERNEL_HEADERS_3_16 |
4967 | bool "kernel headers version 3.16.x are no longer supported" | |
d8da5f10 GZ |
4968 | select BR2_LEGACY |
4969 | help | |
d6109172 RM |
4970 | Version 3.16.x of the Linux kernel headers have been |
4971 | deprecated for more than four buildroot releases and are now | |
4972 | removed. | |
d8da5f10 | 4973 | |
af45a4f4 YY |
4974 | config BR2_PACKAGE_PYTHON_PYXML |
4975 | bool "python-pyxml package has been removed" | |
4976 | select BR2_LEGACY | |
4977 | help | |
4978 | PyXML is obsolete and its functionality is covered either via | |
4979 | native Python XML support or python-lxml package. | |
4980 | ||
d29c7196 SN |
4981 | # BR2_ENABLE_SSP is still referenced in Config.in (default in choice) |
4982 | config BR2_ENABLE_SSP | |
4983 | bool "Stack Smashing protection now has different levels" | |
4984 | help | |
d6109172 RM |
4985 | The protection offered by SSP can now be selected from |
4986 | different protection levels. Be sure to review the SSP level | |
4987 | in the build options menu. | |
d29c7196 | 4988 | |
1e3d2cad | 4989 | config BR2_PACKAGE_DIRECTFB_CLE266 |
e989ddbe | 4990 | bool "cle266 driver for directfb removed" |
1e3d2cad GZ |
4991 | select BR2_LEGACY |
4992 | help | |
4993 | The cle266 directfb driver support has been removed. | |
4994 | It doesn't build in the latest version and it's unlikely | |
4995 | anyone has any use for it. | |
4996 | ||
4997 | config BR2_PACKAGE_DIRECTFB_UNICHROME | |
e989ddbe | 4998 | bool "unichrome driver for directfb removed" |
1e3d2cad GZ |
4999 | select BR2_LEGACY |
5000 | help | |
5001 | The unichrome directfb driver support has been removed. | |
5002 | It doesn't build in the latest version and it's unlikely | |
5003 | anyone has any use for it. | |
5004 | ||
820e1685 RN |
5005 | config BR2_PACKAGE_LIBELEMENTARY |
5006 | bool "libelementary has been renamed to elementary" | |
5007 | select BR2_LEGACY | |
5008 | select BR2_PACKAGE_ELEMENTARY | |
5009 | help | |
d6109172 RM |
5010 | The libelementary package has been renamed to match the |
5011 | upstream name. | |
820e1685 | 5012 | |
a9d1f5f6 RN |
5013 | config BR2_PACKAGE_LIBEINA |
5014 | bool "libeina package has been removed" | |
5015 | select BR2_LEGACY | |
5016 | select BR2_PACKAGE_EFL | |
5017 | help | |
1f83a7a7 | 5018 | With EFL 1.15, libeina is now provided by the efl package. |
a9d1f5f6 | 5019 | |
49700f08 RN |
5020 | config BR2_PACKAGE_LIBEET |
5021 | bool "libeet package has been removed" | |
5022 | select BR2_LEGACY | |
5023 | select BR2_PACKAGE_EFL | |
5024 | help | |
1f83a7a7 | 5025 | With EFL 1.15, libeet is now provided by the efl package. |
49700f08 | 5026 | |
e5989d6c RN |
5027 | config BR2_PACKAGE_LIBEVAS |
5028 | bool "libevas package has been removed" | |
5029 | select BR2_LEGACY | |
5030 | select BR2_PACKAGE_EFL | |
5031 | help | |
1f83a7a7 | 5032 | With EFL 1.15, libevas is now provided by the efl package. |
e5989d6c | 5033 | |
1fe1b60b RN |
5034 | config BR2_PACKAGE_LIBECORE |
5035 | bool "libecore package has been removed" | |
5036 | select BR2_LEGACY | |
5037 | select BR2_PACKAGE_EFL | |
5038 | help | |
1f83a7a7 | 5039 | With EFL 1.15, libecore is now provided by the efl package. |
1fe1b60b | 5040 | |
8c05c38d RN |
5041 | config BR2_PACKAGE_LIBEDBUS |
5042 | bool "libedbus package has been removed" | |
5043 | select BR2_LEGACY | |
5044 | select BR2_PACKAGE_EFL | |
5045 | help | |
1f83a7a7 | 5046 | With EFL 1.15, libedbus is now provided by the efl package. |
8c05c38d | 5047 | |
d2b042c1 RN |
5048 | config BR2_PACKAGE_LIBEFREET |
5049 | bool "libefreet package has been removed" | |
5050 | select BR2_LEGACY | |
5051 | select BR2_PACKAGE_EFL | |
5052 | help | |
1f83a7a7 | 5053 | With EFL 1.15, libefreet is now provided by the efl package. |
d2b042c1 | 5054 | |
e155c957 RN |
5055 | config BR2_PACKAGE_LIBEIO |
5056 | bool "libeio package has been removed" | |
5057 | select BR2_LEGACY | |
5058 | select BR2_PACKAGE_EFL | |
5059 | help | |
1f83a7a7 | 5060 | With EFL 1.15, libeio is now provided by the efl package. |
e155c957 | 5061 | |
b728fb77 RN |
5062 | config BR2_PACKAGE_LIBEMBRYO |
5063 | bool "libembryo package has been removed" | |
5064 | select BR2_LEGACY | |
5065 | select BR2_PACKAGE_EFL | |
5066 | help | |
1f83a7a7 | 5067 | With EFL 1.15, libembryo is now provided by the efl package. |
b728fb77 | 5068 | |
4c93c107 RN |
5069 | config BR2_PACKAGE_LIBEDJE |
5070 | bool "libedje package has been removed" | |
5071 | select BR2_LEGACY | |
5072 | select BR2_PACKAGE_EFL | |
5073 | help | |
1f83a7a7 | 5074 | With EFL 1.15, libedje is now provided by the efl package. |
4c93c107 | 5075 | |
905dba10 RN |
5076 | config BR2_PACKAGE_LIBETHUMB |
5077 | bool "libethumb package has been removed" | |
5078 | select BR2_LEGACY | |
5079 | select BR2_PACKAGE_EFL | |
5080 | help | |
1f83a7a7 | 5081 | With EFL 1.15, libethumb is now provided by the efl package. |
905dba10 | 5082 | |
f0c94704 LC |
5083 | config BR2_PACKAGE_INFOZIP |
5084 | bool "infozip option has been renamed to zip" | |
5085 | select BR2_LEGACY | |
5086 | select BR2_PACKAGE_ZIP | |
5087 | help | |
5088 | Info-Zip's Zip package has been renamed from infozip to zip, | |
d6109172 RM |
5089 | to avoid ambiguities with Info-Zip's UnZip which has been |
5090 | added in the unzip package. | |
f0c94704 | 5091 | |
a2d16600 | 5092 | config BR2_BR2_PACKAGE_NODEJS_0_10_X |
75b70492 | 5093 | bool "nodejs 0.10.x option removed" |
a2d16600 MB |
5094 | select BR2_LEGACY |
5095 | select BR2_PACKAGE_NODEJS | |
5096 | help | |
75b70492 | 5097 | nodejs 0.10.x option has been removed. 0.10.x is now |
d6109172 RM |
5098 | automatically chosen for ARMv5 architectures only and the |
5099 | latest nodejs for all other supported architectures. The | |
5100 | correct nodejs version has been automatically selected in your | |
5101 | configuration. | |
a2d16600 | 5102 | |
a314b878 MB |
5103 | config BR2_BR2_PACKAGE_NODEJS_0_12_X |
5104 | bool "nodejs version 0.12.x has been removed" | |
5105 | select BR2_LEGACY | |
5106 | select BR2_PACKAGE_NODEJS | |
5107 | help | |
5108 | nodejs version 0.12.x has been removed. As an alternative, | |
5109 | the latest nodejs version has been automatically selected in | |
5110 | your configuration. | |
5111 | ||
90bf67c0 MB |
5112 | config BR2_BR2_PACKAGE_NODEJS_4_X |
5113 | bool "nodejs version 4.x has been removed" | |
5114 | select BR2_LEGACY | |
5115 | select BR2_PACKAGE_NODEJS | |
5116 | help | |
5117 | nodejs version 4.x has been removed. As an alternative, | |
5118 | the latest nodejs version has been automatically selected in | |
5119 | your configuration. | |
5120 | ||
16b8e813 | 5121 | ############################################################################### |
ae46e8f9 TP |
5122 | comment "Legacy options removed in 2015.11" |
5123 | ||
301e8ffb PS |
5124 | config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL |
5125 | bool "gst1-plugins-bad real plugin has been removed" | |
5126 | select BR2_LEGACY | |
5127 | help | |
5128 | The real plugin from GStreamer 1 bad plugins has been | |
5129 | removed. | |
5130 | ||
f7dd5cb2 PS |
5131 | config BR2_PACKAGE_MEDIA_CTL |
5132 | bool "media-ctl package has been removed" | |
5133 | select BR2_LEGACY | |
5134 | select BR2_PACKAGE_LIBV4L | |
5135 | select BR2_PACKAGE_LIBV4L_UTILS | |
5136 | help | |
d6109172 RM |
5137 | media-ctl source and developement have been moved to v4l-utils |
5138 | since June 2014. For an up-to-date media-ctl version select | |
5139 | BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS. | |
f7dd5cb2 | 5140 | |
f8031339 RN |
5141 | config BR2_PACKAGE_SCHIFRA |
5142 | bool "schifra package has been removed" | |
758c5c7f | 5143 | select BR2_LEGACY |
f8031339 | 5144 | help |
d6109172 RM |
5145 | Schifra package has been maked broken since 2014.11 release |
5146 | and haven't been fixed since then. | |
f8031339 | 5147 | |
7e5ddbcb MH |
5148 | config BR2_PACKAGE_ZXING |
5149 | bool "zxing option has been renamed" | |
5150 | select BR2_LEGACY | |
5151 | select BR2_PACKAGE_ZXING_CPP | |
5152 | help | |
d6109172 RM |
5153 | ZXing no longer provides the cpp bindings, it has been renamed |
5154 | to BR2_PACKAGE_ZXING_CPP which uses a new upstream. | |
7e5ddbcb | 5155 | |
4d131b4d YM |
5156 | # Since FreeRDP has new dependencies, protect this legacy to avoid the |
5157 | # infamous "unmet direct dependencies" kconfig error. | |
5158 | config BR2_PACKAGE_FREERDP_CLIENT | |
5159 | bool "freerdp client option renamed" | |
5160 | depends on BR2_PACKAGE_FREERDP | |
758c5c7f | 5161 | select BR2_LEGACY |
4d131b4d YM |
5162 | select BR2_PACKAGE_FREERDP_CLIENT_X11 |
5163 | ||
a658c4d1 GZ |
5164 | config BR2_PACKAGE_BLACKBOX |
5165 | bool "blackbox package has been removed" | |
5166 | select BR2_LEGACY | |
5167 | help | |
5168 | Upstream is dead and the package has been deprecated for | |
5169 | some time. There are other alternative maintained WMs. | |
5170 | ||
4ac4bc32 GZ |
5171 | config BR2_KERNEL_HEADERS_3_0 |
5172 | bool "kernel headers version 3.0.x are no longer supported" | |
4ac4bc32 GZ |
5173 | select BR2_LEGACY |
5174 | help | |
5175 | Version 3.0.x of the Linux kernel headers have been deprecated | |
5176 | for more than four buildroot releases and are now removed. | |
4ac4bc32 GZ |
5177 | |
5178 | config BR2_KERNEL_HEADERS_3_11 | |
5179 | bool "kernel headers version 3.11.x are no longer supported" | |
4ac4bc32 GZ |
5180 | select BR2_LEGACY |
5181 | help | |
d6109172 RM |
5182 | Version 3.11.x of the Linux kernel headers have been |
5183 | deprecated for more than four buildroot releases and are now | |
5184 | removed. | |
4ac4bc32 GZ |
5185 | |
5186 | config BR2_KERNEL_HEADERS_3_13 | |
5187 | bool "kernel headers version 3.13.x are no longer supported" | |
4ac4bc32 GZ |
5188 | select BR2_LEGACY |
5189 | help | |
d6109172 RM |
5190 | Version 3.13.x of the Linux kernel headers have been |
5191 | deprecated for more than four buildroot releases and are now | |
5192 | removed. | |
4ac4bc32 GZ |
5193 | |
5194 | config BR2_KERNEL_HEADERS_3_15 | |
5195 | bool "kernel headers version 3.15.x are no longer supported" | |
4ac4bc32 GZ |
5196 | select BR2_LEGACY |
5197 | help | |
d6109172 RM |
5198 | Version 3.15.x of the Linux kernel headers have been |
5199 | deprecated for more than four buildroot releases and are now | |
5200 | removed. | |
4ac4bc32 | 5201 | |
80404e8c TP |
5202 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI |
5203 | bool "DirectFB example df_andi has been removed" | |
758c5c7f | 5204 | select BR2_LEGACY |
80404e8c TP |
5205 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5206 | help | |
5207 | The per-DirectFB example options have been removed. The | |
5208 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5209 | examples. | |
5210 | ||
5211 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD | |
5212 | bool "DirectFB example df_bltload has been removed" | |
758c5c7f | 5213 | select BR2_LEGACY |
80404e8c TP |
5214 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5215 | help | |
5216 | The per-DirectFB example options have been removed. The | |
5217 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5218 | examples. | |
5219 | ||
5220 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD | |
5221 | bool "DirectFB example df_cpuload has been removed" | |
758c5c7f | 5222 | select BR2_LEGACY |
80404e8c TP |
5223 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5224 | help | |
5225 | The per-DirectFB example options have been removed. The | |
5226 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5227 | examples. | |
5228 | ||
5229 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER | |
5230 | bool "DirectFB example df_databuffer has been removed" | |
758c5c7f | 5231 | select BR2_LEGACY |
80404e8c TP |
5232 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5233 | help | |
5234 | The per-DirectFB example options have been removed. The | |
5235 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5236 | examples. | |
5237 | ||
5238 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD | |
5239 | bool "DirectFB example df_dioload has been removed" | |
758c5c7f | 5240 | select BR2_LEGACY |
80404e8c TP |
5241 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5242 | help | |
5243 | The per-DirectFB example options have been removed. The | |
5244 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5245 | examples. | |
5246 | ||
5247 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK | |
5248 | bool "DirectFB example df_dok has been removed" | |
758c5c7f | 5249 | select BR2_LEGACY |
80404e8c TP |
5250 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5251 | help | |
5252 | The per-DirectFB example options have been removed. The | |
5253 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5254 | examples. | |
5255 | ||
5256 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST | |
5257 | bool "DirectFB example df_drivertest has been removed" | |
758c5c7f | 5258 | select BR2_LEGACY |
80404e8c TP |
5259 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5260 | help | |
5261 | The per-DirectFB example options have been removed. The | |
5262 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5263 | examples. | |
5264 | ||
80404e8c TP |
5265 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE |
5266 | bool "DirectFB example df_fire has been removed" | |
758c5c7f | 5267 | select BR2_LEGACY |
80404e8c TP |
5268 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5269 | help | |
5270 | The per-DirectFB example options have been removed. The | |
5271 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5272 | examples. | |
5273 | ||
5274 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP | |
5275 | bool "DirectFB example df_flip has been removed" | |
758c5c7f | 5276 | select BR2_LEGACY |
80404e8c TP |
5277 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5278 | help | |
5279 | The per-DirectFB example options have been removed. The | |
5280 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5281 | examples. | |
5282 | ||
5283 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS | |
5284 | bool "DirectFB example df_fonts has been removed" | |
758c5c7f | 5285 | select BR2_LEGACY |
80404e8c TP |
5286 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5287 | help | |
5288 | The per-DirectFB example options have been removed. The | |
5289 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5290 | examples. | |
5291 | ||
5292 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT | |
5293 | bool "DirectFB example df_input has been removed" | |
758c5c7f | 5294 | select BR2_LEGACY |
80404e8c TP |
5295 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5296 | help | |
5297 | The per-DirectFB example options have been removed. The | |
5298 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5299 | examples. | |
5300 | ||
5301 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK | |
5302 | bool "DirectFB example df_joystick has been removed" | |
758c5c7f | 5303 | select BR2_LEGACY |
80404e8c TP |
5304 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5305 | help | |
5306 | The per-DirectFB example options have been removed. The | |
5307 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5308 | examples. | |
5309 | ||
5310 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES | |
5311 | bool "DirectFB example df_knuckles has been removed" | |
758c5c7f | 5312 | select BR2_LEGACY |
80404e8c TP |
5313 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5314 | help | |
5315 | The per-DirectFB example options have been removed. The | |
5316 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5317 | examples. | |
5318 | ||
5319 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER | |
5320 | bool "DirectFB example df_layer has been removed" | |
758c5c7f | 5321 | select BR2_LEGACY |
80404e8c TP |
5322 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5323 | help | |
5324 | The per-DirectFB example options have been removed. The | |
5325 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5326 | examples. | |
5327 | ||
5328 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX | |
5329 | bool "DirectFB example df_matrix has been removed" | |
758c5c7f | 5330 | select BR2_LEGACY |
80404e8c TP |
5331 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5332 | help | |
5333 | The per-DirectFB example options have been removed. The | |
5334 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5335 | examples. | |
5336 | ||
5337 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER | |
5338 | bool "DirectFB example df_matrix_water has been removed" | |
758c5c7f | 5339 | select BR2_LEGACY |
80404e8c TP |
5340 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5341 | help | |
5342 | The per-DirectFB example options have been removed. The | |
5343 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5344 | examples. | |
5345 | ||
5346 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO | |
5347 | bool "DirectFB example df_neo has been removed" | |
758c5c7f | 5348 | select BR2_LEGACY |
80404e8c TP |
5349 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5350 | help | |
5351 | The per-DirectFB example options have been removed. The | |
5352 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5353 | examples. | |
5354 | ||
5355 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD | |
5356 | bool "DirectFB example df_netload has been removed" | |
758c5c7f | 5357 | select BR2_LEGACY |
80404e8c TP |
5358 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5359 | help | |
5360 | The per-DirectFB example options have been removed. The | |
5361 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5362 | examples. | |
5363 | ||
5364 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE | |
5365 | bool "DirectFB example df_palette has been removed" | |
5366 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
5367 | help | |
5368 | The per-DirectFB example options have been removed. The | |
5369 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5370 | examples. | |
5371 | ||
5372 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE | |
5373 | bool "DirectFB example df_particle has been removed" | |
758c5c7f | 5374 | select BR2_LEGACY |
80404e8c TP |
5375 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5376 | help | |
5377 | The per-DirectFB example options have been removed. The | |
5378 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5379 | examples. | |
5380 | ||
5381 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER | |
5382 | bool "DirectFB example df_porter has been removed" | |
758c5c7f | 5383 | select BR2_LEGACY |
80404e8c TP |
5384 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5385 | help | |
5386 | The per-DirectFB example options have been removed. The | |
5387 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5388 | examples. | |
5389 | ||
5390 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS | |
5391 | bool "DirectFB example df_stress has been removed" | |
5392 | select BR2_PACKAGE_DIRECTFB_EXAMPLES | |
5393 | help | |
5394 | The per-DirectFB example options have been removed. The | |
5395 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5396 | examples. | |
5397 | ||
5398 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE | |
5399 | bool "DirectFB example df_texture has been removed" | |
758c5c7f | 5400 | select BR2_LEGACY |
80404e8c TP |
5401 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5402 | help | |
5403 | The per-DirectFB example options have been removed. The | |
5404 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5405 | examples. | |
5406 | ||
5407 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO | |
5408 | bool "DirectFB example df_video has been removed" | |
758c5c7f | 5409 | select BR2_LEGACY |
80404e8c TP |
5410 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5411 | help | |
5412 | The per-DirectFB example options have been removed. The | |
5413 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5414 | examples. | |
5415 | ||
5416 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE | |
5417 | bool "DirectFB example df_video_particle has been removed" | |
758c5c7f | 5418 | select BR2_LEGACY |
80404e8c TP |
5419 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5420 | help | |
5421 | The per-DirectFB example options have been removed. The | |
5422 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5423 | examples. | |
5424 | ||
5425 | config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW | |
5426 | bool "DirectFB example df_window has been removed" | |
758c5c7f | 5427 | select BR2_LEGACY |
80404e8c TP |
5428 | select BR2_PACKAGE_DIRECTFB_EXAMPLES |
5429 | help | |
5430 | The per-DirectFB example options have been removed. The | |
5431 | BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all | |
5432 | examples. | |
5433 | ||
2b78fb21 GB |
5434 | config BR2_PACKAGE_KOBS_NG |
5435 | bool "kobs-ng was replaced by imx-kobs" | |
5436 | select BR2_LEGACY | |
5437 | select BR2_PACKAGE_IMX_KOBS | |
5438 | help | |
5439 | The outdated kobs-ng has been replaced by the Freescale- | |
5440 | maintained imx-kobs package. | |
5441 | ||
11573f5a TP |
5442 | config BR2_PACKAGE_SAWMAN |
5443 | bool "sawman package removed" | |
5444 | select BR2_LEGACY | |
5445 | select BR2_PACKAGE_DIRECTFB_SAWMAN | |
5446 | help | |
5447 | This option has been removed because the sawman package no | |
5448 | longer exists: it was merged inside DirectFB itself. This | |
5449 | feature can now be enabled using the | |
5450 | BR2_PACKAGE_DIRECTFB_SAWMAN option. | |
5451 | ||
ae46e8f9 TP |
5452 | config BR2_PACKAGE_DIVINE |
5453 | bool "divine package removed" | |
5454 | select BR2_LEGACY | |
5455 | select BR2_PACKAGE_DIRECTFB_DIVINE | |
5456 | help | |
5457 | This option has been removed because the divine package no | |
5458 | longer exists: it was merged inside DirectFB itself. This | |
5459 | feature can now be enabled using the | |
5460 | BR2_PACKAGE_DIRECTFB_DIVINE option. | |
5461 | ||
5462 | ############################################################################### | |
16b8e813 GZ |
5463 | comment "Legacy options removed in 2015.08" |
5464 | ||
9d9f1a92 BK |
5465 | config BR2_PACKAGE_KODI_PVR_ADDONS |
5466 | bool "Kodi PVR addon was split" | |
5467 | select BR2_LEGACY | |
2579ec20 | 5468 | select BR2_PACKAGE_KODI_PVR_ARGUSTV |
a69eca43 | 5469 | select BR2_PACKAGE_KODI_PVR_DVBLINK |
6894c6c7 | 5470 | select BR2_PACKAGE_KODI_PVR_DVBVIEWER |
313e45cd | 5471 | select BR2_PACKAGE_KODI_PVR_FILMON |
6940d66a | 5472 | select BR2_PACKAGE_KODI_PVR_HTS |
8c326ff8 | 5473 | select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE |
a571287d | 5474 | select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER |
afb2f155 | 5475 | select BR2_PACKAGE_KODI_PVR_MYTHTV |
0757c7d3 | 5476 | select BR2_PACKAGE_KODI_PVR_NEXTPVR |
805e9c15 | 5477 | select BR2_PACKAGE_KODI_PVR_NJOY |
8776003d | 5478 | select BR2_PACKAGE_KODI_PVR_PCTV |
70cf949f | 5479 | select BR2_PACKAGE_KODI_PVR_STALKER |
610a3701 | 5480 | select BR2_PACKAGE_KODI_PVR_VBOX |
7457d487 | 5481 | select BR2_PACKAGE_KODI_PVR_VDR_VNSI |
eaf250c1 | 5482 | select BR2_PACKAGE_KODI_PVR_VUPLUS |
967a4e9a | 5483 | select BR2_PACKAGE_KODI_PVR_WMC |
9d9f1a92 | 5484 | help |
4092d2a3 | 5485 | Kodi PVR addon was split into separate modules |
9d9f1a92 | 5486 | |
f84cc202 GZ |
5487 | config BR2_BINUTILS_VERSION_2_23_2 |
5488 | bool "binutils 2.23 option renamed" | |
5489 | select BR2_LEGACY | |
f84cc202 | 5490 | help |
ae466a60 TP |
5491 | Binutils 2.23.2 has been removed, using a newer version is |
5492 | recommended. | |
f84cc202 GZ |
5493 | |
5494 | config BR2_BINUTILS_VERSION_2_24 | |
5495 | bool "binutils 2.24 option renamed" | |
5496 | select BR2_LEGACY | |
5497 | select BR2_BINUTILS_VERSION_2_24_X | |
5498 | help | |
5499 | The binutils version option has been renamed to match the | |
5500 | same patchlevel logic used by gcc. The new option is now | |
5501 | BR2_BINUTILS_VERSION_2_24_X. | |
5502 | ||
5503 | config BR2_BINUTILS_VERSION_2_25 | |
5504 | bool "binutils 2.25 option renamed" | |
5505 | select BR2_LEGACY | |
5506 | select BR2_BINUTILS_VERSION_2_25_X | |
5507 | help | |
5508 | The binutils version option has been renamed to match the | |
5509 | same patchlevel logic used by gcc. The new option is now | |
5510 | BR2_BINUTILS_VERSION_2_25_X. | |
5511 | ||
1326e761 RN |
5512 | config BR2_PACKAGE_PERF |
5513 | bool "perf option has been renamed" | |
5514 | select BR2_LEGACY | |
5515 | select BR2_LINUX_KERNEL_TOOL_PERF | |
5516 | help | |
5517 | The perf package has been moved as a Linux tools package, | |
5518 | and the option to enable it is now | |
5519 | BR2_LINUX_KERNEL_TOOL_PERF. | |
5520 | ||
2f845953 TP |
5521 | config BR2_BINUTILS_VERSION_2_22 |
5522 | bool "binutils 2.22 removed" | |
5523 | select BR2_LEGACY | |
5524 | help | |
5525 | Binutils 2.22 has been removed, using a newer version is | |
5526 | recommended. | |
5527 | ||
4c0613e7 GB |
5528 | config BR2_PACKAGE_GPU_VIV_BIN_MX6Q |
5529 | bool "gpu-viv-bin-mx6q" | |
5530 | select BR2_LEGACY | |
5531 | select BR2_PACKAGE_IMX_GPU_VIV | |
5532 | help | |
5533 | Vivante graphics libraries have been renamed to | |
5534 | BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package | |
5535 | name. | |
5536 | ||
7742abe0 | 5537 | config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS |
7742abe0 | 5538 | bool "libsemanage python bindings removed" |
a1264445 | 5539 | depends on BR2_PACKAGE_PYTHON |
758c5c7f | 5540 | select BR2_LEGACY |
7742abe0 MW |
5541 | help |
5542 | This option has been removed, since the libsemanage Python | |
5543 | bindings on the target were not useful. | |
5544 | ||
16b8e813 GZ |
5545 | config BR2_TARGET_UBOOT_NETWORK |
5546 | bool "U-Boot custom network settings removed" | |
5547 | select BR2_LEGACY | |
5548 | help | |
5549 | U-Boot's custom network settings options have been removed. | |
5550 | ||
a91a5c16 | 5551 | endmenu |
53903a15 AV |
5552 | |
5553 | endif # !SKIP_LEGACY |