google-breakpad: bump to version r1373
[buildroot-gz.git] / Config.in.legacy
blob5b1460cc5ebabe027b6c4c0f7e72fe78ff8f6ea8
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 ###############################################################################
102 comment "Legacy options removed in 2014.08"
104 config BR2_PACKAGE_LIBELF
105         bool "libelf has been removed"
106         select BR2_PACKAGE_ELFUTILS
107         select BR2_LEGACY
108         help
109           The libelf package provided an old version of the libelf library
110           and is deprecated. The libelf library is now provided by the
111           elfutils package.
113 config BR2_KERNEL_HEADERS_3_8
114         bool "kernel headers version 3.8.x are no longer supported"
115         select BR2_KERNEL_HEADERS_3_9
116         select BR2_LEGACY
117         help
118           Version 3.8.x of the Linux kernel headers have been deprecated
119           for more than four buildroot releases and are now removed.
120           As an alternative, version 3.9.x of the headers have been
121           automatically selected in your configuration.
123 config BR2_PACKAGE_GETTEXT_TOOLS
124         bool "support for gettext-tools on target has been removed"
125         select BR2_LEGACY
126         help
127           The option to install the gettext utilities on the target
128           has been removed. This is not necessary as Buildroot is not
129           designed to provide a full development environment on the
130           target. gettext tools should be used on the build machine
131           instead.
133 config BR2_PACKAGE_PROCPS
134         bool "procps has been replaced by procps-ng"
135         select BR2_PACKAGE_PROCPS_NG
136         select BR2_LEGACY
137         help
138           The procps package has been replaced by the equivalent procps-ng.
140 config BR2_BINUTILS_VERSION_2_20_1
141         bool "binutils 2.20.1 has been removed"
142         select BR2_LEGACY
143         help
144           The 2.20.1 version of binutils has been removed. Use a newer
145           version instead.
147 config BR2_BINUTILS_VERSION_2_21
148         bool "binutils 2.21 has been removed"
149         select BR2_LEGACY
150         help
151           The 2.21 version of binutils has been removed. Use a newer
152           version instead.
154 config BR2_BINUTILS_VERSION_2_23_1
155         bool "binutils 2.23.1 has been removed"
156         select BR2_LEGACY
157         help
158           The 2.23.1 version of binutils has been removed. Use a newer
159           version instead.
161 config BR2_UCLIBC_VERSION_0_9_32
162         bool "uclibc 0.9.32 has been removed"
163         select BR2_LEGACY
164         help
165           The 0.9.32 version of uClibc has been removed. Use a newer
166           version instead.
168 config BR2_GCC_VERSION_4_3_X
169         bool "gcc 4.3.x has been removed"
170         select BR2_LEGACY
171         help
172           The 4.3.x version of gcc has been removed. Use a newer
173           version instead.
175 config BR2_GCC_VERSION_4_6_X
176         bool "gcc 4.6.x has been removed"
177         select BR2_LEGACY
178         help
179           The 4.6.x version of gcc has been removed. Use a newer
180           version instead.
182 config BR2_GDB_VERSION_7_4
183         bool "gdb 7.4 has been removed"
184         select BR2_LEGACY
185         help
186           The 7.4 version of gdb has been removed. Use a newer version
187           instead.
189 config BR2_GDB_VERSION_7_5
190         bool "gdb 7.5 has been removed"
191         select BR2_LEGACY
192         help
193           The 7.5 version of gdb has been removed. Use a newer version
194           instead.
196 config BR2_BUSYBOX_VERSION_1_19_X
197         bool "busybox version selection has been removed"
198         select BR2_LEGACY
199         help
200           The possibility of selecting the Busybox version has been
201           removed. Use the latest version provided by the Busybox
202           package instead.
204 config BR2_BUSYBOX_VERSION_1_20_X
205         bool "busybox version selection has been removed"
206         select BR2_LEGACY
207         help
208           The possibility of selecting the Busybox version has been
209           removed. Use the latest version provided by the Busybox
210           package instead.
212 config BR2_BUSYBOX_VERSION_1_21_X
213         bool "busybox version selection has been removed"
214         select BR2_LEGACY
215         help
216           The possibility of selecting the Busybox version has been
217           removed. Use the latest version provided by the Busybox
218           package instead.
220 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
221         bool "decode_tm6000"
222         select BR2_PACKAGE_LIBV4L_UTILS
223         select BR2_LEGACY
224         help
225           This libv4l option has been deprecated and replaced by a single
226           option to build all the libv4l utilities.
228 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
229         bool "ir-keytable"
230         select BR2_PACKAGE_LIBV4L_UTILS
231         select BR2_LEGACY
232         help
233           This libv4l option has been deprecated and replaced by a single
234           option to build all the libv4l utilities.
236 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
237         bool "v4l2-compliance"
238         select BR2_PACKAGE_LIBV4L_UTILS
239         select BR2_LEGACY
240         help
241           This libv4l option has been deprecated and replaced by a single
242           option to build all the libv4l utilities.
244 config BR2_PACKAGE_LIBV4L_V4L2_CTL
245         bool "v4l2-ctl"
246         select BR2_PACKAGE_LIBV4L_UTILS
247         select BR2_LEGACY
248         help
249           This libv4l option has been deprecated and replaced by a single
250           option to build all the libv4l utilities.
252 config BR2_PACKAGE_LIBV4L_V4L2_DBG
253         bool "v4l2-dbg"
254         select BR2_PACKAGE_LIBV4L_UTILS
255         select BR2_LEGACY
256         help
257           This libv4l option has been deprecated and replaced by a single
258           option to build all the libv4l utilities.
260 ###############################################################################
261 comment "Legacy options removed in 2014.05"
263 config BR2_PACKAGE_EVTEST_CAPTURE
264         bool "evtest-capture support removed (dropped since evtest 1.31)"
265         select BR2_LEGACY
266         help
267           Support for evtest-capture has been removed (dropped from
268           evtest package since version 1.31), use evemu package
269           instead.
271 config BR2_KERNEL_HEADERS_3_6
272         bool "kernel headers version 3.6.x are no longer supported"
273         select BR2_KERNEL_HEADERS_3_9
274         select BR2_LEGACY
275         help
276           Version 3.6.x of the Linux kernel headers have been deprecated
277           for more than four buildroot releases and are now removed.
278           As an alternative, version 3.8.x of the headers have been
279           automatically selected in your configuration.
281 config BR2_KERNEL_HEADERS_3_7
282         bool "kernel headers version 3.7.x are no longer supported"
283         select BR2_KERNEL_HEADERS_3_9
284         select BR2_LEGACY
285         help
286           Version 3.7.x of the Linux kernel headers have been deprecated
287           for more than four buildroot releases and are now removed.
288           As an alternative, version 3.8.x of the headers have been
289           automatically selected in your configuration.
291 config BR2_PACKAGE_VALA
292         bool "vala target package has been removed"
293         select BR2_LEGACY
294         help
295           The 'vala' target package has been removed since it has been
296           deprecated for more than four buildroot releases.
297           Note: the host vala package still exists.
299 config BR2_TARGET_TZ_ZONELIST
300         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
302 config BR2_PACKAGE_TZDATA_ZONELIST
303         string "tzdata: the timezone list option has been renamed"
304         help
305           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
306           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
307           menu. You'll need to select BR2_TARGET_TZ_INFO.
309 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
310         bool
311         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
312         select BR2_LEGACY
314 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
315         bool "Lua command-line editing none has been renamed"
316         select BR2_LEGACY
317         help
318           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
319           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
320           it in the corresponding choice.
322 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
323         bool "Lua command-line editing using readline has been renamed"
324         select BR2_LEGACY
325         help
326           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
327           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
328           it in the corresponding choice.
330 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
331         bool "Lua command-line editing using linenoise has been renamed"
332         select BR2_LEGACY
333         help
334           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
335           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
336           it in the corresponding choice.
338 config BR2_PACKAGE_DVB_APPS_UTILS
339         bool "dvb-apps utilities now built by default"
340         select BR2_LEGACY
341         help
342           The dvb-apps utilities are now always built when the dvb-apps
343           package is selected.
345 config BR2_KERNEL_HEADERS_SNAP
346         bool "Local Linux snapshot support removed"
347         select BR2_LEGACY
348         help
349           Support for using a custom snapshot to install the Linux
350           kernel headers has been removed.
352 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
353         bool "/dev management by udev removed"
354         select BR2_LEGACY
355         help
356           The 'udev' package has been converted to a virtual package.
357           The providers for this feature are: 'eudev', 'systemd'.
359           Therefore, if you are not using 'systemd' as init system, you
360           must choose 'Dynamic using eudev' in the '/dev management'
361           menu to get the same behaviour as in your old configuration.
363           If you are using 'systemd', its internal implementation of
364           'udev' will be used automatically.
366           You must also check the packages depending on 'udev' are still
367           selected.
369 config BR2_PACKAGE_UDEV
370         bool "udev is now a virtual package"
371         select BR2_LEGACY
372         select BR2_PACKAGE_HAS_UDEV
373         help
374           The 'udev' package has been converted to a virtual package.
375           The providers for this feature are: 'eudev', 'systemd'.
377           Your old configuration refers to packages depending on 'udev',
378           either for build or at runtime.
380           Check that a 'udev' provider is selected. If you are not using
381           'systemd' as init system, 'eudev' should be selected, which is
382           the case if '/dev management' is set to 'Dynamic using eudev'.
384           If you are using 'systemd', its internal implementation of 'udev'
385           is used.
387 config BR2_PACKAGE_UDEV_RULES_GEN
388         bool "udev rules generation handled by provider"
389         select BR2_LEGACY
390         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
391         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
392         help
393           The 'udev' package has been converted to a virtual package.
394           The providers for this feature are: 'eudev', 'systemd'.
396           If you are not using 'systemd' as init system, udev rules
397           generation will be handled by 'eudev'. Check that
398           '/dev management' is set to 'Dynamic using eudev' to get
399           the same behaviour as in your old configuration.
401           If you are using 'systemd', it internal implementation of 'udev'
402           will generate the rules.
404 config BR2_PACKAGE_UDEV_ALL_EXTRAS
405         bool "udev extras removed"
406         select BR2_LEGACY
407         help
408           The 'udev' package has been converted to a virtual package.
409           The providers for this feature are: 'eudev', 'systemd'.
411           The option to enable the extra features of 'udev' (gudev, ...)
412           has been removed. These features are automatically enabled in
413           the 'udev' providers if the dependencies are selected. For
414           example, selecting 'libglib2' will trigger the build of gudev.
416 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
417         bool "xlib-libpthread-stubs option has been renamed"
418         depends on BR2_PACKAGE_XORG7
419         select BR2_LEGACY
420         select BR2_PACKAGE_LIBPTHREAD_STUBS
421         help
422           The pthread stubs neither depend on X11 nor Xlib. Thus the
423           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
425 ###############################################################################
426 comment "Legacy options removed in 2014.02"
428 config BR2_sh2
429         bool "sh2 support removed"
430         help
431           Due to an inexistent user base and generally poor Linux
432           support, the support for the SH2 architecture was removed.
434 config BR2_sh3
435         bool "sh3 support removed"
436         help
437           Due to an inexistent user base and generally poor Linux
438           support, the support for the SH3 architecture was removed.
440 config BR2_sh3eb
441         bool "sh3eb support removed"
442         help
443           Due to an inexistent user base and generally poor Linux
444           support, the support for the SH3eb architecture was removed.
446 config BR2_KERNEL_HEADERS_3_1
447         bool "kernel headers version 3.1.x are no longer supported"
448         select BR2_KERNEL_HEADERS_3_2
449         select BR2_LEGACY
450         help
451           Version 3.1.x of the Linux kernel headers have been deprecated
452           for more than four buildroot releases and are now removed.
453           As an alternative, version 3.2.x of the headers have been
454           automatically selected in your configuration.
456 config BR2_KERNEL_HEADERS_3_3
457         bool "kernel headers version 3.3.x are no longer supported"
458         select BR2_KERNEL_HEADERS_3_4
459         select BR2_LEGACY
460         help
461           Version 3.3.x of the Linux kernel headers have been deprecated
462           for more than four buildroot releases and are now removed.
463           As an alternative, version 3.4.x of the headers have been
464           automatically selected in your configuration.
466 config BR2_KERNEL_HEADERS_3_5
467         bool "kernel headers version 3.5.x are no longer supported"
468         select BR2_KERNEL_HEADERS_3_9
469         select BR2_LEGACY
470         help
471           Version 3.5.x of the Linux kernel headers have been deprecated
472           for more than four buildroot releases and are now removed.
473           As an alternative, version 3.8.x of the headers have been
474           automatically selected in your configuration.
476 config BR2_GDB_VERSION_7_2
477         bool "gdb 7.2.x is no longer supported"
478         select BR2_GDB_VERSION_7_6
479         select BR2_LEGACY
480         help
481           Version 7.2.x of gdb has been deprecated for more than four
482           buildroot releases and is now removed. As an alternative, gdb
483           7.5.x has been automatically selected in your configuration.
485 config BR2_GDB_VERSION_7_3
486         bool "gdb 7.3.x is no longer supported"
487         select BR2_GDB_VERSION_7_6
488         select BR2_LEGACY
489         help
490           Version 7.3.x of gdb has been deprecated for more than four
491           buildroot releases and is now removed. As an alternative, gdb
492           7.5.x has been automatically selected in your configuration.
494 config BR2_PACKAGE_CCACHE
495         bool "ccache target package has been removed"
496         select BR2_LEGACY
497         help
498           The 'ccache' target package has been removed since it has been
499           deprecated for more than four buildroot releases.
500           Note: using ccache for speeding up builds is still supported.
502 config BR2_HAVE_DOCUMENTATION
503         bool "support for documentation on target has been removed"
504         select BR2_LEGACY
505         help
506           Support for documentation on target has been removed since it has
507           been deprecated for more than four buildroot releases.
509 config BR2_PACKAGE_AUTOMAKE
510         bool "automake target package has been removed"
511         select BR2_LEGACY
512         help
513           The 'automake' target package has been removed since it has been
514           deprecated for more than four buildroot releases.
515           Note: the host automake still exists.
517 config BR2_PACKAGE_AUTOCONF
518         bool "autoconf target package has been removed"
519         select BR2_LEGACY
520         help
521           The 'autoconf' target package has been removed since it has been
522           deprecated for more than four buildroot releases.
523           Note: the host autoconf still exists.
525 config BR2_PACKAGE_XSTROKE
526         bool "xstroke has been removed"
527         select BR2_LEGACY
528         help
529           The 'xstroke' package has been removed since it has been
530           deprecated for more than four buildroot releases.
532 config BR2_PACKAGE_LZMA
533         bool "lzma target package has been removed"
534         select BR2_LEGACY
535         help
536           The 'lzma' target package has been removed since it has been
537           deprecated for more than four buildroot releases.
538           Note: generating lzma-compressed rootfs images is still supported.
540 config BR2_PACKAGE_TTCP
541         bool "ttcp has been removed"
542         select BR2_LEGACY
543         help
544           The 'ttcp' package has been removed since it has been
545           deprecated for more than four buildroot releases.
547 config BR2_PACKAGE_LIBNFC_LLCP
548         bool "libnfc-llcp has been replaced by libllcp"
549         select BR2_LEGACY
550         select BR2_PACKAGE_LIBLLCP
551         help
552           The 'libnfc-llcp' package has been removed since upstream renamed
553           to 'libllcp'. We have added a new package for 'libllcp' and bumped
554           the version at the same time.
556 config BR2_PACKAGE_MYSQL_CLIENT
557         bool "MySQL client renamed to MySQL"
558         select BR2_LEGACY
559         select BR2_PACKAGE_MYSQL
560         help
561           The option has been renamed BR2_PACKAGE_MYSQL
563 config BR2_PACKAGE_SQUASHFS3
564         bool "squashfs3 has been removed"
565         select BR2_LEGACY
566         select BR2_PACKAGE_SQUASHFS
567         help
568           The 'squashfs3' package has been removed since it has been
569           deprecated for more than four buildroot releases. Package
570           'squashfs' (4) has been selected automatically as replacement.
572 config BR2_TARGET_ROOTFS_SQUASHFS3
573         bool "squashfs3 rootfs support has been removed"
574         select BR2_LEGACY
575         help
576           Together with the removal of the squashfs3 package, support
577           for squashfs3 root filesystems has been removed too. Squashfs
578           root filesystems will automatically use squashfs4 now.
580 config BR2_PACKAGE_NETKITBASE
581         bool "netkitbase has been removed"
582         select BR2_LEGACY
583         help
584           The 'netkitbase' package has been removed since it has been
585           deprecated since 2012.11. This package provided 'inetd'
586           which is replaced by 'xinet' and 'ping' which is replaced by
587           'busybox' or 'fping'.
589 config BR2_PACKAGE_NETKITTELNET
590         bool "netkittelnet has been removed"
591         select BR2_LEGACY
592         help
593           The 'netkittelnet' package has been removed since it has
594           been deprecated since 2012.11. 'busybox' provides a telnet
595           client and should be used instead.
597 config BR2_PACKAGE_LUASQL
598         bool "luasql has been replaced by luasql-sqlite3"
599         select BR2_PACKAGE_LUASQL_SQLITE3
600         select BR2_LEGACY
601         help
602           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
604 config BR2_PACKAGE_LUACJSON
605         bool "luacjson has been replaced by lua-cjson"
606         select BR2_PACKAGE_LUA_CJSON
607         select BR2_LEGACY
608         help
609           The option has been renamed BR2_PACKAGE_LUA_CJSON.
611 ###############################################################################
612 comment "Legacy options removed in 2013.11"
614 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
615         bool "lvm2's 'dmsetup only' option removed"
616         select BR2_LEGACY
617         help
618           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
619           led to problems with other packages that need the full lvm2
620           suite. Therefore, the option has been replaced with the positive
621           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
623 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
624 # in order to automatically propagate old configs
626 config BR2_PACKAGE_QT_JAVASCRIPTCORE
627         bool "qt javascriptcore option removed"
628         select BR2_LEGACY
629         help
630           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
631           force the activation or disabling of the JIT compiler in the
632           Qt Javascript interpreter. However, the JIT compiler is not
633           available for all architectures, so forcing its activation
634           does not always work. Moreover, Qt knows by itself for which
635           architectures JIT support is possible, and will
636           automatically enable it if possible.
638           Therefore, this option was in fact useless, and causing
639           build problems when enabled on architectures for which the
640           JIT support was not available. It has been removed, and
641           there is no replacement: Qt will enable JIT at compile time
642           when possible.
644 config BR2_PACKAGE_MODULE_INIT_TOOLS
645         bool "module-init-tools replaced by kmod"
646         select BR2_PACKAGE_KMOD
647         select BR2_PACKAGE_KMOD_TOOLS
648         select BR2_LEGACY
649         help
650           The 'module-init-tools' package has been removed, since it
651           has been depracated upstream and replaced by 'kmod'.
653 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
654         string "u-boot: the git repository URL option has been renamed"
655         help
656           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
657           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
659 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
660         bool
661         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
662         select BR2_LEGACY
664 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
665 # boot/uboot/Config.in
667 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
668         string "u-boot: the git repository version option has been renamed"
669         help
670           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
671           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
673 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
674         bool
675         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
676         select BR2_LEGACY
678 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
679 # boot/uboot/Config.in
681 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
682         string "linux: the git repository URL option has been renamed"
683         help
684           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
685           been renamed to
686           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
688 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
689         bool
690         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
691         select BR2_LEGACY
693 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
694 # linux/Config.in
696 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
697         string "linux: the git repository version option has been renamed"
698         help
699           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
700           been renamed to
701           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
703 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
704         bool
705         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
706         select BR2_LEGACY
708 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
709 # linux/Config.in
711 ###############################################################################
712 comment "Legacy options removed in 2013.08"
714 config BR2_ARM_OABI
715         bool "ARM OABI support has been removed"
716         select BR2_LEGACY
717         help
718           The support for the ARM OABI was deprecated since a while,
719           and has been removed completely from Buildroot. It is also
720           deprecated in upstream gcc, since gcc 4.7. People should
721           switch to EABI instead, which should not be a problem as
722           long as you don't have pre-built OABI binaries in your
723           system that you can't recompile.
725 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
726         bool "dosfstools dosfsck renamed to fsck.fat"
727         select BR2_LEGACY
728         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
729         help
730           dosfsck was renamed upstream to fsck.fat for consistency.
732 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
733         bool "dosfstools dosfslabel renamed to fatlabel"
734         select BR2_LEGACY
735         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
736         help
737           doslabel was renamed upstream to fatlabel for consistency.
739 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
740         bool "dosfstools mkdosfs renamed to mkfs.fat"
741         select BR2_LEGACY
742         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
743         help
744           mkdosfs was renamed upstream to mkfs.fat for consistency.
746 config BR2_ELF2FLT
747         bool "the elf2flt option has been renamed"
748         select BR2_LEGACY
749         help
750           The BR2_ELF2FLT option has been renamed to
751           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
752           the package infrastructure.
754 config BR2_VFP_FLOAT
755         bool "the ARM VFP floating point option has been renamed"
756         select BR2_LEGACY
757         help
758           Due to a major refactoring of the floating-point handling of
759           the ARM architecture support, the BR2_VFP_FLOAT option has
760           been replaced with a choice of options that allows to select
761           between various VFP versions/capabilities.
763 config BR2_PACKAGE_GCC_TARGET
764         bool "gcc on the target filesystem has been removed"
765         select BR2_LEGACY
766         help
767           The support for gcc in the target filesystem was deprecated
768           since a while, and has been removed completely from Buildroot.
769           See Buildroot's documentation for more explanations.
771 config BR2_HAVE_DEVFILES
772         bool "development files in target filesystem has been removed"
773         select BR2_LEGACY
774         help
775           The installation of the development files in the target
776           filesystem was deprecated since a while, and has been removed
777           completely from Buildroot.
778           See Buildroot's documentation for more explanations.
780 ###############################################################################
781 comment "Legacy options removed in 2013.05"
783 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
784         bool "Realtek 8192 replaced by Realtek 81xx"
785         select BR2_LEGACY
786         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
787         help
788           Now covers the whole Realtek 81xx familly: 8188/8192.
790 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
791         bool "Realtek 8712 replaced by Realtek 87xx"
792         select BR2_LEGACY
793         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
794         help
795           Now covers the whole Realtek 87xx familly: 8712/8723.
797 ###############################################################################
798 comment "Legacy options removed in 2013.02"
800 config BR2_sa110
801         bool "sa110 ARM target switched to strongarm"
802         select BR2_LEGACY
803         select BR2_strongarm
804         help
805           The SA110 is the same as a generic StrongARM, it just differs
806           in speed, peripherals and cache.
808 config BR2_sa1100
809         bool "sa1100 ARM target switched to strongarm"
810         select BR2_LEGACY
811         select BR2_strongarm
812         help
813           The SA1100 is the same as a generic StrongARM, it just differs
814           in speed, peripherals and cache.
816 config BR2_PACKAGE_GDISK
817         bool "gdisk has been replaced by gptfdisk"
818         select BR2_LEGACY
819         select BR2_PACKAGE_GPTFDISK
820         help
821           The option has been renamed BR2_PACKAGE_GPTFDISK.
823 config BR2_PACKAGE_GDISK_GDISK
824         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
825         select BR2_LEGACY
826         select BR2_PACKAGE_GPTFDISK
827         select BR2_PACKAGE_GPTFDISK_GDISK
828         help
829           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
831 config BR2_PACKAGE_GDISK_SGDISK
832         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
833         select BR2_LEGACY
834         select BR2_PACKAGE_GPTFDISK
835         select BR2_PACKAGE_GPTFDISK_SGDISK
836         help
837           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
839 config BR2_PACKAGE_GDB_HOST
840         bool "gdb for the host option has been renamed"
841         select BR2_PACKAGE_HOST_GDB
842         select BR2_LEGACY
843         help
844           Due to the conversion of gdb to the package infrastructure,
845           the BR2_PACKAGE_GDB_HOST option has been renamed
846           BR2_PACKAGE_HOST_GDB.
848 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
849         bool "DirectFB RGB16 dithering option has been renamed"
850         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
851         select BR2_LEGACY
852         help
853           The option has been renamed
854           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
856 config BR2_PACKAGE_DIRECTB_TESTS
857         bool "DirectFB Tests option has been renamed"
858         select BR2_PACKAGE_DIRECTFB_TESTS
859         select BR2_LEGACY
860         help
861           The option has been renamed
862           BR2_PACKAGE_DIRECTFB_TESTS.
864 ###############################################################################
865 comment "Legacy options removed in 2012.11"
867 config BR2_PACKAGE_CUSTOMIZE
868         bool "customize package has been removed"
869         select BR2_LEGACY
870         help
871           The 'customize' special package has been removed. Instead,
872           we recommend to create either your own packages, or use a
873           post-build script to customize your root filesystem. See
874           Buildroot's documentation for more details.
876 config BR2_PACKAGE_XSERVER_xorg
877         bool "X.org modular server"
878         select BR2_LEGACY
879         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
880         help
881           The option has been renamed
882           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
884 config BR2_PACKAGE_XSERVER_tinyx
885         bool "KDrive / TinyX server"
886         select BR2_LEGACY
887         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
888         help
889           The option has been renamed
890           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
892 config BR2_PACKAGE_PTHREAD_STUBS
893         bool "pthread-stubs option has been renamed"
894         select BR2_LEGACY
895         select BR2_PACKAGE_LIBPTHREAD_STUBS
896         help
897           For consistency reason, the pthread-stubs package has been
898           renamed to libpthread-stubs.
900 ###############################################################################
901 comment "Legacy options removed in 2012.08"
903 config BR2_PACKAGE_GETTEXT_STATIC
904         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
905         select BR2_LEGACY
906         help
907           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
910 config BR2_PACKAGE_LIBINTL
911         bool "libintl"
912         select BR2_LEGACY
913         select BR2_PACKAGE_GETTEXT
914         help
915           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
916           only installs the library, not the executables.
918 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
919         bool "input-tools evtest is now a separate package evtest"
920         select BR2_LEGACY
921         select BR2_PACKAGE_EVTEST
922         help
923           The evtest program from input-tools is now a separate package.
925 config BR2_BFIN_FDPIC
926         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
927         select BR2_BINFMT_FDPIC
928         select BR2_LEGACY
930 config BR2_BFIN_FLAT
931         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
932         select BR2_BINFMT_FLAT
933         select BR2_LEGACY
935 endmenu