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