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