package/tinc: bump version to 1.0.28
[buildroot-gz.git] / Config.in.legacy
blobb73603b7c200fb8ab5690bc6732feae587091195
2 # Config.in.legacy - support for backward compatibility
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.
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.
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.
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.
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
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
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
58 # [End of example]
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.
68 # [Example: renaming a string option from FOO to BAR]
69 # original symbol:
70 #   config BR2_FOO_STRING
71 #       string "Some foo string"
73 # becomes:
74 #   config BR2_BAR_STRING
75 #       string "Some bar string"
76 #       default BR2_FOO_STRING if BR2_FOO_STRING != ""  # legacy
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>
84 #   config BR2_FOO_STRING_WRAP
85 #       bool
86 #       default y if BR2_FOO_STRING != ""
87 #       select BR2_LEGACY
89 #   # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
91 # [End of example]
93 config BR2_SKIP_LEGACY
94         bool
95         option env="SKIP_LEGACY"
97 if !BR2_SKIP_LEGACY
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.
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
112 menu "Legacy config options"
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
145 ###############################################################################
146 comment "Legacy options removed in 2016.08"
148 config BR2_PTHREADS_OLD
149         bool "linuxthreads (stable/old)"
150         select BR2_LEGACY
151         help
152           Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
153           BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
155 config BR2_BINUTILS_VERSION_2_23_X
156         bool "binutils 2.23 removed"
157         select BR2_LEGACY
158         help
159           Binutils 2.23 has been removed, using a newer version is
160           recommended.
162 config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
163         bool "eglibc support has been removed"
164         select BR2_LEGACY
165         help
166           The eglibc project no longer exists, as it has been merged
167           back into the glibc project. Therefore, support for eglibc
168           has been removed, and glibc should be used instead.
170 config BR2_GDB_VERSION_7_8
171         bool "gdb 7.8 has been removed"
172         select BR2_LEGACY
173         help
174           The 7.8 version of gdb has been removed. Use a newer version
175           instead.
177 ###############################################################################
178 comment "Legacy options removed in 2016.05"
180 config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
181         bool "openvpn polarssl crypto backend removed"
182         select BR2_LEGACY
183         help
184           The OpenVPN polarssl crypto backend option has been removed.
185           Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
186           compatible with mbedtls (polarssl) series 2.x which is the
187           version provided in buildroot. And both can't coexist.
188           It now uses OpenSSL as the only option.
191 config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
192         bool "nginx http spdy module removed"
193         select BR2_LEGACY
194         select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
195         help
196           The ngx_http_spdy_module has been superseded by the
197           ngx_http_v2_module since nginx v1.9.5.  The
198           ngx_http_v2_module modules has been automatically selected
199           in your configuration.
201 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
202         bool "gst1-plugins-bad rtp plugin moved to good"
203         select BR2_LEGACY
204         help
205           The rtp plugin has been moved from gst1-plugins-base to
206           gst1-plugins-good.
208 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
209         bool "gst1-plugins-bad mpg123 plugin moved to ugly"
210         select BR2_LEGACY
211         help
212           The mpg123 plugin has been moved from gst1-plugins-bad to
213           gst1-plugins-ugly.
215 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
216         bool "PowerPC Sourcery toolchain has been removed"
217         select BR2_LEGACY
218         help
219           The Sourcery CodeBench toolchain for the PowerPC
220           architecture has been removed, as it was very old, not
221           maintained, and causing numerous build failures with modern
222           userspace packages.
224 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
225         bool "PowerPC Sourcery E500v2 toolchain has been removed"
226         select BR2_LEGACY
227         help
228           The Sourcery CodeBench toolchain for the PowerPC E500v2
229           architecture has been removed, as it was very old, not
230           maintained, and causing numerous build failures with modern
231           userspace packages.
233 config BR2_x86_i386
234         bool "x86 i386 support removed"
235         select BR2_LEGACY
236         help
237           The support for the i386 processors of the x86 architecture
238           has been removed.
240 config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
241         bool "qt5webkit-examples package removed"
242         select BR2_LEGACY
243         help
244           The qt5webkit-examples package has been removed, since it
245           was removed from upstream starting from Qt 5.6.
247 config BR2_PACKAGE_QT5QUICK1
248         bool "qt5quick1 package removed"
249         select BR2_LEGACY
250         help
251           The qt5quick1 package has been removed, since it was removed
252           from upstream starting from Qt 5.6.
254 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
255         bool "uboot custom patch dir removed"
256         select BR2_LEGACY
257         help
258           The uboot custom patch directory option has been removed. Use
259           the improved BR2_TARGET_UBOOT_PATCH option instead.
261 config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
262         bool "xf86-input-void removed"
263         select BR2_LEGACY
264         help
265           The xf86-input-void package has been removed, there's no need
266           for it in any modern (post-2007) xorg server.
268 config BR2_KERNEL_HEADERS_3_17
269         bool "kernel headers version 3.17.x are no longer supported"
270         select BR2_KERNEL_HEADERS_3_18
271         select BR2_LEGACY
272         help
273           Version 3.17.x of the Linux kernel headers have been deprecated
274           for more than four buildroot releases and are now removed.
275           As an alternative, version 3.18.x of the headers have been
276           automatically selected in your configuration.
278 config BR2_GDB_VERSION_7_7
279         bool "gdb 7.7 has been removed"
280         select BR2_LEGACY
281         help
282           The 7.7 version of gdb has been removed. Use a newer version
283           instead.
285 config BR2_PACKAGE_FOOMATIC_FILTERS
286         bool "foomatic-filters"
287         select BR2_LEGACY
288         help
289           The foomatic-filters package was removed.
291 config BR2_PACKAGE_SAMBA
292         bool "samba"
293         select BR2_LEGACY
294         help
295           The samba package was removed in favour of samba4 since the
296           3.x series isn't supported by upstream any longer.
298 config BR2_PACKAGE_KODI_WAVPACK
299         bool "wavpack"
300         select BR2_LEGACY
301         help
302           wavpack support was removed in favour of ffmpeg:
303           https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
305 config BR2_PACKAGE_KODI_RSXS
306         bool "rsxs support in Kodi was moved to an addon"
307         select BR2_LEGACY
308         select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
309         help
310           rsxs support in Kodi was moved to an addon
312 config BR2_PACKAGE_KODI_GOOM
313         bool "Goom support in Kodi was moved to an addon"
314         select BR2_LEGACY
315         select BR2_PACKAGE_KODI_VISUALISATION_GOOM
316         help
317           Goom support in Kodi was moved to an addon
319 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
320         bool "systemd all extras option has been removed"
321         select BR2_LEGACY
322         select BR2_PACKAGE_XZ
323         select BR2_PACKAGE_LIBGCRYPT
324         help
325           The systemd option to enable "all extras" has been
326           removed. To get the same features, the libgcrypt and xz
327           package should now be enabled.
329 config BR2_GCC_VERSION_4_5_X
330         bool "gcc 4.5.x has been removed"
331         select BR2_LEGACY
332         help
333           The 4.5.x version of gcc has been removed. Use a newer
334           version instead.
336 config BR2_PACKAGE_SQLITE_READLINE
337         bool "command-line editing support was updated"
338         select BR2_PACKAGE_NCURSES
339         select BR2_PACKAGE_READLINE
340         select BR2_LEGACY
341         help
342           This option was removed in favour of the sqlite package
343           deciding itself depending on the enabled packages whether
344           command-line editing should be enabled, it also also takes
345           libedit into account.
347 ###############################################################################
348 comment "Legacy options removed in 2016.02"
350 config BR2_PACKAGE_DOVECOT_BZIP2
351         bool "bzip2 support option has been removed"
352         select BR2_LEGACY
353         select BR2_PACKAGE_BZIP2
354         help
355           Bzip2 support is built if the bzip2 package is selected.
357 config BR2_PACKAGE_DOVECOT_ZLIB
358         bool "zlib support option has been removed"
359         select BR2_LEGACY
360         select BR2_PACKAGE_ZLIB
361         help
362           Zlib support is built if the zlib package is selected.
364 config BR2_PACKAGE_E2FSPROGS_FINDFS
365         bool "e2fsprogs findfs option has been removed"
366         select BR2_LEGACY
367         help
368           This option attempted to enable findfs capabilities from
369           e2fsprogs but has not worked since July 2015 (due to
370           packaging changes). One can use BusyBox's findfs support or
371           enable the BR2_PACKAGE_UTIL_LINUX_FINDFS option.
373 config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
374         bool "openpowerlink debug option has been removed"
375         select BR2_LEGACY
376         help
377           This option depends on BR2_ENABLE_DEBUG which should not be used
378           by packages anymore.
380 config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
381         bool "openpowerlink package has been updated"
382         select BR2_LEGACY
383         select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
384         help
385           openpowerlink kernel modules are built if the
386           kernel stack library is selected.
388 config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
389         bool "openpowerlink package has been updated"
390         select BR2_LEGACY
391         select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
392         help
393           The user space support has been split in two part:
394           - a monolitic user space library
395           - a user spae deamon driver
397 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
398         bool "using the linux headers version for the kernel has been removed"
399         select BR2_LEGACY
400         help
401           The option to use the version of the kernel headers for the
402           kernel to build has been removed.
404           There is now the converse, better-suited and more versatile
405           option to use the kernel version for the linux headers.
407 config BR2_PACKAGE_CUPS_PDFTOPS
408         bool "Pdftops support has been removed from Cups"
409         select BR2_LEGACY
410         help
411           Pdftops support has been removed from the cups package
412           It is now part of the cups-filters package.
414 config BR2_KERNEL_HEADERS_3_16
415         bool "kernel headers version 3.16.x are no longer supported"
416         select BR2_KERNEL_HEADERS_3_18
417         select BR2_LEGACY
418         help
419         Version 3.16.x of the Linux kernel headers have been deprecated
420         for more than four buildroot releases and are now removed.
421         As an alternative, version 3.18.x of the headers have been
422         automatically selected in your configuration.
424 config BR2_PACKAGE_PYTHON_PYXML
425         bool "python-pyxml package has been removed"
426         select BR2_LEGACY
427         help
428           PyXML is obsolete and its functionality is covered either via
429           native Python XML support or python-lxml package.
431 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
432 config BR2_ENABLE_SSP
433         bool "Stack Smashing protection now has different levels"
434         help
435           The protection offered by SSP can now be selected from different
436           protection levels. Be sure to review the SSP level in the build
437           options menu.
439 config BR2_PACKAGE_DIRECTFB_CLE266
440         bool "cle266 driver for directfb removed"
441         select BR2_LEGACY
442         help
443           The cle266 directfb driver support has been removed.
444           It doesn't build in the latest version and it's unlikely
445           anyone has any use for it.
447 config BR2_PACKAGE_DIRECTFB_UNICHROME
448         bool "unichrome driver for directfb removed"
449         select BR2_LEGACY
450         help
451           The unichrome directfb driver support has been removed.
452           It doesn't build in the latest version and it's unlikely
453           anyone has any use for it.
455 config BR2_PACKAGE_LIBELEMENTARY
456         bool "libelementary has been renamed to elementary"
457         select BR2_LEGACY
458         select BR2_PACKAGE_ELEMENTARY
459         help
460           The libelementary package has been renamed to match the upstream
461           name.
463 config BR2_PACKAGE_LIBEINA
464         bool "libeina package has been removed"
465         select BR2_LEGACY
466         select BR2_PACKAGE_EFL
467         help
468           With EFL 1.15, libeina is now provided by the efl package.
470 config BR2_PACKAGE_LIBEET
471         bool "libeet package has been removed"
472         select BR2_LEGACY
473         select BR2_PACKAGE_EFL
474         help
475           With EFL 1.15, libeet is now provided by the efl package.
477 config BR2_PACKAGE_LIBEVAS
478         bool "libevas package has been removed"
479         select BR2_LEGACY
480         select BR2_PACKAGE_EFL
481         help
482           With EFL 1.15, libevas is now provided by the efl package.
484 config BR2_PACKAGE_LIBECORE
485         bool "libecore package has been removed"
486         select BR2_LEGACY
487         select BR2_PACKAGE_EFL
488         help
489           With EFL 1.15, libecore is now provided by the efl package.
491 config BR2_PACKAGE_LIBEDBUS
492         bool "libedbus package has been removed"
493         select BR2_LEGACY
494         select BR2_PACKAGE_EFL
495         help
496           With EFL 1.15, libedbus is now provided by the efl package.
498 config BR2_PACKAGE_LIBEFREET
499         bool "libefreet package has been removed"
500         select BR2_LEGACY
501         select BR2_PACKAGE_EFL
502         help
503           With EFL 1.15, libefreet is now provided by the efl package.
505 config BR2_PACKAGE_LIBEIO
506         bool "libeio package has been removed"
507         select BR2_LEGACY
508         select BR2_PACKAGE_EFL
509         help
510           With EFL 1.15, libeio is now provided by the efl package.
512 config BR2_PACKAGE_LIBEMBRYO
513         bool "libembryo package has been removed"
514         select BR2_LEGACY
515         select BR2_PACKAGE_EFL
516         help
517           With EFL 1.15, libembryo is now provided by the efl package.
519 config BR2_PACKAGE_LIBEDJE
520         bool "libedje package has been removed"
521         select BR2_LEGACY
522         select BR2_PACKAGE_EFL
523         help
524           With EFL 1.15, libedje is now provided by the efl package.
526 config BR2_PACKAGE_LIBETHUMB
527         bool "libethumb package has been removed"
528         select BR2_LEGACY
529         select BR2_PACKAGE_EFL
530         help
531           With EFL 1.15, libethumb is now provided by the efl package.
533 config BR2_PACKAGE_INFOZIP
534         bool "infozip option has been renamed to zip"
535         select BR2_LEGACY
536         select BR2_PACKAGE_ZIP
537         help
538           Info-Zip's Zip package has been renamed from infozip to zip,
539           to avoid ambiguities with Info-Zip's UnZip which has been added
540           in the unzip package.
542 config BR2_BR2_PACKAGE_NODEJS_0_10_X
543         bool "nodejs 0.10.x option removed"
544         select BR2_LEGACY
545         select BR2_PACKAGE_NODEJS
546         help
547           nodejs 0.10.x option has been removed.  0.10.x is now
548           automatically chosen for ARMv5 architectures only and the latest
549           nodejs for all other supported architectures. The correct nodejs
550           version has been automatically selected in your configuration.
552 config BR2_BR2_PACKAGE_NODEJS_0_12_X
553         bool "nodejs version 0.12.x has been removed"
554         select BR2_LEGACY
555         select BR2_PACKAGE_NODEJS
556         help
557           nodejs version 0.12.x has been removed.  As an alternative,
558           the latest nodejs version has been automatically selected in
559           your configuration.
561 config BR2_BR2_PACKAGE_NODEJS_4_X
562         bool "nodejs version 4.x has been removed"
563         select BR2_LEGACY
564         select BR2_PACKAGE_NODEJS
565         help
566           nodejs version 4.x has been removed.  As an alternative,
567           the latest nodejs version has been automatically selected in
568           your configuration.
570 ###############################################################################
571 comment "Legacy options removed in 2015.11"
573 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
574         bool "gst1-plugins-bad real plugin has been removed"
575         select BR2_LEGACY
576         help
577           The real plugin from GStreamer 1 bad plugins has been
578           removed.
580 config BR2_PACKAGE_MEDIA_CTL
581         bool "media-ctl package has been removed"
582         select BR2_LEGACY
583         select BR2_PACKAGE_LIBV4L
584         select BR2_PACKAGE_LIBV4L_UTILS
585         help
586           media-ctl source and developement have been moved to
587           v4l-utils since June 2014. For an up-to-date media-ctl
588           version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
590 config BR2_PACKAGE_SCHIFRA
591         bool "schifra package has been removed"
592         select BR2_LEGACY
593         help
594           Schifra package has been maked broken since 2014.11 release and
595           haven't been fixed since then.
597 config BR2_PACKAGE_ZXING
598         bool "zxing option has been renamed"
599         select BR2_LEGACY
600         select BR2_PACKAGE_ZXING_CPP
601         help
602           ZXing no longer provides the cpp bindings, it has been renamed to
603           BR2_PACKAGE_ZXING_CPP which uses a new upstream.
605 # Since FreeRDP has new dependencies, protect this legacy to avoid the
606 # infamous "unmet direct dependencies" kconfig error.
607 config BR2_PACKAGE_FREERDP_CLIENT
608         bool "freerdp client option renamed"
609         depends on BR2_PACKAGE_FREERDP
610         select BR2_LEGACY
611         select BR2_PACKAGE_FREERDP_CLIENT_X11
613 config BR2_PACKAGE_BLACKBOX
614         bool "blackbox package has been removed"
615         select BR2_LEGACY
616         help
617           Upstream is dead and the package has been deprecated for
618           some time. There are other alternative maintained WMs.
620 config BR2_KERNEL_HEADERS_3_0
621         bool "kernel headers version 3.0.x are no longer supported"
622         select BR2_KERNEL_HEADERS_3_2
623         select BR2_LEGACY
624         help
625           Version 3.0.x of the Linux kernel headers have been deprecated
626           for more than four buildroot releases and are now removed.
627           As an alternative, version 3.2.x of the headers have been
628           automatically selected in your configuration.
630 config BR2_KERNEL_HEADERS_3_11
631         bool "kernel headers version 3.11.x are no longer supported"
632         select BR2_KERNEL_HEADERS_3_12
633         select BR2_LEGACY
634         help
635           Version 3.11.x of the Linux kernel headers have been deprecated
636           for more than four buildroot releases and are now removed.
637           As an alternative, version 3.12.x of the headers have been
638           automatically selected in your configuration.
640 config BR2_KERNEL_HEADERS_3_13
641         bool "kernel headers version 3.13.x are no longer supported"
642         select BR2_KERNEL_HEADERS_3_14
643         select BR2_LEGACY
644         help
645           Version 3.13.x of the Linux kernel headers have been deprecated
646           for more than four buildroot releases and are now removed.
647           As an alternative, version 3.14.x of the headers have been
648           automatically selected in your configuration.
650 config BR2_KERNEL_HEADERS_3_15
651         bool "kernel headers version 3.15.x are no longer supported"
652         select BR2_KERNEL_HEADERS_3_18
653         select BR2_LEGACY
654         help
655           Version 3.15.x of the Linux kernel headers have been deprecated
656           for more than four buildroot releases and are now removed.
657           As an alternative, version 3.18.x of the headers have been
658           automatically selected in your configuration.
660 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
661         bool "DirectFB example df_andi has been removed"
662         select BR2_LEGACY
663         select BR2_PACKAGE_DIRECTFB_EXAMPLES
664         help
665           The per-DirectFB example options have been removed. The
666           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
667           examples.
669 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
670         bool "DirectFB example df_bltload has been removed"
671         select BR2_LEGACY
672         select BR2_PACKAGE_DIRECTFB_EXAMPLES
673         help
674           The per-DirectFB example options have been removed. The
675           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
676           examples.
678 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
679         bool "DirectFB example df_cpuload has been removed"
680         select BR2_LEGACY
681         select BR2_PACKAGE_DIRECTFB_EXAMPLES
682         help
683           The per-DirectFB example options have been removed. The
684           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
685           examples.
687 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
688         bool "DirectFB example df_databuffer has been removed"
689         select BR2_LEGACY
690         select BR2_PACKAGE_DIRECTFB_EXAMPLES
691         help
692           The per-DirectFB example options have been removed. The
693           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
694           examples.
696 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
697         bool "DirectFB example df_dioload has been removed"
698         select BR2_LEGACY
699         select BR2_PACKAGE_DIRECTFB_EXAMPLES
700         help
701           The per-DirectFB example options have been removed. The
702           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
703           examples.
705 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
706         bool "DirectFB example df_dok has been removed"
707         select BR2_LEGACY
708         select BR2_PACKAGE_DIRECTFB_EXAMPLES
709         help
710           The per-DirectFB example options have been removed. The
711           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
712           examples.
714 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
715         bool "DirectFB example df_drivertest has been removed"
716         select BR2_LEGACY
717         select BR2_PACKAGE_DIRECTFB_EXAMPLES
718         help
719           The per-DirectFB example options have been removed. The
720           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
721           examples.
723 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
724         bool "DirectFB example df_fire has been removed"
725         select BR2_LEGACY
726         select BR2_PACKAGE_DIRECTFB_EXAMPLES
727         help
728           The per-DirectFB example options have been removed. The
729           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
730           examples.
732 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
733         bool "DirectFB example df_flip has been removed"
734         select BR2_LEGACY
735         select BR2_PACKAGE_DIRECTFB_EXAMPLES
736         help
737           The per-DirectFB example options have been removed. The
738           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
739           examples.
741 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
742         bool "DirectFB example df_fonts has been removed"
743         select BR2_LEGACY
744         select BR2_PACKAGE_DIRECTFB_EXAMPLES
745         help
746           The per-DirectFB example options have been removed. The
747           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
748           examples.
750 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
751         bool "DirectFB example df_input has been removed"
752         select BR2_LEGACY
753         select BR2_PACKAGE_DIRECTFB_EXAMPLES
754         help
755           The per-DirectFB example options have been removed. The
756           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
757           examples.
759 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
760         bool "DirectFB example df_joystick has been removed"
761         select BR2_LEGACY
762         select BR2_PACKAGE_DIRECTFB_EXAMPLES
763         help
764           The per-DirectFB example options have been removed. The
765           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
766           examples.
768 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
769         bool "DirectFB example df_knuckles has been removed"
770         select BR2_LEGACY
771         select BR2_PACKAGE_DIRECTFB_EXAMPLES
772         help
773           The per-DirectFB example options have been removed. The
774           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
775           examples.
777 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
778         bool "DirectFB example df_layer has been removed"
779         select BR2_LEGACY
780         select BR2_PACKAGE_DIRECTFB_EXAMPLES
781         help
782           The per-DirectFB example options have been removed. The
783           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
784           examples.
786 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
787         bool "DirectFB example df_matrix has been removed"
788         select BR2_LEGACY
789         select BR2_PACKAGE_DIRECTFB_EXAMPLES
790         help
791           The per-DirectFB example options have been removed. The
792           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
793           examples.
795 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
796         bool "DirectFB example df_matrix_water has been removed"
797         select BR2_LEGACY
798         select BR2_PACKAGE_DIRECTFB_EXAMPLES
799         help
800           The per-DirectFB example options have been removed. The
801           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
802           examples.
804 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
805         bool "DirectFB example df_neo has been removed"
806         select BR2_LEGACY
807         select BR2_PACKAGE_DIRECTFB_EXAMPLES
808         help
809           The per-DirectFB example options have been removed. The
810           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
811           examples.
813 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
814         bool "DirectFB example df_netload has been removed"
815         select BR2_LEGACY
816         select BR2_PACKAGE_DIRECTFB_EXAMPLES
817         help
818           The per-DirectFB example options have been removed. The
819           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
820           examples.
822 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
823         bool "DirectFB example df_palette has been removed"
824         select BR2_PACKAGE_DIRECTFB_EXAMPLES
825         help
826           The per-DirectFB example options have been removed. The
827           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
828           examples.
830 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
831         bool "DirectFB example df_particle has been removed"
832         select BR2_LEGACY
833         select BR2_PACKAGE_DIRECTFB_EXAMPLES
834         help
835           The per-DirectFB example options have been removed. The
836           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
837           examples.
839 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
840         bool "DirectFB example df_porter has been removed"
841         select BR2_LEGACY
842         select BR2_PACKAGE_DIRECTFB_EXAMPLES
843         help
844           The per-DirectFB example options have been removed. The
845           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
846           examples.
848 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
849         bool "DirectFB example df_stress has been removed"
850         select BR2_PACKAGE_DIRECTFB_EXAMPLES
851         help
852           The per-DirectFB example options have been removed. The
853           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
854           examples.
856 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
857         bool "DirectFB example df_texture has been removed"
858         select BR2_LEGACY
859         select BR2_PACKAGE_DIRECTFB_EXAMPLES
860         help
861           The per-DirectFB example options have been removed. The
862           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
863           examples.
865 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
866         bool "DirectFB example df_video has been removed"
867         select BR2_LEGACY
868         select BR2_PACKAGE_DIRECTFB_EXAMPLES
869         help
870           The per-DirectFB example options have been removed. The
871           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
872           examples.
874 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
875         bool "DirectFB example df_video_particle has been removed"
876         select BR2_LEGACY
877         select BR2_PACKAGE_DIRECTFB_EXAMPLES
878         help
879           The per-DirectFB example options have been removed. The
880           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
881           examples.
883 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
884         bool "DirectFB example df_window has been removed"
885         select BR2_LEGACY
886         select BR2_PACKAGE_DIRECTFB_EXAMPLES
887         help
888           The per-DirectFB example options have been removed. The
889           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
890           examples.
892 config BR2_PACKAGE_KOBS_NG
893         bool "kobs-ng was replaced by imx-kobs"
894         select BR2_LEGACY
895         select BR2_PACKAGE_IMX_KOBS
896         help
897           The outdated kobs-ng has been replaced by the Freescale-
898           maintained imx-kobs package.
900 config BR2_PACKAGE_SAWMAN
901         bool "sawman package removed"
902         select BR2_LEGACY
903         select BR2_PACKAGE_DIRECTFB_SAWMAN
904         help
905           This option has been removed because the sawman package no
906           longer exists: it was merged inside DirectFB itself. This
907           feature can now be enabled using the
908           BR2_PACKAGE_DIRECTFB_SAWMAN option.
910 config BR2_PACKAGE_DIVINE
911         bool "divine package removed"
912         select BR2_LEGACY
913         select BR2_PACKAGE_DIRECTFB_DIVINE
914         help
915           This option has been removed because the divine package no
916           longer exists: it was merged inside DirectFB itself. This
917           feature can now be enabled using the
918           BR2_PACKAGE_DIRECTFB_DIVINE option.
920 ###############################################################################
921 comment "Legacy options removed in 2015.08"
923 config BR2_PACKAGE_KODI_PVR_ADDONS
924         bool "Kodi PVR addon was split"
925         select BR2_LEGACY
926         select BR2_PACKAGE_KODI_PVR_ARGUSTV
927         select BR2_PACKAGE_KODI_PVR_DVBLINK
928         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
929         select BR2_PACKAGE_KODI_PVR_FILMON
930         select BR2_PACKAGE_KODI_PVR_HTS
931         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
932         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
933         select BR2_PACKAGE_KODI_PVR_MYTHTV
934         select BR2_PACKAGE_KODI_PVR_NEXTPVR
935         select BR2_PACKAGE_KODI_PVR_NJOY
936         select BR2_PACKAGE_KODI_PVR_PCTV
937         select BR2_PACKAGE_KODI_PVR_STALKER
938         select BR2_PACKAGE_KODI_PVR_VBOX
939         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
940         select BR2_PACKAGE_KODI_PVR_VUPLUS
941         select BR2_PACKAGE_KODI_PVR_WMC
942         help
943           Kodi PVR addon was split into seperate modules
945 config BR2_BINUTILS_VERSION_2_23_2
946         bool "binutils 2.23 option renamed"
947         select BR2_LEGACY
948         help
949           Binutils 2.23.2 has been removed, using a newer version is
950           recommended.
952 config BR2_BINUTILS_VERSION_2_24
953         bool "binutils 2.24 option renamed"
954         select BR2_LEGACY
955         select BR2_BINUTILS_VERSION_2_24_X
956         help
957           The binutils version option has been renamed to match the
958           same patchlevel logic used by gcc. The new option is now
959           BR2_BINUTILS_VERSION_2_24_X.
961 config BR2_BINUTILS_VERSION_2_25
962         bool "binutils 2.25 option renamed"
963         select BR2_LEGACY
964         select BR2_BINUTILS_VERSION_2_25_X
965         help
966           The binutils version option has been renamed to match the
967           same patchlevel logic used by gcc. The new option is now
968           BR2_BINUTILS_VERSION_2_25_X.
970 config BR2_PACKAGE_PERF
971         bool "perf option has been renamed"
972         select BR2_LEGACY
973         select BR2_LINUX_KERNEL_TOOL_PERF
974         help
975           The perf package has been moved as a Linux tools package,
976           and the option to enable it is now
977           BR2_LINUX_KERNEL_TOOL_PERF.
979 config BR2_BINUTILS_VERSION_2_22
980         bool "binutils 2.22 removed"
981         select BR2_LEGACY
982         help
983           Binutils 2.22 has been removed, using a newer version is
984           recommended.
986 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
987         bool "gpu-viv-bin-mx6q"
988         select BR2_LEGACY
989         select BR2_PACKAGE_IMX_GPU_VIV
990         help
991           Vivante graphics libraries have been renamed to
992           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
993           name.
995 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
996         depends on BR2_PACKAGE_PYTHON
997         bool "libsemanage python bindings removed"
998         select BR2_LEGACY
999         help
1000           This option has been removed, since the libsemanage Python
1001           bindings on the target were not useful.
1003 config BR2_TARGET_UBOOT_NETWORK
1004         bool "U-Boot custom network settings removed"
1005         select BR2_LEGACY
1006         help
1007           U-Boot's custom network settings options have been removed.
1009 ###############################################################################
1010 comment "Legacy options removed in 2015.05"
1012 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
1013         bool "jffs2 16kB erasesize NAND flash option renamed"
1014         select BR2_LEGACY
1015         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
1016         help
1017           The JFFS2 NAND flash options now longer include the page
1018           size.
1020 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
1021         bool "jffs2 128kB erasesize NAND flash option renamed"
1022         select BR2_LEGACY
1023         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
1024         help
1025           The JFFS2 NAND flash options now longer include the page
1026           size.
1028 config BR2_PACKAGE_MONO_20
1029         bool "2.0/3.5 .Net Runtime"
1030         select BR2_LEGACY
1031         help
1032           This option no longer exists, all versions of the .Net
1033           runtime are now installed.
1035 config BR2_PACKAGE_MONO_40
1036         bool "4.0 .Net Runtime"
1037         select BR2_LEGACY
1038         help
1039           This option no longer exists, all versions of the .Net
1040           runtime are now installed.
1042 config BR2_PACKAGE_MONO_45
1043         bool "4.5 .Net Runtime"
1044         select BR2_LEGACY
1045         help
1046           This option no longer exists, all versions of the .Net
1047           runtime are now installed.
1049 config BR2_CIVETWEB_WITH_LUA
1050         bool "civetweb lua option renamed"
1051         select BR2_LEGACY
1052         select BR2_PACKAGE_CIVETWEB_WITH_LUA
1053         help
1054           civetweb's lua option has been renamed to
1055           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
1056           packages name options.
1058 config BR2_PACKAGE_TIFF_TIFF2PDF
1059         bool "tiff utility-specific option removed"
1060         select BR2_LEGACY
1061         select BR2_PACKAGE_TIFF_UTILITIES
1062         help
1063           utility-specific options have been removed in favour of
1064           the new option BR2_PACKAGE_TIFF_UTILITIES.
1066 config BR2_PACKAGE_TIFF_TIFFCP
1067         bool "tiff utility-specific option removed"
1068         select BR2_LEGACY
1069         select BR2_PACKAGE_TIFF_UTILITIES
1070         help
1071           utility-specific options have been removed in favour of
1072           the new option BR2_PACKAGE_TIFF_UTILITIES.
1074 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
1075         bool "RTAI patch file path has been removed"
1076         select BR2_LEGACY
1077         help
1078           This option has never worked, so it has been removed.
1080 config BR2_TARGET_GENERIC_PASSWD_DES
1081         bool "Encoding passwords with DES has been removed"
1082         select BR2_LEGACY
1083         help
1084           Paswords can now only be encoded with either of md5, sha256 or sha512.
1085           The default is md5, which is stronger that DES (but still pretty weak).
1087 config BR2_PACKAGE_GTK2_THEME_HICOLOR
1088         bool "hicolor (default theme) is a duplicate"
1089         select BR2_LEGACY
1090         select BR2_PACKAGE_HICOLOR_ICON_THEME
1091         help
1092           The option was just a duplicate of hicolor icon theme.
1094 config BR2_PACKAGE_VALGRIND_PTRCHECK
1095         bool "valgrind's PTRCheck was renamed to SGCheck"
1096         select BR2_LEGACY
1097         select BR2_PACKAGE_VALGRIND_SGCHECK
1098         help
1099           PTRCheck was renamed to SGCheck in valgrind
1101 ###############################################################################
1102 comment "Legacy options removed in 2015.02"
1104 config BR2_PACKAGE_LIBGC
1105         bool "libgc package removed"
1106         select BR2_LEGACY
1107         select BR2_PACKAGE_BDWGC
1108         help
1109           libgc has been removed because we have the same package under a
1110           different name, bdwgc.
1112 config BR2_PACKAGE_WDCTL
1113         bool "util-linux' wdctl option has been renamed"
1114         select BR2_LEGACY
1115         select BR2_PACKAGE_UTIL_LINUX_WDCTL
1116         help
1117           util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
1118           to be aligned with how the other options are named.
1120 config BR2_PACKAGE_UTIL_LINUX_ARCH
1121         bool "util-linux' arch option has been removed"
1122         select BR2_LEGACY
1123         help
1124           util-linux' arch was dropped in util-linux 2.23, in favor of
1125           the coreutils version.
1127 config BR2_PACKAGE_UTIL_LINUX_DDATE
1128         bool "util-linux' ddate option has been removed"
1129         select BR2_LEGACY
1130         help
1131           util-linux' ddate was dropped in util-linux 2.23.
1133 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
1134         bool "rpm's bzip2 payloads option has been removed"
1135         select BR2_LEGACY
1136         select BR2_PACKAGE_BZIP2
1137         help
1138           The bzip2 payloads option rely entirely on the dependant package bzip2.
1139           So, you need to select it to enable this feature.
1141 config BR2_PACKAGE_RPM_XZ_PAYLOADS
1142         bool "rpm's xz payloads option has been removed"
1143         select BR2_LEGACY
1144         select BR2_PACKAGE_XZ
1145         help
1146           The xz payloads option rely entirely on the dependant package xz.
1147           So, you need to select it to enable this feature.
1149 config BR2_PACKAGE_M4
1150         bool "m4 target package removed"
1151         select BR2_LEGACY
1152         help
1153           The m4 target package has been removed, it's been
1154           deprecated for some time now.
1156 config BR2_PACKAGE_FLEX_BINARY
1157         bool "flex binary in target option removed"
1158         select BR2_LEGACY
1159         help
1160           The flex binary in the target option has been removed.
1161           It's been deprecated for some time now and is essentially a
1162           development tool which isn't very useful in the target.
1164 config BR2_PACKAGE_BISON
1165         bool "bison target package removed"
1166         select BR2_LEGACY
1167         help
1168           The bison target package has been removed, it's been
1169           deprecated for some time now and is essentially a development
1170           tool which isn't very useful in the target.
1172 config BR2_PACKAGE_GOB2
1173         bool "gob2 target package removed"
1174         select BR2_LEGACY
1175         help
1176           The gob2 target package has been removed, it's been
1177           deprecated for some time now and was essentially useless
1178           without a target toolchain.
1180 config BR2_PACKAGE_DISTCC
1181         bool "distcc target package removed"
1182         select BR2_LEGACY
1183         help
1184           The distcc target package has been removed, it's been
1185           deprecated for some time now and was essentially useless
1186           without a target toolchain.
1188 config BR2_PACKAGE_HASERL_VERSION_0_8_X
1189         bool "haserl 0.8.x version removed"
1190         select BR2_LEGACY
1191         help
1192           The 0.8.x version option for haserl has been removed since it
1193           has been deprecated for some time now.
1194           You should be able to use the 0.9.x version without issues.
1196 config BR2_PACKAGE_STRONGSWAN_TOOLS
1197         bool "strongswan option has been removed"
1198         select BR2_LEGACY
1199         select BR2_PACKAGE_STRONGSWAN_PKI
1200         select BR2_PACKAGE_STRONGSWAN_SCEP
1201         help
1202           The tools option has been removed upstream and the different tools
1203           have been split between the pki and scep options, with others
1204           deprecated.
1206 config BR2_PACKAGE_XBMC_ADDON_XVDR
1207         bool "xbmc options have been renamed"
1208         select BR2_LEGACY
1209         select BR2_PACKAGE_KODI_ADDON_XVDR
1210         help
1211           The XBMC media center project was renamed to Kodi entertainment center
1213 config BR2_PACKAGE_XBMC_PVR_ADDONS
1214         bool "xbmc options have been renamed"
1215         select BR2_LEGACY
1216         select BR2_PACKAGE_KODI_PVR_ADDONS
1217         help
1218           The XBMC media center project was renamed to Kodi entertainment center
1220 config BR2_PACKAGE_XBMC
1221         bool "xbmc options have been renamed"
1222         select BR2_LEGACY
1223         select BR2_PACKAGE_KODI
1224         help
1225           The XBMC media center project was renamed to Kodi entertainment center
1227 config BR2_PACKAGE_XBMC_ALSA_LIB
1228         bool "xbmc options have been renamed"
1229         select BR2_LEGACY
1230         select BR2_PACKAGE_KODI_ALSA_LIB
1231         help
1232           The XBMC media center project was renamed to Kodi entertainment center
1234 config BR2_PACKAGE_XBMC_AVAHI
1235         bool "xbmc options have been renamed"
1236         select BR2_LEGACY
1237         select BR2_PACKAGE_KODI_AVAHI
1238         help
1239           The XBMC media center project was renamed to Kodi entertainment center
1241 config BR2_PACKAGE_XBMC_DBUS
1242         bool "xbmc options have been renamed"
1243         select BR2_LEGACY
1244         select BR2_PACKAGE_KODI_DBUS
1245         help
1246           The XBMC media center project was renamed to Kodi entertainment center
1248 config BR2_PACKAGE_XBMC_LIBBLURAY
1249         bool "xbmc options have been renamed"
1250         select BR2_LEGACY
1251         select BR2_PACKAGE_KODI_LIBBLURAY
1252         help
1253           The XBMC media center project was renamed to Kodi entertainment center
1255 config BR2_PACKAGE_XBMC_GOOM
1256         bool "xbmc options have been renamed"
1257         select BR2_LEGACY
1258         select BR2_PACKAGE_KODI_GOOM
1259         help
1260           The XBMC media center project was renamed to Kodi entertainment center
1262 config BR2_PACKAGE_XBMC_RSXS
1263         bool "xbmc options have been renamed"
1264         select BR2_LEGACY
1265         select BR2_PACKAGE_KODI_RSXS
1266         help
1267           The XBMC media center project was renamed to Kodi entertainment center
1269 config BR2_PACKAGE_XBMC_LIBCEC
1270         bool "xbmc options have been renamed"
1271         select BR2_LEGACY
1272         select BR2_PACKAGE_KODI_LIBCEC
1273         help
1274           The XBMC media center project was renamed to Kodi entertainment center
1276 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1277         bool "xbmc options have been renamed"
1278         select BR2_LEGACY
1279         select BR2_PACKAGE_KODI_LIBMICROHTTPD
1280         help
1281           The XBMC media center project was renamed to Kodi entertainment center
1283 config BR2_PACKAGE_XBMC_LIBNFS
1284         bool "xbmc options have been renamed"
1285         select BR2_LEGACY
1286         select BR2_PACKAGE_KODI_LIBNFS
1287         help
1288           The XBMC media center project was renamed to Kodi entertainment center
1290 config BR2_PACKAGE_XBMC_RTMPDUMP
1291         bool "xbmc options have been renamed"
1292         select BR2_LEGACY
1293         select BR2_PACKAGE_KODI_RTMPDUMP
1294         help
1295           The XBMC media center project was renamed to Kodi entertainment center
1297 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1298         bool "xbmc options have been renamed"
1299         select BR2_LEGACY
1300         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1301         help
1302           The XBMC media center project was renamed to Kodi entertainment center
1304 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1305         bool "xbmc options have been renamed"
1306         select BR2_LEGACY
1307         select BR2_PACKAGE_KODI_LIBSMBCLIENT
1308         help
1309           The XBMC media center project was renamed to Kodi entertainment center
1311 config BR2_PACKAGE_XBMC_LIBTHEORA
1312         bool "xbmc options have been renamed"
1313         select BR2_LEGACY
1314         select BR2_PACKAGE_KODI_LIBTHEORA
1315         help
1316           The XBMC media center project was renamed to Kodi entertainment center
1318 config BR2_PACKAGE_XBMC_LIBUSB
1319         bool "xbmc options have been renamed"
1320         select BR2_LEGACY
1321         select BR2_PACKAGE_KODI_LIBUSB
1322         help
1323           The XBMC media center project was renamed to Kodi entertainment center
1325 config BR2_PACKAGE_XBMC_LIBVA
1326         bool "xbmc options have been renamed"
1327         select BR2_LEGACY
1328         select BR2_PACKAGE_KODI_LIBVA
1329         help
1330           The XBMC media center project was renamed to Kodi entertainment center
1332 config BR2_PACKAGE_XBMC_WAVPACK
1333         bool "xbmc options have been renamed"
1334         select BR2_LEGACY
1335         select BR2_PACKAGE_KODI_WAVPACK
1336         help
1337           The XBMC media center project was renamed to Kodi entertainment center
1339 config BR2_PREFER_STATIC_LIB
1340         bool "static library option renamed"
1341         select BR2_LEGACY
1342         help
1343           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1344           highlights the fact that the option no longer "prefers"
1345           static libraries, but "enforces" static libraries (i.e
1346           shared libraries are completely unused).
1348           Take care of updating the type of libraries you want under the
1349           "Build options" menu.
1351 ###############################################################################
1352 comment "Legacy options removed in 2014.11"
1354 config BR2_x86_generic
1355         bool "x86 generic variant has been removed"
1356         select BR2_LEGACY
1357         help
1358           The generic x86 CPU variant has been removed. Use another
1359           CPU variant instead.
1361 config BR2_GCC_VERSION_4_4_X
1362         bool "gcc 4.4.x has been removed"
1363         select BR2_LEGACY
1364         help
1365           The 4.4.x version of gcc has been removed. Use a newer
1366           version instead.
1368 config BR2_sparc_sparchfleon
1369         bool "sparchfleon CPU has been removed"
1370         select BR2_LEGACY
1371         help
1372           The sparchfleon CPU was only supported in a patched gcc 4.4
1373           version. Its support has been removed in favor of the leon3
1374           CPU starting from gcc 4.8.x.
1376 config BR2_sparc_sparchfleonv8
1377         bool "sparchfleonv8 CPU has been removed"
1378         select BR2_LEGACY
1379         help
1380           The sparchfleonv8 CPU was only supported in a patched gcc
1381           4.4 version. Its support has been removed in favor of the
1382           leon3 CPU starting from gcc 4.8.x.
1384 config BR2_sparc_sparcsfleon
1385         bool "sparcsfleon CPU has been removed"
1386         select BR2_LEGACY
1387         help
1388           The sparcsfleon CPU was only supported in a patched gcc 4.4
1389           version. Its support has been removed in favor of the leon3
1390           CPU starting from gcc 4.8.x.
1392 config BR2_sparc_sparcsfleonv8
1393         bool "sparcsfleonv8 CPU has been removed"
1394         select BR2_LEGACY
1395         help
1396           The sparcsfleonv8 CPU was only supported in a patched gcc
1397           4.4 version. Its support has been removed in favor of the
1398           leon3 CPU starting from gcc 4.8.x.
1400 config BR2_PACKAGE_XLIB_LIBPCIACCESS
1401         bool "xlib-libpciaccess option has been renamed"
1402         depends on BR2_PACKAGE_XORG7
1403         select BR2_LEGACY
1404         select BR2_PACKAGE_LIBPCIACCESS
1405         help
1406           libpciaccess neither depends on X11 nor Xlib. Thus the
1407           package has been renamed BR2_PACKAGE_LIBPCIACCESS
1409 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1410         bool "Xceive xc5000 option has been renamed"
1411         select BR2_LEGACY
1412         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1413         help
1414           The Xceive xc5000 option now also handles older firmwares from
1415           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1416           from Cresta, who bought Xceive.
1418 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1419         bool "Chelsio T4 option has been renamed"
1420         select BR2_LEGACY
1421         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1422         help
1423           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1424           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1425           to better account for the fact that a T5 variant exists.
1427 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1428         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
1429         select BR2_LEGACY
1430         help
1431           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1432           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1433           select it in:
1434               Target packages -> Hardware handling ->
1435               Firmware -> linux-firmware -> WiFi firmware ->
1436               iwlwifi 3160/726x revision to use (revision 7)
1438 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1439         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
1440         select BR2_LEGACY
1441         help
1442           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1443           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1444           select it in:
1445               Target packages -> Hardware handling ->
1446               Firmware -> linux-firmware -> WiFi firmware ->
1447               iwlwifi 3160/726x revision to use (revision 8)
1449 ###############################################################################
1450 comment "Legacy options removed in 2014.08"
1452 config BR2_PACKAGE_LIBELF
1453         bool "libelf has been removed"
1454         select BR2_PACKAGE_ELFUTILS
1455         select BR2_LEGACY
1456         help
1457           The libelf package provided an old version of the libelf library
1458           and is deprecated. The libelf library is now provided by the
1459           elfutils package.
1461 config BR2_KERNEL_HEADERS_3_8
1462         bool "kernel headers version 3.8.x are no longer supported"
1463         select BR2_KERNEL_HEADERS_3_10
1464         select BR2_LEGACY
1465         help
1466           Version 3.8.x of the Linux kernel headers have been deprecated
1467           for more than four buildroot releases and are now removed.
1468           As an alternative, version 3.10.x of the headers have been
1469           automatically selected in your configuration.
1471 config BR2_PACKAGE_GETTEXT_TOOLS
1472         bool "support for gettext-tools on target has been removed"
1473         select BR2_LEGACY
1474         help
1475           The option to install the gettext utilities on the target
1476           has been removed. This is not necessary as Buildroot is not
1477           designed to provide a full development environment on the
1478           target. gettext tools should be used on the build machine
1479           instead.
1481 config BR2_PACKAGE_PROCPS
1482         bool "procps has been replaced by procps-ng"
1483         select BR2_PACKAGE_PROCPS_NG
1484         select BR2_LEGACY
1485         help
1486           The procps package has been replaced by the equivalent procps-ng.
1488 config BR2_BINUTILS_VERSION_2_20_1
1489         bool "binutils 2.20.1 has been removed"
1490         select BR2_LEGACY
1491         help
1492           The 2.20.1 version of binutils has been removed. Use a newer
1493           version instead.
1495 config BR2_BINUTILS_VERSION_2_21
1496         bool "binutils 2.21 has been removed"
1497         select BR2_LEGACY
1498         help
1499           The 2.21 version of binutils has been removed. Use a newer
1500           version instead.
1502 config BR2_BINUTILS_VERSION_2_23_1
1503         bool "binutils 2.23.1 has been removed"
1504         select BR2_LEGACY
1505         help
1506           The 2.23.1 version of binutils has been removed. Use a newer
1507           version instead.
1509 config BR2_UCLIBC_VERSION_0_9_32
1510         bool "uclibc 0.9.32 has been removed"
1511         select BR2_LEGACY
1512         help
1513           The 0.9.32 version of uClibc has been removed. Use a newer
1514           version instead.
1516 config BR2_GCC_VERSION_4_3_X
1517         bool "gcc 4.3.x has been removed"
1518         select BR2_LEGACY
1519         help
1520           The 4.3.x version of gcc has been removed. Use a newer
1521           version instead.
1523 config BR2_GCC_VERSION_4_6_X
1524         bool "gcc 4.6.x has been removed"
1525         select BR2_LEGACY
1526         help
1527           The 4.6.x version of gcc has been removed. Use a newer
1528           version instead.
1530 config BR2_GDB_VERSION_7_4
1531         bool "gdb 7.4 has been removed"
1532         select BR2_LEGACY
1533         help
1534           The 7.4 version of gdb has been removed. Use a newer version
1535           instead.
1537 config BR2_GDB_VERSION_7_5
1538         bool "gdb 7.5 has been removed"
1539         select BR2_LEGACY
1540         help
1541           The 7.5 version of gdb has been removed. Use a newer version
1542           instead.
1544 config BR2_BUSYBOX_VERSION_1_19_X
1545         bool "busybox version selection has been removed"
1546         select BR2_LEGACY
1547         help
1548           The possibility of selecting the Busybox version has been
1549           removed. Use the latest version provided by the Busybox
1550           package instead.
1552 config BR2_BUSYBOX_VERSION_1_20_X
1553         bool "busybox version selection has been removed"
1554         select BR2_LEGACY
1555         help
1556           The possibility of selecting the Busybox version has been
1557           removed. Use the latest version provided by the Busybox
1558           package instead.
1560 config BR2_BUSYBOX_VERSION_1_21_X
1561         bool "busybox version selection has been removed"
1562         select BR2_LEGACY
1563         help
1564           The possibility of selecting the Busybox version has been
1565           removed. Use the latest version provided by the Busybox
1566           package instead.
1568 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1569         bool "decode_tm6000"
1570         select BR2_PACKAGE_LIBV4L_UTILS
1571         select BR2_LEGACY
1572         help
1573           This libv4l option has been deprecated and replaced by a single
1574           option to build all the libv4l utilities.
1576 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1577         bool "ir-keytable"
1578         select BR2_PACKAGE_LIBV4L_UTILS
1579         select BR2_LEGACY
1580         help
1581           This libv4l option has been deprecated and replaced by a single
1582           option to build all the libv4l utilities.
1584 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1585         bool "v4l2-compliance"
1586         select BR2_PACKAGE_LIBV4L_UTILS
1587         select BR2_LEGACY
1588         help
1589           This libv4l option has been deprecated and replaced by a single
1590           option to build all the libv4l utilities.
1592 config BR2_PACKAGE_LIBV4L_V4L2_CTL
1593         bool "v4l2-ctl"
1594         select BR2_PACKAGE_LIBV4L_UTILS
1595         select BR2_LEGACY
1596         help
1597           This libv4l option has been deprecated and replaced by a single
1598           option to build all the libv4l utilities.
1600 config BR2_PACKAGE_LIBV4L_V4L2_DBG
1601         bool "v4l2-dbg"
1602         select BR2_PACKAGE_LIBV4L_UTILS
1603         select BR2_LEGACY
1604         help
1605           This libv4l option has been deprecated and replaced by a single
1606           option to build all the libv4l utilities.
1608 ###############################################################################
1609 comment "Legacy options removed in 2014.05"
1611 config BR2_PACKAGE_EVTEST_CAPTURE
1612         bool "evtest-capture support removed (dropped since evtest 1.31)"
1613         select BR2_LEGACY
1614         help
1615           Support for evtest-capture has been removed (dropped from
1616           evtest package since version 1.31), use evemu package
1617           instead.
1619 config BR2_KERNEL_HEADERS_3_6
1620         bool "kernel headers version 3.6.x are no longer supported"
1621         select BR2_KERNEL_HEADERS_3_10
1622         select BR2_LEGACY
1623         help
1624           Version 3.6.x of the Linux kernel headers have been deprecated
1625           for more than four buildroot releases and are now removed.
1626           As an alternative, version 3.10.x of the headers have been
1627           automatically selected in your configuration.
1629 config BR2_KERNEL_HEADERS_3_7
1630         bool "kernel headers version 3.7.x are no longer supported"
1631         select BR2_KERNEL_HEADERS_3_10
1632         select BR2_LEGACY
1633         help
1634           Version 3.7.x of the Linux kernel headers have been deprecated
1635           for more than four buildroot releases and are now removed.
1636           As an alternative, version 3.10.x of the headers have been
1637           automatically selected in your configuration.
1639 config BR2_PACKAGE_VALA
1640         bool "vala target package has been removed"
1641         select BR2_LEGACY
1642         help
1643           The 'vala' target package has been removed since it has been
1644           deprecated for more than four buildroot releases.
1645           Note: the host vala package still exists.
1647 config BR2_TARGET_TZ_ZONELIST
1648         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1650 config BR2_PACKAGE_TZDATA_ZONELIST
1651         string "tzdata: the timezone list option has been renamed"
1652         help
1653           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1654           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1655           menu. You'll need to select BR2_TARGET_TZ_INFO.
1657 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1658         bool
1659         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1660         select BR2_LEGACY
1662 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1663         bool "Lua command-line editing none has been renamed"
1664         select BR2_LEGACY
1665         help
1666           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1667           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1668           it in the corresponding choice.
1670 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1671         bool "Lua command-line editing using readline has been renamed"
1672         select BR2_LEGACY
1673         help
1674           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1675           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1676           it in the corresponding choice.
1678 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1679         bool "Lua command-line editing using linenoise has been renamed"
1680         select BR2_LEGACY
1681         help
1682           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1683           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1684           it in the corresponding choice.
1686 config BR2_PACKAGE_DVB_APPS_UTILS
1687         bool "dvb-apps utilities now built by default"
1688         select BR2_LEGACY
1689         help
1690           The dvb-apps utilities are now always built when the dvb-apps
1691           package is selected.
1693 config BR2_KERNEL_HEADERS_SNAP
1694         bool "Local Linux snapshot support removed"
1695         select BR2_LEGACY
1696         help
1697           Support for using a custom snapshot to install the Linux
1698           kernel headers has been removed.
1700 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1701         bool "/dev management by udev removed"
1702         select BR2_LEGACY
1703         help
1704           The 'udev' package has been converted to a virtual package.
1705           The providers for this feature are: 'eudev', 'systemd'.
1707           Therefore, if you are not using 'systemd' as init system, you
1708           must choose 'Dynamic using eudev' in the '/dev management'
1709           menu to get the same behaviour as in your old configuration.
1711           If you are using 'systemd', its internal implementation of
1712           'udev' will be used automatically.
1714           You must also check the packages depending on 'udev' are still
1715           selected.
1717 config BR2_PACKAGE_UDEV
1718         bool "udev is now a virtual package"
1719         select BR2_LEGACY
1720         select BR2_PACKAGE_HAS_UDEV
1721         help
1722           The 'udev' package has been converted to a virtual package.
1723           The providers for this feature are: 'eudev', 'systemd'.
1725           Your old configuration refers to packages depending on 'udev',
1726           either for build or at runtime.
1728           Check that a 'udev' provider is selected. If you are not using
1729           'systemd' as init system, 'eudev' should be selected, which is
1730           the case if '/dev management' is set to 'Dynamic using eudev'.
1732           If you are using 'systemd', its internal implementation of 'udev'
1733           is used.
1735 config BR2_PACKAGE_UDEV_RULES_GEN
1736         bool "udev rules generation handled by provider"
1737         select BR2_LEGACY
1738         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
1739         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
1740         help
1741           The 'udev' package has been converted to a virtual package.
1742           The providers for this feature are: 'eudev', 'systemd'.
1744           If you are not using 'systemd' as init system, udev rules
1745           generation will be handled by 'eudev'. Check that
1746           '/dev management' is set to 'Dynamic using eudev' to get
1747           the same behaviour as in your old configuration.
1749           If you are using 'systemd', it internal implementation of 'udev'
1750           will generate the rules.
1752 config BR2_PACKAGE_UDEV_ALL_EXTRAS
1753         bool "udev extras removed"
1754         select BR2_LEGACY
1755         help
1756           The 'udev' package has been converted to a virtual package.
1757           The providers for this feature are: 'eudev', 'systemd'.
1759           The option to enable the extra features of 'udev' (gudev, ...)
1760           has been removed. These features are automatically enabled in
1761           the 'udev' providers if the dependencies are selected. For
1762           example, selecting 'libglib2' will trigger the build of gudev.
1764 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
1765         bool "xlib-libpthread-stubs option has been renamed"
1766         depends on BR2_PACKAGE_XORG7
1767         select BR2_LEGACY
1768         select BR2_PACKAGE_LIBPTHREAD_STUBS
1769         help
1770           The pthread stubs neither depend on X11 nor Xlib. Thus the
1771           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
1773 ###############################################################################
1774 comment "Legacy options removed in 2014.02"
1776 config BR2_sh2
1777         bool "sh2 support removed"
1778         select BR2_LEGACY
1779         help
1780           Due to an inexistent user base and generally poor Linux
1781           support, the support for the SH2 architecture was removed.
1783 config BR2_sh3
1784         bool "sh3 support removed"
1785         select BR2_LEGACY
1786         help
1787           Due to an inexistent user base and generally poor Linux
1788           support, the support for the SH3 architecture was removed.
1790 config BR2_sh3eb
1791         bool "sh3eb support removed"
1792         select BR2_LEGACY
1793         help
1794           Due to an inexistent user base and generally poor Linux
1795           support, the support for the SH3eb architecture was removed.
1797 config BR2_KERNEL_HEADERS_3_1
1798         bool "kernel headers version 3.1.x are no longer supported"
1799         select BR2_KERNEL_HEADERS_3_2
1800         select BR2_LEGACY
1801         help
1802           Version 3.1.x of the Linux kernel headers have been deprecated
1803           for more than four buildroot releases and are now removed.
1804           As an alternative, version 3.2.x of the headers have been
1805           automatically selected in your configuration.
1807 config BR2_KERNEL_HEADERS_3_3
1808         bool "kernel headers version 3.3.x are no longer supported"
1809         select BR2_KERNEL_HEADERS_3_4
1810         select BR2_LEGACY
1811         help
1812           Version 3.3.x of the Linux kernel headers have been deprecated
1813           for more than four buildroot releases and are now removed.
1814           As an alternative, version 3.4.x of the headers have been
1815           automatically selected in your configuration.
1817 config BR2_KERNEL_HEADERS_3_5
1818         bool "kernel headers version 3.5.x are no longer supported"
1819         select BR2_KERNEL_HEADERS_3_10
1820         select BR2_LEGACY
1821         help
1822           Version 3.5.x of the Linux kernel headers have been deprecated
1823           for more than four buildroot releases and are now removed.
1824           As an alternative, version 3.10.x of the headers have been
1825           automatically selected in your configuration.
1827 config BR2_GDB_VERSION_7_2
1828         bool "gdb 7.2.x is no longer supported"
1829         select BR2_GDB_VERSION_7_6
1830         select BR2_LEGACY
1831         help
1832           Version 7.2.x of gdb has been deprecated for more than four
1833           buildroot releases and is now removed. As an alternative, gdb
1834           7.5.x has been automatically selected in your configuration.
1836 config BR2_GDB_VERSION_7_3
1837         bool "gdb 7.3.x is no longer supported"
1838         select BR2_GDB_VERSION_7_6
1839         select BR2_LEGACY
1840         help
1841           Version 7.3.x of gdb has been deprecated for more than four
1842           buildroot releases and is now removed. As an alternative, gdb
1843           7.5.x has been automatically selected in your configuration.
1845 config BR2_PACKAGE_CCACHE
1846         bool "ccache target package has been removed"
1847         select BR2_LEGACY
1848         help
1849           The 'ccache' target package has been removed since it has been
1850           deprecated for more than four buildroot releases.
1851           Note: using ccache for speeding up builds is still supported.
1853 config BR2_HAVE_DOCUMENTATION
1854         bool "support for documentation on target has been removed"
1855         select BR2_LEGACY
1856         help
1857           Support for documentation on target has been removed since it has
1858           been deprecated for more than four buildroot releases.
1860 config BR2_PACKAGE_AUTOMAKE
1861         bool "automake target package has been removed"
1862         select BR2_LEGACY
1863         help
1864           The 'automake' target package has been removed since it has been
1865           deprecated for more than four buildroot releases.
1866           Note: the host automake still exists.
1868 config BR2_PACKAGE_AUTOCONF
1869         bool "autoconf target package has been removed"
1870         select BR2_LEGACY
1871         help
1872           The 'autoconf' target package has been removed since it has been
1873           deprecated for more than four buildroot releases.
1874           Note: the host autoconf still exists.
1876 config BR2_PACKAGE_XSTROKE
1877         bool "xstroke has been removed"
1878         select BR2_LEGACY
1879         help
1880           The 'xstroke' package has been removed since it has been
1881           deprecated for more than four buildroot releases.
1883 config BR2_PACKAGE_LZMA
1884         bool "lzma target package has been removed"
1885         select BR2_LEGACY
1886         help
1887           The 'lzma' target package has been removed since it has been
1888           deprecated for more than four buildroot releases.
1889           Note: generating lzma-compressed rootfs images is still supported.
1891 config BR2_PACKAGE_TTCP
1892         bool "ttcp has been removed"
1893         select BR2_LEGACY
1894         help
1895           The 'ttcp' package has been removed since it has been
1896           deprecated for more than four buildroot releases.
1898 config BR2_PACKAGE_LIBNFC_LLCP
1899         bool "libnfc-llcp has been replaced by libllcp"
1900         select BR2_LEGACY
1901         select BR2_PACKAGE_LIBLLCP
1902         help
1903           The 'libnfc-llcp' package has been removed since upstream renamed
1904           to 'libllcp'. We have added a new package for 'libllcp' and bumped
1905           the version at the same time.
1907 config BR2_PACKAGE_MYSQL_CLIENT
1908         bool "MySQL client renamed to MySQL"
1909         select BR2_LEGACY
1910         select BR2_PACKAGE_MYSQL
1911         help
1912           The option has been renamed BR2_PACKAGE_MYSQL
1914 config BR2_PACKAGE_SQUASHFS3
1915         bool "squashfs3 has been removed"
1916         select BR2_LEGACY
1917         select BR2_PACKAGE_SQUASHFS
1918         help
1919           The 'squashfs3' package has been removed since it has been
1920           deprecated for more than four buildroot releases. Package
1921           'squashfs' (4) has been selected automatically as replacement.
1923 config BR2_TARGET_ROOTFS_SQUASHFS3
1924         bool "squashfs3 rootfs support has been removed"
1925         select BR2_LEGACY
1926         help
1927           Together with the removal of the squashfs3 package, support
1928           for squashfs3 root filesystems has been removed too. Squashfs
1929           root filesystems will automatically use squashfs4 now.
1931 config BR2_PACKAGE_NETKITBASE
1932         bool "netkitbase has been removed"
1933         select BR2_LEGACY
1934         help
1935           The 'netkitbase' package has been removed since it has been
1936           deprecated since 2012.11. This package provided 'inetd'
1937           which is replaced by 'xinet' and 'ping' which is replaced by
1938           'busybox' or 'fping'.
1940 config BR2_PACKAGE_NETKITTELNET
1941         bool "netkittelnet has been removed"
1942         select BR2_LEGACY
1943         help
1944           The 'netkittelnet' package has been removed since it has
1945           been deprecated since 2012.11. 'busybox' provides a telnet
1946           client and should be used instead.
1948 config BR2_PACKAGE_LUASQL
1949         bool "luasql has been replaced by luasql-sqlite3"
1950         select BR2_PACKAGE_LUASQL_SQLITE3
1951         select BR2_LEGACY
1952         help
1953           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
1955 config BR2_PACKAGE_LUACJSON
1956         bool "luacjson has been replaced by lua-cjson"
1957         select BR2_PACKAGE_LUA_CJSON
1958         select BR2_LEGACY
1959         help
1960           The option has been renamed BR2_PACKAGE_LUA_CJSON.
1962 ###############################################################################
1963 comment "Legacy options removed in 2013.11"
1965 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
1966         bool "lvm2's 'dmsetup only' option removed"
1967         select BR2_LEGACY
1968         help
1969           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
1970           led to problems with other packages that need the full lvm2
1971           suite. Therefore, the option has been replaced with the positive
1972           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
1974 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
1975 # in order to automatically propagate old configs
1977 config BR2_PACKAGE_QT_JAVASCRIPTCORE
1978         bool "qt javascriptcore option removed"
1979         select BR2_LEGACY
1980         help
1981           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
1982           force the activation or disabling of the JIT compiler in the
1983           Qt Javascript interpreter. However, the JIT compiler is not
1984           available for all architectures, so forcing its activation
1985           does not always work. Moreover, Qt knows by itself for which
1986           architectures JIT support is possible, and will
1987           automatically enable it if possible.
1989           Therefore, this option was in fact useless, and causing
1990           build problems when enabled on architectures for which the
1991           JIT support was not available. It has been removed, and
1992           there is no replacement: Qt will enable JIT at compile time
1993           when possible.
1995 config BR2_PACKAGE_MODULE_INIT_TOOLS
1996         bool "module-init-tools replaced by kmod"
1997         select BR2_PACKAGE_KMOD
1998         select BR2_PACKAGE_KMOD_TOOLS
1999         select BR2_LEGACY
2000         help
2001           The 'module-init-tools' package has been removed, since it
2002           has been depracated upstream and replaced by 'kmod'.
2004 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
2005         string "u-boot: the git repository URL option has been renamed"
2006         help
2007           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
2008           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
2010 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
2011         bool
2012         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
2013         select BR2_LEGACY
2015 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
2016 # boot/uboot/Config.in
2018 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
2019         string "u-boot: the git repository version option has been renamed"
2020         help
2021           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
2022           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
2024 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
2025         bool
2026         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
2027         select BR2_LEGACY
2029 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
2030 # boot/uboot/Config.in
2032 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
2033         string "linux: the git repository URL option has been renamed"
2034         help
2035           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
2036           been renamed to
2037           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
2039 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
2040         bool
2041         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
2042         select BR2_LEGACY
2044 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
2045 # linux/Config.in
2047 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
2048         string "linux: the git repository version option has been renamed"
2049         help
2050           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
2051           been renamed to
2052           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
2054 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
2055         bool
2056         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
2057         select BR2_LEGACY
2059 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
2060 # linux/Config.in
2062 ###############################################################################
2063 comment "Legacy options removed in 2013.08"
2065 config BR2_ARM_OABI
2066         bool "ARM OABI support has been removed"
2067         select BR2_LEGACY
2068         help
2069           The support for the ARM OABI was deprecated since a while,
2070           and has been removed completely from Buildroot. It is also
2071           deprecated in upstream gcc, since gcc 4.7. People should
2072           switch to EABI instead, which should not be a problem as
2073           long as you don't have pre-built OABI binaries in your
2074           system that you can't recompile.
2076 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
2077         bool "dosfstools dosfsck renamed to fsck.fat"
2078         select BR2_LEGACY
2079         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
2080         help
2081           dosfsck was renamed upstream to fsck.fat for consistency.
2083 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
2084         bool "dosfstools dosfslabel renamed to fatlabel"
2085         select BR2_LEGACY
2086         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
2087         help
2088           doslabel was renamed upstream to fatlabel for consistency.
2090 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
2091         bool "dosfstools mkdosfs renamed to mkfs.fat"
2092         select BR2_LEGACY
2093         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
2094         help
2095           mkdosfs was renamed upstream to mkfs.fat for consistency.
2097 config BR2_ELF2FLT
2098         bool "the elf2flt option has been renamed"
2099         select BR2_LEGACY
2100         help
2101           The BR2_ELF2FLT option has been renamed to
2102           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
2103           the package infrastructure.
2105 config BR2_VFP_FLOAT
2106         bool "the ARM VFP floating point option has been renamed"
2107         select BR2_LEGACY
2108         help
2109           Due to a major refactoring of the floating-point handling of
2110           the ARM architecture support, the BR2_VFP_FLOAT option has
2111           been replaced with a choice of options that allows to select
2112           between various VFP versions/capabilities.
2114 config BR2_PACKAGE_GCC_TARGET
2115         bool "gcc on the target filesystem has been removed"
2116         select BR2_LEGACY
2117         help
2118           The support for gcc in the target filesystem was deprecated
2119           since a while, and has been removed completely from Buildroot.
2120           See Buildroot's documentation for more explanations.
2122 config BR2_HAVE_DEVFILES
2123         bool "development files in target filesystem has been removed"
2124         select BR2_LEGACY
2125         help
2126           The installation of the development files in the target
2127           filesystem was deprecated since a while, and has been removed
2128           completely from Buildroot.
2129           See Buildroot's documentation for more explanations.
2131 ###############################################################################
2132 comment "Legacy options removed in 2013.05"
2134 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
2135         bool "Realtek 8192 replaced by Realtek 81xx"
2136         select BR2_LEGACY
2137         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
2138         help
2139           Now covers the whole Realtek 81xx familly: 8188/8192.
2141 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
2142         bool "Realtek 8712 replaced by Realtek 87xx"
2143         select BR2_LEGACY
2144         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
2145         help
2146           Now covers the whole Realtek 87xx familly: 8712/8723.
2148 ###############################################################################
2149 comment "Legacy options removed in 2013.02"
2151 config BR2_sa110
2152         bool "sa110 ARM target switched to strongarm"
2153         select BR2_LEGACY
2154         select BR2_strongarm
2155         help
2156           The SA110 is the same as a generic StrongARM, it just differs
2157           in speed, peripherals and cache.
2159 config BR2_sa1100
2160         bool "sa1100 ARM target switched to strongarm"
2161         select BR2_LEGACY
2162         select BR2_strongarm
2163         help
2164           The SA1100 is the same as a generic StrongARM, it just differs
2165           in speed, peripherals and cache.
2167 config BR2_PACKAGE_GDISK
2168         bool "gdisk has been replaced by gptfdisk"
2169         select BR2_LEGACY
2170         select BR2_PACKAGE_GPTFDISK
2171         help
2172           The option has been renamed BR2_PACKAGE_GPTFDISK.
2174 config BR2_PACKAGE_GDISK_GDISK
2175         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
2176         select BR2_LEGACY
2177         select BR2_PACKAGE_GPTFDISK
2178         select BR2_PACKAGE_GPTFDISK_GDISK
2179         help
2180           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
2182 config BR2_PACKAGE_GDISK_SGDISK
2183         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
2184         select BR2_LEGACY
2185         select BR2_PACKAGE_GPTFDISK
2186         select BR2_PACKAGE_GPTFDISK_SGDISK
2187         help
2188           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
2190 config BR2_PACKAGE_GDB_HOST
2191         bool "gdb for the host option has been renamed"
2192         select BR2_PACKAGE_HOST_GDB
2193         select BR2_LEGACY
2194         help
2195           Due to the conversion of gdb to the package infrastructure,
2196           the BR2_PACKAGE_GDB_HOST option has been renamed
2197           BR2_PACKAGE_HOST_GDB.
2199 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
2200         bool "DirectFB RGB16 dithering option has been renamed"
2201         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
2202         select BR2_LEGACY
2203         help
2204           The option has been renamed
2205           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
2207 config BR2_PACKAGE_DIRECTB_TESTS
2208         bool "DirectFB Tests option has been renamed"
2209         select BR2_PACKAGE_DIRECTFB_TESTS
2210         select BR2_LEGACY
2211         help
2212           The option has been renamed
2213           BR2_PACKAGE_DIRECTFB_TESTS.
2215 ###############################################################################
2216 comment "Legacy options removed in 2012.11"
2218 config BR2_PACKAGE_CUSTOMIZE
2219         bool "customize package has been removed"
2220         select BR2_LEGACY
2221         help
2222           The 'customize' special package has been removed. Instead,
2223           we recommend to create either your own packages, or use a
2224           post-build script to customize your root filesystem. See
2225           Buildroot's documentation for more details.
2227 config BR2_PACKAGE_XSERVER_xorg
2228         bool "X.org modular server"
2229         select BR2_LEGACY
2230         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
2231         help
2232           The option has been renamed
2233           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
2235 config BR2_PACKAGE_XSERVER_tinyx
2236         bool "KDrive / TinyX server"
2237         select BR2_LEGACY
2238         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
2239         help
2240           The option has been renamed
2241           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
2243 config BR2_PACKAGE_PTHREAD_STUBS
2244         bool "pthread-stubs option has been renamed"
2245         select BR2_LEGACY
2246         select BR2_PACKAGE_LIBPTHREAD_STUBS
2247         help
2248           For consistency reason, the pthread-stubs package has been
2249           renamed to libpthread-stubs.
2251 ###############################################################################
2252 comment "Legacy options removed in 2012.08"
2254 config BR2_PACKAGE_GETTEXT_STATIC
2255         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
2256         select BR2_LEGACY
2257         help
2258           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
2261 config BR2_PACKAGE_LIBINTL
2262         bool "libintl"
2263         select BR2_LEGACY
2264         select BR2_PACKAGE_GETTEXT
2265         help
2266           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
2267           only installs the library, not the executables.
2269 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
2270         bool "input-tools evtest is now a separate package evtest"
2271         select BR2_LEGACY
2272         select BR2_PACKAGE_EVTEST
2273         help
2274           The evtest program from input-tools is now a separate package.
2276 config BR2_BFIN_FDPIC
2277         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2278         select BR2_BINFMT_FDPIC
2279         select BR2_LEGACY
2281 config BR2_BFIN_FLAT
2282         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2283         select BR2_BINFMT_FLAT
2284         select BR2_LEGACY
2286 endmenu
2288 endif # !SKIP_LEGACY