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