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