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