]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in.legacy
gst1-plugins-bad: add Image Quality Assessment (IQA) plugin
[coffee/buildroot.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 uses an
103           option that no longer exists in current buildroot. In that case, the
104           build will fail. Look for config options which are selected in the
105           menu below: they no longer exist and should be replaced by something
106           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: at some point in the future, the oldest legacy"
139 comment "options will be removed, and configuration files    "
140 comment "that still have those options set, will fail to     "
141 comment "build, or run, in unpredictable ways.               "
142 comment "----------------------------------------------------"
143 endif
144
145 ###############################################################################
146 comment "Legacy options removed in 2017.08"
147
148 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
149         bool "cdxaparse removed"
150         select BR2_LEGACY
151
152 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
153         bool "dataurisrc moved to gstreamer1"
154         select BR2_LEGACY
155         help
156           Dataurisrc has moved to gstreamer core and is always built.
157
158 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
159         bool "dccp removed"
160         select BR2_LEGACY
161
162 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
163         bool "hdvparse removed"
164         select BR2_LEGACY
165
166 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
167         bool "mve removed"
168         select BR2_LEGACY
169
170 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
171         bool "nuvdemux removed"
172         select BR2_LEGACY
173
174 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
175         bool "patchdetect removed"
176         select BR2_LEGACY
177
178 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
179         bool "sdi removed"
180         select BR2_LEGACY
181
182 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
183         bool "tta removed"
184         select BR2_LEGACY
185
186 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
187         bool "videomeasure removed"
188         select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
189         select BR2_LEGACY
190         help
191           videomeasure plugin has been removed and has been replaced by
192           iqa, which has automatically been enabled.
193
194 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
195         bool "apexsink removed"
196         select BR2_LEGACY
197
198 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
199         bool "sdl removed"
200         select BR2_LEGACY
201
202 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
203         bool "mad (*.mp3 audio) removed"
204         select BR2_LEGACY
205
206 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
207         bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
208         select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
209         select BR2_LEGACY
210         help
211           The WebRTC plugin in GStreamer 1.x has always been named
212           webrtcdsp, but was wrongly introduced in Buildroot under the
213           name webrtc. Therefore, we have renamed the option to match
214           the actual name of the GStreamer plugin.
215
216 config BR2_STRIP_none
217         bool "Strip command 'none' has been removed"
218         select BR2_LEGACY
219         help
220           The strip command choice has been changed into a single
221           boolean option. Please check that the new setting is
222           correct (in the "Build options" sub-menu)
223
224 config BR2_PACKAGE_BEECRYPT_CPP
225         bool "C++ support removed in beecrypt"
226         select BR2_LEGACY
227         help
228           Support for C++ depends on icu. The beecrypt package is
229           incompatible with icu 59+.
230
231 config BR2_PACKAGE_SPICE_CLIENT
232         bool "spice client support removed"
233         select BR2_LEGACY
234         help
235           Spice client support has been removed upstream. The
236           functionality now lives in the spice-gtk widget and
237           virt-viewer.
238
239 config BR2_PACKAGE_SPICE_GUI
240         bool "spice gui support removed"
241         select BR2_LEGACY
242         help
243           Spice gui support has been removed upstream. The
244           functionality now lives in the spice-gtk widget and
245           virt-viewer.
246
247 config BR2_PACKAGE_SPICE_TUNNEL
248         bool "spice network redirection removed"
249         select BR2_LEGACY
250         help
251           Spice network redirection, aka tunnelling has been removed
252           upstream.
253
254 config BR2_PACKAGE_INPUT_TOOLS
255         bool "input-tools removed"
256         select BR2_LEGACY
257         select BR2_PACKAGE_LINUXCONSOLETOOLS
258         help
259           input-tools has been removed, it is replaced by
260           linuxconsoletools, which has automatically been enabled.
261
262 config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
263         bool "inputattach moved to linuxconsoletools"
264         select BR2_LEGACY
265         select BR2_PACKAGE_LINUXCONSOLETOOLS
266         select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
267         help
268           input-tools has been removed, inputattach is now part
269           of linuxconsoletools, which has automatically been
270           enabled.
271
272 config BR2_PACKAGE_INPUT_TOOLS_JSCAL
273         bool "jscal moved to linuxconsoletools"
274         select BR2_LEGACY
275         select BR2_PACKAGE_LINUXCONSOLETOOLS
276         select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
277         help
278           input-tools has been removed, jscal is now part
279           of linuxconsoletools, which has automatically been
280           enabled.
281
282 config BR2_PACKAGE_INPUT_TOOLS_JSTEST
283         bool "jstest moved to linuxconsoletools"
284         select BR2_LEGACY
285         select BR2_PACKAGE_LINUXCONSOLETOOLS
286         select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
287         help
288           input-tools has been removed, jstest is now part
289           of linuxconsoletools, which has automatically been
290           enabled.
291
292 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
293         bool "SH Sourcery toolchain has been removed"
294         select BR2_LEGACY
295         help
296           The Sourcery CodeBench toolchain for the sh architecture has
297           been removed, since it uses glibc older than 2.17 that requires
298           -lrt to link executables using clock_* system calls. This makes
299           this toolchain difficult to maintain over time.
300
301 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
302         bool "x86 Sourcery toolchain has been removed"
303         select BR2_LEGACY
304         help
305           The Sourcery CodeBench toolchain for the x86 architecture has
306           been removed, since it uses glibc older than 2.17 that requires
307           -lrt to link executables using clock_* system calls. This makes
308           this toolchain difficult to maintain over time.
309
310 config BR2_GCC_VERSION_4_8_X
311         bool "gcc 4.8.x support removed"
312         select BR2_LEGACY
313         help
314           Support for gcc version 4.8.x has been removed. The current
315           default version (5.x or later) has been selected instead.
316
317 ###############################################################################
318 comment "Legacy options removed in 2017.05"
319
320 config BR2_PACKAGE_SUNXI_MALI_R2P4
321         bool "sunxi-mali r2p4 removed"
322         select BR2_LEGACY
323         help
324           sunxi-mali libMali for r2p4 Mali kernel module has been
325           removed since the libump package only provides libUMP.so.3.
326           libMali for r2p4 Mali kernel module requires libUMP.so.2.
327
328 config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
329         bool "CoffeeScript option has been removed"
330         select BR2_LEGACY
331         help
332           The option to enable NodeJS CoffeeScript has been removed.
333           To continue using it, add "coffee-script" to
334           BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
335
336 config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
337         bool "Express web application framework option has been removed"
338         select BR2_LEGACY
339         help
340           The option to enable the NodeJS Express web application
341           framework has been removed. To continue using it, add
342           "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
343
344 config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
345         bool "bluez5_utils gatttool install option removed"
346         select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
347         help
348           The option to install gatttool specifically has been removed.
349           Since version 5.44 gatttool is in the list of deprecated
350           tools. The option to build and install deprecated tools has
351           been automatically enabled.
352
353 config BR2_PACKAGE_OPENOCD_FT2XXX
354         bool "openocd ft2232 support has been removed"
355         select BR2_PACKAGE_OPENOCD_FTDI
356         select BR2_LEGACY
357         help
358           FT2232 support in OpenOCD has been removed, it's replaced by
359           FDTI support, which has automatically been enabled.
360
361 config BR2_PACKAGE_KODI_RTMPDUMP
362         bool "kodi rtmp has been removed"
363         select BR2_LEGACY
364         help
365           Internal rtmp support was removed from Kodi.
366
367 config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
368         bool "kodi-visualisation-fountain has been removed"
369         select BR2_LEGACY
370         help
371           According to upstream 'the visualization is not currently
372           in a working shape.'
373
374 config BR2_PACKAGE_PORTMAP
375         bool "portmap has been removed"
376         select BR2_LEGACY
377         select BR2_PACKAGE_RPCBIND
378         help
379           The portmap upstream tarball is removed, no releases since
380           ten years and latest change in upstream git in 2014.
381           You should better use rpcbind as a RPC portmapper.
382
383 config BR2_BINUTILS_VERSION_2_25_X
384         bool "binutils version 2.25 support removed"
385         select BR2_LEGACY
386         help
387           Support for binutils version 2.25 has been removed. The
388           current default version (2.27 or later) has been selected
389           instead.
390
391 config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
392         bool "uclibc RPC support has been removed"
393         select BR2_LEGACY
394         help
395           uClibc-ng removed internal RPC implementation in 1.0.23. You
396           should use libtirpc instead.
397
398 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
399         int "extra size in blocks has been removed"
400         default 0
401         help
402           Since the support for auto calculation of the filesystem size has been
403           removed, this option is now useless and must be 0.
404           You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS matchs
405           your needs.
406
407 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
408         bool
409         default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
410         select BR2_LEGACY
411
412 config BR2_PACKAGE_SYSTEMD_KDBUS
413         bool "systemd-kdbus has been removed"
414         select BR2_LEGACY
415         help
416           --enable/disable-kdbus configure option has been removed since
417           systemd-231.
418
419 config BR2_PACKAGE_POLARSSL
420         bool "polarssl has been removed"
421         select BR2_LEGACY
422         help
423           The polarssl crypto library has been removed since the 1.2.x
424           release branch is no longer maintained. Newer upstream
425           branches/releases (mbedtls) have API changes so they're not
426           drop-in replacements.
427
428 config BR2_NBD_CLIENT
429         bool "nbd client option was renamed"
430         select BR2_LEGACY
431         select BR2_PACKAGE_NBD_CLIENT
432         help
433           The nbd client option has been renamed to BR2_PACKAGE_NBD_CLIENT.
434
435 config BR2_NBD_SERVER
436         bool "nbd server option was renamed"
437         select BR2_LEGACY
438         select BR2_PACKAGE_NBD_SERVER
439         help
440           The nbd server option has been renamed to BR2_PACKAGE_NBD_SERVER.
441
442 config BR2_PACKAGE_GMOCK
443         bool "gmock merged into gtest package"
444         select BR2_LEGACY
445         select BR2_PACKAGE_GTEST
446         select BR2_PACKAGE_GTEST_GMOCK
447         help
448           GMock is now a suboption of the GTest package.
449
450 config BR2_KERNEL_HEADERS_4_8
451         bool "kernel headers version 4.8.x are no longer supported"
452         select BR2_KERNEL_HEADERS_4_4
453         select BR2_LEGACY
454         help
455           Version 4.8.x of the Linux kernel headers are no longer
456           maintained upstream and are now removed. As an alternative,
457           version 4.4.x of the headers have been automatically
458           selected in your configuration.
459
460 config BR2_KERNEL_HEADERS_3_18
461         bool "kernel headers version 3.18.x are no longer supported"
462         select BR2_KERNEL_HEADERS_3_12
463         select BR2_LEGACY
464         help
465           Version 3.18.x of the Linux kernel headers are no longer
466           maintained upstream and are now removed. As an alternative,
467           version 3.12.x of the headers have been automatically
468           selected in your configuration.
469
470 config BR2_GLIBC_VERSION_2_22
471         bool "glibc 2.22 removed"
472         select BR2_LEGACY
473         help
474           Support for glibc version 2.22 has been removed. The current
475           default version has been selected instead.
476
477 ###############################################################################
478 comment "Legacy options removed in 2017.02"
479
480 config BR2_PACKAGE_PERL_DB_FILE
481         bool "perl-db-file removed"
482         select BR2_LEGACY
483         select BR2_PACKAGE_BERKELEYDB
484         select BR2_PACKAGE_PERL
485         help
486           DB_File can be built as a core Perl module, so the separate
487           perl-db-file package has been removed.
488
489 config BR2_KERNEL_HEADERS_4_7
490         bool "kernel headers version 4.7.x are no longer supported"
491         select BR2_KERNEL_HEADERS_4_4
492         select BR2_LEGACY
493         help
494           Version 4.7.x of the Linux kernel headers are no longer
495           maintained upstream and are now removed. As an alternative,
496           version 4.4.x of the headers have been automatically
497           selected in your configuration.
498
499 config BR2_KERNEL_HEADERS_4_6
500         bool "kernel headers version 4.6.x are no longer supported"
501         select BR2_KERNEL_HEADERS_4_4
502         select BR2_LEGACY
503         help
504           Version 4.6.x of the Linux kernel headers are no longer
505           maintained upstream and are now removed. As an alternative,
506           version 4.4.x of the headers have been automatically
507           selected in your configuration.
508
509 config BR2_KERNEL_HEADERS_4_5
510         bool "kernel headers version 4.5.x are no longer supported"
511         select BR2_KERNEL_HEADERS_4_4
512         select BR2_LEGACY
513         help
514           Version 4.5.x of the Linux kernel headers are no longer
515            maintained upstream and are now removed. As an alternative,
516            version 4.4.x of the headers have been automatically
517            selected in your configuration.
518
519 config BR2_KERNEL_HEADERS_3_14
520         bool "kernel headers version 3.14.x are no longer supported"
521         select BR2_KERNEL_HEADERS_3_12
522         select BR2_LEGACY
523           help
524           Version 3.14.x of the Linux kernel headers are no longer
525           maintained upstream and are now removed. As an alternative,
526           version 3.12.x of the headers have been automatically
527           selected in your configuration.
528
529 config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
530         bool "musl-cross 1.1.12 toolchain removed"
531         select BR2_LEGACY
532         help
533           The support for the prebuilt toolchain based on the Musl C
534           library provided by the musl-cross project has been removed.
535           Upstream doesn't provide any prebuilt toolchain anymore, use the
536           Buildroot toolchain instead.
537
538 config BR2_UCLIBC_INSTALL_TEST_SUITE
539         bool "uClibc tests now in uclibc-ng-test"
540         select BR2_LEGACY
541         select BR2_PACKAGE_UCLIBC_NG_TEST
542         help
543           The test suite of the uClibc C library has been moved into a
544           separate package, uclibc-ng-test.
545
546 config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
547         bool "Blackfin.uclinux.org 2014R1 toolchain removed"
548         select BR2_LEGACY
549         help
550           The ADI Blackfin toolchain has many bugs which are fixed in
551           more recent gcc and uClibc-ng releases. Use the Buildroot
552           toolchain instead.
553
554 config BR2_PACKAGE_MAKEDEVS
555         bool "makedevs removed"
556         select BR2_LEGACY
557         help
558           The makedevs tool is part of busybox. The Buildroot fork
559           should not be used outside of the Buildroot infrastructure.
560
561 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
562         bool "Arago ARMv7 2011.09 removed"
563         select BR2_LEGACY
564         help
565           The Arago toolchains are every old and not updated anymore.
566
567 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
568         bool "Arago ARMv5 2011.09 removed"
569         select BR2_LEGACY
570         help
571           The Arago toolchains are every old and not updated anymore.
572
573 config BR2_PACKAGE_SNOWBALL_HDMISERVICE
574         bool "snowball-hdmiservice removed"
575         select BR2_LEGACY
576         help
577           We no longer have support for the Snowball platform in
578           Buildroot, so this package was no longer useful.
579
580 config BR2_PACKAGE_SNOWBALL_INIT
581         bool "snowball-init removed"
582         select BR2_LEGACY
583         help
584           We no longer have support for the Snowball platform in
585           Buildroot, so this package was no longer useful.
586
587 config BR2_GDB_VERSION_7_9
588         bool "gdb 7.9 has been removed"
589         select BR2_LEGACY
590         help
591           The 7.9 version of gdb has been removed. Use a newer version
592           instead.
593
594 ###############################################################################
595 comment "Legacy options removed in 2016.11"
596
597 config BR2_PACKAGE_PHP_SAPI_CLI_CGI
598         bool "PHP CGI and CLI options are now seperate"
599         select BR2_PACKAGE_PHP_SAPI_CLI
600         select BR2_PACKAGE_PHP_SAPI_CGI
601         select BR2_LEGACY
602         help
603           The PHP Interface options have been split up into a
604           separate option for each interface.
605
606 config BR2_PACKAGE_PHP_SAPI_CLI_FPM
607         bool "PHP CLI and FPM options are now separate"
608         select BR2_PACKAGE_PHP_SAPI_CLI
609         select BR2_PACKAGE_PHP_SAPI_FPM
610         select BR2_LEGACY
611         help
612           The PHP Interface options have been split up into a
613           separate option for each interface.
614
615 config BR2_PACKAGE_WVSTREAMS
616         bool "wvstreams removed"
617         select BR2_LEGACY
618         help
619           wvstreams is not maintained anymore since about 2009. It also
620           doesn't build anymore with recent compilers (GCC 5+).
621
622 config BR2_PACKAGE_WVDIAL
623         bool "wvdial removed"
624         select BR2_LEGACY
625         help
626           wvdial is not maintained anymore since about 2009. It also
627           doesn't build anymore with recent compilers (GCC 5+).
628
629 config BR2_PACKAGE_WEBKITGTK24
630         bool "webkitgtk 2.4.x removed"
631         select BR2_LEGACY
632         help
633           This legacy package only existed because some other packages
634           depended on that specific version of webkitgtk. However, the
635           other packages have been fixed. webkitgtk 2.4 is full of
636           security issues so it needs to be removed.
637
638 config BR2_PACKAGE_TORSMO
639         bool "torsmo removed"
640         select BR2_LEGACY
641         help
642           torsmo has been unmaintained for a long time, and nobody
643           seems to be interested in it.
644
645 config BR2_PACKAGE_SSTRIP
646         bool "sstrip removed"
647         select BR2_LEGACY
648         help
649           sstrip is unmaintained and potentially harmful. It doesn't
650           save so much compared to normal binutils strip, and there is
651           a big risk of binaries that don't work. Use normal strip
652           instead.
653
654 config BR2_KERNEL_HEADERS_4_3
655         bool "kernel headers version 4.3.x are no longer supported"
656         select BR2_KERNEL_HEADERS_4_1
657         select BR2_LEGACY
658         help
659           Version 4.3.x of the Linux kernel headers are no longer
660           maintained upstream and are now removed. As an alternative,
661           version 4.1.x of the headers have been automatically
662           selected in your configuration.
663
664 config BR2_KERNEL_HEADERS_4_2
665         bool "kernel headers version 4.2.x are no longer supported"
666         select BR2_KERNEL_HEADERS_4_1
667         select BR2_LEGACY
668         help
669           Version 4.2.x of the Linux kernel headers are no longer
670           maintained upstream and are now removed. As an alternative,
671           version 4.1.x of the headers have been automatically
672           selected in your configuration.
673
674 config BR2_PACKAGE_KODI_ADDON_XVDR
675         bool "kodi-addon-xvdr removed"
676         select BR2_LEGACY
677         help
678           According to the github project page:
679           https://github.com/pipelka/xbmc-addon-xvdr
680           this package is discontinued.
681
682 config BR2_PACKAGE_IPKG
683         bool "ipkg removed"
684         select BR2_LEGACY
685         help
686           ipkg dates back to the early 2000s when Compaq started the
687           handhelds.org project and it hasn't seen development since 2006.
688           Use opkg as a replacement.
689
690 config BR2_GCC_VERSION_4_7_X
691         bool "gcc 4.7.x support removed"
692         select BR2_LEGACY
693         help
694           Support for gcc version 4.7.x has been removed. The current
695           default version (4.9.x or later) has been selected instead.
696
697 config BR2_BINUTILS_VERSION_2_24_X
698         bool "binutils version 2.24 support removed"
699         select BR2_LEGACY
700         help
701           Support for binutils version 2.24 has been removed. The
702           current default version (2.26 or later) has been selected
703           instead.
704
705 config BR2_PACKAGE_WESTON_RPI
706         bool "Weston propietary RPI support is gone"
707         select BR2_LEGACY
708         help
709           Upstream decided the propietary (rpi-userland) weston composer
710           support wasn't worth the effort so it was removed. Switch to
711           the open VC4 support.
712
713 config BR2_LINUX_KERNEL_TOOL_CPUPOWER
714         bool "linux-tool cpupower"
715         depends on BR2_LINUX_KERNEL
716         select BR2_LEGACY
717         select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
718         help
719           Linux tool cpupower option was renamed.
720
721 config BR2_LINUX_KERNEL_TOOL_PERF
722         bool "linux-tool perf"
723         depends on BR2_LINUX_KERNEL
724         select BR2_LEGACY
725         select BR2_PACKAGE_LINUX_TOOLS_PERF
726         help
727           Linux tool perf option was renamed.
728
729 config BR2_LINUX_KERNEL_TOOL_SELFTESTS
730         bool "linux-tool selftests"
731         depends on BR2_LINUX_KERNEL
732         select BR2_LEGACY
733         select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
734         help
735           Linux tool selftests option was renamed.
736
737 config BR2_GCC_VERSION_4_8_ARC
738         bool "gcc arc option renamed"
739         select BR2_LEGACY
740         select BR2_GCC_VERSION_ARC
741         help
742           The option that selects the gcc version for the ARC
743           architecture has been renamed to BR2_GCC_VERSION_ARC.
744
745 config BR2_KERNEL_HEADERS_4_0
746         bool "kernel headers version 4.0.x are no longer supported"
747         select BR2_KERNEL_HEADERS_3_12
748         select BR2_LEGACY
749         help
750           Version 4.0.x of the Linux kernel headers have been deprecated
751           for more than four buildroot releases and are now removed.
752           As an alternative, version 3.12.x of the headers have been
753           automatically selected in your configuration.
754
755 config BR2_KERNEL_HEADERS_3_19
756         bool "kernel headers version 3.19.x are no longer supported"
757         select BR2_KERNEL_HEADERS_3_12
758         select BR2_LEGACY
759         help
760           Version 3.19.x of the Linux kernel headers have been deprecated
761           for more than four buildroot releases and are now removed.
762           As an alternative, version 3.12.x of the headers have been
763           automatically selected in your configuration.
764
765 config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
766         bool "libevas-generic-loaders package removed"
767         select BR2_LEGACY
768         select BR2_PACKAGE_EFL
769         help
770           With EFL 1.18, libevas-generic-loaders is now provided by the efl
771           package.
772
773 config BR2_PACKAGE_ELEMENTARY
774         bool "elementary package removed"
775         select BR2_LEGACY
776         select BR2_PACKAGE_EFL
777         help
778           With EFL 1.18, elementary is now provided by the efl package.
779
780 config BR2_LINUX_KERNEL_CUSTOM_LOCAL
781         bool "Linux kernel local directory option removed"
782         help
783           The option to select a local directory as the source of the Linux
784           kernel has been removed. It hurts reproducibility of builds.
785
786           In case you were using this option during development of your
787           Linux kernel, use the override mechanism instead.
788
789 ###############################################################################
790 comment "Legacy options removed in 2016.08"
791
792 config BR2_PACKAGE_EFL_JP2K
793         bool "libevas jp2k loader has been removed"
794         select BR2_LEGACY
795         help
796           JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
797           while Buildroot only packages openjpeg 2.x. Therefore, the
798           JP2K loader has been removed from EFL.
799
800 config BR2_PACKAGE_SYSTEMD_COMPAT
801         bool "systemd compatibility libraries have been removed"
802         select BR2_LEGACY
803         help
804           The systemd option to enable the compatibility libraries has
805           been removed. Theses libraries have been useless since a few
806           version, and have been fully dropped from the source since
807           v230.
808
809 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
810         bool "gst1-plugins-bad liveadder plugin removed"
811         select BR2_LEGACY
812         select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
813         help
814           The functionality of the liveadder plugin of the
815           gst1-plugins-bad package has been merged into audiomixer.
816
817 config BR2_PACKAGE_LIBFSLVPUWRAP
818         bool "libfslvpuwrap has been renamed to imx-vpuwrap"
819         select BR2_LEGACY
820         select BR2_PACKAGE_IMX_VPUWRAP
821         help
822           The libfslvpuwrap has been renamed to match the renamed package.
823
824 config BR2_PACKAGE_LIBFSLPARSER
825         bool "libfslparser has been renamed to imx-parser"
826         select BR2_LEGACY
827         select BR2_PACKAGE_IMX_PARSER
828         help
829           The libfslparser has been renamed to match the renamed package.
830
831 config BR2_PACKAGE_LIBFSLCODEC
832         bool "libfslcodec has been renamed to imx-codec"
833         select BR2_LEGACY
834         select BR2_PACKAGE_IMX_CODEC
835         help
836           The libfslcodec has been renamed to match the renamed package.
837
838 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
839         bool "FIT support in uboot-tools has been refactored"
840         select BR2_LEGACY
841         select BR2_PACKAGE_DTC
842         select BR2_PACKAGE_DTC_PROGRAMS
843         select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
844         select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
845         select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
846         help
847           This option has been removed in favor of a more fine-grained
848           configuration, which is recommended. Selecting this option
849           enables FIT and FIT signature support for the target packages.
850           It will also select the dtc and openssl packages.
851
852 config BR2_PTHREADS_OLD
853         bool "linuxthreads (stable/old)"
854         select BR2_LEGACY
855         help
856           Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
857           BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
858
859 config BR2_BINUTILS_VERSION_2_23_X
860         bool "binutils 2.23 removed"
861         select BR2_LEGACY
862         help
863           Binutils 2.23 has been removed, using a newer version is
864           recommended.
865
866 config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
867         bool "eglibc support has been removed"
868         select BR2_LEGACY
869         help
870           The eglibc project no longer exists, as it has been merged
871           back into the glibc project. Therefore, support for eglibc
872           has been removed, and glibc should be used instead.
873
874 config BR2_GDB_VERSION_7_8
875         bool "gdb 7.8 has been removed"
876         select BR2_LEGACY
877         help
878           The 7.8 version of gdb has been removed. Use a newer version
879           instead.
880
881 ###############################################################################
882 comment "Legacy options removed in 2016.05"
883
884 config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
885         bool "openvpn polarssl crypto backend removed"
886         select BR2_LEGACY
887         help
888           The OpenVPN polarssl crypto backend option has been removed.
889           Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
890           compatible with mbedtls (polarssl) series 2.x which is the
891           version provided in buildroot. And both can't coexist.
892           It now uses OpenSSL as the only option.
893
894
895 config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
896         bool "nginx http spdy module removed"
897         select BR2_LEGACY
898         select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
899         help
900           The ngx_http_spdy_module has been superseded by the
901           ngx_http_v2_module since nginx v1.9.5.  The
902           ngx_http_v2_module modules has been automatically selected
903           in your configuration.
904
905 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
906         bool "gst1-plugins-bad rtp plugin moved to good"
907         select BR2_LEGACY
908         help
909           The rtp plugin has been moved from gst1-plugins-base to
910           gst1-plugins-good.
911
912 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
913         bool "gst1-plugins-bad mpg123 plugin moved to ugly"
914         select BR2_LEGACY
915         help
916           The mpg123 plugin has been moved from gst1-plugins-bad to
917           gst1-plugins-ugly.
918
919 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
920         bool "PowerPC Sourcery toolchain has been removed"
921         select BR2_LEGACY
922         help
923           The Sourcery CodeBench toolchain for the PowerPC
924           architecture has been removed, as it was very old, not
925           maintained, and causing numerous build failures with modern
926           userspace packages.
927
928 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
929         bool "PowerPC Sourcery E500v2 toolchain has been removed"
930         select BR2_LEGACY
931         help
932           The Sourcery CodeBench toolchain for the PowerPC E500v2
933           architecture has been removed, as it was very old, not
934           maintained, and causing numerous build failures with modern
935           userspace packages.
936
937 config BR2_x86_i386
938         bool "x86 i386 support removed"
939         select BR2_LEGACY
940         help
941           The support for the i386 processors of the x86 architecture
942           has been removed.
943
944 config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
945         bool "qt5webkit-examples package removed"
946         select BR2_LEGACY
947         help
948           The qt5webkit-examples package has been removed, since it
949           was removed from upstream starting from Qt 5.6.
950
951 config BR2_PACKAGE_QT5QUICK1
952         bool "qt5quick1 package removed"
953         select BR2_LEGACY
954         help
955           The qt5quick1 package has been removed, since it was removed
956           from upstream starting from Qt 5.6.
957
958 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
959         string "uboot custom patch dir has been removed"
960         help
961           The uboot custom patch directory option has been removed. Use
962           the improved BR2_TARGET_UBOOT_PATCH option instead.
963
964 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
965         bool
966         default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
967         select BR2_LEGACY
968
969 # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
970 # boot/uboot/Config.in
971
972 config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
973         bool "xf86-input-void removed"
974         select BR2_LEGACY
975         help
976           The xf86-input-void package has been removed, there's no need
977           for it in any modern (post-2007) xorg server.
978
979 config BR2_KERNEL_HEADERS_3_17
980         bool "kernel headers version 3.17.x are no longer supported"
981         select BR2_KERNEL_HEADERS_3_12
982         select BR2_LEGACY
983         help
984           Version 3.17.x of the Linux kernel headers have been deprecated
985           for more than four buildroot releases and are now removed.
986           As an alternative, version 3.12.x of the headers have been
987           automatically selected in your configuration.
988
989 config BR2_GDB_VERSION_7_7
990         bool "gdb 7.7 has been removed"
991         select BR2_LEGACY
992         help
993           The 7.7 version of gdb has been removed. Use a newer version
994           instead.
995
996 config BR2_PACKAGE_FOOMATIC_FILTERS
997         bool "foomatic-filters"
998         select BR2_LEGACY
999         help
1000           The foomatic-filters package was removed.
1001
1002 config BR2_PACKAGE_SAMBA
1003         bool "samba"
1004         select BR2_LEGACY
1005         help
1006           The samba package was removed in favour of samba4 since the
1007           3.x series isn't supported by upstream any longer.
1008
1009 config BR2_PACKAGE_KODI_WAVPACK
1010         bool "wavpack"
1011         select BR2_LEGACY
1012         help
1013           wavpack support was removed in favour of ffmpeg:
1014           https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1015
1016 config BR2_PACKAGE_KODI_RSXS
1017         bool "rsxs support in Kodi was moved to an addon"
1018         select BR2_LEGACY
1019         select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1020         help
1021           rsxs support in Kodi was moved to an addon
1022
1023 config BR2_PACKAGE_KODI_GOOM
1024         bool "Goom support in Kodi was moved to an addon"
1025         select BR2_LEGACY
1026         select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1027         help
1028           Goom support in Kodi was moved to an addon
1029
1030 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1031         bool "systemd all extras option has been removed"
1032         select BR2_LEGACY
1033         select BR2_PACKAGE_XZ
1034         select BR2_PACKAGE_LIBGCRYPT
1035         help
1036           The systemd option to enable "all extras" has been
1037           removed. To get the same features, the libgcrypt and xz
1038           package should now be enabled.
1039
1040 config BR2_GCC_VERSION_4_5_X
1041         bool "gcc 4.5.x has been removed"
1042         select BR2_LEGACY
1043         help
1044           The 4.5.x version of gcc has been removed. Use a newer
1045           version instead.
1046
1047 config BR2_PACKAGE_SQLITE_READLINE
1048         bool "sqlite command-line editing support was updated"
1049         select BR2_PACKAGE_NCURSES
1050         select BR2_PACKAGE_READLINE
1051         select BR2_LEGACY
1052         help
1053           This option was removed in favour of the sqlite package
1054           deciding itself depending on the enabled packages whether
1055           command-line editing should be enabled, it also also takes
1056           libedit into account.
1057
1058 ###############################################################################
1059 comment "Legacy options removed in 2016.02"
1060
1061 config BR2_PACKAGE_DOVECOT_BZIP2
1062         bool "bzip2 support option has been removed"
1063         select BR2_LEGACY
1064         select BR2_PACKAGE_BZIP2
1065         help
1066           Bzip2 support is built if the bzip2 package is selected.
1067
1068 config BR2_PACKAGE_DOVECOT_ZLIB
1069         bool "zlib support option has been removed"
1070         select BR2_LEGACY
1071         select BR2_PACKAGE_ZLIB
1072         help
1073           Zlib support is built if the zlib package is selected.
1074
1075 config BR2_PACKAGE_E2FSPROGS_FINDFS
1076         bool "e2fsprogs findfs option has been removed"
1077         select BR2_LEGACY
1078         help
1079           This option attempted to enable findfs capabilities from
1080           e2fsprogs but has not worked since July 2015 (due to
1081           packaging changes). One can use BusyBox's findfs support or
1082           enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
1083
1084 config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1085         bool "openpowerlink debug option has been removed"
1086         select BR2_LEGACY
1087         help
1088           This option depends on BR2_ENABLE_DEBUG which should not be used
1089           by packages anymore.
1090
1091 config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1092         bool "openpowerlink package has been updated"
1093         select BR2_LEGACY
1094         select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1095         help
1096           openpowerlink kernel modules are built if the
1097           kernel stack library is selected.
1098
1099 config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1100         bool "openpowerlink package has been updated"
1101         select BR2_LEGACY
1102         select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1103         help
1104           The user space support has been split in two part:
1105           - a monolitic user space library
1106           - a user spae deamon driver
1107
1108 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1109         bool "using the linux headers version for the kernel has been removed"
1110         select BR2_LEGACY
1111         help
1112           The option to use the version of the kernel headers for the
1113           kernel to build has been removed.
1114
1115           There is now the converse, better-suited and more versatile
1116           option to use the kernel version for the linux headers.
1117
1118 config BR2_PACKAGE_CUPS_PDFTOPS
1119         bool "Pdftops support has been removed from Cups"
1120         select BR2_LEGACY
1121         help
1122           Pdftops support has been removed from the cups package
1123           It is now part of the cups-filters package.
1124
1125 config BR2_KERNEL_HEADERS_3_16
1126         bool "kernel headers version 3.16.x are no longer supported"
1127         select BR2_KERNEL_HEADERS_3_12
1128         select BR2_LEGACY
1129         help
1130         Version 3.16.x of the Linux kernel headers have been deprecated
1131         for more than four buildroot releases and are now removed.
1132         As an alternative, version 3.12.x of the headers have been
1133         automatically selected in your configuration.
1134
1135 config BR2_PACKAGE_PYTHON_PYXML
1136         bool "python-pyxml package has been removed"
1137         select BR2_LEGACY
1138         help
1139           PyXML is obsolete and its functionality is covered either via
1140           native Python XML support or python-lxml package.
1141
1142 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1143 config BR2_ENABLE_SSP
1144         bool "Stack Smashing protection now has different levels"
1145         help
1146           The protection offered by SSP can now be selected from different
1147           protection levels. Be sure to review the SSP level in the build
1148           options menu.
1149
1150 config BR2_PACKAGE_DIRECTFB_CLE266
1151         bool "cle266 driver for directfb removed"
1152         select BR2_LEGACY
1153         help
1154           The cle266 directfb driver support has been removed.
1155           It doesn't build in the latest version and it's unlikely
1156           anyone has any use for it.
1157
1158 config BR2_PACKAGE_DIRECTFB_UNICHROME
1159         bool "unichrome driver for directfb removed"
1160         select BR2_LEGACY
1161         help
1162           The unichrome directfb driver support has been removed.
1163           It doesn't build in the latest version and it's unlikely
1164           anyone has any use for it.
1165
1166 config BR2_PACKAGE_LIBELEMENTARY
1167         bool "libelementary has been renamed to elementary"
1168         select BR2_LEGACY
1169         select BR2_PACKAGE_ELEMENTARY
1170         help
1171           The libelementary package has been renamed to match the upstream
1172           name.
1173
1174 config BR2_PACKAGE_LIBEINA
1175         bool "libeina package has been removed"
1176         select BR2_LEGACY
1177         select BR2_PACKAGE_EFL
1178         help
1179           With EFL 1.15, libeina is now provided by the efl package.
1180
1181 config BR2_PACKAGE_LIBEET
1182         bool "libeet package has been removed"
1183         select BR2_LEGACY
1184         select BR2_PACKAGE_EFL
1185         help
1186           With EFL 1.15, libeet is now provided by the efl package.
1187
1188 config BR2_PACKAGE_LIBEVAS
1189         bool "libevas package has been removed"
1190         select BR2_LEGACY
1191         select BR2_PACKAGE_EFL
1192         help
1193           With EFL 1.15, libevas is now provided by the efl package.
1194
1195 config BR2_PACKAGE_LIBECORE
1196         bool "libecore package has been removed"
1197         select BR2_LEGACY
1198         select BR2_PACKAGE_EFL
1199         help
1200           With EFL 1.15, libecore is now provided by the efl package.
1201
1202 config BR2_PACKAGE_LIBEDBUS
1203         bool "libedbus package has been removed"
1204         select BR2_LEGACY
1205         select BR2_PACKAGE_EFL
1206         help
1207           With EFL 1.15, libedbus is now provided by the efl package.
1208
1209 config BR2_PACKAGE_LIBEFREET
1210         bool "libefreet package has been removed"
1211         select BR2_LEGACY
1212         select BR2_PACKAGE_EFL
1213         help
1214           With EFL 1.15, libefreet is now provided by the efl package.
1215
1216 config BR2_PACKAGE_LIBEIO
1217         bool "libeio package has been removed"
1218         select BR2_LEGACY
1219         select BR2_PACKAGE_EFL
1220         help
1221           With EFL 1.15, libeio is now provided by the efl package.
1222
1223 config BR2_PACKAGE_LIBEMBRYO
1224         bool "libembryo package has been removed"
1225         select BR2_LEGACY
1226         select BR2_PACKAGE_EFL
1227         help
1228           With EFL 1.15, libembryo is now provided by the efl package.
1229
1230 config BR2_PACKAGE_LIBEDJE
1231         bool "libedje package has been removed"
1232         select BR2_LEGACY
1233         select BR2_PACKAGE_EFL
1234         help
1235           With EFL 1.15, libedje is now provided by the efl package.
1236
1237 config BR2_PACKAGE_LIBETHUMB
1238         bool "libethumb package has been removed"
1239         select BR2_LEGACY
1240         select BR2_PACKAGE_EFL
1241         help
1242           With EFL 1.15, libethumb is now provided by the efl package.
1243
1244 config BR2_PACKAGE_INFOZIP
1245         bool "infozip option has been renamed to zip"
1246         select BR2_LEGACY
1247         select BR2_PACKAGE_ZIP
1248         help
1249           Info-Zip's Zip package has been renamed from infozip to zip,
1250           to avoid ambiguities with Info-Zip's UnZip which has been added
1251           in the unzip package.
1252
1253 config BR2_BR2_PACKAGE_NODEJS_0_10_X
1254         bool "nodejs 0.10.x option removed"
1255         select BR2_LEGACY
1256         select BR2_PACKAGE_NODEJS
1257         help
1258           nodejs 0.10.x option has been removed.  0.10.x is now
1259           automatically chosen for ARMv5 architectures only and the latest
1260           nodejs for all other supported architectures. The correct nodejs
1261           version has been automatically selected in your configuration.
1262
1263 config BR2_BR2_PACKAGE_NODEJS_0_12_X
1264         bool "nodejs version 0.12.x has been removed"
1265         select BR2_LEGACY
1266         select BR2_PACKAGE_NODEJS
1267         help
1268           nodejs version 0.12.x has been removed.  As an alternative,
1269           the latest nodejs version has been automatically selected in
1270           your configuration.
1271
1272 config BR2_BR2_PACKAGE_NODEJS_4_X
1273         bool "nodejs version 4.x has been removed"
1274         select BR2_LEGACY
1275         select BR2_PACKAGE_NODEJS
1276         help
1277           nodejs version 4.x has been removed.  As an alternative,
1278           the latest nodejs version has been automatically selected in
1279           your configuration.
1280
1281 ###############################################################################
1282 comment "Legacy options removed in 2015.11"
1283
1284 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1285         bool "gst1-plugins-bad real plugin has been removed"
1286         select BR2_LEGACY
1287         help
1288           The real plugin from GStreamer 1 bad plugins has been
1289           removed.
1290
1291 config BR2_PACKAGE_MEDIA_CTL
1292         bool "media-ctl package has been removed"
1293         select BR2_LEGACY
1294         select BR2_PACKAGE_LIBV4L
1295         select BR2_PACKAGE_LIBV4L_UTILS
1296         help
1297           media-ctl source and developement have been moved to
1298           v4l-utils since June 2014. For an up-to-date media-ctl
1299           version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1300
1301 config BR2_PACKAGE_SCHIFRA
1302         bool "schifra package has been removed"
1303         select BR2_LEGACY
1304         help
1305           Schifra package has been maked broken since 2014.11 release and
1306           haven't been fixed since then.
1307
1308 config BR2_PACKAGE_ZXING
1309         bool "zxing option has been renamed"
1310         select BR2_LEGACY
1311         select BR2_PACKAGE_ZXING_CPP
1312         help
1313           ZXing no longer provides the cpp bindings, it has been renamed to
1314           BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1315
1316 # Since FreeRDP has new dependencies, protect this legacy to avoid the
1317 # infamous "unmet direct dependencies" kconfig error.
1318 config BR2_PACKAGE_FREERDP_CLIENT
1319         bool "freerdp client option renamed"
1320         depends on BR2_PACKAGE_FREERDP
1321         select BR2_LEGACY
1322         select BR2_PACKAGE_FREERDP_CLIENT_X11
1323
1324 config BR2_PACKAGE_BLACKBOX
1325         bool "blackbox package has been removed"
1326         select BR2_LEGACY
1327         help
1328           Upstream is dead and the package has been deprecated for
1329           some time. There are other alternative maintained WMs.
1330
1331 config BR2_KERNEL_HEADERS_3_0
1332         bool "kernel headers version 3.0.x are no longer supported"
1333         select BR2_KERNEL_HEADERS_3_2
1334         select BR2_LEGACY
1335         help
1336           Version 3.0.x of the Linux kernel headers have been deprecated
1337           for more than four buildroot releases and are now removed.
1338           As an alternative, version 3.2.x of the headers have been
1339           automatically selected in your configuration.
1340
1341 config BR2_KERNEL_HEADERS_3_11
1342         bool "kernel headers version 3.11.x are no longer supported"
1343         select BR2_KERNEL_HEADERS_3_10
1344         select BR2_LEGACY
1345         help
1346           Version 3.11.x of the Linux kernel headers have been deprecated
1347           for more than four buildroot releases and are now removed.
1348           As an alternative, version 3.10.x of the headers have been
1349           automatically selected in your configuration.
1350
1351 config BR2_KERNEL_HEADERS_3_13
1352         bool "kernel headers version 3.13.x are no longer supported"
1353         select BR2_KERNEL_HEADERS_3_12
1354         select BR2_LEGACY
1355         help
1356           Version 3.13.x of the Linux kernel headers have been deprecated
1357           for more than four buildroot releases and are now removed.
1358           As an alternative, version 3.12.x of the headers have been
1359           automatically selected in your configuration.
1360
1361 config BR2_KERNEL_HEADERS_3_15
1362         bool "kernel headers version 3.15.x are no longer supported"
1363         select BR2_KERNEL_HEADERS_3_12
1364         select BR2_LEGACY
1365         help
1366           Version 3.15.x of the Linux kernel headers have been deprecated
1367           for more than four buildroot releases and are now removed.
1368           As an alternative, version 3.12.x of the headers have been
1369           automatically selected in your configuration.
1370
1371 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1372         bool "DirectFB example df_andi has been removed"
1373         select BR2_LEGACY
1374         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1375         help
1376           The per-DirectFB example options have been removed. The
1377           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1378           examples.
1379
1380 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1381         bool "DirectFB example df_bltload has been removed"
1382         select BR2_LEGACY
1383         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1384         help
1385           The per-DirectFB example options have been removed. The
1386           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1387           examples.
1388
1389 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1390         bool "DirectFB example df_cpuload has been removed"
1391         select BR2_LEGACY
1392         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1393         help
1394           The per-DirectFB example options have been removed. The
1395           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1396           examples.
1397
1398 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1399         bool "DirectFB example df_databuffer has been removed"
1400         select BR2_LEGACY
1401         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1402         help
1403           The per-DirectFB example options have been removed. The
1404           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1405           examples.
1406
1407 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1408         bool "DirectFB example df_dioload has been removed"
1409         select BR2_LEGACY
1410         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1411         help
1412           The per-DirectFB example options have been removed. The
1413           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1414           examples.
1415
1416 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1417         bool "DirectFB example df_dok has been removed"
1418         select BR2_LEGACY
1419         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1420         help
1421           The per-DirectFB example options have been removed. The
1422           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1423           examples.
1424
1425 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1426         bool "DirectFB example df_drivertest has been removed"
1427         select BR2_LEGACY
1428         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1429         help
1430           The per-DirectFB example options have been removed. The
1431           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1432           examples.
1433
1434 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1435         bool "DirectFB example df_fire has been removed"
1436         select BR2_LEGACY
1437         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1438         help
1439           The per-DirectFB example options have been removed. The
1440           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1441           examples.
1442
1443 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1444         bool "DirectFB example df_flip has been removed"
1445         select BR2_LEGACY
1446         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1447         help
1448           The per-DirectFB example options have been removed. The
1449           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1450           examples.
1451
1452 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1453         bool "DirectFB example df_fonts has been removed"
1454         select BR2_LEGACY
1455         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1456         help
1457           The per-DirectFB example options have been removed. The
1458           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1459           examples.
1460
1461 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1462         bool "DirectFB example df_input has been removed"
1463         select BR2_LEGACY
1464         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1465         help
1466           The per-DirectFB example options have been removed. The
1467           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1468           examples.
1469
1470 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1471         bool "DirectFB example df_joystick has been removed"
1472         select BR2_LEGACY
1473         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1474         help
1475           The per-DirectFB example options have been removed. The
1476           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1477           examples.
1478
1479 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1480         bool "DirectFB example df_knuckles has been removed"
1481         select BR2_LEGACY
1482         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1483         help
1484           The per-DirectFB example options have been removed. The
1485           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1486           examples.
1487
1488 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1489         bool "DirectFB example df_layer has been removed"
1490         select BR2_LEGACY
1491         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1492         help
1493           The per-DirectFB example options have been removed. The
1494           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1495           examples.
1496
1497 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1498         bool "DirectFB example df_matrix has been removed"
1499         select BR2_LEGACY
1500         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1501         help
1502           The per-DirectFB example options have been removed. The
1503           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1504           examples.
1505
1506 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1507         bool "DirectFB example df_matrix_water has been removed"
1508         select BR2_LEGACY
1509         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1510         help
1511           The per-DirectFB example options have been removed. The
1512           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1513           examples.
1514
1515 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1516         bool "DirectFB example df_neo has been removed"
1517         select BR2_LEGACY
1518         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1519         help
1520           The per-DirectFB example options have been removed. The
1521           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1522           examples.
1523
1524 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1525         bool "DirectFB example df_netload has been removed"
1526         select BR2_LEGACY
1527         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1528         help
1529           The per-DirectFB example options have been removed. The
1530           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1531           examples.
1532
1533 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1534         bool "DirectFB example df_palette has been removed"
1535         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1536         help
1537           The per-DirectFB example options have been removed. The
1538           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1539           examples.
1540
1541 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1542         bool "DirectFB example df_particle has been removed"
1543         select BR2_LEGACY
1544         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1545         help
1546           The per-DirectFB example options have been removed. The
1547           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1548           examples.
1549
1550 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1551         bool "DirectFB example df_porter has been removed"
1552         select BR2_LEGACY
1553         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1554         help
1555           The per-DirectFB example options have been removed. The
1556           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1557           examples.
1558
1559 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1560         bool "DirectFB example df_stress has been removed"
1561         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1562         help
1563           The per-DirectFB example options have been removed. The
1564           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1565           examples.
1566
1567 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1568         bool "DirectFB example df_texture has been removed"
1569         select BR2_LEGACY
1570         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1571         help
1572           The per-DirectFB example options have been removed. The
1573           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1574           examples.
1575
1576 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1577         bool "DirectFB example df_video has been removed"
1578         select BR2_LEGACY
1579         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1580         help
1581           The per-DirectFB example options have been removed. The
1582           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1583           examples.
1584
1585 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1586         bool "DirectFB example df_video_particle has been removed"
1587         select BR2_LEGACY
1588         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1589         help
1590           The per-DirectFB example options have been removed. The
1591           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1592           examples.
1593
1594 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1595         bool "DirectFB example df_window has been removed"
1596         select BR2_LEGACY
1597         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1598         help
1599           The per-DirectFB example options have been removed. The
1600           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1601           examples.
1602
1603 config BR2_PACKAGE_KOBS_NG
1604         bool "kobs-ng was replaced by imx-kobs"
1605         select BR2_LEGACY
1606         select BR2_PACKAGE_IMX_KOBS
1607         help
1608           The outdated kobs-ng has been replaced by the Freescale-
1609           maintained imx-kobs package.
1610
1611 config BR2_PACKAGE_SAWMAN
1612         bool "sawman package removed"
1613         select BR2_LEGACY
1614         select BR2_PACKAGE_DIRECTFB_SAWMAN
1615         help
1616           This option has been removed because the sawman package no
1617           longer exists: it was merged inside DirectFB itself. This
1618           feature can now be enabled using the
1619           BR2_PACKAGE_DIRECTFB_SAWMAN option.
1620
1621 config BR2_PACKAGE_DIVINE
1622         bool "divine package removed"
1623         select BR2_LEGACY
1624         select BR2_PACKAGE_DIRECTFB_DIVINE
1625         help
1626           This option has been removed because the divine package no
1627           longer exists: it was merged inside DirectFB itself. This
1628           feature can now be enabled using the
1629           BR2_PACKAGE_DIRECTFB_DIVINE option.
1630
1631 ###############################################################################
1632 comment "Legacy options removed in 2015.08"
1633
1634 config BR2_PACKAGE_KODI_PVR_ADDONS
1635         bool "Kodi PVR addon was split"
1636         select BR2_LEGACY
1637         select BR2_PACKAGE_KODI_PVR_ARGUSTV
1638         select BR2_PACKAGE_KODI_PVR_DVBLINK
1639         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
1640         select BR2_PACKAGE_KODI_PVR_FILMON
1641         select BR2_PACKAGE_KODI_PVR_HTS
1642         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
1643         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
1644         select BR2_PACKAGE_KODI_PVR_MYTHTV
1645         select BR2_PACKAGE_KODI_PVR_NEXTPVR
1646         select BR2_PACKAGE_KODI_PVR_NJOY
1647         select BR2_PACKAGE_KODI_PVR_PCTV
1648         select BR2_PACKAGE_KODI_PVR_STALKER
1649         select BR2_PACKAGE_KODI_PVR_VBOX
1650         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
1651         select BR2_PACKAGE_KODI_PVR_VUPLUS
1652         select BR2_PACKAGE_KODI_PVR_WMC
1653         help
1654           Kodi PVR addon was split into seperate modules
1655
1656 config BR2_BINUTILS_VERSION_2_23_2
1657         bool "binutils 2.23 option renamed"
1658         select BR2_LEGACY
1659         help
1660           Binutils 2.23.2 has been removed, using a newer version is
1661           recommended.
1662
1663 config BR2_BINUTILS_VERSION_2_24
1664         bool "binutils 2.24 option renamed"
1665         select BR2_LEGACY
1666         select BR2_BINUTILS_VERSION_2_24_X
1667         help
1668           The binutils version option has been renamed to match the
1669           same patchlevel logic used by gcc. The new option is now
1670           BR2_BINUTILS_VERSION_2_24_X.
1671
1672 config BR2_BINUTILS_VERSION_2_25
1673         bool "binutils 2.25 option renamed"
1674         select BR2_LEGACY
1675         select BR2_BINUTILS_VERSION_2_25_X
1676         help
1677           The binutils version option has been renamed to match the
1678           same patchlevel logic used by gcc. The new option is now
1679           BR2_BINUTILS_VERSION_2_25_X.
1680
1681 config BR2_PACKAGE_PERF
1682         bool "perf option has been renamed"
1683         select BR2_LEGACY
1684         select BR2_LINUX_KERNEL_TOOL_PERF
1685         help
1686           The perf package has been moved as a Linux tools package,
1687           and the option to enable it is now
1688           BR2_LINUX_KERNEL_TOOL_PERF.
1689
1690 config BR2_BINUTILS_VERSION_2_22
1691         bool "binutils 2.22 removed"
1692         select BR2_LEGACY
1693         help
1694           Binutils 2.22 has been removed, using a newer version is
1695           recommended.
1696
1697 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1698         bool "gpu-viv-bin-mx6q"
1699         select BR2_LEGACY
1700         select BR2_PACKAGE_IMX_GPU_VIV
1701         help
1702           Vivante graphics libraries have been renamed to
1703           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1704           name.
1705
1706 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1707         depends on BR2_PACKAGE_PYTHON
1708         bool "libsemanage python bindings removed"
1709         select BR2_LEGACY
1710         help
1711           This option has been removed, since the libsemanage Python
1712           bindings on the target were not useful.
1713
1714 config BR2_TARGET_UBOOT_NETWORK
1715         bool "U-Boot custom network settings removed"
1716         select BR2_LEGACY
1717         help
1718           U-Boot's custom network settings options have been removed.
1719
1720 ###############################################################################
1721 comment "Legacy options removed in 2015.05"
1722
1723 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1724         bool "jffs2 16kB erasesize NAND flash option renamed"
1725         select BR2_LEGACY
1726         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1727         help
1728           The JFFS2 NAND flash options now longer include the page
1729           size.
1730
1731 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1732         bool "jffs2 128kB erasesize NAND flash option renamed"
1733         select BR2_LEGACY
1734         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1735         help
1736           The JFFS2 NAND flash options now longer include the page
1737           size.
1738
1739 config BR2_PACKAGE_MONO_20
1740         bool "2.0/3.5 .Net Runtime"
1741         select BR2_LEGACY
1742         help
1743           This option no longer exists, all versions of the .Net
1744           runtime are now installed.
1745
1746 config BR2_PACKAGE_MONO_40
1747         bool "4.0 .Net Runtime"
1748         select BR2_LEGACY
1749         help
1750           This option no longer exists, all versions of the .Net
1751           runtime are now installed.
1752
1753 config BR2_PACKAGE_MONO_45
1754         bool "4.5 .Net Runtime"
1755         select BR2_LEGACY
1756         help
1757           This option no longer exists, all versions of the .Net
1758           runtime are now installed.
1759
1760 config BR2_CIVETWEB_WITH_LUA
1761         bool "civetweb lua option renamed"
1762         select BR2_LEGACY
1763         select BR2_PACKAGE_CIVETWEB_WITH_LUA
1764         help
1765           civetweb's lua option has been renamed to
1766           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1767           packages name options.
1768
1769 config BR2_PACKAGE_TIFF_TIFF2PDF
1770         bool "tiff utility-specific option removed"
1771         select BR2_LEGACY
1772         select BR2_PACKAGE_TIFF_UTILITIES
1773         help
1774           utility-specific options have been removed in favour of
1775           the new option BR2_PACKAGE_TIFF_UTILITIES.
1776
1777 config BR2_PACKAGE_TIFF_TIFFCP
1778         bool "tiff utility-specific option removed"
1779         select BR2_LEGACY
1780         select BR2_PACKAGE_TIFF_UTILITIES
1781         help
1782           utility-specific options have been removed in favour of
1783           the new option BR2_PACKAGE_TIFF_UTILITIES.
1784
1785 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1786         bool "RTAI patch file path has been removed"
1787         select BR2_LEGACY
1788         help
1789           This option has never worked, so it has been removed.
1790
1791 config BR2_TARGET_GENERIC_PASSWD_DES
1792         bool "Encoding passwords with DES has been removed"
1793         select BR2_LEGACY
1794         help
1795           Paswords can now only be encoded with either of md5, sha256 or sha512.
1796           The default is md5, which is stronger that DES (but still pretty weak).
1797
1798 config BR2_PACKAGE_GTK2_THEME_HICOLOR
1799         bool "hicolor (default theme) is a duplicate"
1800         select BR2_LEGACY
1801         select BR2_PACKAGE_HICOLOR_ICON_THEME
1802         help
1803           The option was just a duplicate of hicolor icon theme.
1804
1805 config BR2_PACKAGE_VALGRIND_PTRCHECK
1806         bool "valgrind's PTRCheck was renamed to SGCheck"
1807         select BR2_LEGACY
1808         select BR2_PACKAGE_VALGRIND_SGCHECK
1809         help
1810           PTRCheck was renamed to SGCheck in valgrind
1811
1812 ###############################################################################
1813 comment "Legacy options removed in 2015.02"
1814
1815 config BR2_PACKAGE_LIBGC
1816         bool "libgc package removed"
1817         select BR2_LEGACY
1818         select BR2_PACKAGE_BDWGC
1819         help
1820           libgc has been removed because we have the same package under a
1821           different name, bdwgc.
1822
1823 config BR2_PACKAGE_WDCTL
1824         bool "util-linux' wdctl option has been renamed"
1825         select BR2_LEGACY
1826         select BR2_PACKAGE_UTIL_LINUX_WDCTL
1827         help
1828           util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1829           to be aligned with how the other options are named.
1830
1831 config BR2_PACKAGE_UTIL_LINUX_ARCH
1832         bool "util-linux' arch option has been removed"
1833         select BR2_LEGACY
1834         help
1835           util-linux' arch was dropped in util-linux 2.23, in favor of
1836           the coreutils version.
1837
1838 config BR2_PACKAGE_UTIL_LINUX_DDATE
1839         bool "util-linux' ddate option has been removed"
1840         select BR2_LEGACY
1841         help
1842           util-linux' ddate was dropped in util-linux 2.23.
1843
1844 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1845         bool "rpm's bzip2 payloads option has been removed"
1846         select BR2_LEGACY
1847         select BR2_PACKAGE_BZIP2
1848         help
1849           The bzip2 payloads option rely entirely on the dependant package bzip2.
1850           So, you need to select it to enable this feature.
1851
1852 config BR2_PACKAGE_RPM_XZ_PAYLOADS
1853         bool "rpm's xz payloads option has been removed"
1854         select BR2_LEGACY
1855         select BR2_PACKAGE_XZ
1856         help
1857           The xz payloads option rely entirely on the dependant package xz.
1858           So, you need to select it to enable this feature.
1859
1860 config BR2_PACKAGE_M4
1861         bool "m4 target package removed"
1862         select BR2_LEGACY
1863         help
1864           The m4 target package has been removed, it's been
1865           deprecated for some time now.
1866
1867 config BR2_PACKAGE_FLEX_BINARY
1868         bool "flex binary in target option removed"
1869         select BR2_LEGACY
1870         help
1871           The flex binary in the target option has been removed.
1872           It's been deprecated for some time now and is essentially a
1873           development tool which isn't very useful in the target.
1874
1875 config BR2_PACKAGE_BISON
1876         bool "bison target package removed"
1877         select BR2_LEGACY
1878         help
1879           The bison target package has been removed, it's been
1880           deprecated for some time now and is essentially a development
1881           tool which isn't very useful in the target.
1882
1883 config BR2_PACKAGE_GOB2
1884         bool "gob2 target package removed"
1885         select BR2_LEGACY
1886         help
1887           The gob2 target package has been removed, it's been
1888           deprecated for some time now and was essentially useless
1889           without a target toolchain.
1890
1891 config BR2_PACKAGE_DISTCC
1892         bool "distcc target package removed"
1893         select BR2_LEGACY
1894         help
1895           The distcc target package has been removed, it's been
1896           deprecated for some time now and was essentially useless
1897           without a target toolchain.
1898
1899 config BR2_PACKAGE_HASERL_VERSION_0_8_X
1900         bool "haserl 0.8.x version removed"
1901         select BR2_LEGACY
1902         help
1903           The 0.8.x version option for haserl has been removed since it
1904           has been deprecated for some time now.
1905           You should be able to use the 0.9.x version without issues.
1906
1907 config BR2_PACKAGE_STRONGSWAN_TOOLS
1908         bool "strongswan option has been removed"
1909         select BR2_LEGACY
1910         select BR2_PACKAGE_STRONGSWAN_PKI
1911         select BR2_PACKAGE_STRONGSWAN_SCEP
1912         help
1913           The tools option has been removed upstream and the different tools
1914           have been split between the pki and scep options, with others
1915           deprecated.
1916
1917 config BR2_PACKAGE_XBMC_ADDON_XVDR
1918         bool "xbmc-addon-xvdr removed"
1919         select BR2_LEGACY
1920         help
1921           According to the github project page:
1922           https://github.com/pipelka/xbmc-addon-xvdr
1923           this package is discontinued.
1924
1925 config BR2_PACKAGE_XBMC_PVR_ADDONS
1926         bool "xbmc options have been renamed"
1927         select BR2_LEGACY
1928         select BR2_PACKAGE_KODI_PVR_ADDONS
1929         help
1930           The XBMC media center project was renamed to Kodi entertainment center
1931
1932 config BR2_PACKAGE_XBMC
1933         bool "xbmc options have been renamed"
1934         select BR2_LEGACY
1935         select BR2_PACKAGE_KODI
1936         help
1937           The XBMC media center project was renamed to Kodi entertainment center
1938
1939 config BR2_PACKAGE_XBMC_ALSA_LIB
1940         bool "xbmc options have been renamed"
1941         select BR2_LEGACY
1942         select BR2_PACKAGE_KODI_ALSA_LIB
1943         help
1944           The XBMC media center project was renamed to Kodi entertainment center
1945
1946 config BR2_PACKAGE_XBMC_AVAHI
1947         bool "xbmc options have been renamed"
1948         select BR2_LEGACY
1949         select BR2_PACKAGE_KODI_AVAHI
1950         help
1951           The XBMC media center project was renamed to Kodi entertainment center
1952
1953 config BR2_PACKAGE_XBMC_DBUS
1954         bool "xbmc options have been renamed"
1955         select BR2_LEGACY
1956         select BR2_PACKAGE_KODI_DBUS
1957         help
1958           The XBMC media center project was renamed to Kodi entertainment center
1959
1960 config BR2_PACKAGE_XBMC_LIBBLURAY
1961         bool "xbmc options have been renamed"
1962         select BR2_LEGACY
1963         select BR2_PACKAGE_KODI_LIBBLURAY
1964         help
1965           The XBMC media center project was renamed to Kodi entertainment center
1966
1967 config BR2_PACKAGE_XBMC_GOOM
1968         bool "xbmc options have been renamed"
1969         select BR2_LEGACY
1970         select BR2_PACKAGE_KODI_GOOM
1971         help
1972           The XBMC media center project was renamed to Kodi entertainment center
1973
1974 config BR2_PACKAGE_XBMC_RSXS
1975         bool "xbmc options have been renamed"
1976         select BR2_LEGACY
1977         select BR2_PACKAGE_KODI_RSXS
1978         help
1979           The XBMC media center project was renamed to Kodi entertainment center
1980
1981 config BR2_PACKAGE_XBMC_LIBCEC
1982         bool "xbmc options have been renamed"
1983         select BR2_LEGACY
1984         select BR2_PACKAGE_KODI_LIBCEC
1985         help
1986           The XBMC media center project was renamed to Kodi entertainment center
1987
1988 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1989         bool "xbmc options have been renamed"
1990         select BR2_LEGACY
1991         select BR2_PACKAGE_KODI_LIBMICROHTTPD
1992         help
1993           The XBMC media center project was renamed to Kodi entertainment center
1994
1995 config BR2_PACKAGE_XBMC_LIBNFS
1996         bool "xbmc options have been renamed"
1997         select BR2_LEGACY
1998         select BR2_PACKAGE_KODI_LIBNFS
1999         help
2000           The XBMC media center project was renamed to Kodi entertainment center
2001
2002 config BR2_PACKAGE_XBMC_RTMPDUMP
2003         bool "xbmc options have been renamed"
2004         select BR2_LEGACY
2005         select BR2_PACKAGE_KODI_RTMPDUMP
2006         help
2007           The XBMC media center project was renamed to Kodi entertainment center
2008
2009 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2010         bool "xbmc options have been renamed"
2011         select BR2_LEGACY
2012         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2013         help
2014           The XBMC media center project was renamed to Kodi entertainment center
2015
2016 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2017         bool "xbmc options have been renamed"
2018         select BR2_LEGACY
2019         select BR2_PACKAGE_KODI_LIBSMBCLIENT
2020         help
2021           The XBMC media center project was renamed to Kodi entertainment center
2022
2023 config BR2_PACKAGE_XBMC_LIBTHEORA
2024         bool "xbmc options have been renamed"
2025         select BR2_LEGACY
2026         select BR2_PACKAGE_KODI_LIBTHEORA
2027         help
2028           The XBMC media center project was renamed to Kodi entertainment center
2029
2030 config BR2_PACKAGE_XBMC_LIBUSB
2031         bool "xbmc options have been renamed"
2032         select BR2_LEGACY
2033         select BR2_PACKAGE_KODI_LIBUSB
2034         help
2035           The XBMC media center project was renamed to Kodi entertainment center
2036
2037 config BR2_PACKAGE_XBMC_LIBVA
2038         bool "xbmc options have been renamed"
2039         select BR2_LEGACY
2040         select BR2_PACKAGE_KODI_LIBVA
2041         help
2042           The XBMC media center project was renamed to Kodi entertainment center
2043
2044 config BR2_PACKAGE_XBMC_WAVPACK
2045         bool "xbmc options have been renamed"
2046         select BR2_LEGACY
2047         select BR2_PACKAGE_KODI_WAVPACK
2048         help
2049           The XBMC media center project was renamed to Kodi entertainment center
2050
2051 config BR2_PREFER_STATIC_LIB
2052         bool "static library option renamed"
2053         select BR2_LEGACY
2054         help
2055           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2056           highlights the fact that the option no longer "prefers"
2057           static libraries, but "enforces" static libraries (i.e
2058           shared libraries are completely unused).
2059
2060           Take care of updating the type of libraries you want under the
2061           "Build options" menu.
2062
2063 ###############################################################################
2064 comment "Legacy options removed in 2014.11"
2065
2066 config BR2_x86_generic
2067         bool "x86 generic variant has been removed"
2068         select BR2_LEGACY
2069         help
2070           The generic x86 CPU variant has been removed. Use another
2071           CPU variant instead.
2072
2073 config BR2_GCC_VERSION_4_4_X
2074         bool "gcc 4.4.x has been removed"
2075         select BR2_LEGACY
2076         help
2077           The 4.4.x version of gcc has been removed. Use a newer
2078           version instead.
2079
2080 config BR2_sparc_sparchfleon
2081         bool "sparchfleon CPU has been removed"
2082         select BR2_LEGACY
2083         help
2084           The sparchfleon CPU was only supported in a patched gcc 4.4
2085           version. Its support has been removed in favor of the leon3
2086           CPU starting from gcc 4.8.x.
2087
2088 config BR2_sparc_sparchfleonv8
2089         bool "sparchfleonv8 CPU has been removed"
2090         select BR2_LEGACY
2091         help
2092           The sparchfleonv8 CPU was only supported in a patched gcc
2093           4.4 version. Its support has been removed in favor of the
2094           leon3 CPU starting from gcc 4.8.x.
2095
2096 config BR2_sparc_sparcsfleon
2097         bool "sparcsfleon CPU has been removed"
2098         select BR2_LEGACY
2099         help
2100           The sparcsfleon CPU was only supported in a patched gcc 4.4
2101           version. Its support has been removed in favor of the leon3
2102           CPU starting from gcc 4.8.x.
2103
2104 config BR2_sparc_sparcsfleonv8
2105         bool "sparcsfleonv8 CPU has been removed"
2106         select BR2_LEGACY
2107         help
2108           The sparcsfleonv8 CPU was only supported in a patched gcc
2109           4.4 version. Its support has been removed in favor of the
2110           leon3 CPU starting from gcc 4.8.x.
2111
2112 config BR2_PACKAGE_XLIB_LIBPCIACCESS
2113         bool "xlib-libpciaccess option has been renamed"
2114         depends on BR2_PACKAGE_XORG7
2115         select BR2_LEGACY
2116         select BR2_PACKAGE_LIBPCIACCESS
2117         help
2118           libpciaccess neither depends on X11 nor Xlib. Thus the
2119           package has been renamed BR2_PACKAGE_LIBPCIACCESS
2120
2121 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2122         bool "Xceive xc5000 option has been renamed"
2123         select BR2_LEGACY
2124         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2125         help
2126           The Xceive xc5000 option now also handles older firmwares from
2127           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2128           from Cresta, who bought Xceive.
2129
2130 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2131         bool "Chelsio T4 option has been renamed"
2132         select BR2_LEGACY
2133         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2134         help
2135           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2136           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2137           to better account for the fact that a T5 variant exists.
2138
2139 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2140         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
2141         select BR2_LEGACY
2142         help
2143           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2144           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2145           select it in:
2146               Target packages -> Hardware handling ->
2147               Firmware -> linux-firmware -> WiFi firmware ->
2148               iwlwifi 3160/726x revision to use (revision 7)
2149
2150 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2151         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
2152         select BR2_LEGACY
2153         help
2154           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2155           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2156           select it in:
2157               Target packages -> Hardware handling ->
2158               Firmware -> linux-firmware -> WiFi firmware ->
2159               iwlwifi 3160/726x revision to use (revision 8)
2160
2161 ###############################################################################
2162 comment "Legacy options removed in 2014.08"
2163
2164 config BR2_PACKAGE_LIBELF
2165         bool "libelf has been removed"
2166         select BR2_PACKAGE_ELFUTILS
2167         select BR2_LEGACY
2168         help
2169           The libelf package provided an old version of the libelf library
2170           and is deprecated. The libelf library is now provided by the
2171           elfutils package.
2172
2173 config BR2_KERNEL_HEADERS_3_8
2174         bool "kernel headers version 3.8.x are no longer supported"
2175         select BR2_KERNEL_HEADERS_3_4
2176         select BR2_LEGACY
2177         help
2178           Version 3.8.x of the Linux kernel headers have been deprecated
2179           for more than four buildroot releases and are now removed.
2180           As an alternative, version 3.4.x of the headers have been
2181           automatically selected in your configuration.
2182
2183 config BR2_PACKAGE_GETTEXT_TOOLS
2184         bool "support for gettext-tools on target has been removed"
2185         select BR2_LEGACY
2186         help
2187           The option to install the gettext utilities on the target
2188           has been removed. This is not necessary as Buildroot is not
2189           designed to provide a full development environment on the
2190           target. gettext tools should be used on the build machine
2191           instead.
2192
2193 config BR2_PACKAGE_PROCPS
2194         bool "procps has been replaced by procps-ng"
2195         select BR2_PACKAGE_PROCPS_NG
2196         select BR2_LEGACY
2197         help
2198           The procps package has been replaced by the equivalent procps-ng.
2199
2200 config BR2_BINUTILS_VERSION_2_20_1
2201         bool "binutils 2.20.1 has been removed"
2202         select BR2_LEGACY
2203         help
2204           The 2.20.1 version of binutils has been removed. Use a newer
2205           version instead.
2206
2207 config BR2_BINUTILS_VERSION_2_21
2208         bool "binutils 2.21 has been removed"
2209         select BR2_LEGACY
2210         help
2211           The 2.21 version of binutils has been removed. Use a newer
2212           version instead.
2213
2214 config BR2_BINUTILS_VERSION_2_23_1
2215         bool "binutils 2.23.1 has been removed"
2216         select BR2_LEGACY
2217         help
2218           The 2.23.1 version of binutils has been removed. Use a newer
2219           version instead.
2220
2221 config BR2_UCLIBC_VERSION_0_9_32
2222         bool "uclibc 0.9.32 has been removed"
2223         select BR2_LEGACY
2224         help
2225           The 0.9.32 version of uClibc has been removed. Use a newer
2226           version instead.
2227
2228 config BR2_GCC_VERSION_4_3_X
2229         bool "gcc 4.3.x has been removed"
2230         select BR2_LEGACY
2231         help
2232           The 4.3.x version of gcc has been removed. Use a newer
2233           version instead.
2234
2235 config BR2_GCC_VERSION_4_6_X
2236         bool "gcc 4.6.x has been removed"
2237         select BR2_LEGACY
2238         help
2239           The 4.6.x version of gcc has been removed. Use a newer
2240           version instead.
2241
2242 config BR2_GDB_VERSION_7_4
2243         bool "gdb 7.4 has been removed"
2244         select BR2_LEGACY
2245         help
2246           The 7.4 version of gdb has been removed. Use a newer version
2247           instead.
2248
2249 config BR2_GDB_VERSION_7_5
2250         bool "gdb 7.5 has been removed"
2251         select BR2_LEGACY
2252         help
2253           The 7.5 version of gdb has been removed. Use a newer version
2254           instead.
2255
2256 config BR2_BUSYBOX_VERSION_1_19_X
2257         bool "busybox version selection has been removed"
2258         select BR2_LEGACY
2259         help
2260           The possibility of selecting the Busybox version has been
2261           removed. Use the latest version provided by the Busybox
2262           package instead.
2263
2264 config BR2_BUSYBOX_VERSION_1_20_X
2265         bool "busybox version selection has been removed"
2266         select BR2_LEGACY
2267         help
2268           The possibility of selecting the Busybox version has been
2269           removed. Use the latest version provided by the Busybox
2270           package instead.
2271
2272 config BR2_BUSYBOX_VERSION_1_21_X
2273         bool "busybox version selection has been removed"
2274         select BR2_LEGACY
2275         help
2276           The possibility of selecting the Busybox version has been
2277           removed. Use the latest version provided by the Busybox
2278           package instead.
2279
2280 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2281         bool "decode_tm6000"
2282         select BR2_PACKAGE_LIBV4L_UTILS
2283         select BR2_LEGACY
2284         help
2285           This libv4l option has been deprecated and replaced by a single
2286           option to build all the libv4l utilities.
2287
2288 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2289         bool "ir-keytable"
2290         select BR2_PACKAGE_LIBV4L_UTILS
2291         select BR2_LEGACY
2292         help
2293           This libv4l option has been deprecated and replaced by a single
2294           option to build all the libv4l utilities.
2295
2296 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2297         bool "v4l2-compliance"
2298         select BR2_PACKAGE_LIBV4L_UTILS
2299         select BR2_LEGACY
2300         help
2301           This libv4l option has been deprecated and replaced by a single
2302           option to build all the libv4l utilities.
2303
2304 config BR2_PACKAGE_LIBV4L_V4L2_CTL
2305         bool "v4l2-ctl"
2306         select BR2_PACKAGE_LIBV4L_UTILS
2307         select BR2_LEGACY
2308         help
2309           This libv4l option has been deprecated and replaced by a single
2310           option to build all the libv4l utilities.
2311
2312 config BR2_PACKAGE_LIBV4L_V4L2_DBG
2313         bool "v4l2-dbg"
2314         select BR2_PACKAGE_LIBV4L_UTILS
2315         select BR2_LEGACY
2316         help
2317           This libv4l option has been deprecated and replaced by a single
2318           option to build all the libv4l utilities.
2319
2320 ###############################################################################
2321 comment "Legacy options removed in 2014.05"
2322
2323 config BR2_PACKAGE_EVTEST_CAPTURE
2324         bool "evtest-capture support removed (dropped since evtest 1.31)"
2325         select BR2_LEGACY
2326         help
2327           Support for evtest-capture has been removed (dropped from
2328           evtest package since version 1.31), use evemu package
2329           instead.
2330
2331 config BR2_KERNEL_HEADERS_3_6
2332         bool "kernel headers version 3.6.x are no longer supported"
2333         select BR2_KERNEL_HEADERS_3_4
2334         select BR2_LEGACY
2335         help
2336           Version 3.6.x of the Linux kernel headers have been deprecated
2337           for more than four buildroot releases and are now removed.
2338           As an alternative, version 3.4.x of the headers have been
2339           automatically selected in your configuration.
2340
2341 config BR2_KERNEL_HEADERS_3_7
2342         bool "kernel headers version 3.7.x are no longer supported"
2343         select BR2_KERNEL_HEADERS_3_4
2344         select BR2_LEGACY
2345         help
2346           Version 3.7.x of the Linux kernel headers have been deprecated
2347           for more than four buildroot releases and are now removed.
2348           As an alternative, version 3.4.x of the headers have been
2349           automatically selected in your configuration.
2350
2351 config BR2_PACKAGE_VALA
2352         bool "vala target package has been removed"
2353         select BR2_LEGACY
2354         help
2355           The 'vala' target package has been removed since it has been
2356           deprecated for more than four buildroot releases.
2357           Note: the host vala package still exists.
2358
2359 config BR2_TARGET_TZ_ZONELIST
2360         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2361
2362 config BR2_PACKAGE_TZDATA_ZONELIST
2363         string "tzdata: the timezone list option has been renamed"
2364         help
2365           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2366           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2367           menu. You'll need to select BR2_TARGET_TZ_INFO.
2368
2369 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2370         bool
2371         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2372         select BR2_LEGACY
2373
2374 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2375         bool "Lua command-line editing none has been renamed"
2376         select BR2_LEGACY
2377         help
2378           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2379           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2380           it in the corresponding choice.
2381
2382 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2383         bool "Lua command-line editing using readline has been renamed"
2384         select BR2_LEGACY
2385         help
2386           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2387           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2388           it in the corresponding choice.
2389
2390 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2391         bool "Lua command-line editing using linenoise has been renamed"
2392         select BR2_LEGACY
2393         help
2394           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2395           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2396           it in the corresponding choice.
2397
2398 config BR2_PACKAGE_DVB_APPS_UTILS
2399         bool "dvb-apps utilities now built by default"
2400         select BR2_LEGACY
2401         help
2402           The dvb-apps utilities are now always built when the dvb-apps
2403           package is selected.
2404
2405 config BR2_KERNEL_HEADERS_SNAP
2406         bool "Local Linux snapshot support removed"
2407         select BR2_LEGACY
2408         help
2409           Support for using a custom snapshot to install the Linux
2410           kernel headers has been removed.
2411
2412 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2413         bool "/dev management by udev removed"
2414         select BR2_LEGACY
2415         help
2416           The 'udev' package has been converted to a virtual package.
2417           The providers for this feature are: 'eudev', 'systemd'.
2418
2419           Therefore, if you are not using 'systemd' as init system, you
2420           must choose 'Dynamic using eudev' in the '/dev management'
2421           menu to get the same behaviour as in your old configuration.
2422
2423           If you are using 'systemd', its internal implementation of
2424           'udev' will be used automatically.
2425
2426           You must also check the packages depending on 'udev' are still
2427           selected.
2428
2429 config BR2_PACKAGE_UDEV
2430         bool "udev is now a virtual package"
2431         select BR2_LEGACY
2432         select BR2_PACKAGE_HAS_UDEV
2433         help
2434           The 'udev' package has been converted to a virtual package.
2435           The providers for this feature are: 'eudev', 'systemd'.
2436
2437           Your old configuration refers to packages depending on 'udev',
2438           either for build or at runtime.
2439
2440           Check that a 'udev' provider is selected. If you are not using
2441           'systemd' as init system, 'eudev' should be selected, which is
2442           the case if '/dev management' is set to 'Dynamic using eudev'.
2443
2444           If you are using 'systemd', its internal implementation of 'udev'
2445           is used.
2446
2447 config BR2_PACKAGE_UDEV_RULES_GEN
2448         bool "udev rules generation handled by provider"
2449         select BR2_LEGACY
2450         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2451         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
2452         help
2453           The 'udev' package has been converted to a virtual package.
2454           The providers for this feature are: 'eudev', 'systemd'.
2455
2456           If you are not using 'systemd' as init system, udev rules
2457           generation will be handled by 'eudev'. Check that
2458           '/dev management' is set to 'Dynamic using eudev' to get
2459           the same behaviour as in your old configuration.
2460
2461           If you are using 'systemd', it internal implementation of 'udev'
2462           will generate the rules.
2463
2464 config BR2_PACKAGE_UDEV_ALL_EXTRAS
2465         bool "udev extras removed"
2466         select BR2_LEGACY
2467         help
2468           The 'udev' package has been converted to a virtual package.
2469           The providers for this feature are: 'eudev', 'systemd'.
2470
2471           The option to enable the extra features of 'udev' (gudev, ...)
2472           has been removed. These features are automatically enabled in
2473           the 'udev' providers if the dependencies are selected. For
2474           example, selecting 'libglib2' will trigger the build of gudev.
2475
2476 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2477         bool "xlib-libpthread-stubs option has been renamed"
2478         depends on BR2_PACKAGE_XORG7
2479         select BR2_LEGACY
2480         select BR2_PACKAGE_LIBPTHREAD_STUBS
2481         help
2482           The pthread stubs neither depend on X11 nor Xlib. Thus the
2483           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2484
2485 ###############################################################################
2486 comment "Legacy options removed in 2014.02"
2487
2488 config BR2_sh2
2489         bool "sh2 support removed"
2490         select BR2_LEGACY
2491         help
2492           Due to an inexistent user base and generally poor Linux
2493           support, the support for the SH2 architecture was removed.
2494
2495 config BR2_sh3
2496         bool "sh3 support removed"
2497         select BR2_LEGACY
2498         help
2499           Due to an inexistent user base and generally poor Linux
2500           support, the support for the SH3 architecture was removed.
2501
2502 config BR2_sh3eb
2503         bool "sh3eb support removed"
2504         select BR2_LEGACY
2505         help
2506           Due to an inexistent user base and generally poor Linux
2507           support, the support for the SH3eb architecture was removed.
2508
2509 config BR2_KERNEL_HEADERS_3_1
2510         bool "kernel headers version 3.1.x are no longer supported"
2511         select BR2_KERNEL_HEADERS_3_2
2512         select BR2_LEGACY
2513         help
2514           Version 3.1.x of the Linux kernel headers have been deprecated
2515           for more than four buildroot releases and are now removed.
2516           As an alternative, version 3.2.x of the headers have been
2517           automatically selected in your configuration.
2518
2519 config BR2_KERNEL_HEADERS_3_3
2520         bool "kernel headers version 3.3.x are no longer supported"
2521         select BR2_KERNEL_HEADERS_3_2
2522         select BR2_LEGACY
2523         help
2524           Version 3.3.x of the Linux kernel headers have been deprecated
2525           for more than four buildroot releases and are now removed.
2526           As an alternative, version 3.2.x of the headers have been
2527           automatically selected in your configuration.
2528
2529 config BR2_KERNEL_HEADERS_3_5
2530         bool "kernel headers version 3.5.x are no longer supported"
2531         select BR2_KERNEL_HEADERS_3_4
2532         select BR2_LEGACY
2533         help
2534           Version 3.5.x of the Linux kernel headers have been deprecated
2535           for more than four buildroot releases and are now removed.
2536           As an alternative, version 3.4.x of the headers have been
2537           automatically selected in your configuration.
2538
2539 config BR2_GDB_VERSION_7_2
2540         bool "gdb 7.2.x is no longer supported"
2541         select BR2_GDB_VERSION_7_6
2542         select BR2_LEGACY
2543         help
2544           Version 7.2.x of gdb has been deprecated for more than four
2545           buildroot releases and is now removed. As an alternative, gdb
2546           7.5.x has been automatically selected in your configuration.
2547
2548 config BR2_GDB_VERSION_7_3
2549         bool "gdb 7.3.x is no longer supported"
2550         select BR2_GDB_VERSION_7_6
2551         select BR2_LEGACY
2552         help
2553           Version 7.3.x of gdb has been deprecated for more than four
2554           buildroot releases and is now removed. As an alternative, gdb
2555           7.5.x has been automatically selected in your configuration.
2556
2557 config BR2_PACKAGE_CCACHE
2558         bool "ccache target package has been removed"
2559         select BR2_LEGACY
2560         help
2561           The 'ccache' target package has been removed since it has been
2562           deprecated for more than four buildroot releases.
2563           Note: using ccache for speeding up builds is still supported.
2564
2565 config BR2_HAVE_DOCUMENTATION
2566         bool "support for documentation on target has been removed"
2567         select BR2_LEGACY
2568         help
2569           Support for documentation on target has been removed since it has
2570           been deprecated for more than four buildroot releases.
2571
2572 config BR2_PACKAGE_AUTOMAKE
2573         bool "automake target package has been removed"
2574         select BR2_LEGACY
2575         help
2576           The 'automake' target package has been removed since it has been
2577           deprecated for more than four buildroot releases.
2578           Note: the host automake still exists.
2579
2580 config BR2_PACKAGE_AUTOCONF
2581         bool "autoconf target package has been removed"
2582         select BR2_LEGACY
2583         help
2584           The 'autoconf' target package has been removed since it has been
2585           deprecated for more than four buildroot releases.
2586           Note: the host autoconf still exists.
2587
2588 config BR2_PACKAGE_XSTROKE
2589         bool "xstroke has been removed"
2590         select BR2_LEGACY
2591         help
2592           The 'xstroke' package has been removed since it has been
2593           deprecated for more than four buildroot releases.
2594
2595 config BR2_PACKAGE_LZMA
2596         bool "lzma target package has been removed"
2597         select BR2_LEGACY
2598         help
2599           The 'lzma' target package has been removed since it has been
2600           deprecated for more than four buildroot releases.
2601           Note: generating lzma-compressed rootfs images is still supported.
2602
2603 config BR2_PACKAGE_TTCP
2604         bool "ttcp has been removed"
2605         select BR2_LEGACY
2606         help
2607           The 'ttcp' package has been removed since it has been
2608           deprecated for more than four buildroot releases.
2609
2610 config BR2_PACKAGE_LIBNFC_LLCP
2611         bool "libnfc-llcp has been replaced by libllcp"
2612         select BR2_LEGACY
2613         select BR2_PACKAGE_LIBLLCP
2614         help
2615           The 'libnfc-llcp' package has been removed since upstream renamed
2616           to 'libllcp'. We have added a new package for 'libllcp' and bumped
2617           the version at the same time.
2618
2619 config BR2_PACKAGE_MYSQL_CLIENT
2620         bool "MySQL client renamed to MySQL"
2621         select BR2_LEGACY
2622         select BR2_PACKAGE_MYSQL
2623         help
2624           The option has been renamed BR2_PACKAGE_MYSQL
2625
2626 config BR2_PACKAGE_SQUASHFS3
2627         bool "squashfs3 has been removed"
2628         select BR2_LEGACY
2629         select BR2_PACKAGE_SQUASHFS
2630         help
2631           The 'squashfs3' package has been removed since it has been
2632           deprecated for more than four buildroot releases. Package
2633           'squashfs' (4) has been selected automatically as replacement.
2634
2635 config BR2_TARGET_ROOTFS_SQUASHFS3
2636         bool "squashfs3 rootfs support has been removed"
2637         select BR2_LEGACY
2638         help
2639           Together with the removal of the squashfs3 package, support
2640           for squashfs3 root filesystems has been removed too. Squashfs
2641           root filesystems will automatically use squashfs4 now.
2642
2643 config BR2_PACKAGE_NETKITBASE
2644         bool "netkitbase has been removed"
2645         select BR2_LEGACY
2646         help
2647           The 'netkitbase' package has been removed since it has been
2648           deprecated since 2012.11. This package provided 'inetd'
2649           which is replaced by 'xinet' and 'ping' which is replaced by
2650           'busybox' or 'fping'.
2651
2652 config BR2_PACKAGE_NETKITTELNET
2653         bool "netkittelnet has been removed"
2654         select BR2_LEGACY
2655         help
2656           The 'netkittelnet' package has been removed since it has
2657           been deprecated since 2012.11. 'busybox' provides a telnet
2658           client and should be used instead.
2659
2660 config BR2_PACKAGE_LUASQL
2661         bool "luasql has been replaced by luasql-sqlite3"
2662         select BR2_PACKAGE_LUASQL_SQLITE3
2663         select BR2_LEGACY
2664         help
2665           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2666
2667 config BR2_PACKAGE_LUACJSON
2668         bool "luacjson has been replaced by lua-cjson"
2669         select BR2_PACKAGE_LUA_CJSON
2670         select BR2_LEGACY
2671         help
2672           The option has been renamed BR2_PACKAGE_LUA_CJSON.
2673
2674 ###############################################################################
2675 comment "Legacy options removed in 2013.11"
2676
2677 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2678         bool "lvm2's 'dmsetup only' option removed"
2679         select BR2_LEGACY
2680         help
2681           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2682           led to problems with other packages that need the full lvm2
2683           suite. Therefore, the option has been replaced with the positive
2684           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2685
2686 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2687 # in order to automatically propagate old configs
2688
2689 config BR2_PACKAGE_QT_JAVASCRIPTCORE
2690         bool "qt javascriptcore option removed"
2691         select BR2_LEGACY
2692         help
2693           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2694           force the activation or disabling of the JIT compiler in the
2695           Qt Javascript interpreter. However, the JIT compiler is not
2696           available for all architectures, so forcing its activation
2697           does not always work. Moreover, Qt knows by itself for which
2698           architectures JIT support is possible, and will
2699           automatically enable it if possible.
2700
2701           Therefore, this option was in fact useless, and causing
2702           build problems when enabled on architectures for which the
2703           JIT support was not available. It has been removed, and
2704           there is no replacement: Qt will enable JIT at compile time
2705           when possible.
2706
2707 config BR2_PACKAGE_MODULE_INIT_TOOLS
2708         bool "module-init-tools replaced by kmod"
2709         select BR2_PACKAGE_KMOD
2710         select BR2_PACKAGE_KMOD_TOOLS
2711         select BR2_LEGACY
2712         help
2713           The 'module-init-tools' package has been removed, since it
2714           has been depracated upstream and replaced by 'kmod'.
2715
2716 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2717         string "u-boot: the git repository URL option has been renamed"
2718         help
2719           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2720           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2721
2722 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2723         bool
2724         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2725         select BR2_LEGACY
2726
2727 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2728 # boot/uboot/Config.in
2729
2730 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2731         string "u-boot: the git repository version option has been renamed"
2732         help
2733           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2734           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2735
2736 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2737         bool
2738         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2739         select BR2_LEGACY
2740
2741 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2742 # boot/uboot/Config.in
2743
2744 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2745         string "linux: the git repository URL option has been renamed"
2746         help
2747           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2748           been renamed to
2749           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2750
2751 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2752         bool
2753         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2754         select BR2_LEGACY
2755
2756 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2757 # linux/Config.in
2758
2759 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2760         string "linux: the git repository version option has been renamed"
2761         help
2762           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2763           been renamed to
2764           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2765
2766 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2767         bool
2768         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2769         select BR2_LEGACY
2770
2771 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2772 # linux/Config.in
2773
2774 ###############################################################################
2775 comment "Legacy options removed in 2013.08"
2776
2777 config BR2_ARM_OABI
2778         bool "ARM OABI support has been removed"
2779         select BR2_LEGACY
2780         help
2781           The support for the ARM OABI was deprecated since a while,
2782           and has been removed completely from Buildroot. It is also
2783           deprecated in upstream gcc, since gcc 4.7. People should
2784           switch to EABI instead, which should not be a problem as
2785           long as you don't have pre-built OABI binaries in your
2786           system that you can't recompile.
2787
2788 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2789         bool "dosfstools dosfsck renamed to fsck.fat"
2790         select BR2_LEGACY
2791         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2792         help
2793           dosfsck was renamed upstream to fsck.fat for consistency.
2794
2795 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2796         bool "dosfstools dosfslabel renamed to fatlabel"
2797         select BR2_LEGACY
2798         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2799         help
2800           doslabel was renamed upstream to fatlabel for consistency.
2801
2802 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2803         bool "dosfstools mkdosfs renamed to mkfs.fat"
2804         select BR2_LEGACY
2805         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2806         help
2807           mkdosfs was renamed upstream to mkfs.fat for consistency.
2808
2809 config BR2_ELF2FLT
2810         bool "the elf2flt option has been renamed"
2811         select BR2_LEGACY
2812         help
2813           The BR2_ELF2FLT option has been renamed to
2814           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2815           the package infrastructure.
2816
2817 config BR2_VFP_FLOAT
2818         bool "the ARM VFP floating point option has been renamed"
2819         select BR2_LEGACY
2820         help
2821           Due to a major refactoring of the floating-point handling of
2822           the ARM architecture support, the BR2_VFP_FLOAT option has
2823           been replaced with a choice of options that allows to select
2824           between various VFP versions/capabilities.
2825
2826 config BR2_PACKAGE_GCC_TARGET
2827         bool "gcc on the target filesystem has been removed"
2828         select BR2_LEGACY
2829         help
2830           The support for gcc in the target filesystem was deprecated
2831           since a while, and has been removed completely from Buildroot.
2832           See Buildroot's documentation for more explanations.
2833
2834 config BR2_HAVE_DEVFILES
2835         bool "development files in target filesystem has been removed"
2836         select BR2_LEGACY
2837         help
2838           The installation of the development files in the target
2839           filesystem was deprecated since a while, and has been removed
2840           completely from Buildroot.
2841           See Buildroot's documentation for more explanations.
2842
2843 ###############################################################################
2844 comment "Legacy options removed in 2013.05"
2845
2846 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2847         bool "Realtek 8192 replaced by Realtek 81xx"
2848         select BR2_LEGACY
2849         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2850         help
2851           Now covers the whole Realtek 81xx familly: 8188/8192.
2852
2853 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2854         bool "Realtek 8712 replaced by Realtek 87xx"
2855         select BR2_LEGACY
2856         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2857         help
2858           Now covers the whole Realtek 87xx familly: 8712/8723.
2859
2860 ###############################################################################
2861 comment "Legacy options removed in 2013.02"
2862
2863 config BR2_sa110
2864         bool "sa110 ARM target switched to strongarm"
2865         select BR2_LEGACY
2866         select BR2_strongarm
2867         help
2868           The SA110 is the same as a generic StrongARM, it just differs
2869           in speed, peripherals and cache.
2870
2871 config BR2_sa1100
2872         bool "sa1100 ARM target switched to strongarm"
2873         select BR2_LEGACY
2874         select BR2_strongarm
2875         help
2876           The SA1100 is the same as a generic StrongARM, it just differs
2877           in speed, peripherals and cache.
2878
2879 config BR2_PACKAGE_GDISK
2880         bool "gdisk has been replaced by gptfdisk"
2881         select BR2_LEGACY
2882         select BR2_PACKAGE_GPTFDISK
2883         help
2884           The option has been renamed BR2_PACKAGE_GPTFDISK.
2885
2886 config BR2_PACKAGE_GDISK_GDISK
2887         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2888         select BR2_LEGACY
2889         select BR2_PACKAGE_GPTFDISK
2890         select BR2_PACKAGE_GPTFDISK_GDISK
2891         help
2892           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2893
2894 config BR2_PACKAGE_GDISK_SGDISK
2895         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2896         select BR2_LEGACY
2897         select BR2_PACKAGE_GPTFDISK
2898         select BR2_PACKAGE_GPTFDISK_SGDISK
2899         help
2900           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
2901
2902 config BR2_PACKAGE_GDB_HOST
2903         bool "gdb for the host option has been renamed"
2904         select BR2_PACKAGE_HOST_GDB
2905         select BR2_LEGACY
2906         help
2907           Due to the conversion of gdb to the package infrastructure,
2908           the BR2_PACKAGE_GDB_HOST option has been renamed
2909           BR2_PACKAGE_HOST_GDB.
2910
2911 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2912         bool "DirectFB RGB16 dithering option has been renamed"
2913         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2914         select BR2_LEGACY
2915         help
2916           The option has been renamed
2917           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2918
2919 config BR2_PACKAGE_DIRECTB_TESTS
2920         bool "DirectFB Tests option has been renamed"
2921         select BR2_PACKAGE_DIRECTFB_TESTS
2922         select BR2_LEGACY
2923         help
2924           The option has been renamed
2925           BR2_PACKAGE_DIRECTFB_TESTS.
2926
2927 ###############################################################################
2928 comment "Legacy options removed in 2012.11"
2929
2930 config BR2_PACKAGE_CUSTOMIZE
2931         bool "customize package has been removed"
2932         select BR2_LEGACY
2933         help
2934           The 'customize' special package has been removed. Instead,
2935           we recommend to create either your own packages, or use a
2936           post-build script to customize your root filesystem. See
2937           Buildroot's documentation for more details.
2938
2939 config BR2_PACKAGE_XSERVER_xorg
2940         bool "X.org modular server"
2941         select BR2_LEGACY
2942         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2943         help
2944           The option has been renamed
2945           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2946
2947 config BR2_PACKAGE_XSERVER_tinyx
2948         bool "KDrive / TinyX server"
2949         select BR2_LEGACY
2950         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2951         help
2952           The option has been renamed
2953           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2954
2955 config BR2_PACKAGE_PTHREAD_STUBS
2956         bool "pthread-stubs option has been renamed"
2957         select BR2_LEGACY
2958         select BR2_PACKAGE_LIBPTHREAD_STUBS
2959         help
2960           For consistency reason, the pthread-stubs package has been
2961           renamed to libpthread-stubs.
2962
2963 ###############################################################################
2964 comment "Legacy options removed in 2012.08"
2965
2966 config BR2_PACKAGE_GETTEXT_STATIC
2967         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2968         select BR2_LEGACY
2969         help
2970           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2971
2972
2973 config BR2_PACKAGE_LIBINTL
2974         bool "libintl"
2975         select BR2_LEGACY
2976         select BR2_PACKAGE_GETTEXT
2977         help
2978           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2979           only installs the library, not the executables.
2980
2981 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2982         bool "input-tools evtest is now a separate package evtest"
2983         select BR2_LEGACY
2984         select BR2_PACKAGE_EVTEST
2985         help
2986           The evtest program from input-tools is now a separate package.
2987
2988 config BR2_BFIN_FDPIC
2989         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2990         select BR2_BINFMT_FDPIC
2991         select BR2_LEGACY
2992
2993 config BR2_BFIN_FLAT
2994         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2995         select BR2_BINFMT_FLAT
2996         select BR2_LEGACY
2997
2998 endmenu
2999
3000 endif # !SKIP_LEGACY