dos2unix: update homepage link
[buildroot-gz.git] / Config.in.legacy
blob33305665d914f36f9bfff0049483a173322e66af
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.
20 # For string options, it is not possible to directly select another symbol. In
21 # this case, a hidden wrap bool option has to be added, that defaults to y if
22 # the old string is not set at its default value. The wrap symbol should select
23 # BR2_LEGACY.
24 # If the original symbol has been renamed, the new symbol should use the value
25 # of the old symbol as default. This requires a change outside of
26 # Config.in.legacy, and this should be clearly marked as such below, so that
27 # removal of legacy options also include the removal of these external
28 # references.
30 # [Example: renaming a string option from FOO to BAR]
31 # original symbol:
32 #     config BR2_FOO_STRING
33 #             string "Some foo string"
35 # becomes:
36 #     config BR2_BAR_STRING
37 #             string "Some bar string"
38 #             default BR2_FOO_STRING if BR2_FOO_STRING != ""  # legacy
40 # and in Config.in.legacy:
41 #     config BR2_FOO_STRING
42 #             string "The foo string has been renamed"
43 #             help
44 #               <suitable help text>
46 #     config BR2_FOO_STRING_WRAP
47 #             bool
48 #             default y if BR2_FOO_STRING != ""
49 #             select BR2_LEGACY
51 #     # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
53 # [End of example]
55 config BR2_SKIP_LEGACY
56         bool
57         option env="SKIP_LEGACY"
59 if !BR2_SKIP_LEGACY
61 config BR2_LEGACY
62         bool
63         help
64           This option is selected automatically when your old .config uses an
65           option that no longer exists in current buildroot. In that case, the
66           build will fail. Look for config options which are selected in the
67           menu below: they no longer exist and should be replaced by something
68           else.
70 # This comment fits exactly in a 80-column display
71 comment "Legacy detected: check the content of the menu below"
72         depends on BR2_LEGACY
74 menu "Legacy config options"
76 if BR2_LEGACY
77 comment "----------------------------------------------------"
78 comment "Your old configuration uses legacy options that no  "
79 comment "longer exist in buildroot, as indicated in the menu "
80 comment "below. As long as these options stay selected, or in"
81 comment "case of string options are non-empty, the build     "
82 comment "will fail.                                          "
83 comment "*                                                   "
84 comment "Where possible, an automatic conversion from old to "
85 comment "new symbols has been performed. Before making any   "
86 comment "change in this legacy menu, make sure to exit the   "
87 comment "configuration editor a first time and save the      "
88 comment "configuration. Otherwise, the automatic conversion  "
89 comment "of symbols will be lost.                            "
90 comment "*                                                   "
91 comment "After this initial save, reopen the configuration   "
92 comment "editor, inspect the options selected below, read    "
93 comment "their help texts, and verify/update the new         "
94 comment "configuration in the corresponding configuration    "
95 comment "menus. When everything is ok, you can disable the   "
96 comment "legacy options in the menu below. Once you have     "
97 comment "disabled all legacy options, this text will         "
98 comment "disappear and you will be able to start the build.  "
99 comment "*                                                   "
100 comment "Note: at some point in the future, the oldest legacy"
101 comment "options will be removed, and configuration files    "
102 comment "that still have those options set, will fail to     "
103 comment "build, or run, in unpredictable ways.               "
104 comment "----------------------------------------------------"
105 endif
107 ###############################################################################
108 comment "Legacy options removed in 2015.08"
110 config BR2_PACKAGE_KODI_PVR_ADDONS
111         bool "Kodi PVR addon was split"
112         select BR2_LEGACY
113         select BR2_PACKAGE_KODI_PVR_ARGUSTV
114         select BR2_PACKAGE_KODI_PVR_DVBLINK
115         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
116         select BR2_PACKAGE_KODI_PVR_FILMON
117         select BR2_PACKAGE_KODI_PVR_HTS
118         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
119         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
120         select BR2_PACKAGE_KODI_PVR_MYTHTV
121         select BR2_PACKAGE_KODI_PVR_NEXTPVR
122         select BR2_PACKAGE_KODI_PVR_NJOY
123         select BR2_PACKAGE_KODI_PVR_PCTV
124         select BR2_PACKAGE_KODI_PVR_STALKER
125         select BR2_PACKAGE_KODI_PVR_VBOX
126         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
127         select BR2_PACKAGE_KODI_PVR_VUPLUS
128         select BR2_PACKAGE_KODI_PVR_WMC
129         help
130           Kodi PVR addon was split into seperate modules
132 config BR2_BINUTILS_VERSION_2_23_2
133         bool "binutils 2.23 option renamed"
134         select BR2_LEGACY
135         select BR2_BINUTILS_VERSION_2_23_X
136         help
137           The binutils version option has been renamed to match the
138           same patchlevel logic used by gcc. The new option is now
139           BR2_BINUTILS_VERSION_2_23_X.
141 config BR2_BINUTILS_VERSION_2_24
142         bool "binutils 2.24 option renamed"
143         select BR2_LEGACY
144         select BR2_BINUTILS_VERSION_2_24_X
145         help
146           The binutils version option has been renamed to match the
147           same patchlevel logic used by gcc. The new option is now
148           BR2_BINUTILS_VERSION_2_24_X.
150 config BR2_BINUTILS_VERSION_2_25
151         bool "binutils 2.25 option renamed"
152         select BR2_LEGACY
153         select BR2_BINUTILS_VERSION_2_25_X
154         help
155           The binutils version option has been renamed to match the
156           same patchlevel logic used by gcc. The new option is now
157           BR2_BINUTILS_VERSION_2_25_X.
159 config BR2_PACKAGE_PERF
160         bool "perf option has been renamed"
161         select BR2_LEGACY
162         select BR2_LINUX_KERNEL_TOOL_PERF
163         help
164           The perf package has been moved as a Linux tools package,
165           and the option to enable it is now
166           BR2_LINUX_KERNEL_TOOL_PERF.
168 config BR2_BINUTILS_VERSION_2_22
169         bool "binutils 2.22 removed"
170         select BR2_LEGACY
171         help
172           Binutils 2.22 has been removed, using a newer version is
173           recommended.
175 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
176         bool "gpu-viv-bin-mx6q"
177         select BR2_LEGACY
178         select BR2_PACKAGE_IMX_GPU_VIV
179         help
180           Vivante graphics libraries have been renamed to
181           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
182           name.
184 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
185         depends on BR2_PACKAGE_PYTHON
186         bool "libsemanage python bindings removed"
187         help
188           This option has been removed, since the libsemanage Python
189           bindings on the target were not useful.
191 config BR2_TARGET_UBOOT_NETWORK
192         bool "U-Boot custom network settings removed"
193         select BR2_LEGACY
194         help
195           U-Boot's custom network settings options have been removed.
197 ###############################################################################
198 comment "Legacy options removed in 2015.05"
200 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
201         bool "jffs2 16kB erasesize NAND flash option renamed"
202         select BR2_LEGACY
203         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
204         help
205           The JFFS2 NAND flash options now longer include the page
206           size.
208 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
209         bool "jffs2 128kB erasesize NAND flash option renamed"
210         select BR2_LEGACY
211         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
212         help
213           The JFFS2 NAND flash options now longer include the page
214           size.
216 config BR2_PACKAGE_MONO_20
217         bool "2.0/3.5 .Net Runtime"
218         select BR2_LEGACY
219         help
220           This option no longer exists, all versions of the .Net
221           runtime are now installed.
223 config BR2_PACKAGE_MONO_40
224         bool "4.0 .Net Runtime"
225         select BR2_LEGACY
226         help
227           This option no longer exists, all versions of the .Net
228           runtime are now installed.
230 config BR2_PACKAGE_MONO_45
231         bool "4.5 .Net Runtime"
232         select BR2_LEGACY
233         help
234           This option no longer exists, all versions of the .Net
235           runtime are now installed.
237 config BR2_CIVETWEB_WITH_LUA
238         bool "civetweb lua option renamed"
239         select BR2_LEGACY
240         select BR2_PACKAGE_CIVETWEB_WITH_LUA
241         help
242           civetweb's lua option has been renamed to
243           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
244           packages name options.
246 config BR2_PACKAGE_TIFF_TIFF2PDF
247         bool "tiff utility-specific option removed"
248         select BR2_LEGACY
249         select BR2_PACKAGE_TIFF_UTILITIES
250         help
251           utility-specific options have been removed in favour of
252           the new option BR2_PACKAGE_TIFF_UTILITIES.
254 config BR2_PACKAGE_TIFF_TIFFCP
255         bool "tiff utility-specific option removed"
256         select BR2_LEGACY
257         select BR2_PACKAGE_TIFF_UTILITIES
258         help
259           utility-specific options have been removed in favour of
260           the new option BR2_PACKAGE_TIFF_UTILITIES.
262 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
263         bool "RTAI patch file path has been removed"
264         help
265           This option has never worked, so it has been removed.
267 config BR2_TARGET_GENERIC_PASSWD_DES
268         bool "Encoding passwords with DES has been removed"
269         select BR2_LEGACY
270         help
271           Paswords can now only be encoded with either of md5, sha256 or sha512.
272           The default is md5, which is stronger that DES (but still pretty weak).
274 config BR2_PACKAGE_GTK2_THEME_HICOLOR
275         bool "hicolor (default theme) is a duplicate"
276         select BR2_LEGACY
277         select BR2_PACKAGE_HICOLOR_ICON_THEME
278         help
279           The option was just a duplicate of hicolor icon theme.
281 config BR2_PACKAGE_VALGRIND_PTRCHECK
282         bool "valgrind's PTRCheck was renamed to SGCheck"
283         select BR2_LEGACY
284         select BR2_PACKAGE_VALGRIND_SGCHECK
285         help
286           PTRCheck was renamed to SGCheck in valgrind
288 ###############################################################################
289 comment "Legacy options removed in 2015.02"
291 config BR2_PACKAGE_LIBGC
292         bool "libgc package removed"
293         select BR2_LEGACY
294         select BR2_PACKAGE_BDWGC
295         help
296           libgc has been removed because we have the same package under a
297           different name, bdwgc.
299 config BR2_PACKAGE_WDCTL
300         bool "util-linux' wdctl option has been renamed"
301         select BR2_LEGACY
302         select BR2_PACKAGE_UTIL_LINUX_WDCTL
303         help
304           util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
305           to be aligned with how the other options are named.
307 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
308         bool "rpm's bzip2 payloads option has been removed"
309         select BR2_LEGACY
310         select BR2_PACKAGE_BZIP2
311         help
312           The bzip2 payloads option rely entirely on the dependant package bzip2.
313           So, you need to select it to enable this feature.
315 config BR2_PACKAGE_RPM_XZ_PAYLOADS
316         bool "rpm's xz payloads option has been removed"
317         select BR2_LEGACY
318         select BR2_PACKAGE_XZ
319         help
320           The xz payloads option rely entirely on the dependant package xz.
321           So, you need to select it to enable this feature.
323 config BR2_PACKAGE_M4
324         bool "m4 target package removed"
325         select BR2_LEGACY
326         help
327           The m4 target package has been removed, it's been
328           deprecated for some time now.
330 config BR2_PACKAGE_FLEX_BINARY
331         bool "flex binary in target option removed"
332         select BR2_LEGACY
333         help
334           The flex binary in the target option has been removed.
335           It's been deprecated for some time now and is essentially a
336           development tool which isn't very useful in the target.
338 config BR2_PACKAGE_BISON
339         bool "bison target package removed"
340         select BR2_LEGACY
341         help
342           The bison target package has been removed, it's been
343           deprecated for some time now and is essentially a development
344           tool which isn't very useful in the target.
346 config BR2_PACKAGE_GOB2
347         bool "gob2 target package removed"
348         select BR2_LEGACY
349         help
350           The gob2 target package has been removed, it's been
351           deprecated for some time now and was essentially useless
352           without a target toolchain.
354 config BR2_PACKAGE_DISTCC
355         bool "distcc target package removed"
356         select BR2_LEGACY
357         help
358           The distcc target package has been removed, it's been
359           deprecated for some time now and was essentially useless
360           without a target toolchain.
362 config BR2_PACKAGE_HASERL_VERSION_0_8_X
363         bool "haserl 0.8.x version removed"
364         select BR2_LEGACY
365         help
366           The 0.8.x version option for haserl has been removed since it
367           has been deprecated for some time now.
368           You should be able to use the 0.9.x version without issues.
370 config BR2_PACKAGE_STRONGSWAN_TOOLS
371         bool "strongswan option has been removed"
372         select BR2_LEGACY
373         select BR2_PACKAGE_STRONGSWAN_PKI
374         select BR2_PACKAGE_STRONGSWAN_SCEP
375         help
376           The tools option has been removed upstream and the different tools
377           have been split between the pki and scep options, with others
378           deprecated.
380 config BR2_PACKAGE_XBMC_ADDON_XVDR
381         bool "xbmc options have been renamed"
382         select BR2_LEGACY
383         select BR2_PACKAGE_KODI_ADDON_XVDR
384         help
385           The XBMC media center project was renamed to Kodi entertainment center
387 config BR2_PACKAGE_XBMC_PVR_ADDONS
388         bool "xbmc options have been renamed"
389         select BR2_LEGACY
390         select BR2_PACKAGE_KODI_PVR_ADDONS
391         help
392           The XBMC media center project was renamed to Kodi entertainment center
394 config BR2_PACKAGE_XBMC
395         bool "xbmc options have been renamed"
396         select BR2_LEGACY
397         select BR2_PACKAGE_KODI
398         help
399           The XBMC media center project was renamed to Kodi entertainment center
401 config BR2_PACKAGE_XBMC_ALSA_LIB
402         bool "xbmc options have been renamed"
403         select BR2_LEGACY
404         select BR2_PACKAGE_KODI_ALSA_LIB
405         help
406           The XBMC media center project was renamed to Kodi entertainment center
408 config BR2_PACKAGE_XBMC_AVAHI
409         bool "xbmc options have been renamed"
410         select BR2_LEGACY
411         select BR2_PACKAGE_KODI_AVAHI
412         help
413           The XBMC media center project was renamed to Kodi entertainment center
415 config BR2_PACKAGE_XBMC_DBUS
416         bool "xbmc options have been renamed"
417         select BR2_LEGACY
418         select BR2_PACKAGE_KODI_DBUS
419         help
420           The XBMC media center project was renamed to Kodi entertainment center
422 config BR2_PACKAGE_XBMC_LIBBLURAY
423         bool "xbmc options have been renamed"
424         select BR2_LEGACY
425         select BR2_PACKAGE_KODI_LIBBLURAY
426         help
427           The XBMC media center project was renamed to Kodi entertainment center
429 config BR2_PACKAGE_XBMC_GOOM
430         bool "xbmc options have been renamed"
431         select BR2_LEGACY
432         select BR2_PACKAGE_KODI_GOOM
433         help
434           The XBMC media center project was renamed to Kodi entertainment center
436 config BR2_PACKAGE_XBMC_RSXS
437         bool "xbmc options have been renamed"
438         select BR2_LEGACY
439         select BR2_PACKAGE_KODI_RSXS
440         help
441           The XBMC media center project was renamed to Kodi entertainment center
443 config BR2_PACKAGE_XBMC_LIBCEC
444         bool "xbmc options have been renamed"
445         select BR2_LEGACY
446         select BR2_PACKAGE_KODI_LIBCEC
447         help
448           The XBMC media center project was renamed to Kodi entertainment center
450 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
451         bool "xbmc options have been renamed"
452         select BR2_LEGACY
453         select BR2_PACKAGE_KODI_LIBMICROHTTPD
454         help
455           The XBMC media center project was renamed to Kodi entertainment center
457 config BR2_PACKAGE_XBMC_LIBNFS
458         bool "xbmc options have been renamed"
459         select BR2_LEGACY
460         select BR2_PACKAGE_KODI_LIBNFS
461         help
462           The XBMC media center project was renamed to Kodi entertainment center
464 config BR2_PACKAGE_XBMC_RTMPDUMP
465         bool "xbmc options have been renamed"
466         select BR2_LEGACY
467         select BR2_PACKAGE_KODI_RTMPDUMP
468         help
469           The XBMC media center project was renamed to Kodi entertainment center
471 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
472         bool "xbmc options have been renamed"
473         select BR2_LEGACY
474         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
475         help
476           The XBMC media center project was renamed to Kodi entertainment center
478 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
479         bool "xbmc options have been renamed"
480         select BR2_LEGACY
481         select BR2_PACKAGE_KODI_LIBSMBCLIENT
482         help
483           The XBMC media center project was renamed to Kodi entertainment center
485 config BR2_PACKAGE_XBMC_LIBTHEORA
486         bool "xbmc options have been renamed"
487         select BR2_LEGACY
488         select BR2_PACKAGE_KODI_LIBTHEORA
489         help
490           The XBMC media center project was renamed to Kodi entertainment center
492 config BR2_PACKAGE_XBMC_LIBUSB
493         bool "xbmc options have been renamed"
494         select BR2_LEGACY
495         select BR2_PACKAGE_KODI_LIBUSB
496         help
497           The XBMC media center project was renamed to Kodi entertainment center
499 config BR2_PACKAGE_XBMC_LIBVA
500         bool "xbmc options have been renamed"
501         select BR2_LEGACY
502         select BR2_PACKAGE_KODI_LIBVA
503         help
504           The XBMC media center project was renamed to Kodi entertainment center
506 config BR2_PACKAGE_XBMC_WAVPACK
507         bool "xbmc options have been renamed"
508         select BR2_LEGACY
509         select BR2_PACKAGE_KODI_WAVPACK
510         help
511           The XBMC media center project was renamed to Kodi entertainment center
513 config BR2_PREFER_STATIC_LIB
514         bool "static library option renamed"
515         select BR2_LEGACY
516         help
517           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
518           highlights the fact that the option no longer "prefers"
519           static libraries, but "enforces" static libraries (i.e
520           shared libraries are completely unused).
522           Take care of updating the type of libraries you want under the
523           "Build options" menu.
525 ###############################################################################
526 comment "Legacy options removed in 2014.11"
528 config BR2_x86_generic
529         bool "x86 generic variant has been removed"
530         select BR2_LEGACY
531         help
532           The generic x86 CPU variant has been removed. Use another
533           CPU variant instead.
535 config BR2_GCC_VERSION_4_4_X
536         bool "gcc 4.4.x has been removed"
537         select BR2_LEGACY
538         help
539           The 4.4.x version of gcc has been removed. Use a newer
540           version instead.
542 config BR2_sparc_sparchfleon
543         bool "sparchfleon CPU has been removed"
544         select BR2_LEGACY
545         help
546           The sparchfleon CPU was only supported in a patched gcc 4.4
547           version. Its support has been removed in favor of the leon3
548           CPU starting from gcc 4.8.x.
550 config BR2_sparc_sparchfleonv8
551         bool "sparchfleonv8 CPU has been removed"
552         select BR2_LEGACY
553         help
554           The sparchfleonv8 CPU was only supported in a patched gcc
555           4.4 version. Its support has been removed in favor of the
556           leon3 CPU starting from gcc 4.8.x.
558 config BR2_sparc_sparcsfleon
559         bool "sparcsfleon CPU has been removed"
560         select BR2_LEGACY
561         help
562           The sparcsfleon CPU was only supported in a patched gcc 4.4
563           version. Its support has been removed in favor of the leon3
564           CPU starting from gcc 4.8.x.
566 config BR2_sparc_sparcsfleonv8
567         bool "sparcsfleonv8 CPU has been removed"
568         select BR2_LEGACY
569         help
570           The sparcsfleonv8 CPU was only supported in a patched gcc
571           4.4 version. Its support has been removed in favor of the
572           leon3 CPU starting from gcc 4.8.x.
574 config BR2_PACKAGE_XLIB_LIBPCIACCESS
575         bool "xlib-libpciaccess option has been renamed"
576         depends on BR2_PACKAGE_XORG7
577         select BR2_LEGACY
578         select BR2_PACKAGE_LIBPCIACCESS
579         help
580           libpciaccess neither depends on X11 nor Xlib. Thus the
581           package has been renamed BR2_PACKAGE_LIBPCIACCESS
583 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
584         bool "Xceive xc5000 option has been renamed"
585         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
586         help
587           The Xceive xc5000 option now also handles older firmwares from
588           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
589           from Cresta, who bought Xceive.
591 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
592         bool "Chelsio T4 option has been renamed"
593         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
594         help
595           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
596           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
597           to better account for the fact that a T5 variant exists.
599 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
600         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
601         help
602           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
603           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
604           select it in:
605               Target packages -> Hardware handling ->
606               Firmware -> linux-firmware -> WiFi firmware ->
607               iwlwifi 3160/726x revision to use (revision 7)
609 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
610         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
611         help
612           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
613           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
614           select it in:
615               Target packages -> Hardware handling ->
616               Firmware -> linux-firmware -> WiFi firmware ->
617               iwlwifi 3160/726x revision to use (revision 8)
619 ###############################################################################
620 comment "Legacy options removed in 2014.08"
622 config BR2_PACKAGE_LIBELF
623         bool "libelf has been removed"
624         select BR2_PACKAGE_ELFUTILS
625         select BR2_LEGACY
626         help
627           The libelf package provided an old version of the libelf library
628           and is deprecated. The libelf library is now provided by the
629           elfutils package.
631 config BR2_KERNEL_HEADERS_3_8
632         bool "kernel headers version 3.8.x are no longer supported"
633         select BR2_KERNEL_HEADERS_3_9
634         select BR2_LEGACY
635         help
636           Version 3.8.x of the Linux kernel headers have been deprecated
637           for more than four buildroot releases and are now removed.
638           As an alternative, version 3.9.x of the headers have been
639           automatically selected in your configuration.
641 config BR2_PACKAGE_GETTEXT_TOOLS
642         bool "support for gettext-tools on target has been removed"
643         select BR2_LEGACY
644         help
645           The option to install the gettext utilities on the target
646           has been removed. This is not necessary as Buildroot is not
647           designed to provide a full development environment on the
648           target. gettext tools should be used on the build machine
649           instead.
651 config BR2_PACKAGE_PROCPS
652         bool "procps has been replaced by procps-ng"
653         select BR2_PACKAGE_PROCPS_NG
654         select BR2_LEGACY
655         help
656           The procps package has been replaced by the equivalent procps-ng.
658 config BR2_BINUTILS_VERSION_2_20_1
659         bool "binutils 2.20.1 has been removed"
660         select BR2_LEGACY
661         help
662           The 2.20.1 version of binutils has been removed. Use a newer
663           version instead.
665 config BR2_BINUTILS_VERSION_2_21
666         bool "binutils 2.21 has been removed"
667         select BR2_LEGACY
668         help
669           The 2.21 version of binutils has been removed. Use a newer
670           version instead.
672 config BR2_BINUTILS_VERSION_2_23_1
673         bool "binutils 2.23.1 has been removed"
674         select BR2_LEGACY
675         help
676           The 2.23.1 version of binutils has been removed. Use a newer
677           version instead.
679 config BR2_UCLIBC_VERSION_0_9_32
680         bool "uclibc 0.9.32 has been removed"
681         select BR2_LEGACY
682         help
683           The 0.9.32 version of uClibc has been removed. Use a newer
684           version instead.
686 config BR2_GCC_VERSION_4_3_X
687         bool "gcc 4.3.x has been removed"
688         select BR2_LEGACY
689         help
690           The 4.3.x version of gcc has been removed. Use a newer
691           version instead.
693 config BR2_GCC_VERSION_4_6_X
694         bool "gcc 4.6.x has been removed"
695         select BR2_LEGACY
696         help
697           The 4.6.x version of gcc has been removed. Use a newer
698           version instead.
700 config BR2_GDB_VERSION_7_4
701         bool "gdb 7.4 has been removed"
702         select BR2_LEGACY
703         help
704           The 7.4 version of gdb has been removed. Use a newer version
705           instead.
707 config BR2_GDB_VERSION_7_5
708         bool "gdb 7.5 has been removed"
709         select BR2_LEGACY
710         help
711           The 7.5 version of gdb has been removed. Use a newer version
712           instead.
714 config BR2_BUSYBOX_VERSION_1_19_X
715         bool "busybox version selection has been removed"
716         select BR2_LEGACY
717         help
718           The possibility of selecting the Busybox version has been
719           removed. Use the latest version provided by the Busybox
720           package instead.
722 config BR2_BUSYBOX_VERSION_1_20_X
723         bool "busybox version selection has been removed"
724         select BR2_LEGACY
725         help
726           The possibility of selecting the Busybox version has been
727           removed. Use the latest version provided by the Busybox
728           package instead.
730 config BR2_BUSYBOX_VERSION_1_21_X
731         bool "busybox version selection has been removed"
732         select BR2_LEGACY
733         help
734           The possibility of selecting the Busybox version has been
735           removed. Use the latest version provided by the Busybox
736           package instead.
738 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
739         bool "decode_tm6000"
740         select BR2_PACKAGE_LIBV4L_UTILS
741         select BR2_LEGACY
742         help
743           This libv4l option has been deprecated and replaced by a single
744           option to build all the libv4l utilities.
746 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
747         bool "ir-keytable"
748         select BR2_PACKAGE_LIBV4L_UTILS
749         select BR2_LEGACY
750         help
751           This libv4l option has been deprecated and replaced by a single
752           option to build all the libv4l utilities.
754 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
755         bool "v4l2-compliance"
756         select BR2_PACKAGE_LIBV4L_UTILS
757         select BR2_LEGACY
758         help
759           This libv4l option has been deprecated and replaced by a single
760           option to build all the libv4l utilities.
762 config BR2_PACKAGE_LIBV4L_V4L2_CTL
763         bool "v4l2-ctl"
764         select BR2_PACKAGE_LIBV4L_UTILS
765         select BR2_LEGACY
766         help
767           This libv4l option has been deprecated and replaced by a single
768           option to build all the libv4l utilities.
770 config BR2_PACKAGE_LIBV4L_V4L2_DBG
771         bool "v4l2-dbg"
772         select BR2_PACKAGE_LIBV4L_UTILS
773         select BR2_LEGACY
774         help
775           This libv4l option has been deprecated and replaced by a single
776           option to build all the libv4l utilities.
778 ###############################################################################
779 comment "Legacy options removed in 2014.05"
781 config BR2_PACKAGE_EVTEST_CAPTURE
782         bool "evtest-capture support removed (dropped since evtest 1.31)"
783         select BR2_LEGACY
784         help
785           Support for evtest-capture has been removed (dropped from
786           evtest package since version 1.31), use evemu package
787           instead.
789 config BR2_KERNEL_HEADERS_3_6
790         bool "kernel headers version 3.6.x are no longer supported"
791         select BR2_KERNEL_HEADERS_3_9
792         select BR2_LEGACY
793         help
794           Version 3.6.x of the Linux kernel headers have been deprecated
795           for more than four buildroot releases and are now removed.
796           As an alternative, version 3.8.x of the headers have been
797           automatically selected in your configuration.
799 config BR2_KERNEL_HEADERS_3_7
800         bool "kernel headers version 3.7.x are no longer supported"
801         select BR2_KERNEL_HEADERS_3_9
802         select BR2_LEGACY
803         help
804           Version 3.7.x of the Linux kernel headers have been deprecated
805           for more than four buildroot releases and are now removed.
806           As an alternative, version 3.8.x of the headers have been
807           automatically selected in your configuration.
809 config BR2_PACKAGE_VALA
810         bool "vala target package has been removed"
811         select BR2_LEGACY
812         help
813           The 'vala' target package has been removed since it has been
814           deprecated for more than four buildroot releases.
815           Note: the host vala package still exists.
817 config BR2_TARGET_TZ_ZONELIST
818         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
820 config BR2_PACKAGE_TZDATA_ZONELIST
821         string "tzdata: the timezone list option has been renamed"
822         help
823           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
824           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
825           menu. You'll need to select BR2_TARGET_TZ_INFO.
827 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
828         bool
829         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
830         select BR2_LEGACY
832 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
833         bool "Lua command-line editing none has been renamed"
834         select BR2_LEGACY
835         help
836           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
837           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
838           it in the corresponding choice.
840 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
841         bool "Lua command-line editing using readline has been renamed"
842         select BR2_LEGACY
843         help
844           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
845           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
846           it in the corresponding choice.
848 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
849         bool "Lua command-line editing using linenoise has been renamed"
850         select BR2_LEGACY
851         help
852           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
853           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
854           it in the corresponding choice.
856 config BR2_PACKAGE_DVB_APPS_UTILS
857         bool "dvb-apps utilities now built by default"
858         select BR2_LEGACY
859         help
860           The dvb-apps utilities are now always built when the dvb-apps
861           package is selected.
863 config BR2_KERNEL_HEADERS_SNAP
864         bool "Local Linux snapshot support removed"
865         select BR2_LEGACY
866         help
867           Support for using a custom snapshot to install the Linux
868           kernel headers has been removed.
870 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
871         bool "/dev management by udev removed"
872         select BR2_LEGACY
873         help
874           The 'udev' package has been converted to a virtual package.
875           The providers for this feature are: 'eudev', 'systemd'.
877           Therefore, if you are not using 'systemd' as init system, you
878           must choose 'Dynamic using eudev' in the '/dev management'
879           menu to get the same behaviour as in your old configuration.
881           If you are using 'systemd', its internal implementation of
882           'udev' will be used automatically.
884           You must also check the packages depending on 'udev' are still
885           selected.
887 config BR2_PACKAGE_UDEV
888         bool "udev is now a virtual package"
889         select BR2_LEGACY
890         select BR2_PACKAGE_HAS_UDEV
891         help
892           The 'udev' package has been converted to a virtual package.
893           The providers for this feature are: 'eudev', 'systemd'.
895           Your old configuration refers to packages depending on 'udev',
896           either for build or at runtime.
898           Check that a 'udev' provider is selected. If you are not using
899           'systemd' as init system, 'eudev' should be selected, which is
900           the case if '/dev management' is set to 'Dynamic using eudev'.
902           If you are using 'systemd', its internal implementation of 'udev'
903           is used.
905 config BR2_PACKAGE_UDEV_RULES_GEN
906         bool "udev rules generation handled by provider"
907         select BR2_LEGACY
908         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
909         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
910         help
911           The 'udev' package has been converted to a virtual package.
912           The providers for this feature are: 'eudev', 'systemd'.
914           If you are not using 'systemd' as init system, udev rules
915           generation will be handled by 'eudev'. Check that
916           '/dev management' is set to 'Dynamic using eudev' to get
917           the same behaviour as in your old configuration.
919           If you are using 'systemd', it internal implementation of 'udev'
920           will generate the rules.
922 config BR2_PACKAGE_UDEV_ALL_EXTRAS
923         bool "udev extras removed"
924         select BR2_LEGACY
925         help
926           The 'udev' package has been converted to a virtual package.
927           The providers for this feature are: 'eudev', 'systemd'.
929           The option to enable the extra features of 'udev' (gudev, ...)
930           has been removed. These features are automatically enabled in
931           the 'udev' providers if the dependencies are selected. For
932           example, selecting 'libglib2' will trigger the build of gudev.
934 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
935         bool "xlib-libpthread-stubs option has been renamed"
936         depends on BR2_PACKAGE_XORG7
937         select BR2_LEGACY
938         select BR2_PACKAGE_LIBPTHREAD_STUBS
939         help
940           The pthread stubs neither depend on X11 nor Xlib. Thus the
941           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
943 ###############################################################################
944 comment "Legacy options removed in 2014.02"
946 config BR2_sh2
947         bool "sh2 support removed"
948         help
949           Due to an inexistent user base and generally poor Linux
950           support, the support for the SH2 architecture was removed.
952 config BR2_sh3
953         bool "sh3 support removed"
954         help
955           Due to an inexistent user base and generally poor Linux
956           support, the support for the SH3 architecture was removed.
958 config BR2_sh3eb
959         bool "sh3eb support removed"
960         help
961           Due to an inexistent user base and generally poor Linux
962           support, the support for the SH3eb architecture was removed.
964 config BR2_KERNEL_HEADERS_3_1
965         bool "kernel headers version 3.1.x are no longer supported"
966         select BR2_KERNEL_HEADERS_3_2
967         select BR2_LEGACY
968         help
969           Version 3.1.x of the Linux kernel headers have been deprecated
970           for more than four buildroot releases and are now removed.
971           As an alternative, version 3.2.x of the headers have been
972           automatically selected in your configuration.
974 config BR2_KERNEL_HEADERS_3_3
975         bool "kernel headers version 3.3.x are no longer supported"
976         select BR2_KERNEL_HEADERS_3_4
977         select BR2_LEGACY
978         help
979           Version 3.3.x of the Linux kernel headers have been deprecated
980           for more than four buildroot releases and are now removed.
981           As an alternative, version 3.4.x of the headers have been
982           automatically selected in your configuration.
984 config BR2_KERNEL_HEADERS_3_5
985         bool "kernel headers version 3.5.x are no longer supported"
986         select BR2_KERNEL_HEADERS_3_9
987         select BR2_LEGACY
988         help
989           Version 3.5.x of the Linux kernel headers have been deprecated
990           for more than four buildroot releases and are now removed.
991           As an alternative, version 3.8.x of the headers have been
992           automatically selected in your configuration.
994 config BR2_GDB_VERSION_7_2
995         bool "gdb 7.2.x is no longer supported"
996         select BR2_GDB_VERSION_7_6
997         select BR2_LEGACY
998         help
999           Version 7.2.x of gdb has been deprecated for more than four
1000           buildroot releases and is now removed. As an alternative, gdb
1001           7.5.x has been automatically selected in your configuration.
1003 config BR2_GDB_VERSION_7_3
1004         bool "gdb 7.3.x is no longer supported"
1005         select BR2_GDB_VERSION_7_6
1006         select BR2_LEGACY
1007         help
1008           Version 7.3.x of gdb has been deprecated for more than four
1009           buildroot releases and is now removed. As an alternative, gdb
1010           7.5.x has been automatically selected in your configuration.
1012 config BR2_PACKAGE_CCACHE
1013         bool "ccache target package has been removed"
1014         select BR2_LEGACY
1015         help
1016           The 'ccache' target package has been removed since it has been
1017           deprecated for more than four buildroot releases.
1018           Note: using ccache for speeding up builds is still supported.
1020 config BR2_HAVE_DOCUMENTATION
1021         bool "support for documentation on target has been removed"
1022         select BR2_LEGACY
1023         help
1024           Support for documentation on target has been removed since it has
1025           been deprecated for more than four buildroot releases.
1027 config BR2_PACKAGE_AUTOMAKE
1028         bool "automake target package has been removed"
1029         select BR2_LEGACY
1030         help
1031           The 'automake' target package has been removed since it has been
1032           deprecated for more than four buildroot releases.
1033           Note: the host automake still exists.
1035 config BR2_PACKAGE_AUTOCONF
1036         bool "autoconf target package has been removed"
1037         select BR2_LEGACY
1038         help
1039           The 'autoconf' target package has been removed since it has been
1040           deprecated for more than four buildroot releases.
1041           Note: the host autoconf still exists.
1043 config BR2_PACKAGE_XSTROKE
1044         bool "xstroke has been removed"
1045         select BR2_LEGACY
1046         help
1047           The 'xstroke' package has been removed since it has been
1048           deprecated for more than four buildroot releases.
1050 config BR2_PACKAGE_LZMA
1051         bool "lzma target package has been removed"
1052         select BR2_LEGACY
1053         help
1054           The 'lzma' target package has been removed since it has been
1055           deprecated for more than four buildroot releases.
1056           Note: generating lzma-compressed rootfs images is still supported.
1058 config BR2_PACKAGE_TTCP
1059         bool "ttcp has been removed"
1060         select BR2_LEGACY
1061         help
1062           The 'ttcp' package has been removed since it has been
1063           deprecated for more than four buildroot releases.
1065 config BR2_PACKAGE_LIBNFC_LLCP
1066         bool "libnfc-llcp has been replaced by libllcp"
1067         select BR2_LEGACY
1068         select BR2_PACKAGE_LIBLLCP
1069         help
1070           The 'libnfc-llcp' package has been removed since upstream renamed
1071           to 'libllcp'. We have added a new package for 'libllcp' and bumped
1072           the version at the same time.
1074 config BR2_PACKAGE_MYSQL_CLIENT
1075         bool "MySQL client renamed to MySQL"
1076         select BR2_LEGACY
1077         select BR2_PACKAGE_MYSQL
1078         help
1079           The option has been renamed BR2_PACKAGE_MYSQL
1081 config BR2_PACKAGE_SQUASHFS3
1082         bool "squashfs3 has been removed"
1083         select BR2_LEGACY
1084         select BR2_PACKAGE_SQUASHFS
1085         help
1086           The 'squashfs3' package has been removed since it has been
1087           deprecated for more than four buildroot releases. Package
1088           'squashfs' (4) has been selected automatically as replacement.
1090 config BR2_TARGET_ROOTFS_SQUASHFS3
1091         bool "squashfs3 rootfs support has been removed"
1092         select BR2_LEGACY
1093         help
1094           Together with the removal of the squashfs3 package, support
1095           for squashfs3 root filesystems has been removed too. Squashfs
1096           root filesystems will automatically use squashfs4 now.
1098 config BR2_PACKAGE_NETKITBASE
1099         bool "netkitbase has been removed"
1100         select BR2_LEGACY
1101         help
1102           The 'netkitbase' package has been removed since it has been
1103           deprecated since 2012.11. This package provided 'inetd'
1104           which is replaced by 'xinet' and 'ping' which is replaced by
1105           'busybox' or 'fping'.
1107 config BR2_PACKAGE_NETKITTELNET
1108         bool "netkittelnet has been removed"
1109         select BR2_LEGACY
1110         help
1111           The 'netkittelnet' package has been removed since it has
1112           been deprecated since 2012.11. 'busybox' provides a telnet
1113           client and should be used instead.
1115 config BR2_PACKAGE_LUASQL
1116         bool "luasql has been replaced by luasql-sqlite3"
1117         select BR2_PACKAGE_LUASQL_SQLITE3
1118         select BR2_LEGACY
1119         help
1120           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
1122 config BR2_PACKAGE_LUACJSON
1123         bool "luacjson has been replaced by lua-cjson"
1124         select BR2_PACKAGE_LUA_CJSON
1125         select BR2_LEGACY
1126         help
1127           The option has been renamed BR2_PACKAGE_LUA_CJSON.
1129 ###############################################################################
1130 comment "Legacy options removed in 2013.11"
1132 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
1133         bool "lvm2's 'dmsetup only' option removed"
1134         select BR2_LEGACY
1135         help
1136           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
1137           led to problems with other packages that need the full lvm2
1138           suite. Therefore, the option has been replaced with the positive
1139           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
1141 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
1142 # in order to automatically propagate old configs
1144 config BR2_PACKAGE_QT_JAVASCRIPTCORE
1145         bool "qt javascriptcore option removed"
1146         select BR2_LEGACY
1147         help
1148           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
1149           force the activation or disabling of the JIT compiler in the
1150           Qt Javascript interpreter. However, the JIT compiler is not
1151           available for all architectures, so forcing its activation
1152           does not always work. Moreover, Qt knows by itself for which
1153           architectures JIT support is possible, and will
1154           automatically enable it if possible.
1156           Therefore, this option was in fact useless, and causing
1157           build problems when enabled on architectures for which the
1158           JIT support was not available. It has been removed, and
1159           there is no replacement: Qt will enable JIT at compile time
1160           when possible.
1162 config BR2_PACKAGE_MODULE_INIT_TOOLS
1163         bool "module-init-tools replaced by kmod"
1164         select BR2_PACKAGE_KMOD
1165         select BR2_PACKAGE_KMOD_TOOLS
1166         select BR2_LEGACY
1167         help
1168           The 'module-init-tools' package has been removed, since it
1169           has been depracated upstream and replaced by 'kmod'.
1171 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
1172         string "u-boot: the git repository URL option has been renamed"
1173         help
1174           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
1175           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
1177 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
1178         bool
1179         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
1180         select BR2_LEGACY
1182 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
1183 # boot/uboot/Config.in
1185 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
1186         string "u-boot: the git repository version option has been renamed"
1187         help
1188           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
1189           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
1191 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
1192         bool
1193         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
1194         select BR2_LEGACY
1196 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
1197 # boot/uboot/Config.in
1199 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
1200         string "linux: the git repository URL option has been renamed"
1201         help
1202           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
1203           been renamed to
1204           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
1206 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
1207         bool
1208         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
1209         select BR2_LEGACY
1211 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
1212 # linux/Config.in
1214 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
1215         string "linux: the git repository version option has been renamed"
1216         help
1217           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
1218           been renamed to
1219           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
1221 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
1222         bool
1223         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
1224         select BR2_LEGACY
1226 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
1227 # linux/Config.in
1229 ###############################################################################
1230 comment "Legacy options removed in 2013.08"
1232 config BR2_ARM_OABI
1233         bool "ARM OABI support has been removed"
1234         select BR2_LEGACY
1235         help
1236           The support for the ARM OABI was deprecated since a while,
1237           and has been removed completely from Buildroot. It is also
1238           deprecated in upstream gcc, since gcc 4.7. People should
1239           switch to EABI instead, which should not be a problem as
1240           long as you don't have pre-built OABI binaries in your
1241           system that you can't recompile.
1243 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
1244         bool "dosfstools dosfsck renamed to fsck.fat"
1245         select BR2_LEGACY
1246         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
1247         help
1248           dosfsck was renamed upstream to fsck.fat for consistency.
1250 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
1251         bool "dosfstools dosfslabel renamed to fatlabel"
1252         select BR2_LEGACY
1253         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
1254         help
1255           doslabel was renamed upstream to fatlabel for consistency.
1257 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
1258         bool "dosfstools mkdosfs renamed to mkfs.fat"
1259         select BR2_LEGACY
1260         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
1261         help
1262           mkdosfs was renamed upstream to mkfs.fat for consistency.
1264 config BR2_ELF2FLT
1265         bool "the elf2flt option has been renamed"
1266         select BR2_LEGACY
1267         help
1268           The BR2_ELF2FLT option has been renamed to
1269           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
1270           the package infrastructure.
1272 config BR2_VFP_FLOAT
1273         bool "the ARM VFP floating point option has been renamed"
1274         select BR2_LEGACY
1275         help
1276           Due to a major refactoring of the floating-point handling of
1277           the ARM architecture support, the BR2_VFP_FLOAT option has
1278           been replaced with a choice of options that allows to select
1279           between various VFP versions/capabilities.
1281 config BR2_PACKAGE_GCC_TARGET
1282         bool "gcc on the target filesystem has been removed"
1283         select BR2_LEGACY
1284         help
1285           The support for gcc in the target filesystem was deprecated
1286           since a while, and has been removed completely from Buildroot.
1287           See Buildroot's documentation for more explanations.
1289 config BR2_HAVE_DEVFILES
1290         bool "development files in target filesystem has been removed"
1291         select BR2_LEGACY
1292         help
1293           The installation of the development files in the target
1294           filesystem was deprecated since a while, and has been removed
1295           completely from Buildroot.
1296           See Buildroot's documentation for more explanations.
1298 ###############################################################################
1299 comment "Legacy options removed in 2013.05"
1301 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
1302         bool "Realtek 8192 replaced by Realtek 81xx"
1303         select BR2_LEGACY
1304         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
1305         help
1306           Now covers the whole Realtek 81xx familly: 8188/8192.
1308 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
1309         bool "Realtek 8712 replaced by Realtek 87xx"
1310         select BR2_LEGACY
1311         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
1312         help
1313           Now covers the whole Realtek 87xx familly: 8712/8723.
1315 ###############################################################################
1316 comment "Legacy options removed in 2013.02"
1318 config BR2_sa110
1319         bool "sa110 ARM target switched to strongarm"
1320         select BR2_LEGACY
1321         select BR2_strongarm
1322         help
1323           The SA110 is the same as a generic StrongARM, it just differs
1324           in speed, peripherals and cache.
1326 config BR2_sa1100
1327         bool "sa1100 ARM target switched to strongarm"
1328         select BR2_LEGACY
1329         select BR2_strongarm
1330         help
1331           The SA1100 is the same as a generic StrongARM, it just differs
1332           in speed, peripherals and cache.
1334 config BR2_PACKAGE_GDISK
1335         bool "gdisk has been replaced by gptfdisk"
1336         select BR2_LEGACY
1337         select BR2_PACKAGE_GPTFDISK
1338         help
1339           The option has been renamed BR2_PACKAGE_GPTFDISK.
1341 config BR2_PACKAGE_GDISK_GDISK
1342         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
1343         select BR2_LEGACY
1344         select BR2_PACKAGE_GPTFDISK
1345         select BR2_PACKAGE_GPTFDISK_GDISK
1346         help
1347           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
1349 config BR2_PACKAGE_GDISK_SGDISK
1350         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
1351         select BR2_LEGACY
1352         select BR2_PACKAGE_GPTFDISK
1353         select BR2_PACKAGE_GPTFDISK_SGDISK
1354         help
1355           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
1357 config BR2_PACKAGE_GDB_HOST
1358         bool "gdb for the host option has been renamed"
1359         select BR2_PACKAGE_HOST_GDB
1360         select BR2_LEGACY
1361         help
1362           Due to the conversion of gdb to the package infrastructure,
1363           the BR2_PACKAGE_GDB_HOST option has been renamed
1364           BR2_PACKAGE_HOST_GDB.
1366 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
1367         bool "DirectFB RGB16 dithering option has been renamed"
1368         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
1369         select BR2_LEGACY
1370         help
1371           The option has been renamed
1372           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
1374 config BR2_PACKAGE_DIRECTB_TESTS
1375         bool "DirectFB Tests option has been renamed"
1376         select BR2_PACKAGE_DIRECTFB_TESTS
1377         select BR2_LEGACY
1378         help
1379           The option has been renamed
1380           BR2_PACKAGE_DIRECTFB_TESTS.
1382 ###############################################################################
1383 comment "Legacy options removed in 2012.11"
1385 config BR2_PACKAGE_CUSTOMIZE
1386         bool "customize package has been removed"
1387         select BR2_LEGACY
1388         help
1389           The 'customize' special package has been removed. Instead,
1390           we recommend to create either your own packages, or use a
1391           post-build script to customize your root filesystem. See
1392           Buildroot's documentation for more details.
1394 config BR2_PACKAGE_XSERVER_xorg
1395         bool "X.org modular server"
1396         select BR2_LEGACY
1397         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
1398         help
1399           The option has been renamed
1400           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
1402 config BR2_PACKAGE_XSERVER_tinyx
1403         bool "KDrive / TinyX server"
1404         select BR2_LEGACY
1405         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
1406         help
1407           The option has been renamed
1408           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
1410 config BR2_PACKAGE_PTHREAD_STUBS
1411         bool "pthread-stubs option has been renamed"
1412         select BR2_LEGACY
1413         select BR2_PACKAGE_LIBPTHREAD_STUBS
1414         help
1415           For consistency reason, the pthread-stubs package has been
1416           renamed to libpthread-stubs.
1418 ###############################################################################
1419 comment "Legacy options removed in 2012.08"
1421 config BR2_PACKAGE_GETTEXT_STATIC
1422         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
1423         select BR2_LEGACY
1424         help
1425           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
1428 config BR2_PACKAGE_LIBINTL
1429         bool "libintl"
1430         select BR2_LEGACY
1431         select BR2_PACKAGE_GETTEXT
1432         help
1433           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
1434           only installs the library, not the executables.
1436 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
1437         bool "input-tools evtest is now a separate package evtest"
1438         select BR2_LEGACY
1439         select BR2_PACKAGE_EVTEST
1440         help
1441           The evtest program from input-tools is now a separate package.
1443 config BR2_BFIN_FDPIC
1444         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
1445         select BR2_BINFMT_FDPIC
1446         select BR2_LEGACY
1448 config BR2_BFIN_FLAT
1449         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
1450         select BR2_BINFMT_FLAT
1451         select BR2_LEGACY
1453 endmenu
1455 endif # !SKIP_LEGACY