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