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