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