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