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