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