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