]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in.legacy
busybox: S10mdev: fix module autoloading
[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
1168 config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1169         bool "nginx http spdy module removed"
1170         select BR2_LEGACY
1171         select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1172         help
1173           The ngx_http_spdy_module has been superseded by the
1174           ngx_http_v2_module since nginx v1.9.5.  The
1175           ngx_http_v2_module modules has been automatically selected
1176           in your configuration.
1177
1178 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1179         bool "gst1-plugins-bad rtp plugin moved to good"
1180         select BR2_LEGACY
1181         help
1182           The rtp plugin has been moved from gst1-plugins-base to
1183           gst1-plugins-good.
1184
1185 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1186         bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1187         select BR2_LEGACY
1188         help
1189           The mpg123 plugin has been moved from gst1-plugins-bad to
1190           gst1-plugins-ugly.
1191
1192 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1193         bool "PowerPC Sourcery toolchain has been removed"
1194         select BR2_LEGACY
1195         help
1196           The Sourcery CodeBench toolchain for the PowerPC
1197           architecture has been removed, as it was very old, not
1198           maintained, and causing numerous build failures with modern
1199           userspace packages.
1200
1201 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1202         bool "PowerPC Sourcery E500v2 toolchain has been removed"
1203         select BR2_LEGACY
1204         help
1205           The Sourcery CodeBench toolchain for the PowerPC E500v2
1206           architecture has been removed, as it was very old, not
1207           maintained, and causing numerous build failures with modern
1208           userspace packages.
1209
1210 config BR2_x86_i386
1211         bool "x86 i386 support removed"
1212         select BR2_LEGACY
1213         help
1214           The support for the i386 processors of the x86 architecture
1215           has been removed.
1216
1217 config BR2_PACKAGE_QT5QUICK1
1218         bool "qt5quick1 package removed"
1219         select BR2_LEGACY
1220         help
1221           The qt5quick1 package has been removed, since it was removed
1222           from upstream starting from Qt 5.6.
1223
1224 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
1225         string "uboot custom patch dir has been removed"
1226         help
1227           The uboot custom patch directory option has been removed. Use
1228           the improved BR2_TARGET_UBOOT_PATCH option instead.
1229
1230 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1231         bool
1232         default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1233         select BR2_LEGACY
1234
1235 # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1236 # boot/uboot/Config.in
1237
1238 config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1239         bool "xf86-input-void removed"
1240         select BR2_LEGACY
1241         help
1242           The xf86-input-void package has been removed, there's no need
1243           for it in any modern (post-2007) xorg server.
1244
1245 config BR2_KERNEL_HEADERS_3_17
1246         bool "kernel headers version 3.17.x are no longer supported"
1247         select BR2_KERNEL_HEADERS_3_12
1248         select BR2_LEGACY
1249         help
1250           Version 3.17.x of the Linux kernel headers have been deprecated
1251           for more than four buildroot releases and are now removed.
1252           As an alternative, version 3.12.x of the headers have been
1253           automatically selected in your configuration.
1254
1255 config BR2_GDB_VERSION_7_7
1256         bool "gdb 7.7 has been removed"
1257         select BR2_LEGACY
1258         help
1259           The 7.7 version of gdb has been removed. Use a newer version
1260           instead.
1261
1262 config BR2_PACKAGE_FOOMATIC_FILTERS
1263         bool "foomatic-filters"
1264         select BR2_LEGACY
1265         help
1266           The foomatic-filters package was removed.
1267
1268 config BR2_PACKAGE_SAMBA
1269         bool "samba"
1270         select BR2_LEGACY
1271         help
1272           The samba package was removed in favour of samba4 since the
1273           3.x series isn't supported by upstream any longer.
1274
1275 config BR2_PACKAGE_KODI_WAVPACK
1276         bool "wavpack"
1277         select BR2_LEGACY
1278         help
1279           wavpack support was removed in favour of ffmpeg:
1280           https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1281
1282 config BR2_PACKAGE_KODI_RSXS
1283         bool "rsxs support in Kodi was moved to an addon"
1284         select BR2_LEGACY
1285         select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1286         help
1287           rsxs support in Kodi was moved to an addon
1288
1289 config BR2_PACKAGE_KODI_GOOM
1290         bool "Goom support in Kodi was moved to an addon"
1291         select BR2_LEGACY
1292         select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1293         help
1294           Goom support in Kodi was moved to an addon
1295
1296 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1297         bool "systemd all extras option has been removed"
1298         select BR2_LEGACY
1299         select BR2_PACKAGE_XZ
1300         select BR2_PACKAGE_LIBGCRYPT
1301         help
1302           The systemd option to enable "all extras" has been
1303           removed. To get the same features, the libgcrypt and xz
1304           package should now be enabled.
1305
1306 config BR2_GCC_VERSION_4_5_X
1307         bool "gcc 4.5.x has been removed"
1308         select BR2_LEGACY
1309         help
1310           The 4.5.x version of gcc has been removed. Use a newer
1311           version instead.
1312
1313 config BR2_PACKAGE_SQLITE_READLINE
1314         bool "sqlite command-line editing support was updated"
1315         select BR2_PACKAGE_NCURSES
1316         select BR2_PACKAGE_READLINE
1317         select BR2_LEGACY
1318         help
1319           This option was removed in favour of the sqlite package
1320           deciding itself depending on the enabled packages whether
1321           command-line editing should be enabled, it also also takes
1322           libedit into account.
1323
1324 ###############################################################################
1325 comment "Legacy options removed in 2016.02"
1326
1327 config BR2_PACKAGE_DOVECOT_BZIP2
1328         bool "bzip2 support option has been removed"
1329         select BR2_LEGACY
1330         select BR2_PACKAGE_BZIP2
1331         help
1332           Bzip2 support is built if the bzip2 package is selected.
1333
1334 config BR2_PACKAGE_DOVECOT_ZLIB
1335         bool "zlib support option has been removed"
1336         select BR2_LEGACY
1337         select BR2_PACKAGE_ZLIB
1338         help
1339           Zlib support is built if the zlib package is selected.
1340
1341 config BR2_PACKAGE_E2FSPROGS_FINDFS
1342         bool "e2fsprogs findfs option has been removed"
1343         select BR2_LEGACY
1344         help
1345           This option attempted to enable findfs capabilities from
1346           e2fsprogs but has not worked since July 2015 (due to
1347           packaging changes). One can use BusyBox's findfs support or
1348           enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
1349
1350 config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1351         bool "openpowerlink debug option has been removed"
1352         select BR2_LEGACY
1353         help
1354           This option depends on BR2_ENABLE_DEBUG which should not be used
1355           by packages anymore.
1356
1357 config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1358         bool "openpowerlink package has been updated"
1359         select BR2_LEGACY
1360         select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1361         help
1362           openpowerlink kernel modules are built if the
1363           kernel stack library is selected.
1364
1365 config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1366         bool "openpowerlink package has been updated"
1367         select BR2_LEGACY
1368         select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1369         help
1370           The user space support has been split in two part:
1371           - a monolitic user space library
1372           - a user spae deamon driver
1373
1374 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1375         bool "using the linux headers version for the kernel has been removed"
1376         select BR2_LEGACY
1377         help
1378           The option to use the version of the kernel headers for the
1379           kernel to build has been removed.
1380
1381           There is now the converse, better-suited and more versatile
1382           option to use the kernel version for the linux headers.
1383
1384 config BR2_PACKAGE_CUPS_PDFTOPS
1385         bool "Pdftops support has been removed from Cups"
1386         select BR2_PACKAGE_CUPS_FILTERS
1387         select BR2_LEGACY
1388         help
1389           Pdftops support has been removed from the cups package
1390           It is now part of the cups-filters package.
1391
1392 config BR2_KERNEL_HEADERS_3_16
1393         bool "kernel headers version 3.16.x are no longer supported"
1394         select BR2_KERNEL_HEADERS_3_12
1395         select BR2_LEGACY
1396         help
1397         Version 3.16.x of the Linux kernel headers have been deprecated
1398         for more than four buildroot releases and are now removed.
1399         As an alternative, version 3.12.x of the headers have been
1400         automatically selected in your configuration.
1401
1402 config BR2_PACKAGE_PYTHON_PYXML
1403         bool "python-pyxml package has been removed"
1404         select BR2_LEGACY
1405         help
1406           PyXML is obsolete and its functionality is covered either via
1407           native Python XML support or python-lxml package.
1408
1409 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1410 config BR2_ENABLE_SSP
1411         bool "Stack Smashing protection now has different levels"
1412         help
1413           The protection offered by SSP can now be selected from different
1414           protection levels. Be sure to review the SSP level in the build
1415           options menu.
1416
1417 config BR2_PACKAGE_DIRECTFB_CLE266
1418         bool "cle266 driver for directfb removed"
1419         select BR2_LEGACY
1420         help
1421           The cle266 directfb driver support has been removed.
1422           It doesn't build in the latest version and it's unlikely
1423           anyone has any use for it.
1424
1425 config BR2_PACKAGE_DIRECTFB_UNICHROME
1426         bool "unichrome driver for directfb removed"
1427         select BR2_LEGACY
1428         help
1429           The unichrome directfb driver support has been removed.
1430           It doesn't build in the latest version and it's unlikely
1431           anyone has any use for it.
1432
1433 config BR2_PACKAGE_LIBELEMENTARY
1434         bool "libelementary has been renamed to elementary"
1435         select BR2_LEGACY
1436         select BR2_PACKAGE_ELEMENTARY
1437         help
1438           The libelementary package has been renamed to match the upstream
1439           name.
1440
1441 config BR2_PACKAGE_LIBEINA
1442         bool "libeina package has been removed"
1443         select BR2_LEGACY
1444         select BR2_PACKAGE_EFL
1445         help
1446           With EFL 1.15, libeina is now provided by the efl package.
1447
1448 config BR2_PACKAGE_LIBEET
1449         bool "libeet package has been removed"
1450         select BR2_LEGACY
1451         select BR2_PACKAGE_EFL
1452         help
1453           With EFL 1.15, libeet is now provided by the efl package.
1454
1455 config BR2_PACKAGE_LIBEVAS
1456         bool "libevas package has been removed"
1457         select BR2_LEGACY
1458         select BR2_PACKAGE_EFL
1459         help
1460           With EFL 1.15, libevas is now provided by the efl package.
1461
1462 config BR2_PACKAGE_LIBECORE
1463         bool "libecore package has been removed"
1464         select BR2_LEGACY
1465         select BR2_PACKAGE_EFL
1466         help
1467           With EFL 1.15, libecore is now provided by the efl package.
1468
1469 config BR2_PACKAGE_LIBEDBUS
1470         bool "libedbus package has been removed"
1471         select BR2_LEGACY
1472         select BR2_PACKAGE_EFL
1473         help
1474           With EFL 1.15, libedbus is now provided by the efl package.
1475
1476 config BR2_PACKAGE_LIBEFREET
1477         bool "libefreet package has been removed"
1478         select BR2_LEGACY
1479         select BR2_PACKAGE_EFL
1480         help
1481           With EFL 1.15, libefreet is now provided by the efl package.
1482
1483 config BR2_PACKAGE_LIBEIO
1484         bool "libeio package has been removed"
1485         select BR2_LEGACY
1486         select BR2_PACKAGE_EFL
1487         help
1488           With EFL 1.15, libeio is now provided by the efl package.
1489
1490 config BR2_PACKAGE_LIBEMBRYO
1491         bool "libembryo package has been removed"
1492         select BR2_LEGACY
1493         select BR2_PACKAGE_EFL
1494         help
1495           With EFL 1.15, libembryo is now provided by the efl package.
1496
1497 config BR2_PACKAGE_LIBEDJE
1498         bool "libedje package has been removed"
1499         select BR2_LEGACY
1500         select BR2_PACKAGE_EFL
1501         help
1502           With EFL 1.15, libedje is now provided by the efl package.
1503
1504 config BR2_PACKAGE_LIBETHUMB
1505         bool "libethumb package has been removed"
1506         select BR2_LEGACY
1507         select BR2_PACKAGE_EFL
1508         help
1509           With EFL 1.15, libethumb is now provided by the efl package.
1510
1511 config BR2_PACKAGE_INFOZIP
1512         bool "infozip option has been renamed to zip"
1513         select BR2_LEGACY
1514         select BR2_PACKAGE_ZIP
1515         help
1516           Info-Zip's Zip package has been renamed from infozip to zip,
1517           to avoid ambiguities with Info-Zip's UnZip which has been added
1518           in the unzip package.
1519
1520 config BR2_BR2_PACKAGE_NODEJS_0_10_X
1521         bool "nodejs 0.10.x option removed"
1522         select BR2_LEGACY
1523         select BR2_PACKAGE_NODEJS
1524         help
1525           nodejs 0.10.x option has been removed.  0.10.x is now
1526           automatically chosen for ARMv5 architectures only and the latest
1527           nodejs for all other supported architectures. The correct nodejs
1528           version has been automatically selected in your configuration.
1529
1530 config BR2_BR2_PACKAGE_NODEJS_0_12_X
1531         bool "nodejs version 0.12.x has been removed"
1532         select BR2_LEGACY
1533         select BR2_PACKAGE_NODEJS
1534         help
1535           nodejs version 0.12.x has been removed.  As an alternative,
1536           the latest nodejs version has been automatically selected in
1537           your configuration.
1538
1539 config BR2_BR2_PACKAGE_NODEJS_4_X
1540         bool "nodejs version 4.x has been removed"
1541         select BR2_LEGACY
1542         select BR2_PACKAGE_NODEJS
1543         help
1544           nodejs version 4.x has been removed.  As an alternative,
1545           the latest nodejs version has been automatically selected in
1546           your configuration.
1547
1548 ###############################################################################
1549 comment "Legacy options removed in 2015.11"
1550
1551 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1552         bool "gst1-plugins-bad real plugin has been removed"
1553         select BR2_LEGACY
1554         help
1555           The real plugin from GStreamer 1 bad plugins has been
1556           removed.
1557
1558 config BR2_PACKAGE_MEDIA_CTL
1559         bool "media-ctl package has been removed"
1560         select BR2_LEGACY
1561         select BR2_PACKAGE_LIBV4L
1562         select BR2_PACKAGE_LIBV4L_UTILS
1563         help
1564           media-ctl source and developement have been moved to
1565           v4l-utils since June 2014. For an up-to-date media-ctl
1566           version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1567
1568 config BR2_PACKAGE_SCHIFRA
1569         bool "schifra package has been removed"
1570         select BR2_LEGACY
1571         help
1572           Schifra package has been maked broken since 2014.11 release and
1573           haven't been fixed since then.
1574
1575 config BR2_PACKAGE_ZXING
1576         bool "zxing option has been renamed"
1577         select BR2_LEGACY
1578         select BR2_PACKAGE_ZXING_CPP
1579         help
1580           ZXing no longer provides the cpp bindings, it has been renamed to
1581           BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1582
1583 # Since FreeRDP has new dependencies, protect this legacy to avoid the
1584 # infamous "unmet direct dependencies" kconfig error.
1585 config BR2_PACKAGE_FREERDP_CLIENT
1586         bool "freerdp client option renamed"
1587         depends on BR2_PACKAGE_FREERDP
1588         select BR2_LEGACY
1589         select BR2_PACKAGE_FREERDP_CLIENT_X11
1590
1591 config BR2_PACKAGE_BLACKBOX
1592         bool "blackbox package has been removed"
1593         select BR2_LEGACY
1594         help
1595           Upstream is dead and the package has been deprecated for
1596           some time. There are other alternative maintained WMs.
1597
1598 config BR2_KERNEL_HEADERS_3_0
1599         bool "kernel headers version 3.0.x are no longer supported"
1600         select BR2_KERNEL_HEADERS_3_2
1601         select BR2_LEGACY
1602         help
1603           Version 3.0.x of the Linux kernel headers have been deprecated
1604           for more than four buildroot releases and are now removed.
1605           As an alternative, version 3.2.x of the headers have been
1606           automatically selected in your configuration.
1607
1608 config BR2_KERNEL_HEADERS_3_11
1609         bool "kernel headers version 3.11.x are no longer supported"
1610         select BR2_KERNEL_HEADERS_3_10
1611         select BR2_LEGACY
1612         help
1613           Version 3.11.x of the Linux kernel headers have been deprecated
1614           for more than four buildroot releases and are now removed.
1615           As an alternative, version 3.10.x of the headers have been
1616           automatically selected in your configuration.
1617
1618 config BR2_KERNEL_HEADERS_3_13
1619         bool "kernel headers version 3.13.x are no longer supported"
1620         select BR2_KERNEL_HEADERS_3_12
1621         select BR2_LEGACY
1622         help
1623           Version 3.13.x of the Linux kernel headers have been deprecated
1624           for more than four buildroot releases and are now removed.
1625           As an alternative, version 3.12.x of the headers have been
1626           automatically selected in your configuration.
1627
1628 config BR2_KERNEL_HEADERS_3_15
1629         bool "kernel headers version 3.15.x are no longer supported"
1630         select BR2_KERNEL_HEADERS_3_12
1631         select BR2_LEGACY
1632         help
1633           Version 3.15.x of the Linux kernel headers have been deprecated
1634           for more than four buildroot releases and are now removed.
1635           As an alternative, version 3.12.x of the headers have been
1636           automatically selected in your configuration.
1637
1638 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
1639         bool "DirectFB example df_andi has been removed"
1640         select BR2_LEGACY
1641         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1642         help
1643           The per-DirectFB example options have been removed. The
1644           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1645           examples.
1646
1647 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
1648         bool "DirectFB example df_bltload has been removed"
1649         select BR2_LEGACY
1650         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1651         help
1652           The per-DirectFB example options have been removed. The
1653           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1654           examples.
1655
1656 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
1657         bool "DirectFB example df_cpuload has been removed"
1658         select BR2_LEGACY
1659         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1660         help
1661           The per-DirectFB example options have been removed. The
1662           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1663           examples.
1664
1665 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
1666         bool "DirectFB example df_databuffer has been removed"
1667         select BR2_LEGACY
1668         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1669         help
1670           The per-DirectFB example options have been removed. The
1671           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1672           examples.
1673
1674 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
1675         bool "DirectFB example df_dioload has been removed"
1676         select BR2_LEGACY
1677         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1678         help
1679           The per-DirectFB example options have been removed. The
1680           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1681           examples.
1682
1683 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
1684         bool "DirectFB example df_dok has been removed"
1685         select BR2_LEGACY
1686         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1687         help
1688           The per-DirectFB example options have been removed. The
1689           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1690           examples.
1691
1692 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
1693         bool "DirectFB example df_drivertest has been removed"
1694         select BR2_LEGACY
1695         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1696         help
1697           The per-DirectFB example options have been removed. The
1698           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1699           examples.
1700
1701 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
1702         bool "DirectFB example df_fire has been removed"
1703         select BR2_LEGACY
1704         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1705         help
1706           The per-DirectFB example options have been removed. The
1707           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1708           examples.
1709
1710 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
1711         bool "DirectFB example df_flip has been removed"
1712         select BR2_LEGACY
1713         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1714         help
1715           The per-DirectFB example options have been removed. The
1716           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1717           examples.
1718
1719 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
1720         bool "DirectFB example df_fonts has been removed"
1721         select BR2_LEGACY
1722         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1723         help
1724           The per-DirectFB example options have been removed. The
1725           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1726           examples.
1727
1728 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
1729         bool "DirectFB example df_input has been removed"
1730         select BR2_LEGACY
1731         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1732         help
1733           The per-DirectFB example options have been removed. The
1734           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1735           examples.
1736
1737 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
1738         bool "DirectFB example df_joystick has been removed"
1739         select BR2_LEGACY
1740         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1741         help
1742           The per-DirectFB example options have been removed. The
1743           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1744           examples.
1745
1746 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
1747         bool "DirectFB example df_knuckles has been removed"
1748         select BR2_LEGACY
1749         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1750         help
1751           The per-DirectFB example options have been removed. The
1752           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1753           examples.
1754
1755 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
1756         bool "DirectFB example df_layer has been removed"
1757         select BR2_LEGACY
1758         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1759         help
1760           The per-DirectFB example options have been removed. The
1761           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1762           examples.
1763
1764 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
1765         bool "DirectFB example df_matrix has been removed"
1766         select BR2_LEGACY
1767         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1768         help
1769           The per-DirectFB example options have been removed. The
1770           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1771           examples.
1772
1773 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
1774         bool "DirectFB example df_matrix_water has been removed"
1775         select BR2_LEGACY
1776         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1777         help
1778           The per-DirectFB example options have been removed. The
1779           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1780           examples.
1781
1782 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
1783         bool "DirectFB example df_neo has been removed"
1784         select BR2_LEGACY
1785         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1786         help
1787           The per-DirectFB example options have been removed. The
1788           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1789           examples.
1790
1791 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
1792         bool "DirectFB example df_netload has been removed"
1793         select BR2_LEGACY
1794         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1795         help
1796           The per-DirectFB example options have been removed. The
1797           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1798           examples.
1799
1800 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
1801         bool "DirectFB example df_palette has been removed"
1802         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1803         help
1804           The per-DirectFB example options have been removed. The
1805           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1806           examples.
1807
1808 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
1809         bool "DirectFB example df_particle has been removed"
1810         select BR2_LEGACY
1811         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1812         help
1813           The per-DirectFB example options have been removed. The
1814           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1815           examples.
1816
1817 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
1818         bool "DirectFB example df_porter has been removed"
1819         select BR2_LEGACY
1820         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1821         help
1822           The per-DirectFB example options have been removed. The
1823           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1824           examples.
1825
1826 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
1827         bool "DirectFB example df_stress has been removed"
1828         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1829         help
1830           The per-DirectFB example options have been removed. The
1831           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1832           examples.
1833
1834 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
1835         bool "DirectFB example df_texture has been removed"
1836         select BR2_LEGACY
1837         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1838         help
1839           The per-DirectFB example options have been removed. The
1840           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1841           examples.
1842
1843 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
1844         bool "DirectFB example df_video has been removed"
1845         select BR2_LEGACY
1846         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1847         help
1848           The per-DirectFB example options have been removed. The
1849           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1850           examples.
1851
1852 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
1853         bool "DirectFB example df_video_particle has been removed"
1854         select BR2_LEGACY
1855         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1856         help
1857           The per-DirectFB example options have been removed. The
1858           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1859           examples.
1860
1861 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
1862         bool "DirectFB example df_window has been removed"
1863         select BR2_LEGACY
1864         select BR2_PACKAGE_DIRECTFB_EXAMPLES
1865         help
1866           The per-DirectFB example options have been removed. The
1867           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
1868           examples.
1869
1870 config BR2_PACKAGE_KOBS_NG
1871         bool "kobs-ng was replaced by imx-kobs"
1872         select BR2_LEGACY
1873         select BR2_PACKAGE_IMX_KOBS
1874         help
1875           The outdated kobs-ng has been replaced by the Freescale-
1876           maintained imx-kobs package.
1877
1878 config BR2_PACKAGE_SAWMAN
1879         bool "sawman package removed"
1880         select BR2_LEGACY
1881         select BR2_PACKAGE_DIRECTFB_SAWMAN
1882         help
1883           This option has been removed because the sawman package no
1884           longer exists: it was merged inside DirectFB itself. This
1885           feature can now be enabled using the
1886           BR2_PACKAGE_DIRECTFB_SAWMAN option.
1887
1888 config BR2_PACKAGE_DIVINE
1889         bool "divine package removed"
1890         select BR2_LEGACY
1891         select BR2_PACKAGE_DIRECTFB_DIVINE
1892         help
1893           This option has been removed because the divine package no
1894           longer exists: it was merged inside DirectFB itself. This
1895           feature can now be enabled using the
1896           BR2_PACKAGE_DIRECTFB_DIVINE option.
1897
1898 ###############################################################################
1899 comment "Legacy options removed in 2015.08"
1900
1901 config BR2_PACKAGE_KODI_PVR_ADDONS
1902         bool "Kodi PVR addon was split"
1903         select BR2_LEGACY
1904         select BR2_PACKAGE_KODI_PVR_ARGUSTV
1905         select BR2_PACKAGE_KODI_PVR_DVBLINK
1906         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
1907         select BR2_PACKAGE_KODI_PVR_FILMON
1908         select BR2_PACKAGE_KODI_PVR_HTS
1909         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
1910         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
1911         select BR2_PACKAGE_KODI_PVR_MYTHTV
1912         select BR2_PACKAGE_KODI_PVR_NEXTPVR
1913         select BR2_PACKAGE_KODI_PVR_NJOY
1914         select BR2_PACKAGE_KODI_PVR_PCTV
1915         select BR2_PACKAGE_KODI_PVR_STALKER
1916         select BR2_PACKAGE_KODI_PVR_VBOX
1917         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
1918         select BR2_PACKAGE_KODI_PVR_VUPLUS
1919         select BR2_PACKAGE_KODI_PVR_WMC
1920         help
1921           Kodi PVR addon was split into seperate modules
1922
1923 config BR2_BINUTILS_VERSION_2_23_2
1924         bool "binutils 2.23 option renamed"
1925         select BR2_LEGACY
1926         help
1927           Binutils 2.23.2 has been removed, using a newer version is
1928           recommended.
1929
1930 config BR2_BINUTILS_VERSION_2_24
1931         bool "binutils 2.24 option renamed"
1932         select BR2_LEGACY
1933         select BR2_BINUTILS_VERSION_2_24_X
1934         help
1935           The binutils version option has been renamed to match the
1936           same patchlevel logic used by gcc. The new option is now
1937           BR2_BINUTILS_VERSION_2_24_X.
1938
1939 config BR2_BINUTILS_VERSION_2_25
1940         bool "binutils 2.25 option renamed"
1941         select BR2_LEGACY
1942         select BR2_BINUTILS_VERSION_2_25_X
1943         help
1944           The binutils version option has been renamed to match the
1945           same patchlevel logic used by gcc. The new option is now
1946           BR2_BINUTILS_VERSION_2_25_X.
1947
1948 config BR2_PACKAGE_PERF
1949         bool "perf option has been renamed"
1950         select BR2_LEGACY
1951         select BR2_LINUX_KERNEL_TOOL_PERF
1952         help
1953           The perf package has been moved as a Linux tools package,
1954           and the option to enable it is now
1955           BR2_LINUX_KERNEL_TOOL_PERF.
1956
1957 config BR2_BINUTILS_VERSION_2_22
1958         bool "binutils 2.22 removed"
1959         select BR2_LEGACY
1960         help
1961           Binutils 2.22 has been removed, using a newer version is
1962           recommended.
1963
1964 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
1965         bool "gpu-viv-bin-mx6q"
1966         select BR2_LEGACY
1967         select BR2_PACKAGE_IMX_GPU_VIV
1968         help
1969           Vivante graphics libraries have been renamed to
1970           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
1971           name.
1972
1973 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
1974         depends on BR2_PACKAGE_PYTHON
1975         bool "libsemanage python bindings removed"
1976         select BR2_LEGACY
1977         help
1978           This option has been removed, since the libsemanage Python
1979           bindings on the target were not useful.
1980
1981 config BR2_TARGET_UBOOT_NETWORK
1982         bool "U-Boot custom network settings removed"
1983         select BR2_LEGACY
1984         help
1985           U-Boot's custom network settings options have been removed.
1986
1987 ###############################################################################
1988 comment "Legacy options removed in 2015.05"
1989
1990 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1991         bool "jffs2 16kB erasesize NAND flash option renamed"
1992         select BR2_LEGACY
1993         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1994         help
1995           The JFFS2 NAND flash options now longer include the page
1996           size.
1997
1998 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1999         bool "jffs2 128kB erasesize NAND flash option renamed"
2000         select BR2_LEGACY
2001         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2002         help
2003           The JFFS2 NAND flash options now longer include the page
2004           size.
2005
2006 config BR2_PACKAGE_MONO_20
2007         bool "2.0/3.5 .Net Runtime"
2008         select BR2_LEGACY
2009         help
2010           This option no longer exists, all versions of the .Net
2011           runtime are now installed.
2012
2013 config BR2_PACKAGE_MONO_40
2014         bool "4.0 .Net Runtime"
2015         select BR2_LEGACY
2016         help
2017           This option no longer exists, all versions of the .Net
2018           runtime are now installed.
2019
2020 config BR2_PACKAGE_MONO_45
2021         bool "4.5 .Net Runtime"
2022         select BR2_LEGACY
2023         help
2024           This option no longer exists, all versions of the .Net
2025           runtime are now installed.
2026
2027 config BR2_CIVETWEB_WITH_LUA
2028         bool "civetweb lua option renamed"
2029         select BR2_LEGACY
2030         select BR2_PACKAGE_CIVETWEB_WITH_LUA
2031         help
2032           civetweb's lua option has been renamed to
2033           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2034           packages name options.
2035
2036 config BR2_PACKAGE_TIFF_TIFF2PDF
2037         bool "tiff utility-specific option removed"
2038         select BR2_LEGACY
2039         select BR2_PACKAGE_TIFF_UTILITIES
2040         help
2041           utility-specific options have been removed in favour of
2042           the new option BR2_PACKAGE_TIFF_UTILITIES.
2043
2044 config BR2_PACKAGE_TIFF_TIFFCP
2045         bool "tiff utility-specific option removed"
2046         select BR2_LEGACY
2047         select BR2_PACKAGE_TIFF_UTILITIES
2048         help
2049           utility-specific options have been removed in favour of
2050           the new option BR2_PACKAGE_TIFF_UTILITIES.
2051
2052 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
2053         bool "RTAI patch file path has been removed"
2054         select BR2_LEGACY
2055         help
2056           This option has never worked, so it has been removed.
2057
2058 config BR2_TARGET_GENERIC_PASSWD_DES
2059         bool "Encoding passwords with DES has been removed"
2060         select BR2_LEGACY
2061         help
2062           Paswords can now only be encoded with either of md5, sha256 or sha512.
2063           The default is md5, which is stronger that DES (but still pretty weak).
2064
2065 config BR2_PACKAGE_GTK2_THEME_HICOLOR
2066         bool "hicolor (default theme) is a duplicate"
2067         select BR2_LEGACY
2068         select BR2_PACKAGE_HICOLOR_ICON_THEME
2069         help
2070           The option was just a duplicate of hicolor icon theme.
2071
2072 config BR2_PACKAGE_VALGRIND_PTRCHECK
2073         bool "valgrind's PTRCheck was renamed to SGCheck"
2074         select BR2_LEGACY
2075         select BR2_PACKAGE_VALGRIND_SGCHECK
2076         help
2077           PTRCheck was renamed to SGCheck in valgrind
2078
2079 ###############################################################################
2080 comment "Legacy options removed in 2015.02"
2081
2082 config BR2_PACKAGE_LIBGC
2083         bool "libgc package removed"
2084         select BR2_LEGACY
2085         select BR2_PACKAGE_BDWGC
2086         help
2087           libgc has been removed because we have the same package under a
2088           different name, bdwgc.
2089
2090 config BR2_PACKAGE_WDCTL
2091         bool "util-linux' wdctl option has been renamed"
2092         select BR2_LEGACY
2093         select BR2_PACKAGE_UTIL_LINUX_WDCTL
2094         help
2095           util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
2096           to be aligned with how the other options are named.
2097
2098 config BR2_PACKAGE_UTIL_LINUX_ARCH
2099         bool "util-linux' arch option has been removed"
2100         select BR2_LEGACY
2101         help
2102           util-linux' arch was dropped in util-linux 2.23, in favor of
2103           the coreutils version.
2104
2105 config BR2_PACKAGE_UTIL_LINUX_DDATE
2106         bool "util-linux' ddate option has been removed"
2107         select BR2_LEGACY
2108         help
2109           util-linux' ddate was dropped in util-linux 2.23.
2110
2111 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2112         bool "rpm's bzip2 payloads option has been removed"
2113         select BR2_LEGACY
2114         select BR2_PACKAGE_BZIP2
2115         help
2116           The bzip2 payloads option rely entirely on the dependant package bzip2.
2117           So, you need to select it to enable this feature.
2118
2119 config BR2_PACKAGE_RPM_XZ_PAYLOADS
2120         bool "rpm's xz payloads option has been removed"
2121         select BR2_LEGACY
2122         select BR2_PACKAGE_XZ
2123         help
2124           The xz payloads option rely entirely on the dependant package xz.
2125           So, you need to select it to enable this feature.
2126
2127 config BR2_PACKAGE_M4
2128         bool "m4 target package removed"
2129         select BR2_LEGACY
2130         help
2131           The m4 target package has been removed, it's been
2132           deprecated for some time now.
2133
2134 config BR2_PACKAGE_FLEX_BINARY
2135         bool "flex binary in target option removed"
2136         select BR2_LEGACY
2137         help
2138           The flex binary in the target option has been removed.
2139           It's been deprecated for some time now and is essentially a
2140           development tool which isn't very useful in the target.
2141
2142 config BR2_PACKAGE_BISON
2143         bool "bison target package removed"
2144         select BR2_LEGACY
2145         help
2146           The bison target package has been removed, it's been
2147           deprecated for some time now and is essentially a development
2148           tool which isn't very useful in the target.
2149
2150 config BR2_PACKAGE_GOB2
2151         bool "gob2 target package removed"
2152         select BR2_LEGACY
2153         help
2154           The gob2 target package has been removed, it's been
2155           deprecated for some time now and was essentially useless
2156           without a target toolchain.
2157
2158 config BR2_PACKAGE_DISTCC
2159         bool "distcc target package removed"
2160         select BR2_LEGACY
2161         help
2162           The distcc target package has been removed, it's been
2163           deprecated for some time now and was essentially useless
2164           without a target toolchain.
2165
2166 config BR2_PACKAGE_HASERL_VERSION_0_8_X
2167         bool "haserl 0.8.x version removed"
2168         select BR2_LEGACY
2169         help
2170           The 0.8.x version option for haserl has been removed since it
2171           has been deprecated for some time now.
2172           You should be able to use the 0.9.x version without issues.
2173
2174 config BR2_PACKAGE_STRONGSWAN_TOOLS
2175         bool "strongswan option has been removed"
2176         select BR2_LEGACY
2177         select BR2_PACKAGE_STRONGSWAN_PKI
2178         select BR2_PACKAGE_STRONGSWAN_SCEP
2179         help
2180           The tools option has been removed upstream and the different tools
2181           have been split between the pki and scep options, with others
2182           deprecated.
2183
2184 config BR2_PACKAGE_XBMC_ADDON_XVDR
2185         bool "xbmc-addon-xvdr removed"
2186         select BR2_LEGACY
2187         help
2188           According to the github project page:
2189           https://github.com/pipelka/xbmc-addon-xvdr
2190           this package is discontinued.
2191
2192 config BR2_PACKAGE_XBMC_PVR_ADDONS
2193         bool "xbmc options have been renamed"
2194         select BR2_LEGACY
2195         select BR2_PACKAGE_KODI_PVR_ADDONS
2196         help
2197           The XBMC media center project was renamed to Kodi entertainment center
2198
2199 config BR2_PACKAGE_XBMC
2200         bool "xbmc options have been renamed"
2201         select BR2_LEGACY
2202         select BR2_PACKAGE_KODI
2203         help
2204           The XBMC media center project was renamed to Kodi entertainment center
2205
2206 config BR2_PACKAGE_XBMC_ALSA_LIB
2207         bool "xbmc options have been renamed"
2208         select BR2_LEGACY
2209         select BR2_PACKAGE_KODI_ALSA_LIB
2210         help
2211           The XBMC media center project was renamed to Kodi entertainment center
2212
2213 config BR2_PACKAGE_XBMC_AVAHI
2214         bool "xbmc options have been renamed"
2215         select BR2_LEGACY
2216         select BR2_PACKAGE_KODI_AVAHI
2217         help
2218           The XBMC media center project was renamed to Kodi entertainment center
2219
2220 config BR2_PACKAGE_XBMC_DBUS
2221         bool "xbmc options have been renamed"
2222         select BR2_LEGACY
2223         select BR2_PACKAGE_KODI_DBUS
2224         help
2225           The XBMC media center project was renamed to Kodi entertainment center
2226
2227 config BR2_PACKAGE_XBMC_LIBBLURAY
2228         bool "xbmc options have been renamed"
2229         select BR2_LEGACY
2230         select BR2_PACKAGE_KODI_LIBBLURAY
2231         help
2232           The XBMC media center project was renamed to Kodi entertainment center
2233
2234 config BR2_PACKAGE_XBMC_GOOM
2235         bool "xbmc options have been renamed"
2236         select BR2_LEGACY
2237         select BR2_PACKAGE_KODI_GOOM
2238         help
2239           The XBMC media center project was renamed to Kodi entertainment center
2240
2241 config BR2_PACKAGE_XBMC_RSXS
2242         bool "xbmc options have been renamed"
2243         select BR2_LEGACY
2244         select BR2_PACKAGE_KODI_RSXS
2245         help
2246           The XBMC media center project was renamed to Kodi entertainment center
2247
2248 config BR2_PACKAGE_XBMC_LIBCEC
2249         bool "xbmc options have been renamed"
2250         select BR2_LEGACY
2251         select BR2_PACKAGE_KODI_LIBCEC
2252         help
2253           The XBMC media center project was renamed to Kodi entertainment center
2254
2255 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2256         bool "xbmc options have been renamed"
2257         select BR2_LEGACY
2258         select BR2_PACKAGE_KODI_LIBMICROHTTPD
2259         help
2260           The XBMC media center project was renamed to Kodi entertainment center
2261
2262 config BR2_PACKAGE_XBMC_LIBNFS
2263         bool "xbmc options have been renamed"
2264         select BR2_LEGACY
2265         select BR2_PACKAGE_KODI_LIBNFS
2266         help
2267           The XBMC media center project was renamed to Kodi entertainment center
2268
2269 config BR2_PACKAGE_XBMC_RTMPDUMP
2270         bool "xbmc options have been renamed"
2271         select BR2_LEGACY
2272         select BR2_PACKAGE_KODI_RTMPDUMP
2273         help
2274           The XBMC media center project was renamed to Kodi entertainment center
2275
2276 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2277         bool "xbmc options have been renamed"
2278         select BR2_LEGACY
2279         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2280         help
2281           The XBMC media center project was renamed to Kodi entertainment center
2282
2283 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2284         bool "xbmc options have been renamed"
2285         select BR2_LEGACY
2286         select BR2_PACKAGE_KODI_LIBSMBCLIENT
2287         help
2288           The XBMC media center project was renamed to Kodi entertainment center
2289
2290 config BR2_PACKAGE_XBMC_LIBTHEORA
2291         bool "xbmc options have been renamed"
2292         select BR2_LEGACY
2293         select BR2_PACKAGE_KODI_LIBTHEORA
2294         help
2295           The XBMC media center project was renamed to Kodi entertainment center
2296
2297 config BR2_PACKAGE_XBMC_LIBUSB
2298         bool "xbmc options have been renamed"
2299         select BR2_LEGACY
2300         select BR2_PACKAGE_KODI_LIBUSB
2301         help
2302           The XBMC media center project was renamed to Kodi entertainment center
2303
2304 config BR2_PACKAGE_XBMC_LIBVA
2305         bool "xbmc options have been renamed"
2306         select BR2_LEGACY
2307         select BR2_PACKAGE_KODI_LIBVA
2308         help
2309           The XBMC media center project was renamed to Kodi entertainment center
2310
2311 config BR2_PACKAGE_XBMC_WAVPACK
2312         bool "xbmc options have been renamed"
2313         select BR2_LEGACY
2314         select BR2_PACKAGE_KODI_WAVPACK
2315         help
2316           The XBMC media center project was renamed to Kodi entertainment center
2317
2318 config BR2_PREFER_STATIC_LIB
2319         bool "static library option renamed"
2320         select BR2_LEGACY
2321         help
2322           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2323           highlights the fact that the option no longer "prefers"
2324           static libraries, but "enforces" static libraries (i.e
2325           shared libraries are completely unused).
2326
2327           Take care of updating the type of libraries you want under the
2328           "Build options" menu.
2329
2330 ###############################################################################
2331 comment "Legacy options removed in 2014.11"
2332
2333 config BR2_x86_generic
2334         bool "x86 generic variant has been removed"
2335         select BR2_LEGACY
2336         help
2337           The generic x86 CPU variant has been removed. Use another
2338           CPU variant instead.
2339
2340 config BR2_GCC_VERSION_4_4_X
2341         bool "gcc 4.4.x has been removed"
2342         select BR2_LEGACY
2343         help
2344           The 4.4.x version of gcc has been removed. Use a newer
2345           version instead.
2346
2347 config BR2_sparc_sparchfleon
2348         bool "sparchfleon CPU has been removed"
2349         select BR2_LEGACY
2350         help
2351           The sparchfleon CPU was only supported in a patched gcc 4.4
2352           version. Its support has been removed in favor of the leon3
2353           CPU starting from gcc 4.8.x.
2354
2355 config BR2_sparc_sparchfleonv8
2356         bool "sparchfleonv8 CPU has been removed"
2357         select BR2_LEGACY
2358         help
2359           The sparchfleonv8 CPU was only supported in a patched gcc
2360           4.4 version. Its support has been removed in favor of the
2361           leon3 CPU starting from gcc 4.8.x.
2362
2363 config BR2_sparc_sparcsfleon
2364         bool "sparcsfleon CPU has been removed"
2365         select BR2_LEGACY
2366         help
2367           The sparcsfleon CPU was only supported in a patched gcc 4.4
2368           version. Its support has been removed in favor of the leon3
2369           CPU starting from gcc 4.8.x.
2370
2371 config BR2_sparc_sparcsfleonv8
2372         bool "sparcsfleonv8 CPU has been removed"
2373         select BR2_LEGACY
2374         help
2375           The sparcsfleonv8 CPU was only supported in a patched gcc
2376           4.4 version. Its support has been removed in favor of the
2377           leon3 CPU starting from gcc 4.8.x.
2378
2379 config BR2_PACKAGE_XLIB_LIBPCIACCESS
2380         bool "xlib-libpciaccess option has been renamed"
2381         depends on BR2_PACKAGE_XORG7
2382         select BR2_LEGACY
2383         select BR2_PACKAGE_LIBPCIACCESS
2384         help
2385           libpciaccess neither depends on X11 nor Xlib. Thus the
2386           package has been renamed BR2_PACKAGE_LIBPCIACCESS
2387
2388 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2389         bool "Xceive xc5000 option has been renamed"
2390         select BR2_LEGACY
2391         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2392         help
2393           The Xceive xc5000 option now also handles older firmwares from
2394           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
2395           from Cresta, who bought Xceive.
2396
2397 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2398         bool "Chelsio T4 option has been renamed"
2399         select BR2_LEGACY
2400         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2401         help
2402           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2403           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2404           to better account for the fact that a T5 variant exists.
2405
2406 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2407         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
2408         select BR2_LEGACY
2409         help
2410           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2411           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2412           select it in:
2413               Target packages -> Hardware handling ->
2414               Firmware -> linux-firmware -> WiFi firmware ->
2415               iwlwifi 3160/726x revision to use (revision 7)
2416
2417 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2418         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
2419         select BR2_LEGACY
2420         help
2421           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2422           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2423           select it in:
2424               Target packages -> Hardware handling ->
2425               Firmware -> linux-firmware -> WiFi firmware ->
2426               iwlwifi 3160/726x revision to use (revision 8)
2427
2428 ###############################################################################
2429 comment "Legacy options removed in 2014.08"
2430
2431 config BR2_PACKAGE_LIBELF
2432         bool "libelf has been removed"
2433         select BR2_PACKAGE_ELFUTILS
2434         select BR2_LEGACY
2435         help
2436           The libelf package provided an old version of the libelf library
2437           and is deprecated. The libelf library is now provided by the
2438           elfutils package.
2439
2440 config BR2_KERNEL_HEADERS_3_8
2441         bool "kernel headers version 3.8.x are no longer supported"
2442         select BR2_KERNEL_HEADERS_3_4
2443         select BR2_LEGACY
2444         help
2445           Version 3.8.x of the Linux kernel headers have been deprecated
2446           for more than four buildroot releases and are now removed.
2447           As an alternative, version 3.4.x of the headers have been
2448           automatically selected in your configuration.
2449
2450 config BR2_PACKAGE_GETTEXT_TOOLS
2451         bool "support for gettext-tools on target has been removed"
2452         select BR2_LEGACY
2453         help
2454           The option to install the gettext utilities on the target
2455           has been removed. This is not necessary as Buildroot is not
2456           designed to provide a full development environment on the
2457           target. gettext tools should be used on the build machine
2458           instead.
2459
2460 config BR2_PACKAGE_PROCPS
2461         bool "procps has been replaced by procps-ng"
2462         select BR2_PACKAGE_PROCPS_NG
2463         select BR2_LEGACY
2464         help
2465           The procps package has been replaced by the equivalent procps-ng.
2466
2467 config BR2_BINUTILS_VERSION_2_20_1
2468         bool "binutils 2.20.1 has been removed"
2469         select BR2_LEGACY
2470         help
2471           The 2.20.1 version of binutils has been removed. Use a newer
2472           version instead.
2473
2474 config BR2_BINUTILS_VERSION_2_21
2475         bool "binutils 2.21 has been removed"
2476         select BR2_LEGACY
2477         help
2478           The 2.21 version of binutils has been removed. Use a newer
2479           version instead.
2480
2481 config BR2_BINUTILS_VERSION_2_23_1
2482         bool "binutils 2.23.1 has been removed"
2483         select BR2_LEGACY
2484         help
2485           The 2.23.1 version of binutils has been removed. Use a newer
2486           version instead.
2487
2488 config BR2_UCLIBC_VERSION_0_9_32
2489         bool "uclibc 0.9.32 has been removed"
2490         select BR2_LEGACY
2491         help
2492           The 0.9.32 version of uClibc has been removed. Use a newer
2493           version instead.
2494
2495 config BR2_GCC_VERSION_4_3_X
2496         bool "gcc 4.3.x has been removed"
2497         select BR2_LEGACY
2498         help
2499           The 4.3.x version of gcc has been removed. Use a newer
2500           version instead.
2501
2502 config BR2_GCC_VERSION_4_6_X
2503         bool "gcc 4.6.x has been removed"
2504         select BR2_LEGACY
2505         help
2506           The 4.6.x version of gcc has been removed. Use a newer
2507           version instead.
2508
2509 config BR2_GDB_VERSION_7_4
2510         bool "gdb 7.4 has been removed"
2511         select BR2_LEGACY
2512         help
2513           The 7.4 version of gdb has been removed. Use a newer version
2514           instead.
2515
2516 config BR2_GDB_VERSION_7_5
2517         bool "gdb 7.5 has been removed"
2518         select BR2_LEGACY
2519         help
2520           The 7.5 version of gdb has been removed. Use a newer version
2521           instead.
2522
2523 config BR2_BUSYBOX_VERSION_1_19_X
2524         bool "busybox version selection has been removed"
2525         select BR2_LEGACY
2526         help
2527           The possibility of selecting the Busybox version has been
2528           removed. Use the latest version provided by the Busybox
2529           package instead.
2530
2531 config BR2_BUSYBOX_VERSION_1_20_X
2532         bool "busybox version selection has been removed"
2533         select BR2_LEGACY
2534         help
2535           The possibility of selecting the Busybox version has been
2536           removed. Use the latest version provided by the Busybox
2537           package instead.
2538
2539 config BR2_BUSYBOX_VERSION_1_21_X
2540         bool "busybox version selection has been removed"
2541         select BR2_LEGACY
2542         help
2543           The possibility of selecting the Busybox version has been
2544           removed. Use the latest version provided by the Busybox
2545           package instead.
2546
2547 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2548         bool "decode_tm6000"
2549         select BR2_PACKAGE_LIBV4L_UTILS
2550         select BR2_LEGACY
2551         help
2552           This libv4l option has been deprecated and replaced by a single
2553           option to build all the libv4l utilities.
2554
2555 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2556         bool "ir-keytable"
2557         select BR2_PACKAGE_LIBV4L_UTILS
2558         select BR2_LEGACY
2559         help
2560           This libv4l option has been deprecated and replaced by a single
2561           option to build all the libv4l utilities.
2562
2563 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2564         bool "v4l2-compliance"
2565         select BR2_PACKAGE_LIBV4L_UTILS
2566         select BR2_LEGACY
2567         help
2568           This libv4l option has been deprecated and replaced by a single
2569           option to build all the libv4l utilities.
2570
2571 config BR2_PACKAGE_LIBV4L_V4L2_CTL
2572         bool "v4l2-ctl"
2573         select BR2_PACKAGE_LIBV4L_UTILS
2574         select BR2_LEGACY
2575         help
2576           This libv4l option has been deprecated and replaced by a single
2577           option to build all the libv4l utilities.
2578
2579 config BR2_PACKAGE_LIBV4L_V4L2_DBG
2580         bool "v4l2-dbg"
2581         select BR2_PACKAGE_LIBV4L_UTILS
2582         select BR2_LEGACY
2583         help
2584           This libv4l option has been deprecated and replaced by a single
2585           option to build all the libv4l utilities.
2586
2587 ###############################################################################
2588 comment "Legacy options removed in 2014.05"
2589
2590 config BR2_PACKAGE_EVTEST_CAPTURE
2591         bool "evtest-capture support removed (dropped since evtest 1.31)"
2592         select BR2_LEGACY
2593         help
2594           Support for evtest-capture has been removed (dropped from
2595           evtest package since version 1.31), use evemu package
2596           instead.
2597
2598 config BR2_KERNEL_HEADERS_3_6
2599         bool "kernel headers version 3.6.x are no longer supported"
2600         select BR2_KERNEL_HEADERS_3_4
2601         select BR2_LEGACY
2602         help
2603           Version 3.6.x of the Linux kernel headers have been deprecated
2604           for more than four buildroot releases and are now removed.
2605           As an alternative, version 3.4.x of the headers have been
2606           automatically selected in your configuration.
2607
2608 config BR2_KERNEL_HEADERS_3_7
2609         bool "kernel headers version 3.7.x are no longer supported"
2610         select BR2_KERNEL_HEADERS_3_4
2611         select BR2_LEGACY
2612         help
2613           Version 3.7.x of the Linux kernel headers have been deprecated
2614           for more than four buildroot releases and are now removed.
2615           As an alternative, version 3.4.x of the headers have been
2616           automatically selected in your configuration.
2617
2618 config BR2_PACKAGE_VALA
2619         bool "vala target package has been removed"
2620         select BR2_LEGACY
2621         help
2622           The 'vala' target package has been removed since it has been
2623           deprecated for more than four buildroot releases.
2624           Note: the host vala package still exists.
2625
2626 config BR2_TARGET_TZ_ZONELIST
2627         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
2628
2629 config BR2_PACKAGE_TZDATA_ZONELIST
2630         string "tzdata: the timezone list option has been renamed"
2631         help
2632           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
2633           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
2634           menu. You'll need to select BR2_TARGET_TZ_INFO.
2635
2636 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
2637         bool
2638         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
2639         select BR2_LEGACY
2640
2641 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
2642         bool "Lua command-line editing none has been renamed"
2643         select BR2_LEGACY
2644         help
2645           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
2646           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
2647           it in the corresponding choice.
2648
2649 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
2650         bool "Lua command-line editing using readline has been renamed"
2651         select BR2_LEGACY
2652         help
2653           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
2654           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
2655           it in the corresponding choice.
2656
2657 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
2658         bool "Lua command-line editing using linenoise has been renamed"
2659         select BR2_LEGACY
2660         help
2661           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
2662           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
2663           it in the corresponding choice.
2664
2665 config BR2_PACKAGE_DVB_APPS_UTILS
2666         bool "dvb-apps utilities now built by default"
2667         select BR2_LEGACY
2668         help
2669           The dvb-apps utilities are now always built when the dvb-apps
2670           package is selected.
2671
2672 config BR2_KERNEL_HEADERS_SNAP
2673         bool "Local Linux snapshot support removed"
2674         select BR2_LEGACY
2675         help
2676           Support for using a custom snapshot to install the Linux
2677           kernel headers has been removed.
2678
2679 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
2680         bool "/dev management by udev removed"
2681         select BR2_LEGACY
2682         help
2683           The 'udev' package has been converted to a virtual package.
2684           The providers for this feature are: 'eudev', 'systemd'.
2685
2686           Therefore, if you are not using 'systemd' as init system, you
2687           must choose 'Dynamic using eudev' in the '/dev management'
2688           menu to get the same behaviour as in your old configuration.
2689
2690           If you are using 'systemd', its internal implementation of
2691           'udev' will be used automatically.
2692
2693           You must also check the packages depending on 'udev' are still
2694           selected.
2695
2696 config BR2_PACKAGE_UDEV
2697         bool "udev is now a virtual package"
2698         select BR2_LEGACY
2699         select BR2_PACKAGE_HAS_UDEV
2700         help
2701           The 'udev' package has been converted to a virtual package.
2702           The providers for this feature are: 'eudev', 'systemd'.
2703
2704           Your old configuration refers to packages depending on 'udev',
2705           either for build or at runtime.
2706
2707           Check that a 'udev' provider is selected. If you are not using
2708           'systemd' as init system, 'eudev' should be selected, which is
2709           the case if '/dev management' is set to 'Dynamic using eudev'.
2710
2711           If you are using 'systemd', its internal implementation of 'udev'
2712           is used.
2713
2714 config BR2_PACKAGE_UDEV_RULES_GEN
2715         bool "udev rules generation handled by provider"
2716         select BR2_LEGACY
2717         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
2718         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
2719         help
2720           The 'udev' package has been converted to a virtual package.
2721           The providers for this feature are: 'eudev', 'systemd'.
2722
2723           If you are not using 'systemd' as init system, udev rules
2724           generation will be handled by 'eudev'. Check that
2725           '/dev management' is set to 'Dynamic using eudev' to get
2726           the same behaviour as in your old configuration.
2727
2728           If you are using 'systemd', it internal implementation of 'udev'
2729           will generate the rules.
2730
2731 config BR2_PACKAGE_UDEV_ALL_EXTRAS
2732         bool "udev extras removed"
2733         select BR2_LEGACY
2734         help
2735           The 'udev' package has been converted to a virtual package.
2736           The providers for this feature are: 'eudev', 'systemd'.
2737
2738           The option to enable the extra features of 'udev' (gudev, ...)
2739           has been removed. These features are automatically enabled in
2740           the 'udev' providers if the dependencies are selected. For
2741           example, selecting 'libglib2' will trigger the build of gudev.
2742
2743 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
2744         bool "xlib-libpthread-stubs option has been renamed"
2745         depends on BR2_PACKAGE_XORG7
2746         select BR2_LEGACY
2747         select BR2_PACKAGE_LIBPTHREAD_STUBS
2748         help
2749           The pthread stubs neither depend on X11 nor Xlib. Thus the
2750           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
2751
2752 ###############################################################################
2753 comment "Legacy options removed in 2014.02"
2754
2755 config BR2_sh2
2756         bool "sh2 support removed"
2757         select BR2_LEGACY
2758         help
2759           Due to an inexistent user base and generally poor Linux
2760           support, the support for the SH2 architecture was removed.
2761
2762 config BR2_sh3
2763         bool "sh3 support removed"
2764         select BR2_LEGACY
2765         help
2766           Due to an inexistent user base and generally poor Linux
2767           support, the support for the SH3 architecture was removed.
2768
2769 config BR2_sh3eb
2770         bool "sh3eb support removed"
2771         select BR2_LEGACY
2772         help
2773           Due to an inexistent user base and generally poor Linux
2774           support, the support for the SH3eb architecture was removed.
2775
2776 config BR2_KERNEL_HEADERS_3_1
2777         bool "kernel headers version 3.1.x are no longer supported"
2778         select BR2_KERNEL_HEADERS_3_2
2779         select BR2_LEGACY
2780         help
2781           Version 3.1.x of the Linux kernel headers have been deprecated
2782           for more than four buildroot releases and are now removed.
2783           As an alternative, version 3.2.x of the headers have been
2784           automatically selected in your configuration.
2785
2786 config BR2_KERNEL_HEADERS_3_3
2787         bool "kernel headers version 3.3.x are no longer supported"
2788         select BR2_KERNEL_HEADERS_3_2
2789         select BR2_LEGACY
2790         help
2791           Version 3.3.x of the Linux kernel headers have been deprecated
2792           for more than four buildroot releases and are now removed.
2793           As an alternative, version 3.2.x of the headers have been
2794           automatically selected in your configuration.
2795
2796 config BR2_KERNEL_HEADERS_3_5
2797         bool "kernel headers version 3.5.x are no longer supported"
2798         select BR2_KERNEL_HEADERS_3_4
2799         select BR2_LEGACY
2800         help
2801           Version 3.5.x of the Linux kernel headers have been deprecated
2802           for more than four buildroot releases and are now removed.
2803           As an alternative, version 3.4.x of the headers have been
2804           automatically selected in your configuration.
2805
2806 config BR2_GDB_VERSION_7_2
2807         bool "gdb 7.2.x is no longer supported"
2808         select BR2_GDB_VERSION_7_6
2809         select BR2_LEGACY
2810         help
2811           Version 7.2.x of gdb has been deprecated for more than four
2812           buildroot releases and is now removed. As an alternative, gdb
2813           7.5.x has been automatically selected in your configuration.
2814
2815 config BR2_GDB_VERSION_7_3
2816         bool "gdb 7.3.x is no longer supported"
2817         select BR2_GDB_VERSION_7_6
2818         select BR2_LEGACY
2819         help
2820           Version 7.3.x of gdb has been deprecated for more than four
2821           buildroot releases and is now removed. As an alternative, gdb
2822           7.5.x has been automatically selected in your configuration.
2823
2824 config BR2_PACKAGE_CCACHE
2825         bool "ccache target package has been removed"
2826         select BR2_LEGACY
2827         help
2828           The 'ccache' target package has been removed since it has been
2829           deprecated for more than four buildroot releases.
2830           Note: using ccache for speeding up builds is still supported.
2831
2832 config BR2_HAVE_DOCUMENTATION
2833         bool "support for documentation on target has been removed"
2834         select BR2_LEGACY
2835         help
2836           Support for documentation on target has been removed since it has
2837           been deprecated for more than four buildroot releases.
2838
2839 config BR2_PACKAGE_AUTOMAKE
2840         bool "automake target package has been removed"
2841         select BR2_LEGACY
2842         help
2843           The 'automake' target package has been removed since it has been
2844           deprecated for more than four buildroot releases.
2845           Note: the host automake still exists.
2846
2847 config BR2_PACKAGE_AUTOCONF
2848         bool "autoconf target package has been removed"
2849         select BR2_LEGACY
2850         help
2851           The 'autoconf' target package has been removed since it has been
2852           deprecated for more than four buildroot releases.
2853           Note: the host autoconf still exists.
2854
2855 config BR2_PACKAGE_XSTROKE
2856         bool "xstroke has been removed"
2857         select BR2_LEGACY
2858         help
2859           The 'xstroke' package has been removed since it has been
2860           deprecated for more than four buildroot releases.
2861
2862 config BR2_PACKAGE_LZMA
2863         bool "lzma target package has been removed"
2864         select BR2_LEGACY
2865         help
2866           The 'lzma' target package has been removed since it has been
2867           deprecated for more than four buildroot releases.
2868           Note: generating lzma-compressed rootfs images is still supported.
2869
2870 config BR2_PACKAGE_TTCP
2871         bool "ttcp has been removed"
2872         select BR2_LEGACY
2873         help
2874           The 'ttcp' package has been removed since it has been
2875           deprecated for more than four buildroot releases.
2876
2877 config BR2_PACKAGE_LIBNFC_LLCP
2878         bool "libnfc-llcp has been replaced by libllcp"
2879         select BR2_LEGACY
2880         select BR2_PACKAGE_LIBLLCP
2881         help
2882           The 'libnfc-llcp' package has been removed since upstream renamed
2883           to 'libllcp'. We have added a new package for 'libllcp' and bumped
2884           the version at the same time.
2885
2886 config BR2_PACKAGE_MYSQL_CLIENT
2887         bool "MySQL client renamed to MySQL"
2888         select BR2_LEGACY
2889         select BR2_PACKAGE_MYSQL
2890         help
2891           The option has been renamed BR2_PACKAGE_MYSQL
2892
2893 config BR2_PACKAGE_SQUASHFS3
2894         bool "squashfs3 has been removed"
2895         select BR2_LEGACY
2896         select BR2_PACKAGE_SQUASHFS
2897         help
2898           The 'squashfs3' package has been removed since it has been
2899           deprecated for more than four buildroot releases. Package
2900           'squashfs' (4) has been selected automatically as replacement.
2901
2902 config BR2_TARGET_ROOTFS_SQUASHFS3
2903         bool "squashfs3 rootfs support has been removed"
2904         select BR2_LEGACY
2905         help
2906           Together with the removal of the squashfs3 package, support
2907           for squashfs3 root filesystems has been removed too. Squashfs
2908           root filesystems will automatically use squashfs4 now.
2909
2910 config BR2_PACKAGE_NETKITBASE
2911         bool "netkitbase has been removed"
2912         select BR2_LEGACY
2913         help
2914           The 'netkitbase' package has been removed since it has been
2915           deprecated since 2012.11. This package provided 'inetd'
2916           which is replaced by 'xinet' and 'ping' which is replaced by
2917           'busybox' or 'fping'.
2918
2919 config BR2_PACKAGE_NETKITTELNET
2920         bool "netkittelnet has been removed"
2921         select BR2_LEGACY
2922         help
2923           The 'netkittelnet' package has been removed since it has
2924           been deprecated since 2012.11. 'busybox' provides a telnet
2925           client and should be used instead.
2926
2927 config BR2_PACKAGE_LUASQL
2928         bool "luasql has been replaced by luasql-sqlite3"
2929         select BR2_PACKAGE_LUASQL_SQLITE3
2930         select BR2_LEGACY
2931         help
2932           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
2933
2934 config BR2_PACKAGE_LUACJSON
2935         bool "luacjson has been replaced by lua-cjson"
2936         select BR2_PACKAGE_LUA_CJSON
2937         select BR2_LEGACY
2938         help
2939           The option has been renamed BR2_PACKAGE_LUA_CJSON.
2940
2941 ###############################################################################
2942 comment "Legacy options removed in 2013.11"
2943
2944 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
2945         bool "lvm2's 'dmsetup only' option removed"
2946         select BR2_LEGACY
2947         help
2948           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
2949           led to problems with other packages that need the full lvm2
2950           suite. Therefore, the option has been replaced with the positive
2951           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
2952
2953 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
2954 # in order to automatically propagate old configs
2955
2956 config BR2_PACKAGE_QT_JAVASCRIPTCORE
2957         bool "qt javascriptcore option removed"
2958         select BR2_LEGACY
2959         help
2960           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
2961           force the activation or disabling of the JIT compiler in the
2962           Qt Javascript interpreter. However, the JIT compiler is not
2963           available for all architectures, so forcing its activation
2964           does not always work. Moreover, Qt knows by itself for which
2965           architectures JIT support is possible, and will
2966           automatically enable it if possible.
2967
2968           Therefore, this option was in fact useless, and causing
2969           build problems when enabled on architectures for which the
2970           JIT support was not available. It has been removed, and
2971           there is no replacement: Qt will enable JIT at compile time
2972           when possible.
2973
2974 config BR2_PACKAGE_MODULE_INIT_TOOLS
2975         bool "module-init-tools replaced by kmod"
2976         select BR2_PACKAGE_KMOD
2977         select BR2_PACKAGE_KMOD_TOOLS
2978         select BR2_LEGACY
2979         help
2980           The 'module-init-tools' package has been removed, since it
2981           has been depracated upstream and replaced by 'kmod'.
2982
2983 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2984         string "u-boot: the git repository URL option has been renamed"
2985         help
2986           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2987           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2988
2989 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2990         bool
2991         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2992         select BR2_LEGACY
2993
2994 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2995 # boot/uboot/Config.in
2996
2997 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2998         string "u-boot: the git repository version option has been renamed"
2999         help
3000           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3001           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3002
3003 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3004         bool
3005         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3006         select BR2_LEGACY
3007
3008 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3009 # boot/uboot/Config.in
3010
3011 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3012         string "linux: the git repository URL option has been renamed"
3013         help
3014           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3015           been renamed to
3016           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3017
3018 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3019         bool
3020         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3021         select BR2_LEGACY
3022
3023 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3024 # linux/Config.in
3025
3026 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3027         string "linux: the git repository version option has been renamed"
3028         help
3029           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3030           been renamed to
3031           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3032
3033 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3034         bool
3035         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3036         select BR2_LEGACY
3037
3038 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
3039 # linux/Config.in
3040
3041 ###############################################################################
3042 comment "Legacy options removed in 2013.08"
3043
3044 config BR2_ARM_OABI
3045         bool "ARM OABI support has been removed"
3046         select BR2_LEGACY
3047         help
3048           The support for the ARM OABI was deprecated since a while,
3049           and has been removed completely from Buildroot. It is also
3050           deprecated in upstream gcc, since gcc 4.7. People should
3051           switch to EABI instead, which should not be a problem as
3052           long as you don't have pre-built OABI binaries in your
3053           system that you can't recompile.
3054
3055 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
3056         bool "dosfstools dosfsck renamed to fsck.fat"
3057         select BR2_LEGACY
3058         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
3059         help
3060           dosfsck was renamed upstream to fsck.fat for consistency.
3061
3062 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
3063         bool "dosfstools dosfslabel renamed to fatlabel"
3064         select BR2_LEGACY
3065         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
3066         help
3067           doslabel was renamed upstream to fatlabel for consistency.
3068
3069 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
3070         bool "dosfstools mkdosfs renamed to mkfs.fat"
3071         select BR2_LEGACY
3072         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
3073         help
3074           mkdosfs was renamed upstream to mkfs.fat for consistency.
3075
3076 config BR2_ELF2FLT
3077         bool "the elf2flt option has been renamed"
3078         select BR2_LEGACY
3079         help
3080           The BR2_ELF2FLT option has been renamed to
3081           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3082           the package infrastructure.
3083
3084 config BR2_VFP_FLOAT
3085         bool "the ARM VFP floating point option has been renamed"
3086         select BR2_LEGACY
3087         help
3088           Due to a major refactoring of the floating-point handling of
3089           the ARM architecture support, the BR2_VFP_FLOAT option has
3090           been replaced with a choice of options that allows to select
3091           between various VFP versions/capabilities.
3092
3093 config BR2_PACKAGE_GCC_TARGET
3094         bool "gcc on the target filesystem has been removed"
3095         select BR2_LEGACY
3096         help
3097           The support for gcc in the target filesystem was deprecated
3098           since a while, and has been removed completely from Buildroot.
3099           See Buildroot's documentation for more explanations.
3100
3101 config BR2_HAVE_DEVFILES
3102         bool "development files in target filesystem has been removed"
3103         select BR2_LEGACY
3104         help
3105           The installation of the development files in the target
3106           filesystem was deprecated since a while, and has been removed
3107           completely from Buildroot.
3108           See Buildroot's documentation for more explanations.
3109
3110 ###############################################################################
3111 comment "Legacy options removed in 2013.05"
3112
3113 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
3114         bool "Realtek 8192 replaced by Realtek 81xx"
3115         select BR2_LEGACY
3116         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
3117         help
3118           Now covers the whole Realtek 81xx familly: 8188/8192.
3119
3120 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
3121         bool "Realtek 8712 replaced by Realtek 87xx"
3122         select BR2_LEGACY
3123         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
3124         help
3125           Now covers the whole Realtek 87xx familly: 8712/8723.
3126
3127 endmenu
3128
3129 endif # !SKIP_LEGACY