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