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