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