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