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