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