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