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