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