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