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