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