]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in.legacy
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / Config.in.legacy
1 #
2 # Config.in.legacy - support for backward compatibility
3 #
4 # When an existing Config.in symbol is removed, it should be added again in
5 # this file, and take appropriate action to approximate backward compatibility.
6 # This will make the transition for the user more convenient.
7 #
8 # When adding legacy symbols to this file, add them to the front. The oldest
9 # symbols will be removed again after about two years.
10 #
11 # The symbol should be copied as-is from the place where it was previously
12 # defined, but the help text should be removed or replaced with something that
13 # explains how to fix it.
14 #
15 # For bool options, the old symbol should select BR2_LEGACY, so that the user
16 # is informed at build-time about selected legacy options.
17 # If there is an equivalent (set of) new symbols, these should be select'ed by
18 # the old symbol for backwards compatibility.
19 #
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.
29 #
30 # [Example: renaming a string option from FOO to BAR]
31 # original symbol:
32 #     config BR2_FOO_STRING
33 #             string "Some foo string"
34 #
35 # becomes:
36 #     config BR2_BAR_STRING
37 #             string "Some bar string"
38 #             default BR2_FOO_STRING if BR2_FOO_STRING != ""  # legacy
39 #
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>
45 #
46 #     config BR2_FOO_STRING_WRAP
47 #             bool
48 #             default y if BR2_FOO_STRING != ""
49 #             select BR2_LEGACY
50 #
51 #     # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
52 #
53 # [End of example]
54
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.
63
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
67
68 menu "Legacy config options"
69
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
100
101 ###############################################################################
102
103 comment "Legacy options removed in 2015.02"
104
105 config BR2_PREFER_STATIC_LIB
106         bool "static library option renamed"
107         select BR2_STATIC_LIBS
108         help
109           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
110           highlights the fact that the option no longer "prefers"
111           static libraries, but "enforces" static libraries (i.e
112           shared libraries are completely unused).
113
114 comment "Legacy options removed in 2014.11"
115
116 config BR2_x86_generic
117         bool "x86 generic variant has been removed"
118         select BR2_LEGACY
119         help
120           The generic x86 CPU variant has been removed. Use another
121           CPU variant instead.
122
123 config BR2_GCC_VERSION_4_4_X
124         bool "gcc 4.4.x has been removed"
125         select BR2_LEGACY
126         help
127           The 4.4.x version of gcc has been removed. Use a newer
128           version instead.
129
130 config BR2_sparc_sparchfleon
131         bool "sparchfleon CPU has been removed"
132         select BR2_LEGACY
133         help
134           The sparchfleon CPU was only supported in a patched gcc 4.4
135           version. Its support has been removed in favor of the leon3
136           CPU starting from gcc 4.8.x.
137
138 config BR2_sparc_sparchfleonv8
139         bool "sparchfleonv8 CPU has been removed"
140         select BR2_LEGACY
141         help
142           The sparchfleonv8 CPU was only supported in a patched gcc
143           4.4 version. Its support has been removed in favor of the
144           leon3 CPU starting from gcc 4.8.x.
145
146 config BR2_sparc_sparcsfleon
147         bool "sparcsfleon CPU has been removed"
148         select BR2_LEGACY
149         help
150           The sparcsfleon CPU was only supported in a patched gcc 4.4
151           version. Its support has been removed in favor of the leon3
152           CPU starting from gcc 4.8.x.
153
154 config BR2_sparc_sparcsfleonv8
155         bool "sparcsfleonv8 CPU has been removed"
156         select BR2_LEGACY
157         help
158           The sparcsfleonv8 CPU was only supported in a patched gcc
159           4.4 version. Its support has been removed in favor of the
160           leon3 CPU starting from gcc 4.8.x.
161
162 config BR2_PACKAGE_XLIB_LIBPCIACCESS
163         bool "xlib-libpciaccess option has been renamed"
164         depends on BR2_PACKAGE_XORG7
165         select BR2_LEGACY
166         select BR2_PACKAGE_LIBPCIACCESS
167         help
168           libpciaccess neither depends on X11 nor Xlib. Thus the
169           package has been renamed BR2_PACKAGE_LIBPCIACCESS
170
171 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
172         bool "Xceive xc5000 option has been renamed"
173         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
174         help
175           The Xceive xc5000 option now also handles older firmwares from
176           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
177           from Cresta, who bought Xceive.
178
179 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
180         bool "Chelsio T4 option has been renamed"
181         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
182         help
183           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
184           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
185           to better account for the fact that a T5 variant exists.
186
187 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
188         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
189         help
190           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
191           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
192           select it in:
193               Target packages -> Hardware handling ->
194               Firmware -> linux-firmware -> WiFi firmware ->
195               iwlwifi 3160/726x revision to use (revision 7)
196
197 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
198         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
199         help
200           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
201           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
202           select it in:
203               Target packages -> Hardware handling ->
204               Firmware -> linux-firmware -> WiFi firmware ->
205               iwlwifi 3160/726x revision to use (revision 8)
206
207 ###############################################################################
208 comment "Legacy options removed in 2014.08"
209
210 config BR2_PACKAGE_LIBELF
211         bool "libelf has been removed"
212         select BR2_PACKAGE_ELFUTILS
213         select BR2_LEGACY
214         help
215           The libelf package provided an old version of the libelf library
216           and is deprecated. The libelf library is now provided by the
217           elfutils package.
218
219 config BR2_KERNEL_HEADERS_3_8
220         bool "kernel headers version 3.8.x are no longer supported"
221         select BR2_KERNEL_HEADERS_3_9
222         select BR2_LEGACY
223         help
224           Version 3.8.x of the Linux kernel headers have been deprecated
225           for more than four buildroot releases and are now removed.
226           As an alternative, version 3.9.x of the headers have been
227           automatically selected in your configuration.
228
229 config BR2_PACKAGE_GETTEXT_TOOLS
230         bool "support for gettext-tools on target has been removed"
231         select BR2_LEGACY
232         help
233           The option to install the gettext utilities on the target
234           has been removed. This is not necessary as Buildroot is not
235           designed to provide a full development environment on the
236           target. gettext tools should be used on the build machine
237           instead.
238
239 config BR2_PACKAGE_PROCPS
240         bool "procps has been replaced by procps-ng"
241         select BR2_PACKAGE_PROCPS_NG
242         select BR2_LEGACY
243         help
244           The procps package has been replaced by the equivalent procps-ng.
245
246 config BR2_BINUTILS_VERSION_2_20_1
247         bool "binutils 2.20.1 has been removed"
248         select BR2_LEGACY
249         help
250           The 2.20.1 version of binutils has been removed. Use a newer
251           version instead.
252
253 config BR2_BINUTILS_VERSION_2_21
254         bool "binutils 2.21 has been removed"
255         select BR2_LEGACY
256         help
257           The 2.21 version of binutils has been removed. Use a newer
258           version instead.
259
260 config BR2_BINUTILS_VERSION_2_23_1
261         bool "binutils 2.23.1 has been removed"
262         select BR2_LEGACY
263         help
264           The 2.23.1 version of binutils has been removed. Use a newer
265           version instead.
266
267 config BR2_UCLIBC_VERSION_0_9_32
268         bool "uclibc 0.9.32 has been removed"
269         select BR2_LEGACY
270         help
271           The 0.9.32 version of uClibc has been removed. Use a newer
272           version instead.
273
274 config BR2_GCC_VERSION_4_3_X
275         bool "gcc 4.3.x has been removed"
276         select BR2_LEGACY
277         help
278           The 4.3.x version of gcc has been removed. Use a newer
279           version instead.
280
281 config BR2_GCC_VERSION_4_6_X
282         bool "gcc 4.6.x has been removed"
283         select BR2_LEGACY
284         help
285           The 4.6.x version of gcc has been removed. Use a newer
286           version instead.
287
288 config BR2_GDB_VERSION_7_4
289         bool "gdb 7.4 has been removed"
290         select BR2_LEGACY
291         help
292           The 7.4 version of gdb has been removed. Use a newer version
293           instead.
294
295 config BR2_GDB_VERSION_7_5
296         bool "gdb 7.5 has been removed"
297         select BR2_LEGACY
298         help
299           The 7.5 version of gdb has been removed. Use a newer version
300           instead.
301
302 config BR2_BUSYBOX_VERSION_1_19_X
303         bool "busybox version selection has been removed"
304         select BR2_LEGACY
305         help
306           The possibility of selecting the Busybox version has been
307           removed. Use the latest version provided by the Busybox
308           package instead.
309
310 config BR2_BUSYBOX_VERSION_1_20_X
311         bool "busybox version selection has been removed"
312         select BR2_LEGACY
313         help
314           The possibility of selecting the Busybox version has been
315           removed. Use the latest version provided by the Busybox
316           package instead.
317
318 config BR2_BUSYBOX_VERSION_1_21_X
319         bool "busybox version selection has been removed"
320         select BR2_LEGACY
321         help
322           The possibility of selecting the Busybox version has been
323           removed. Use the latest version provided by the Busybox
324           package instead.
325
326 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
327         bool "decode_tm6000"
328         select BR2_PACKAGE_LIBV4L_UTILS
329         select BR2_LEGACY
330         help
331           This libv4l option has been deprecated and replaced by a single
332           option to build all the libv4l utilities.
333
334 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
335         bool "ir-keytable"
336         select BR2_PACKAGE_LIBV4L_UTILS
337         select BR2_LEGACY
338         help
339           This libv4l option has been deprecated and replaced by a single
340           option to build all the libv4l utilities.
341
342 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
343         bool "v4l2-compliance"
344         select BR2_PACKAGE_LIBV4L_UTILS
345         select BR2_LEGACY
346         help
347           This libv4l option has been deprecated and replaced by a single
348           option to build all the libv4l utilities.
349
350 config BR2_PACKAGE_LIBV4L_V4L2_CTL
351         bool "v4l2-ctl"
352         select BR2_PACKAGE_LIBV4L_UTILS
353         select BR2_LEGACY
354         help
355           This libv4l option has been deprecated and replaced by a single
356           option to build all the libv4l utilities.
357
358 config BR2_PACKAGE_LIBV4L_V4L2_DBG
359         bool "v4l2-dbg"
360         select BR2_PACKAGE_LIBV4L_UTILS
361         select BR2_LEGACY
362         help
363           This libv4l option has been deprecated and replaced by a single
364           option to build all the libv4l utilities.
365
366 ###############################################################################
367 comment "Legacy options removed in 2014.05"
368
369 config BR2_PACKAGE_EVTEST_CAPTURE
370         bool "evtest-capture support removed (dropped since evtest 1.31)"
371         select BR2_LEGACY
372         help
373           Support for evtest-capture has been removed (dropped from
374           evtest package since version 1.31), use evemu package
375           instead.
376
377 config BR2_KERNEL_HEADERS_3_6
378         bool "kernel headers version 3.6.x are no longer supported"
379         select BR2_KERNEL_HEADERS_3_9
380         select BR2_LEGACY
381         help
382           Version 3.6.x of the Linux kernel headers have been deprecated
383           for more than four buildroot releases and are now removed.
384           As an alternative, version 3.8.x of the headers have been
385           automatically selected in your configuration.
386
387 config BR2_KERNEL_HEADERS_3_7
388         bool "kernel headers version 3.7.x are no longer supported"
389         select BR2_KERNEL_HEADERS_3_9
390         select BR2_LEGACY
391         help
392           Version 3.7.x of the Linux kernel headers have been deprecated
393           for more than four buildroot releases and are now removed.
394           As an alternative, version 3.8.x of the headers have been
395           automatically selected in your configuration.
396
397 config BR2_PACKAGE_VALA
398         bool "vala target package has been removed"
399         select BR2_LEGACY
400         help
401           The 'vala' target package has been removed since it has been
402           deprecated for more than four buildroot releases.
403           Note: the host vala package still exists.
404
405 config BR2_TARGET_TZ_ZONELIST
406         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
407
408 config BR2_PACKAGE_TZDATA_ZONELIST
409         string "tzdata: the timezone list option has been renamed"
410         help
411           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
412           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
413           menu. You'll need to select BR2_TARGET_TZ_INFO.
414
415 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
416         bool
417         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
418         select BR2_LEGACY
419
420 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
421         bool "Lua command-line editing none has been renamed"
422         select BR2_LEGACY
423         help
424           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
425           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
426           it in the corresponding choice.
427
428 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
429         bool "Lua command-line editing using readline has been renamed"
430         select BR2_LEGACY
431         help
432           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
433           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
434           it in the corresponding choice.
435
436 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
437         bool "Lua command-line editing using linenoise has been renamed"
438         select BR2_LEGACY
439         help
440           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
441           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
442           it in the corresponding choice.
443
444 config BR2_PACKAGE_DVB_APPS_UTILS
445         bool "dvb-apps utilities now built by default"
446         select BR2_LEGACY
447         help
448           The dvb-apps utilities are now always built when the dvb-apps
449           package is selected.
450
451 config BR2_KERNEL_HEADERS_SNAP
452         bool "Local Linux snapshot support removed"
453         select BR2_LEGACY
454         help
455           Support for using a custom snapshot to install the Linux
456           kernel headers has been removed.
457
458 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
459         bool "/dev management by udev removed"
460         select BR2_LEGACY
461         help
462           The 'udev' package has been converted to a virtual package.
463           The providers for this feature are: 'eudev', 'systemd'.
464
465           Therefore, if you are not using 'systemd' as init system, you
466           must choose 'Dynamic using eudev' in the '/dev management'
467           menu to get the same behaviour as in your old configuration.
468
469           If you are using 'systemd', its internal implementation of
470           'udev' will be used automatically.
471
472           You must also check the packages depending on 'udev' are still
473           selected.
474
475 config BR2_PACKAGE_UDEV
476         bool "udev is now a virtual package"
477         select BR2_LEGACY
478         select BR2_PACKAGE_HAS_UDEV
479         help
480           The 'udev' package has been converted to a virtual package.
481           The providers for this feature are: 'eudev', 'systemd'.
482
483           Your old configuration refers to packages depending on 'udev',
484           either for build or at runtime.
485
486           Check that a 'udev' provider is selected. If you are not using
487           'systemd' as init system, 'eudev' should be selected, which is
488           the case if '/dev management' is set to 'Dynamic using eudev'.
489
490           If you are using 'systemd', its internal implementation of 'udev'
491           is used.
492
493 config BR2_PACKAGE_UDEV_RULES_GEN
494         bool "udev rules generation handled by provider"
495         select BR2_LEGACY
496         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
497         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
498         help
499           The 'udev' package has been converted to a virtual package.
500           The providers for this feature are: 'eudev', 'systemd'.
501
502           If you are not using 'systemd' as init system, udev rules
503           generation will be handled by 'eudev'. Check that
504           '/dev management' is set to 'Dynamic using eudev' to get
505           the same behaviour as in your old configuration.
506
507           If you are using 'systemd', it internal implementation of 'udev'
508           will generate the rules.
509
510 config BR2_PACKAGE_UDEV_ALL_EXTRAS
511         bool "udev extras removed"
512         select BR2_LEGACY
513         help
514           The 'udev' package has been converted to a virtual package.
515           The providers for this feature are: 'eudev', 'systemd'.
516
517           The option to enable the extra features of 'udev' (gudev, ...)
518           has been removed. These features are automatically enabled in
519           the 'udev' providers if the dependencies are selected. For
520           example, selecting 'libglib2' will trigger the build of gudev.
521
522 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
523         bool "xlib-libpthread-stubs option has been renamed"
524         depends on BR2_PACKAGE_XORG7
525         select BR2_LEGACY
526         select BR2_PACKAGE_LIBPTHREAD_STUBS
527         help
528           The pthread stubs neither depend on X11 nor Xlib. Thus the
529           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
530
531 ###############################################################################
532 comment "Legacy options removed in 2014.02"
533
534 config BR2_sh2
535         bool "sh2 support removed"
536         help
537           Due to an inexistent user base and generally poor Linux
538           support, the support for the SH2 architecture was removed.
539
540 config BR2_sh3
541         bool "sh3 support removed"
542         help
543           Due to an inexistent user base and generally poor Linux
544           support, the support for the SH3 architecture was removed.
545
546 config BR2_sh3eb
547         bool "sh3eb support removed"
548         help
549           Due to an inexistent user base and generally poor Linux
550           support, the support for the SH3eb architecture was removed.
551
552 config BR2_KERNEL_HEADERS_3_1
553         bool "kernel headers version 3.1.x are no longer supported"
554         select BR2_KERNEL_HEADERS_3_2
555         select BR2_LEGACY
556         help
557           Version 3.1.x of the Linux kernel headers have been deprecated
558           for more than four buildroot releases and are now removed.
559           As an alternative, version 3.2.x of the headers have been
560           automatically selected in your configuration.
561
562 config BR2_KERNEL_HEADERS_3_3
563         bool "kernel headers version 3.3.x are no longer supported"
564         select BR2_KERNEL_HEADERS_3_4
565         select BR2_LEGACY
566         help
567           Version 3.3.x of the Linux kernel headers have been deprecated
568           for more than four buildroot releases and are now removed.
569           As an alternative, version 3.4.x of the headers have been
570           automatically selected in your configuration.
571
572 config BR2_KERNEL_HEADERS_3_5
573         bool "kernel headers version 3.5.x are no longer supported"
574         select BR2_KERNEL_HEADERS_3_9
575         select BR2_LEGACY
576         help
577           Version 3.5.x of the Linux kernel headers have been deprecated
578           for more than four buildroot releases and are now removed.
579           As an alternative, version 3.8.x of the headers have been
580           automatically selected in your configuration.
581
582 config BR2_GDB_VERSION_7_2
583         bool "gdb 7.2.x is no longer supported"
584         select BR2_GDB_VERSION_7_6
585         select BR2_LEGACY
586         help
587           Version 7.2.x of gdb has been deprecated for more than four
588           buildroot releases and is now removed. As an alternative, gdb
589           7.5.x has been automatically selected in your configuration.
590
591 config BR2_GDB_VERSION_7_3
592         bool "gdb 7.3.x is no longer supported"
593         select BR2_GDB_VERSION_7_6
594         select BR2_LEGACY
595         help
596           Version 7.3.x of gdb has been deprecated for more than four
597           buildroot releases and is now removed. As an alternative, gdb
598           7.5.x has been automatically selected in your configuration.
599
600 config BR2_PACKAGE_CCACHE
601         bool "ccache target package has been removed"
602         select BR2_LEGACY
603         help
604           The 'ccache' target package has been removed since it has been
605           deprecated for more than four buildroot releases.
606           Note: using ccache for speeding up builds is still supported.
607
608 config BR2_HAVE_DOCUMENTATION
609         bool "support for documentation on target has been removed"
610         select BR2_LEGACY
611         help
612           Support for documentation on target has been removed since it has
613           been deprecated for more than four buildroot releases.
614
615 config BR2_PACKAGE_AUTOMAKE
616         bool "automake target package has been removed"
617         select BR2_LEGACY
618         help
619           The 'automake' target package has been removed since it has been
620           deprecated for more than four buildroot releases.
621           Note: the host automake still exists.
622
623 config BR2_PACKAGE_AUTOCONF
624         bool "autoconf target package has been removed"
625         select BR2_LEGACY
626         help
627           The 'autoconf' target package has been removed since it has been
628           deprecated for more than four buildroot releases.
629           Note: the host autoconf still exists.
630
631 config BR2_PACKAGE_XSTROKE
632         bool "xstroke has been removed"
633         select BR2_LEGACY
634         help
635           The 'xstroke' package has been removed since it has been
636           deprecated for more than four buildroot releases.
637
638 config BR2_PACKAGE_LZMA
639         bool "lzma target package has been removed"
640         select BR2_LEGACY
641         help
642           The 'lzma' target package has been removed since it has been
643           deprecated for more than four buildroot releases.
644           Note: generating lzma-compressed rootfs images is still supported.
645
646 config BR2_PACKAGE_TTCP
647         bool "ttcp has been removed"
648         select BR2_LEGACY
649         help
650           The 'ttcp' package has been removed since it has been
651           deprecated for more than four buildroot releases.
652
653 config BR2_PACKAGE_LIBNFC_LLCP
654         bool "libnfc-llcp has been replaced by libllcp"
655         select BR2_LEGACY
656         select BR2_PACKAGE_LIBLLCP
657         help
658           The 'libnfc-llcp' package has been removed since upstream renamed
659           to 'libllcp'. We have added a new package for 'libllcp' and bumped
660           the version at the same time.
661
662 config BR2_PACKAGE_MYSQL_CLIENT
663         bool "MySQL client renamed to MySQL"
664         select BR2_LEGACY
665         select BR2_PACKAGE_MYSQL
666         help
667           The option has been renamed BR2_PACKAGE_MYSQL
668
669 config BR2_PACKAGE_SQUASHFS3
670         bool "squashfs3 has been removed"
671         select BR2_LEGACY
672         select BR2_PACKAGE_SQUASHFS
673         help
674           The 'squashfs3' package has been removed since it has been
675           deprecated for more than four buildroot releases. Package
676           'squashfs' (4) has been selected automatically as replacement.
677
678 config BR2_TARGET_ROOTFS_SQUASHFS3
679         bool "squashfs3 rootfs support has been removed"
680         select BR2_LEGACY
681         help
682           Together with the removal of the squashfs3 package, support
683           for squashfs3 root filesystems has been removed too. Squashfs
684           root filesystems will automatically use squashfs4 now.
685
686 config BR2_PACKAGE_NETKITBASE
687         bool "netkitbase has been removed"
688         select BR2_LEGACY
689         help
690           The 'netkitbase' package has been removed since it has been
691           deprecated since 2012.11. This package provided 'inetd'
692           which is replaced by 'xinet' and 'ping' which is replaced by
693           'busybox' or 'fping'.
694
695 config BR2_PACKAGE_NETKITTELNET
696         bool "netkittelnet has been removed"
697         select BR2_LEGACY
698         help
699           The 'netkittelnet' package has been removed since it has
700           been deprecated since 2012.11. 'busybox' provides a telnet
701           client and should be used instead.
702
703 config BR2_PACKAGE_LUASQL
704         bool "luasql has been replaced by luasql-sqlite3"
705         select BR2_PACKAGE_LUASQL_SQLITE3
706         select BR2_LEGACY
707         help
708           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
709
710 config BR2_PACKAGE_LUACJSON
711         bool "luacjson has been replaced by lua-cjson"
712         select BR2_PACKAGE_LUA_CJSON
713         select BR2_LEGACY
714         help
715           The option has been renamed BR2_PACKAGE_LUA_CJSON.
716
717 ###############################################################################
718 comment "Legacy options removed in 2013.11"
719
720 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
721         bool "lvm2's 'dmsetup only' option removed"
722         select BR2_LEGACY
723         help
724           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
725           led to problems with other packages that need the full lvm2
726           suite. Therefore, the option has been replaced with the positive
727           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
728
729 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
730 # in order to automatically propagate old configs
731
732 config BR2_PACKAGE_QT_JAVASCRIPTCORE
733         bool "qt javascriptcore option removed"
734         select BR2_LEGACY
735         help
736           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
737           force the activation or disabling of the JIT compiler in the
738           Qt Javascript interpreter. However, the JIT compiler is not
739           available for all architectures, so forcing its activation
740           does not always work. Moreover, Qt knows by itself for which
741           architectures JIT support is possible, and will
742           automatically enable it if possible.
743
744           Therefore, this option was in fact useless, and causing
745           build problems when enabled on architectures for which the
746           JIT support was not available. It has been removed, and
747           there is no replacement: Qt will enable JIT at compile time
748           when possible.
749
750 config BR2_PACKAGE_MODULE_INIT_TOOLS
751         bool "module-init-tools replaced by kmod"
752         select BR2_PACKAGE_KMOD
753         select BR2_PACKAGE_KMOD_TOOLS
754         select BR2_LEGACY
755         help
756           The 'module-init-tools' package has been removed, since it
757           has been depracated upstream and replaced by 'kmod'.
758
759 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
760         string "u-boot: the git repository URL option has been renamed"
761         help
762           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
763           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
764
765 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
766         bool
767         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
768         select BR2_LEGACY
769
770 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
771 # boot/uboot/Config.in
772
773 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
774         string "u-boot: the git repository version option has been renamed"
775         help
776           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
777           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
778
779 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
780         bool
781         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
782         select BR2_LEGACY
783
784 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
785 # boot/uboot/Config.in
786
787 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
788         string "linux: the git repository URL option has been renamed"
789         help
790           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
791           been renamed to
792           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
793
794 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
795         bool
796         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
797         select BR2_LEGACY
798
799 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
800 # linux/Config.in
801
802 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
803         string "linux: the git repository version option has been renamed"
804         help
805           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
806           been renamed to
807           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
808
809 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
810         bool
811         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
812         select BR2_LEGACY
813
814 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
815 # linux/Config.in
816
817 ###############################################################################
818 comment "Legacy options removed in 2013.08"
819
820 config BR2_ARM_OABI
821         bool "ARM OABI support has been removed"
822         select BR2_LEGACY
823         help
824           The support for the ARM OABI was deprecated since a while,
825           and has been removed completely from Buildroot. It is also
826           deprecated in upstream gcc, since gcc 4.7. People should
827           switch to EABI instead, which should not be a problem as
828           long as you don't have pre-built OABI binaries in your
829           system that you can't recompile.
830
831 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
832         bool "dosfstools dosfsck renamed to fsck.fat"
833         select BR2_LEGACY
834         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
835         help
836           dosfsck was renamed upstream to fsck.fat for consistency.
837
838 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
839         bool "dosfstools dosfslabel renamed to fatlabel"
840         select BR2_LEGACY
841         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
842         help
843           doslabel was renamed upstream to fatlabel for consistency.
844
845 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
846         bool "dosfstools mkdosfs renamed to mkfs.fat"
847         select BR2_LEGACY
848         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
849         help
850           mkdosfs was renamed upstream to mkfs.fat for consistency.
851
852 config BR2_ELF2FLT
853         bool "the elf2flt option has been renamed"
854         select BR2_LEGACY
855         help
856           The BR2_ELF2FLT option has been renamed to
857           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
858           the package infrastructure.
859
860 config BR2_VFP_FLOAT
861         bool "the ARM VFP floating point option has been renamed"
862         select BR2_LEGACY
863         help
864           Due to a major refactoring of the floating-point handling of
865           the ARM architecture support, the BR2_VFP_FLOAT option has
866           been replaced with a choice of options that allows to select
867           between various VFP versions/capabilities.
868
869 config BR2_PACKAGE_GCC_TARGET
870         bool "gcc on the target filesystem has been removed"
871         select BR2_LEGACY
872         help
873           The support for gcc in the target filesystem was deprecated
874           since a while, and has been removed completely from Buildroot.
875           See Buildroot's documentation for more explanations.
876
877 config BR2_HAVE_DEVFILES
878         bool "development files in target filesystem has been removed"
879         select BR2_LEGACY
880         help
881           The installation of the development files in the target
882           filesystem was deprecated since a while, and has been removed
883           completely from Buildroot.
884           See Buildroot's documentation for more explanations.
885
886 ###############################################################################
887 comment "Legacy options removed in 2013.05"
888
889 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
890         bool "Realtek 8192 replaced by Realtek 81xx"
891         select BR2_LEGACY
892         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
893         help
894           Now covers the whole Realtek 81xx familly: 8188/8192.
895
896 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
897         bool "Realtek 8712 replaced by Realtek 87xx"
898         select BR2_LEGACY
899         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
900         help
901           Now covers the whole Realtek 87xx familly: 8712/8723.
902
903 ###############################################################################
904 comment "Legacy options removed in 2013.02"
905
906 config BR2_sa110
907         bool "sa110 ARM target switched to strongarm"
908         select BR2_LEGACY
909         select BR2_strongarm
910         help
911           The SA110 is the same as a generic StrongARM, it just differs
912           in speed, peripherals and cache.
913
914 config BR2_sa1100
915         bool "sa1100 ARM target switched to strongarm"
916         select BR2_LEGACY
917         select BR2_strongarm
918         help
919           The SA1100 is the same as a generic StrongARM, it just differs
920           in speed, peripherals and cache.
921
922 config BR2_PACKAGE_GDISK
923         bool "gdisk has been replaced by gptfdisk"
924         select BR2_LEGACY
925         select BR2_PACKAGE_GPTFDISK
926         help
927           The option has been renamed BR2_PACKAGE_GPTFDISK.
928
929 config BR2_PACKAGE_GDISK_GDISK
930         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
931         select BR2_LEGACY
932         select BR2_PACKAGE_GPTFDISK
933         select BR2_PACKAGE_GPTFDISK_GDISK
934         help
935           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
936
937 config BR2_PACKAGE_GDISK_SGDISK
938         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
939         select BR2_LEGACY
940         select BR2_PACKAGE_GPTFDISK
941         select BR2_PACKAGE_GPTFDISK_SGDISK
942         help
943           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
944
945 config BR2_PACKAGE_GDB_HOST
946         bool "gdb for the host option has been renamed"
947         select BR2_PACKAGE_HOST_GDB
948         select BR2_LEGACY
949         help
950           Due to the conversion of gdb to the package infrastructure,
951           the BR2_PACKAGE_GDB_HOST option has been renamed
952           BR2_PACKAGE_HOST_GDB.
953
954 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
955         bool "DirectFB RGB16 dithering option has been renamed"
956         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
957         select BR2_LEGACY
958         help
959           The option has been renamed
960           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
961
962 config BR2_PACKAGE_DIRECTB_TESTS
963         bool "DirectFB Tests option has been renamed"
964         select BR2_PACKAGE_DIRECTFB_TESTS
965         select BR2_LEGACY
966         help
967           The option has been renamed
968           BR2_PACKAGE_DIRECTFB_TESTS.
969
970 ###############################################################################
971 comment "Legacy options removed in 2012.11"
972
973 config BR2_PACKAGE_CUSTOMIZE
974         bool "customize package has been removed"
975         select BR2_LEGACY
976         help
977           The 'customize' special package has been removed. Instead,
978           we recommend to create either your own packages, or use a
979           post-build script to customize your root filesystem. See
980           Buildroot's documentation for more details.
981
982 config BR2_PACKAGE_XSERVER_xorg
983         bool "X.org modular server"
984         select BR2_LEGACY
985         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
986         help
987           The option has been renamed
988           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
989
990 config BR2_PACKAGE_XSERVER_tinyx
991         bool "KDrive / TinyX server"
992         select BR2_LEGACY
993         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
994         help
995           The option has been renamed
996           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
997
998 config BR2_PACKAGE_PTHREAD_STUBS
999         bool "pthread-stubs option has been renamed"
1000         select BR2_LEGACY
1001         select BR2_PACKAGE_LIBPTHREAD_STUBS
1002         help
1003           For consistency reason, the pthread-stubs package has been
1004           renamed to libpthread-stubs.
1005
1006 ###############################################################################
1007 comment "Legacy options removed in 2012.08"
1008
1009 config BR2_PACKAGE_GETTEXT_STATIC
1010         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
1011         select BR2_LEGACY
1012         help
1013           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
1014
1015
1016 config BR2_PACKAGE_LIBINTL
1017         bool "libintl"
1018         select BR2_LEGACY
1019         select BR2_PACKAGE_GETTEXT
1020         help
1021           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
1022           only installs the library, not the executables.
1023
1024 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
1025         bool "input-tools evtest is now a separate package evtest"
1026         select BR2_LEGACY
1027         select BR2_PACKAGE_EVTEST
1028         help
1029           The evtest program from input-tools is now a separate package.
1030
1031 config BR2_BFIN_FDPIC
1032         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
1033         select BR2_BINFMT_FDPIC
1034         select BR2_LEGACY
1035
1036 config BR2_BFIN_FLAT
1037         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
1038         select BR2_BINFMT_FLAT
1039         select BR2_LEGACY
1040
1041 endmenu