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