python-six: new package
[buildroot-gz.git] / Config.in.legacy
bloba8c5dabef2d1ac1f39424b6a7ebbaa1582ff024f
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_LEGACY
56         bool
57         help
58           This option is selected automatically when your old .config uses an
59           option that no longer exists in current buildroot. In that case, the
60           build will fail. Look for config options which are selected in the
61           menu below: they no longer exist and should be replaced by something
62           else.
64 # This comment fits exactly in a 80-column display
65 comment "Legacy detected: check the content of the menu below"
66         depends on BR2_LEGACY
68 menu "Legacy config options"
70 if BR2_LEGACY
71 comment "----------------------------------------------------"
72 comment "Your old configuration uses legacy options that no  "
73 comment "longer exist in buildroot, as indicated in the menu "
74 comment "below. As long as these options stay selected, or in"
75 comment "case of string options are non-empty, the build     "
76 comment "will fail.                                          "
77 comment "*                                                   "
78 comment "Where possible, an automatic conversion from old to "
79 comment "new symbols has been performed. Before making any   "
80 comment "change in this legacy menu, make sure to exit the   "
81 comment "configuration editor a first time and save the      "
82 comment "configuration. Otherwise, the automatic conversion  "
83 comment "of symbols will be lost.                            "
84 comment "*                                                   "
85 comment "After this initial save, reopen the configuration   "
86 comment "editor, inspect the options selected below, read    "
87 comment "their help texts, and verify/update the new         "
88 comment "configuration in the corresponding configuration    "
89 comment "menus. When everything is ok, you can disable the   "
90 comment "legacy options in the menu below. Once you have     "
91 comment "disabled all legacy options, this text will         "
92 comment "disappear and you will be able to start the build.  "
93 comment "*                                                   "
94 comment "Note: at some point in the future, the oldest legacy"
95 comment "options will be removed, and configuration files    "
96 comment "that still have those options set, will fail to     "
97 comment "build, or run, in unpredictable ways.               "
98 comment "----------------------------------------------------"
99 endif
101 ###############################################################################
103 comment "Legacy options removed in 2015.02"
105 config BR2_PACKAGE_M4
106         bool "m4 target package removed"
107         select BR2_LEGACY
108         help
109           The m4 target package has been removed, it's been
110           deprecated for some time now.
112 config BR2_PACKAGE_FLEX_BINARY
113         bool "flex binary in target option removed"
114         select BR2_LEGACY
115         help
116           The flex binary in the target option has been removed.
117           It's been deprecated for some time now and is essentially a
118           development tool which isn't very useful in the target.
120 config BR2_PACKAGE_BISON
121         bool "bison target package removed"
122         select BR2_LEGACY
123         help
124           The bison target package has been removed, it's been
125           deprecated for some time now and is essentially a development
126           tool which isn't very useful in the target.
128 config BR2_PACKAGE_GOB2
129         bool "gob2 target package removed"
130         select BR2_LEGACY
131         help
132           The gob2 target package has been removed, it's been
133           deprecated for some time now and was essentially useless
134           without a target toolchain.
136 config BR2_PACKAGE_DISTCC
137         bool "distcc target package removed"
138         select BR2_LEGACY
139         help
140           The distcc target package has been removed, it's been
141           deprecated for some time now and was essentially useless
142           without a target toolchain.
144 config BR2_PACKAGE_HASERL_VERSION_0_8_X
145         bool "haserl 0.8.x version removed"
146         select BR2_LEGACY
147         help
148           The 0.8.x version option for haserl has been removed since it
149           has been deprecated for some time now.
150           You should be able to use the 0.9.x version without issues.
152 config BR2_PACKAGE_STRONGSWAN_TOOLS
153         bool "strongswan option has been removed"
154         select BR2_LEGACY
155         select BR2_PACKAGE_STRONGSWAN_PKI
156         select BR2_PACKAGE_STRONGSWAN_SCEP
157         help
158           The tools option has been removed upstream and the different tools
159           have been split between the pki and scep options, with others
160           deprecated.
162 config BR2_PACKAGE_XBMC_ADDON_XVDR
163         bool "xbmc options have been renamed"
164         select BR2_LEGACY
165         select BR2_PACKAGE_KODI_ADDON_XVDR
166         help
167           The XBMC media center project was renamed to Kodi entertainment center
169 config BR2_PACKAGE_XBMC_PVR_ADDONS
170         bool "xbmc options have been renamed"
171         select BR2_LEGACY
172         select BR2_PACKAGE_KODI_PVR_ADDONS
173         help
174           The XBMC media center project was renamed to Kodi entertainment center
176 config BR2_PACKAGE_XBMC
177         bool "xbmc options have been renamed"
178         select BR2_LEGACY
179         select BR2_PACKAGE_KODI
180         help
181           The XBMC media center project was renamed to Kodi entertainment center
183 config BR2_PACKAGE_XBMC_ALSA_LIB
184         bool "xbmc options have been renamed"
185         select BR2_LEGACY
186         select BR2_PACKAGE_KODI_ALSA_LIB
187         help
188           The XBMC media center project was renamed to Kodi entertainment center
190 config BR2_PACKAGE_XBMC_AVAHI
191         bool "xbmc options have been renamed"
192         select BR2_LEGACY
193         select BR2_PACKAGE_KODI_AVAHI
194         help
195           The XBMC media center project was renamed to Kodi entertainment center
197 config BR2_PACKAGE_XBMC_DBUS
198         bool "xbmc options have been renamed"
199         select BR2_LEGACY
200         select BR2_PACKAGE_KODI_DBUS
201         help
202           The XBMC media center project was renamed to Kodi entertainment center
204 config BR2_PACKAGE_XBMC_LIBBLURAY
205         bool "xbmc options have been renamed"
206         select BR2_LEGACY
207         select BR2_PACKAGE_KODI_LIBBLURAY
208         help
209           The XBMC media center project was renamed to Kodi entertainment center
211 config BR2_PACKAGE_XBMC_GOOM
212         bool "xbmc options have been renamed"
213         select BR2_LEGACY
214         select BR2_PACKAGE_KODI_GOOM
215         help
216           The XBMC media center project was renamed to Kodi entertainment center
218 config BR2_PACKAGE_XBMC_RSXS
219         bool "xbmc options have been renamed"
220         select BR2_LEGACY
221         select BR2_PACKAGE_KODI_RSXS
222         help
223           The XBMC media center project was renamed to Kodi entertainment center
225 config BR2_PACKAGE_XBMC_LIBCEC
226         bool "xbmc options have been renamed"
227         select BR2_LEGACY
228         select BR2_PACKAGE_KODI_LIBCEC
229         help
230           The XBMC media center project was renamed to Kodi entertainment center
232 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
233         bool "xbmc options have been renamed"
234         select BR2_LEGACY
235         select BR2_PACKAGE_KODI_LIBMICROHTTPD
236         help
237           The XBMC media center project was renamed to Kodi entertainment center
239 config BR2_PACKAGE_XBMC_LIBNFS
240         bool "xbmc options have been renamed"
241         select BR2_LEGACY
242         select BR2_PACKAGE_KODI_LIBNFS
243         help
244           The XBMC media center project was renamed to Kodi entertainment center
246 config BR2_PACKAGE_XBMC_RTMPDUMP
247         bool "xbmc options have been renamed"
248         select BR2_LEGACY
249         select BR2_PACKAGE_KODI_RTMPDUMP
250         help
251           The XBMC media center project was renamed to Kodi entertainment center
253 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
254         bool "xbmc options have been renamed"
255         select BR2_LEGACY
256         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
257         help
258           The XBMC media center project was renamed to Kodi entertainment center
260 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
261         bool "xbmc options have been renamed"
262         select BR2_LEGACY
263         select BR2_PACKAGE_KODI_LIBSMBCLIENT
264         help
265           The XBMC media center project was renamed to Kodi entertainment center
267 config BR2_PACKAGE_XBMC_LIBTHEORA
268         bool "xbmc options have been renamed"
269         select BR2_LEGACY
270         select BR2_PACKAGE_KODI_LIBTHEORA
271         help
272           The XBMC media center project was renamed to Kodi entertainment center
274 config BR2_PACKAGE_XBMC_LIBUSB
275         bool "xbmc options have been renamed"
276         select BR2_LEGACY
277         select BR2_PACKAGE_KODI_LIBUSB
278         help
279           The XBMC media center project was renamed to Kodi entertainment center
281 config BR2_PACKAGE_XBMC_LIBVA
282         bool "xbmc options have been renamed"
283         select BR2_LEGACY
284         select BR2_PACKAGE_KODI_LIBVA
285         help
286           The XBMC media center project was renamed to Kodi entertainment center
288 config BR2_PACKAGE_XBMC_WAVPACK
289         bool "xbmc options have been renamed"
290         select BR2_LEGACY
291         select BR2_PACKAGE_KODI_WAVPACK
292         help
293           The XBMC media center project was renamed to Kodi entertainment center
295 config BR2_PREFER_STATIC_LIB
296         bool "static library option renamed"
297         select BR2_LEGACY
298         help
299           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
300           highlights the fact that the option no longer "prefers"
301           static libraries, but "enforces" static libraries (i.e
302           shared libraries are completely unused).
304           Take care of updating the type of libraries you want under the
305           "Build options" menu.
307 ###############################################################################
308 comment "Legacy options removed in 2014.11"
310 config BR2_x86_generic
311         bool "x86 generic variant has been removed"
312         select BR2_LEGACY
313         help
314           The generic x86 CPU variant has been removed. Use another
315           CPU variant instead.
317 config BR2_GCC_VERSION_4_4_X
318         bool "gcc 4.4.x has been removed"
319         select BR2_LEGACY
320         help
321           The 4.4.x version of gcc has been removed. Use a newer
322           version instead.
324 config BR2_sparc_sparchfleon
325         bool "sparchfleon CPU has been removed"
326         select BR2_LEGACY
327         help
328           The sparchfleon CPU was only supported in a patched gcc 4.4
329           version. Its support has been removed in favor of the leon3
330           CPU starting from gcc 4.8.x.
332 config BR2_sparc_sparchfleonv8
333         bool "sparchfleonv8 CPU has been removed"
334         select BR2_LEGACY
335         help
336           The sparchfleonv8 CPU was only supported in a patched gcc
337           4.4 version. Its support has been removed in favor of the
338           leon3 CPU starting from gcc 4.8.x.
340 config BR2_sparc_sparcsfleon
341         bool "sparcsfleon CPU has been removed"
342         select BR2_LEGACY
343         help
344           The sparcsfleon CPU was only supported in a patched gcc 4.4
345           version. Its support has been removed in favor of the leon3
346           CPU starting from gcc 4.8.x.
348 config BR2_sparc_sparcsfleonv8
349         bool "sparcsfleonv8 CPU has been removed"
350         select BR2_LEGACY
351         help
352           The sparcsfleonv8 CPU was only supported in a patched gcc
353           4.4 version. Its support has been removed in favor of the
354           leon3 CPU starting from gcc 4.8.x.
356 config BR2_PACKAGE_XLIB_LIBPCIACCESS
357         bool "xlib-libpciaccess option has been renamed"
358         depends on BR2_PACKAGE_XORG7
359         select BR2_LEGACY
360         select BR2_PACKAGE_LIBPCIACCESS
361         help
362           libpciaccess neither depends on X11 nor Xlib. Thus the
363           package has been renamed BR2_PACKAGE_LIBPCIACCESS
365 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
366         bool "Xceive xc5000 option has been renamed"
367         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
368         help
369           The Xceive xc5000 option now also handles older firmwares from
370           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
371           from Cresta, who bought Xceive.
373 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
374         bool "Chelsio T4 option has been renamed"
375         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
376         help
377           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
378           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
379           to better account for the fact that a T5 variant exists.
381 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
382         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
383         help
384           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
385           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
386           select it in:
387               Target packages -> Hardware handling ->
388               Firmware -> linux-firmware -> WiFi firmware ->
389               iwlwifi 3160/726x revision to use (revision 7)
391 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
392         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
393         help
394           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
395           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
396           select it in:
397               Target packages -> Hardware handling ->
398               Firmware -> linux-firmware -> WiFi firmware ->
399               iwlwifi 3160/726x revision to use (revision 8)
401 ###############################################################################
402 comment "Legacy options removed in 2014.08"
404 config BR2_PACKAGE_LIBELF
405         bool "libelf has been removed"
406         select BR2_PACKAGE_ELFUTILS
407         select BR2_LEGACY
408         help
409           The libelf package provided an old version of the libelf library
410           and is deprecated. The libelf library is now provided by the
411           elfutils package.
413 config BR2_KERNEL_HEADERS_3_8
414         bool "kernel headers version 3.8.x are no longer supported"
415         select BR2_KERNEL_HEADERS_3_9
416         select BR2_LEGACY
417         help
418           Version 3.8.x of the Linux kernel headers have been deprecated
419           for more than four buildroot releases and are now removed.
420           As an alternative, version 3.9.x of the headers have been
421           automatically selected in your configuration.
423 config BR2_PACKAGE_GETTEXT_TOOLS
424         bool "support for gettext-tools on target has been removed"
425         select BR2_LEGACY
426         help
427           The option to install the gettext utilities on the target
428           has been removed. This is not necessary as Buildroot is not
429           designed to provide a full development environment on the
430           target. gettext tools should be used on the build machine
431           instead.
433 config BR2_PACKAGE_PROCPS
434         bool "procps has been replaced by procps-ng"
435         select BR2_PACKAGE_PROCPS_NG
436         select BR2_LEGACY
437         help
438           The procps package has been replaced by the equivalent procps-ng.
440 config BR2_BINUTILS_VERSION_2_20_1
441         bool "binutils 2.20.1 has been removed"
442         select BR2_LEGACY
443         help
444           The 2.20.1 version of binutils has been removed. Use a newer
445           version instead.
447 config BR2_BINUTILS_VERSION_2_21
448         bool "binutils 2.21 has been removed"
449         select BR2_LEGACY
450         help
451           The 2.21 version of binutils has been removed. Use a newer
452           version instead.
454 config BR2_BINUTILS_VERSION_2_23_1
455         bool "binutils 2.23.1 has been removed"
456         select BR2_LEGACY
457         help
458           The 2.23.1 version of binutils has been removed. Use a newer
459           version instead.
461 config BR2_UCLIBC_VERSION_0_9_32
462         bool "uclibc 0.9.32 has been removed"
463         select BR2_LEGACY
464         help
465           The 0.9.32 version of uClibc has been removed. Use a newer
466           version instead.
468 config BR2_GCC_VERSION_4_3_X
469         bool "gcc 4.3.x has been removed"
470         select BR2_LEGACY
471         help
472           The 4.3.x version of gcc has been removed. Use a newer
473           version instead.
475 config BR2_GCC_VERSION_4_6_X
476         bool "gcc 4.6.x has been removed"
477         select BR2_LEGACY
478         help
479           The 4.6.x version of gcc has been removed. Use a newer
480           version instead.
482 config BR2_GDB_VERSION_7_4
483         bool "gdb 7.4 has been removed"
484         select BR2_LEGACY
485         help
486           The 7.4 version of gdb has been removed. Use a newer version
487           instead.
489 config BR2_GDB_VERSION_7_5
490         bool "gdb 7.5 has been removed"
491         select BR2_LEGACY
492         help
493           The 7.5 version of gdb has been removed. Use a newer version
494           instead.
496 config BR2_BUSYBOX_VERSION_1_19_X
497         bool "busybox version selection has been removed"
498         select BR2_LEGACY
499         help
500           The possibility of selecting the Busybox version has been
501           removed. Use the latest version provided by the Busybox
502           package instead.
504 config BR2_BUSYBOX_VERSION_1_20_X
505         bool "busybox version selection has been removed"
506         select BR2_LEGACY
507         help
508           The possibility of selecting the Busybox version has been
509           removed. Use the latest version provided by the Busybox
510           package instead.
512 config BR2_BUSYBOX_VERSION_1_21_X
513         bool "busybox version selection has been removed"
514         select BR2_LEGACY
515         help
516           The possibility of selecting the Busybox version has been
517           removed. Use the latest version provided by the Busybox
518           package instead.
520 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
521         bool "decode_tm6000"
522         select BR2_PACKAGE_LIBV4L_UTILS
523         select BR2_LEGACY
524         help
525           This libv4l option has been deprecated and replaced by a single
526           option to build all the libv4l utilities.
528 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
529         bool "ir-keytable"
530         select BR2_PACKAGE_LIBV4L_UTILS
531         select BR2_LEGACY
532         help
533           This libv4l option has been deprecated and replaced by a single
534           option to build all the libv4l utilities.
536 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
537         bool "v4l2-compliance"
538         select BR2_PACKAGE_LIBV4L_UTILS
539         select BR2_LEGACY
540         help
541           This libv4l option has been deprecated and replaced by a single
542           option to build all the libv4l utilities.
544 config BR2_PACKAGE_LIBV4L_V4L2_CTL
545         bool "v4l2-ctl"
546         select BR2_PACKAGE_LIBV4L_UTILS
547         select BR2_LEGACY
548         help
549           This libv4l option has been deprecated and replaced by a single
550           option to build all the libv4l utilities.
552 config BR2_PACKAGE_LIBV4L_V4L2_DBG
553         bool "v4l2-dbg"
554         select BR2_PACKAGE_LIBV4L_UTILS
555         select BR2_LEGACY
556         help
557           This libv4l option has been deprecated and replaced by a single
558           option to build all the libv4l utilities.
560 ###############################################################################
561 comment "Legacy options removed in 2014.05"
563 config BR2_PACKAGE_EVTEST_CAPTURE
564         bool "evtest-capture support removed (dropped since evtest 1.31)"
565         select BR2_LEGACY
566         help
567           Support for evtest-capture has been removed (dropped from
568           evtest package since version 1.31), use evemu package
569           instead.
571 config BR2_KERNEL_HEADERS_3_6
572         bool "kernel headers version 3.6.x are no longer supported"
573         select BR2_KERNEL_HEADERS_3_9
574         select BR2_LEGACY
575         help
576           Version 3.6.x of the Linux kernel headers have been deprecated
577           for more than four buildroot releases and are now removed.
578           As an alternative, version 3.8.x of the headers have been
579           automatically selected in your configuration.
581 config BR2_KERNEL_HEADERS_3_7
582         bool "kernel headers version 3.7.x are no longer supported"
583         select BR2_KERNEL_HEADERS_3_9
584         select BR2_LEGACY
585         help
586           Version 3.7.x of the Linux kernel headers have been deprecated
587           for more than four buildroot releases and are now removed.
588           As an alternative, version 3.8.x of the headers have been
589           automatically selected in your configuration.
591 config BR2_PACKAGE_VALA
592         bool "vala target package has been removed"
593         select BR2_LEGACY
594         help
595           The 'vala' target package has been removed since it has been
596           deprecated for more than four buildroot releases.
597           Note: the host vala package still exists.
599 config BR2_TARGET_TZ_ZONELIST
600         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
602 config BR2_PACKAGE_TZDATA_ZONELIST
603         string "tzdata: the timezone list option has been renamed"
604         help
605           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
606           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
607           menu. You'll need to select BR2_TARGET_TZ_INFO.
609 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
610         bool
611         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
612         select BR2_LEGACY
614 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
615         bool "Lua command-line editing none has been renamed"
616         select BR2_LEGACY
617         help
618           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
619           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
620           it in the corresponding choice.
622 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
623         bool "Lua command-line editing using readline has been renamed"
624         select BR2_LEGACY
625         help
626           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
627           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
628           it in the corresponding choice.
630 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
631         bool "Lua command-line editing using linenoise has been renamed"
632         select BR2_LEGACY
633         help
634           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
635           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
636           it in the corresponding choice.
638 config BR2_PACKAGE_DVB_APPS_UTILS
639         bool "dvb-apps utilities now built by default"
640         select BR2_LEGACY
641         help
642           The dvb-apps utilities are now always built when the dvb-apps
643           package is selected.
645 config BR2_KERNEL_HEADERS_SNAP
646         bool "Local Linux snapshot support removed"
647         select BR2_LEGACY
648         help
649           Support for using a custom snapshot to install the Linux
650           kernel headers has been removed.
652 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
653         bool "/dev management by udev removed"
654         select BR2_LEGACY
655         help
656           The 'udev' package has been converted to a virtual package.
657           The providers for this feature are: 'eudev', 'systemd'.
659           Therefore, if you are not using 'systemd' as init system, you
660           must choose 'Dynamic using eudev' in the '/dev management'
661           menu to get the same behaviour as in your old configuration.
663           If you are using 'systemd', its internal implementation of
664           'udev' will be used automatically.
666           You must also check the packages depending on 'udev' are still
667           selected.
669 config BR2_PACKAGE_UDEV
670         bool "udev is now a virtual package"
671         select BR2_LEGACY
672         select BR2_PACKAGE_HAS_UDEV
673         help
674           The 'udev' package has been converted to a virtual package.
675           The providers for this feature are: 'eudev', 'systemd'.
677           Your old configuration refers to packages depending on 'udev',
678           either for build or at runtime.
680           Check that a 'udev' provider is selected. If you are not using
681           'systemd' as init system, 'eudev' should be selected, which is
682           the case if '/dev management' is set to 'Dynamic using eudev'.
684           If you are using 'systemd', its internal implementation of 'udev'
685           is used.
687 config BR2_PACKAGE_UDEV_RULES_GEN
688         bool "udev rules generation handled by provider"
689         select BR2_LEGACY
690         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
691         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
692         help
693           The 'udev' package has been converted to a virtual package.
694           The providers for this feature are: 'eudev', 'systemd'.
696           If you are not using 'systemd' as init system, udev rules
697           generation will be handled by 'eudev'. Check that
698           '/dev management' is set to 'Dynamic using eudev' to get
699           the same behaviour as in your old configuration.
701           If you are using 'systemd', it internal implementation of 'udev'
702           will generate the rules.
704 config BR2_PACKAGE_UDEV_ALL_EXTRAS
705         bool "udev extras removed"
706         select BR2_LEGACY
707         help
708           The 'udev' package has been converted to a virtual package.
709           The providers for this feature are: 'eudev', 'systemd'.
711           The option to enable the extra features of 'udev' (gudev, ...)
712           has been removed. These features are automatically enabled in
713           the 'udev' providers if the dependencies are selected. For
714           example, selecting 'libglib2' will trigger the build of gudev.
716 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
717         bool "xlib-libpthread-stubs option has been renamed"
718         depends on BR2_PACKAGE_XORG7
719         select BR2_LEGACY
720         select BR2_PACKAGE_LIBPTHREAD_STUBS
721         help
722           The pthread stubs neither depend on X11 nor Xlib. Thus the
723           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
725 ###############################################################################
726 comment "Legacy options removed in 2014.02"
728 config BR2_sh2
729         bool "sh2 support removed"
730         help
731           Due to an inexistent user base and generally poor Linux
732           support, the support for the SH2 architecture was removed.
734 config BR2_sh3
735         bool "sh3 support removed"
736         help
737           Due to an inexistent user base and generally poor Linux
738           support, the support for the SH3 architecture was removed.
740 config BR2_sh3eb
741         bool "sh3eb support removed"
742         help
743           Due to an inexistent user base and generally poor Linux
744           support, the support for the SH3eb architecture was removed.
746 config BR2_KERNEL_HEADERS_3_1
747         bool "kernel headers version 3.1.x are no longer supported"
748         select BR2_KERNEL_HEADERS_3_2
749         select BR2_LEGACY
750         help
751           Version 3.1.x of the Linux kernel headers have been deprecated
752           for more than four buildroot releases and are now removed.
753           As an alternative, version 3.2.x of the headers have been
754           automatically selected in your configuration.
756 config BR2_KERNEL_HEADERS_3_3
757         bool "kernel headers version 3.3.x are no longer supported"
758         select BR2_KERNEL_HEADERS_3_4
759         select BR2_LEGACY
760         help
761           Version 3.3.x of the Linux kernel headers have been deprecated
762           for more than four buildroot releases and are now removed.
763           As an alternative, version 3.4.x of the headers have been
764           automatically selected in your configuration.
766 config BR2_KERNEL_HEADERS_3_5
767         bool "kernel headers version 3.5.x are no longer supported"
768         select BR2_KERNEL_HEADERS_3_9
769         select BR2_LEGACY
770         help
771           Version 3.5.x of the Linux kernel headers have been deprecated
772           for more than four buildroot releases and are now removed.
773           As an alternative, version 3.8.x of the headers have been
774           automatically selected in your configuration.
776 config BR2_GDB_VERSION_7_2
777         bool "gdb 7.2.x is no longer supported"
778         select BR2_GDB_VERSION_7_6
779         select BR2_LEGACY
780         help
781           Version 7.2.x of gdb has been deprecated for more than four
782           buildroot releases and is now removed. As an alternative, gdb
783           7.5.x has been automatically selected in your configuration.
785 config BR2_GDB_VERSION_7_3
786         bool "gdb 7.3.x is no longer supported"
787         select BR2_GDB_VERSION_7_6
788         select BR2_LEGACY
789         help
790           Version 7.3.x of gdb has been deprecated for more than four
791           buildroot releases and is now removed. As an alternative, gdb
792           7.5.x has been automatically selected in your configuration.
794 config BR2_PACKAGE_CCACHE
795         bool "ccache target package has been removed"
796         select BR2_LEGACY
797         help
798           The 'ccache' target package has been removed since it has been
799           deprecated for more than four buildroot releases.
800           Note: using ccache for speeding up builds is still supported.
802 config BR2_HAVE_DOCUMENTATION
803         bool "support for documentation on target has been removed"
804         select BR2_LEGACY
805         help
806           Support for documentation on target has been removed since it has
807           been deprecated for more than four buildroot releases.
809 config BR2_PACKAGE_AUTOMAKE
810         bool "automake target package has been removed"
811         select BR2_LEGACY
812         help
813           The 'automake' target package has been removed since it has been
814           deprecated for more than four buildroot releases.
815           Note: the host automake still exists.
817 config BR2_PACKAGE_AUTOCONF
818         bool "autoconf target package has been removed"
819         select BR2_LEGACY
820         help
821           The 'autoconf' target package has been removed since it has been
822           deprecated for more than four buildroot releases.
823           Note: the host autoconf still exists.
825 config BR2_PACKAGE_XSTROKE
826         bool "xstroke has been removed"
827         select BR2_LEGACY
828         help
829           The 'xstroke' package has been removed since it has been
830           deprecated for more than four buildroot releases.
832 config BR2_PACKAGE_LZMA
833         bool "lzma target package has been removed"
834         select BR2_LEGACY
835         help
836           The 'lzma' target package has been removed since it has been
837           deprecated for more than four buildroot releases.
838           Note: generating lzma-compressed rootfs images is still supported.
840 config BR2_PACKAGE_TTCP
841         bool "ttcp has been removed"
842         select BR2_LEGACY
843         help
844           The 'ttcp' package has been removed since it has been
845           deprecated for more than four buildroot releases.
847 config BR2_PACKAGE_LIBNFC_LLCP
848         bool "libnfc-llcp has been replaced by libllcp"
849         select BR2_LEGACY
850         select BR2_PACKAGE_LIBLLCP
851         help
852           The 'libnfc-llcp' package has been removed since upstream renamed
853           to 'libllcp'. We have added a new package for 'libllcp' and bumped
854           the version at the same time.
856 config BR2_PACKAGE_MYSQL_CLIENT
857         bool "MySQL client renamed to MySQL"
858         select BR2_LEGACY
859         select BR2_PACKAGE_MYSQL
860         help
861           The option has been renamed BR2_PACKAGE_MYSQL
863 config BR2_PACKAGE_SQUASHFS3
864         bool "squashfs3 has been removed"
865         select BR2_LEGACY
866         select BR2_PACKAGE_SQUASHFS
867         help
868           The 'squashfs3' package has been removed since it has been
869           deprecated for more than four buildroot releases. Package
870           'squashfs' (4) has been selected automatically as replacement.
872 config BR2_TARGET_ROOTFS_SQUASHFS3
873         bool "squashfs3 rootfs support has been removed"
874         select BR2_LEGACY
875         help
876           Together with the removal of the squashfs3 package, support
877           for squashfs3 root filesystems has been removed too. Squashfs
878           root filesystems will automatically use squashfs4 now.
880 config BR2_PACKAGE_NETKITBASE
881         bool "netkitbase has been removed"
882         select BR2_LEGACY
883         help
884           The 'netkitbase' package has been removed since it has been
885           deprecated since 2012.11. This package provided 'inetd'
886           which is replaced by 'xinet' and 'ping' which is replaced by
887           'busybox' or 'fping'.
889 config BR2_PACKAGE_NETKITTELNET
890         bool "netkittelnet has been removed"
891         select BR2_LEGACY
892         help
893           The 'netkittelnet' package has been removed since it has
894           been deprecated since 2012.11. 'busybox' provides a telnet
895           client and should be used instead.
897 config BR2_PACKAGE_LUASQL
898         bool "luasql has been replaced by luasql-sqlite3"
899         select BR2_PACKAGE_LUASQL_SQLITE3
900         select BR2_LEGACY
901         help
902           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
904 config BR2_PACKAGE_LUACJSON
905         bool "luacjson has been replaced by lua-cjson"
906         select BR2_PACKAGE_LUA_CJSON
907         select BR2_LEGACY
908         help
909           The option has been renamed BR2_PACKAGE_LUA_CJSON.
911 ###############################################################################
912 comment "Legacy options removed in 2013.11"
914 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
915         bool "lvm2's 'dmsetup only' option removed"
916         select BR2_LEGACY
917         help
918           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
919           led to problems with other packages that need the full lvm2
920           suite. Therefore, the option has been replaced with the positive
921           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
923 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
924 # in order to automatically propagate old configs
926 config BR2_PACKAGE_QT_JAVASCRIPTCORE
927         bool "qt javascriptcore option removed"
928         select BR2_LEGACY
929         help
930           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
931           force the activation or disabling of the JIT compiler in the
932           Qt Javascript interpreter. However, the JIT compiler is not
933           available for all architectures, so forcing its activation
934           does not always work. Moreover, Qt knows by itself for which
935           architectures JIT support is possible, and will
936           automatically enable it if possible.
938           Therefore, this option was in fact useless, and causing
939           build problems when enabled on architectures for which the
940           JIT support was not available. It has been removed, and
941           there is no replacement: Qt will enable JIT at compile time
942           when possible.
944 config BR2_PACKAGE_MODULE_INIT_TOOLS
945         bool "module-init-tools replaced by kmod"
946         select BR2_PACKAGE_KMOD
947         select BR2_PACKAGE_KMOD_TOOLS
948         select BR2_LEGACY
949         help
950           The 'module-init-tools' package has been removed, since it
951           has been depracated upstream and replaced by 'kmod'.
953 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
954         string "u-boot: the git repository URL option has been renamed"
955         help
956           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
957           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
959 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
960         bool
961         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
962         select BR2_LEGACY
964 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
965 # boot/uboot/Config.in
967 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
968         string "u-boot: the git repository version option has been renamed"
969         help
970           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
971           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
973 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
974         bool
975         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
976         select BR2_LEGACY
978 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
979 # boot/uboot/Config.in
981 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
982         string "linux: the git repository URL option has been renamed"
983         help
984           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
985           been renamed to
986           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
988 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
989         bool
990         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
991         select BR2_LEGACY
993 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
994 # linux/Config.in
996 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
997         string "linux: the git repository version option has been renamed"
998         help
999           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
1000           been renamed to
1001           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
1003 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
1004         bool
1005         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
1006         select BR2_LEGACY
1008 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
1009 # linux/Config.in
1011 ###############################################################################
1012 comment "Legacy options removed in 2013.08"
1014 config BR2_ARM_OABI
1015         bool "ARM OABI support has been removed"
1016         select BR2_LEGACY
1017         help
1018           The support for the ARM OABI was deprecated since a while,
1019           and has been removed completely from Buildroot. It is also
1020           deprecated in upstream gcc, since gcc 4.7. People should
1021           switch to EABI instead, which should not be a problem as
1022           long as you don't have pre-built OABI binaries in your
1023           system that you can't recompile.
1025 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
1026         bool "dosfstools dosfsck renamed to fsck.fat"
1027         select BR2_LEGACY
1028         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
1029         help
1030           dosfsck was renamed upstream to fsck.fat for consistency.
1032 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
1033         bool "dosfstools dosfslabel renamed to fatlabel"
1034         select BR2_LEGACY
1035         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
1036         help
1037           doslabel was renamed upstream to fatlabel for consistency.
1039 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
1040         bool "dosfstools mkdosfs renamed to mkfs.fat"
1041         select BR2_LEGACY
1042         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
1043         help
1044           mkdosfs was renamed upstream to mkfs.fat for consistency.
1046 config BR2_ELF2FLT
1047         bool "the elf2flt option has been renamed"
1048         select BR2_LEGACY
1049         help
1050           The BR2_ELF2FLT option has been renamed to
1051           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
1052           the package infrastructure.
1054 config BR2_VFP_FLOAT
1055         bool "the ARM VFP floating point option has been renamed"
1056         select BR2_LEGACY
1057         help
1058           Due to a major refactoring of the floating-point handling of
1059           the ARM architecture support, the BR2_VFP_FLOAT option has
1060           been replaced with a choice of options that allows to select
1061           between various VFP versions/capabilities.
1063 config BR2_PACKAGE_GCC_TARGET
1064         bool "gcc on the target filesystem has been removed"
1065         select BR2_LEGACY
1066         help
1067           The support for gcc in the target filesystem was deprecated
1068           since a while, and has been removed completely from Buildroot.
1069           See Buildroot's documentation for more explanations.
1071 config BR2_HAVE_DEVFILES
1072         bool "development files in target filesystem has been removed"
1073         select BR2_LEGACY
1074         help
1075           The installation of the development files in the target
1076           filesystem was deprecated since a while, and has been removed
1077           completely from Buildroot.
1078           See Buildroot's documentation for more explanations.
1080 ###############################################################################
1081 comment "Legacy options removed in 2013.05"
1083 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
1084         bool "Realtek 8192 replaced by Realtek 81xx"
1085         select BR2_LEGACY
1086         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
1087         help
1088           Now covers the whole Realtek 81xx familly: 8188/8192.
1090 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
1091         bool "Realtek 8712 replaced by Realtek 87xx"
1092         select BR2_LEGACY
1093         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
1094         help
1095           Now covers the whole Realtek 87xx familly: 8712/8723.
1097 ###############################################################################
1098 comment "Legacy options removed in 2013.02"
1100 config BR2_sa110
1101         bool "sa110 ARM target switched to strongarm"
1102         select BR2_LEGACY
1103         select BR2_strongarm
1104         help
1105           The SA110 is the same as a generic StrongARM, it just differs
1106           in speed, peripherals and cache.
1108 config BR2_sa1100
1109         bool "sa1100 ARM target switched to strongarm"
1110         select BR2_LEGACY
1111         select BR2_strongarm
1112         help
1113           The SA1100 is the same as a generic StrongARM, it just differs
1114           in speed, peripherals and cache.
1116 config BR2_PACKAGE_GDISK
1117         bool "gdisk has been replaced by gptfdisk"
1118         select BR2_LEGACY
1119         select BR2_PACKAGE_GPTFDISK
1120         help
1121           The option has been renamed BR2_PACKAGE_GPTFDISK.
1123 config BR2_PACKAGE_GDISK_GDISK
1124         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
1125         select BR2_LEGACY
1126         select BR2_PACKAGE_GPTFDISK
1127         select BR2_PACKAGE_GPTFDISK_GDISK
1128         help
1129           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
1131 config BR2_PACKAGE_GDISK_SGDISK
1132         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
1133         select BR2_LEGACY
1134         select BR2_PACKAGE_GPTFDISK
1135         select BR2_PACKAGE_GPTFDISK_SGDISK
1136         help
1137           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
1139 config BR2_PACKAGE_GDB_HOST
1140         bool "gdb for the host option has been renamed"
1141         select BR2_PACKAGE_HOST_GDB
1142         select BR2_LEGACY
1143         help
1144           Due to the conversion of gdb to the package infrastructure,
1145           the BR2_PACKAGE_GDB_HOST option has been renamed
1146           BR2_PACKAGE_HOST_GDB.
1148 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
1149         bool "DirectFB RGB16 dithering option has been renamed"
1150         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
1151         select BR2_LEGACY
1152         help
1153           The option has been renamed
1154           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
1156 config BR2_PACKAGE_DIRECTB_TESTS
1157         bool "DirectFB Tests option has been renamed"
1158         select BR2_PACKAGE_DIRECTFB_TESTS
1159         select BR2_LEGACY
1160         help
1161           The option has been renamed
1162           BR2_PACKAGE_DIRECTFB_TESTS.
1164 ###############################################################################
1165 comment "Legacy options removed in 2012.11"
1167 config BR2_PACKAGE_CUSTOMIZE
1168         bool "customize package has been removed"
1169         select BR2_LEGACY
1170         help
1171           The 'customize' special package has been removed. Instead,
1172           we recommend to create either your own packages, or use a
1173           post-build script to customize your root filesystem. See
1174           Buildroot's documentation for more details.
1176 config BR2_PACKAGE_XSERVER_xorg
1177         bool "X.org modular server"
1178         select BR2_LEGACY
1179         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
1180         help
1181           The option has been renamed
1182           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
1184 config BR2_PACKAGE_XSERVER_tinyx
1185         bool "KDrive / TinyX server"
1186         select BR2_LEGACY
1187         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
1188         help
1189           The option has been renamed
1190           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
1192 config BR2_PACKAGE_PTHREAD_STUBS
1193         bool "pthread-stubs option has been renamed"
1194         select BR2_LEGACY
1195         select BR2_PACKAGE_LIBPTHREAD_STUBS
1196         help
1197           For consistency reason, the pthread-stubs package has been
1198           renamed to libpthread-stubs.
1200 ###############################################################################
1201 comment "Legacy options removed in 2012.08"
1203 config BR2_PACKAGE_GETTEXT_STATIC
1204         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
1205         select BR2_LEGACY
1206         help
1207           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
1210 config BR2_PACKAGE_LIBINTL
1211         bool "libintl"
1212         select BR2_LEGACY
1213         select BR2_PACKAGE_GETTEXT
1214         help
1215           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
1216           only installs the library, not the executables.
1218 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
1219         bool "input-tools evtest is now a separate package evtest"
1220         select BR2_LEGACY
1221         select BR2_PACKAGE_EVTEST
1222         help
1223           The evtest program from input-tools is now a separate package.
1225 config BR2_BFIN_FDPIC
1226         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
1227         select BR2_BINFMT_FDPIC
1228         select BR2_LEGACY
1230 config BR2_BFIN_FLAT
1231         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
1232         select BR2_BINFMT_FLAT
1233         select BR2_LEGACY
1235 endmenu