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