package/portaudio: bump to version v19_20140130
[buildroot-gz.git] / Config.in.legacy
blob2e6062cb429be834f662400336295be3e58bc2b8
2 # Config.in.legacy - support for backward compatibility
4 # When an existing Config.in symbol is removed, it should be added again in
5 # this file, and take appropriate action to approximate backward compatibility.
6 # This will make the transition for the user more convenient.
8 # When adding legacy symbols to this file, add them to the front. The oldest
9 # symbols will be removed again after about two years.
11 # The symbol should be copied as-is from the place where it was previously
12 # defined, but the help text should be removed or replaced with something that
13 # explains how to fix it.
15 # For bool options, the old symbol should select BR2_LEGACY, so that the user
16 # is informed at build-time about selected legacy options.
17 # If there is an equivalent (set of) new symbols, these should be select'ed by
18 # the old symbol for backwards compatibility.
19 # It is not possible to select an option that is part of a choice. In that
20 # case, the new option should use the old symbol as default. This requires a
21 # change outside of Config.in.legacy, and this should be clearly marked as such
22 # in a comment, so that removal of legacy options also include the removal of
23 # these external references.
25 # [Example: renaming a bool option that is part of a choice from FOO to BAR]
26 # original choice:
27 #       choice
28 #               prompt "Choose foobar"
29 #       config BR2_FOO_1
30 #               bool "foobar 1"
31 #       config BR2_FOO_2
32 #               bool "foobar 2"
33 #       endchoice
35 # becomes:
36 #   choice
37 #       prompt "Choose foobar"
38 #       default BR2_BAR_1 if BR2_FOO_1 # legacy
39 #       default BR2_BAR_2 if BR2_FOO_2 # legacy
40 #   config BR2_BAR_1
41 #               bool "foobar 1"
42 #   config BR2_BAR_2
43 #       bool "foobar 2"
44 #   endchoice
46 # and in Config.in.legacy:
47 #   config BR2_FOO_1
48 #       bool "foobar 1 has been renamed"
49 #       help
50 #         <suitable help text>
51 #   # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
52 #   config BR2_FOO_2
53 #       bool "foobar 2 has been renamed"
54 #       help
55 #         <suitable help text>
56 #   # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
58 # [End of example]
60 # For string options, it is not possible to directly select another symbol. In
61 # this case, a hidden wrap bool option has to be added, that defaults to y if
62 # the old string is not set at its default value. The wrap symbol should select
63 # BR2_LEGACY.
64 # If the original symbol has been renamed, the new symbol should use the value
65 # of the old symbol as default. Like for choice options, a comment should be
66 # added to flag that the symbol is still used in another file.
68 # [Example: renaming a string option from FOO to BAR]
69 # original symbol:
70 #   config BR2_FOO_STRING
71 #       string "Some foo string"
73 # becomes:
74 #   config BR2_BAR_STRING
75 #       string "Some bar string"
76 #       default BR2_FOO_STRING if BR2_FOO_STRING != ""  # legacy
78 # and in Config.in.legacy:
79 #   config BR2_FOO_STRING
80 #       string "The foo string has been renamed"
81 #       help
82 #         <suitable help text>
84 #   config BR2_FOO_STRING_WRAP
85 #       bool
86 #       default y if BR2_FOO_STRING != ""
87 #       select BR2_LEGACY
89 #   # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
91 # [End of example]
93 config BR2_SKIP_LEGACY
94         bool
95         option env="SKIP_LEGACY"
97 if !BR2_SKIP_LEGACY
99 config BR2_LEGACY
100         bool
101         help
102           This option is selected automatically when your old .config uses an
103           option that no longer exists in current buildroot. In that case, the
104           build will fail. Look for config options which are selected in the
105           menu below: they no longer exist and should be replaced by something
106           else.
108 # This comment fits exactly in a 80-column display
109 comment "Legacy detected: check the content of the menu below"
110         depends on BR2_LEGACY
112 menu "Legacy config options"
114 if BR2_LEGACY
115 comment "----------------------------------------------------"
116 comment "Your old configuration uses legacy options that no  "
117 comment "longer exist in buildroot, as indicated in the menu "
118 comment "below. As long as these options stay selected, or in"
119 comment "case of string options are non-empty, the build     "
120 comment "will fail.                                          "
121 comment "*                                                   "
122 comment "Where possible, an automatic conversion from old to "
123 comment "new symbols has been performed. Before making any   "
124 comment "change in this legacy menu, make sure to exit the   "
125 comment "configuration editor a first time and save the      "
126 comment "configuration. Otherwise, the automatic conversion  "
127 comment "of symbols will be lost.                            "
128 comment "*                                                   "
129 comment "After this initial save, reopen the configuration   "
130 comment "editor, inspect the options selected below, read    "
131 comment "their help texts, and verify/update the new         "
132 comment "configuration in the corresponding configuration    "
133 comment "menus. When everything is ok, you can disable the   "
134 comment "legacy options in the menu below. Once you have     "
135 comment "disabled all legacy options, this text will         "
136 comment "disappear and you will be able to start the build.  "
137 comment "*                                                   "
138 comment "Note: at some point in the future, the oldest legacy"
139 comment "options will be removed, and configuration files    "
140 comment "that still have those options set, will fail to     "
141 comment "build, or run, in unpredictable ways.               "
142 comment "----------------------------------------------------"
143 endif
145 ###############################################################################
146 comment "Legacy options removed in 2016.02"
148 config BR2_PACKAGE_PYTHON_PYXML
149         bool "python-pyxml package has been removed"
150         select BR2_LEGACY
151         help
152           PyXML is obsolete and its functionality is covered either via
153           native Python XML support or python-lxml package.
155 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
156 config BR2_ENABLE_SSP
157         bool "Stack Smashing protection now has different levels"
158         help
159           The protection offered by SSP can now be selected from different
160           protection levels. Be sure to review the SSP level in the build
161           options menu.
163 config BR2_PACKAGE_DIRECTFB_CLE266
164         bool "cle266 driver for directfb removed"
165         select BR2_LEGACY
166         help
167           The cle266 directfb driver support has been removed.
168           It doesn't build in the latest version and it's unlikely
169           anyone has any use for it.
171 config BR2_PACKAGE_DIRECTFB_UNICHROME
172         bool "unichrome driver for directfb removed"
173         select BR2_LEGACY
174         help
175           The unichrome directfb driver support has been removed.
176           It doesn't build in the latest version and it's unlikely
177           anyone has any use for it.
179 config BR2_PACKAGE_LIBELEMENTARY
180         bool "libelementary has been renamed to elementary"
181         select BR2_LEGACY
182         select BR2_PACKAGE_ELEMENTARY
183         help
184           The libelementary package has been renamed to match the upstream
185           name.
187 config BR2_PACKAGE_LIBEINA
188         bool "libeina package has been removed"
189         select BR2_LEGACY
190         select BR2_PACKAGE_EFL
191         help
192           With EFL 1.15, libeina is now provided by the efl package.
194 config BR2_PACKAGE_LIBEET
195         bool "libeet package has been removed"
196         select BR2_LEGACY
197         select BR2_PACKAGE_EFL
198         help
199           With EFL 1.15, libeet is now provided by the efl package.
201 config BR2_PACKAGE_LIBEVAS
202         bool "libevas package has been removed"
203         select BR2_LEGACY
204         select BR2_PACKAGE_EFL
205         help
206           With EFL 1.15, libevas is now provided by the efl package.
208 config BR2_PACKAGE_LIBECORE
209         bool "libecore package has been removed"
210         select BR2_LEGACY
211         select BR2_PACKAGE_EFL
212         help
213           With EFL 1.15, libecore is now provided by the efl package.
215 config BR2_PACKAGE_LIBEDBUS
216         bool "libedbus package has been removed"
217         select BR2_LEGACY
218         select BR2_PACKAGE_EFL
219         help
220           With EFL 1.15, libedbus is now provided by the efl package.
222 config BR2_PACKAGE_LIBEFREET
223         bool "libefreet package has been removed"
224         select BR2_LEGACY
225         select BR2_PACKAGE_EFL
226         help
227           With EFL 1.15, libefreet is now provided by the efl package.
229 config BR2_PACKAGE_LIBEIO
230         bool "libeio package has been removed"
231         select BR2_LEGACY
232         select BR2_PACKAGE_EFL
233         help
234           With EFL 1.15, libeio is now provided by the efl package.
236 config BR2_PACKAGE_LIBEMBRYO
237         bool "libembryo package has been removed"
238         select BR2_LEGACY
239         select BR2_PACKAGE_EFL
240         help
241           With EFL 1.15, libembryo is now provided by the efl package.
243 config BR2_PACKAGE_LIBEDJE
244         bool "libedje package has been removed"
245         select BR2_LEGACY
246         select BR2_PACKAGE_EFL
247         help
248           With EFL 1.15, libedje is now provided by the efl package.
250 config BR2_PACKAGE_LIBETHUMB
251         bool "libethumb package has been removed"
252         select BR2_LEGACY
253         select BR2_PACKAGE_EFL
254         help
255           With EFL 1.15, libethumb is now provided by the efl package.
257 config BR2_PACKAGE_INFOZIP
258         bool "infozip option has been renamed to zip"
259         select BR2_LEGACY
260         select BR2_PACKAGE_ZIP
261         help
262           Info-Zip's Zip package has been renamed from infozip to zip,
263           to avoid ambiguities with Info-Zip's UnZip which has been added
264           in the unzip package.
266 config BR2_BR2_PACKAGE_NODEJS_0_10_X
267         bool "nodejs 0.10.x option renamed"
268         select BR2_LEGACY
269         select BR2_PACKAGE_NODEJS
270         help
271           nodejs 0.10.x option was named incorrectly and has been renamed
272           to BR2_PACKAGE_NODEJS_0_10_X.
274 config BR2_BR2_PACKAGE_NODEJS_0_12_X
275         bool "nodejs version 0.12.x has been removed"
276         select BR2_LEGACY
277         select BR2_PACKAGE_NODEJS
278         help
279           nodejs version 0.12.x has been removed.  As an alternative,
280           the latest nodejs version has been automatically selected in
281           your configuration.
283 config BR2_BR2_PACKAGE_NODEJS_4_X
284         bool "nodejs version 4.x has been removed"
285         select BR2_LEGACY
286         select BR2_PACKAGE_NODEJS
287         help
288           nodejs version 4.x has been removed.  As an alternative,
289           the latest nodejs version has been automatically selected in
290           your configuration.
292 ###############################################################################
293 comment "Legacy options removed in 2015.11"
295 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
296         bool "gst1-plugins-bad real plugin has been removed"
297         select BR2_LEGACY
298         help
299           The real plugin from GStreamer 1 bad plugins has been
300           removed.
302 config BR2_PACKAGE_MEDIA_CTL
303         bool "media-ctl package has been removed"
304         select BR2_LEGACY
305         select BR2_PACKAGE_LIBV4L
306         select BR2_PACKAGE_LIBV4L_UTILS
307         help
308           media-ctl source and developement have been moved to
309           v4l-utils since June 2014. For an up-to-date media-ctl
310           version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
312 config BR2_PACKAGE_SCHIFRA
313         bool "schifra package has been removed"
314         select BR2_LEGACY
315         help
316           Schifra package has been maked broken since 2014.11 release and
317           haven't been fixed since then.
319 config BR2_PACKAGE_ZXING
320         bool "zxing option has been renamed"
321         select BR2_LEGACY
322         select BR2_PACKAGE_ZXING_CPP
323         help
324           ZXing no longer provides the cpp bindings, it has been renamed to
325           BR2_PACKAGE_ZXING_CPP which uses a new upstream.
327 # Since FreeRDP has new dependencies, protect this legacy to avoid the
328 # infamous "unmet direct dependencies" kconfig error.
329 config BR2_PACKAGE_FREERDP_CLIENT
330         bool "freerdp client option renamed"
331         depends on BR2_PACKAGE_FREERDP
332         select BR2_LEGACY
333         select BR2_PACKAGE_FREERDP_CLIENT_X11
335 config BR2_PACKAGE_BLACKBOX
336         bool "blackbox package has been removed"
337         select BR2_LEGACY
338         help
339           Upstream is dead and the package has been deprecated for
340           some time. There are other alternative maintained WMs.
342 config BR2_KERNEL_HEADERS_3_0
343         bool "kernel headers version 3.0.x are no longer supported"
344         select BR2_KERNEL_HEADERS_3_2
345         select BR2_LEGACY
346         help
347           Version 3.0.x of the Linux kernel headers have been deprecated
348           for more than four buildroot releases and are now removed.
349           As an alternative, version 3.2.x of the headers have been
350           automatically selected in your configuration.
352 config BR2_KERNEL_HEADERS_3_11
353         bool "kernel headers version 3.11.x are no longer supported"
354         select BR2_KERNEL_HEADERS_3_12
355         select BR2_LEGACY
356         help
357           Version 3.11.x of the Linux kernel headers have been deprecated
358           for more than four buildroot releases and are now removed.
359           As an alternative, version 3.12.x of the headers have been
360           automatically selected in your configuration.
362 config BR2_KERNEL_HEADERS_3_13
363         bool "kernel headers version 3.13.x are no longer supported"
364         select BR2_KERNEL_HEADERS_3_14
365         select BR2_LEGACY
366         help
367           Version 3.13.x of the Linux kernel headers have been deprecated
368           for more than four buildroot releases and are now removed.
369           As an alternative, version 3.14.x of the headers have been
370           automatically selected in your configuration.
372 config BR2_KERNEL_HEADERS_3_15
373         bool "kernel headers version 3.15.x are no longer supported"
374         select BR2_KERNEL_HEADERS_3_18
375         select BR2_LEGACY
376         help
377           Version 3.15.x of the Linux kernel headers have been deprecated
378           for more than four buildroot releases and are now removed.
379           As an alternative, version 3.18.x of the headers have been
380           automatically selected in your configuration.
382 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
383         bool "DirectFB example df_andi has been removed"
384         select BR2_LEGACY
385         select BR2_PACKAGE_DIRECTFB_EXAMPLES
386         help
387           The per-DirectFB example options have been removed. The
388           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
389           examples.
391 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
392         bool "DirectFB example df_bltload has been removed"
393         select BR2_LEGACY
394         select BR2_PACKAGE_DIRECTFB_EXAMPLES
395         help
396           The per-DirectFB example options have been removed. The
397           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
398           examples.
400 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
401         bool "DirectFB example df_cpuload has been removed"
402         select BR2_LEGACY
403         select BR2_PACKAGE_DIRECTFB_EXAMPLES
404         help
405           The per-DirectFB example options have been removed. The
406           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
407           examples.
409 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
410         bool "DirectFB example df_databuffer has been removed"
411         select BR2_LEGACY
412         select BR2_PACKAGE_DIRECTFB_EXAMPLES
413         help
414           The per-DirectFB example options have been removed. The
415           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
416           examples.
418 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
419         bool "DirectFB example df_dioload has been removed"
420         select BR2_LEGACY
421         select BR2_PACKAGE_DIRECTFB_EXAMPLES
422         help
423           The per-DirectFB example options have been removed. The
424           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
425           examples.
427 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
428         bool "DirectFB example df_dok has been removed"
429         select BR2_LEGACY
430         select BR2_PACKAGE_DIRECTFB_EXAMPLES
431         help
432           The per-DirectFB example options have been removed. The
433           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
434           examples.
436 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
437         bool "DirectFB example df_drivertest has been removed"
438         select BR2_LEGACY
439         select BR2_PACKAGE_DIRECTFB_EXAMPLES
440         help
441           The per-DirectFB example options have been removed. The
442           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
443           examples.
445 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
446         bool "DirectFB example df_fire has been removed"
447         select BR2_LEGACY
448         select BR2_PACKAGE_DIRECTFB_EXAMPLES
449         help
450           The per-DirectFB example options have been removed. The
451           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
452           examples.
454 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
455         bool "DirectFB example df_flip has been removed"
456         select BR2_LEGACY
457         select BR2_PACKAGE_DIRECTFB_EXAMPLES
458         help
459           The per-DirectFB example options have been removed. The
460           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
461           examples.
463 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
464         bool "DirectFB example df_fonts has been removed"
465         select BR2_LEGACY
466         select BR2_PACKAGE_DIRECTFB_EXAMPLES
467         help
468           The per-DirectFB example options have been removed. The
469           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
470           examples.
472 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
473         bool "DirectFB example df_input has been removed"
474         select BR2_LEGACY
475         select BR2_PACKAGE_DIRECTFB_EXAMPLES
476         help
477           The per-DirectFB example options have been removed. The
478           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
479           examples.
481 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
482         bool "DirectFB example df_joystick has been removed"
483         select BR2_LEGACY
484         select BR2_PACKAGE_DIRECTFB_EXAMPLES
485         help
486           The per-DirectFB example options have been removed. The
487           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
488           examples.
490 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
491         bool "DirectFB example df_knuckles has been removed"
492         select BR2_LEGACY
493         select BR2_PACKAGE_DIRECTFB_EXAMPLES
494         help
495           The per-DirectFB example options have been removed. The
496           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
497           examples.
499 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
500         bool "DirectFB example df_layer has been removed"
501         select BR2_LEGACY
502         select BR2_PACKAGE_DIRECTFB_EXAMPLES
503         help
504           The per-DirectFB example options have been removed. The
505           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
506           examples.
508 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
509         bool "DirectFB example df_matrix has been removed"
510         select BR2_LEGACY
511         select BR2_PACKAGE_DIRECTFB_EXAMPLES
512         help
513           The per-DirectFB example options have been removed. The
514           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
515           examples.
517 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
518         bool "DirectFB example df_matrix_water has been removed"
519         select BR2_LEGACY
520         select BR2_PACKAGE_DIRECTFB_EXAMPLES
521         help
522           The per-DirectFB example options have been removed. The
523           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
524           examples.
526 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
527         bool "DirectFB example df_neo has been removed"
528         select BR2_LEGACY
529         select BR2_PACKAGE_DIRECTFB_EXAMPLES
530         help
531           The per-DirectFB example options have been removed. The
532           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
533           examples.
535 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
536         bool "DirectFB example df_netload has been removed"
537         select BR2_LEGACY
538         select BR2_PACKAGE_DIRECTFB_EXAMPLES
539         help
540           The per-DirectFB example options have been removed. The
541           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
542           examples.
544 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
545         bool "DirectFB example df_palette has been removed"
546         select BR2_PACKAGE_DIRECTFB_EXAMPLES
547         help
548           The per-DirectFB example options have been removed. The
549           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
550           examples.
552 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
553         bool "DirectFB example df_particle has been removed"
554         select BR2_LEGACY
555         select BR2_PACKAGE_DIRECTFB_EXAMPLES
556         help
557           The per-DirectFB example options have been removed. The
558           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
559           examples.
561 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
562         bool "DirectFB example df_porter has been removed"
563         select BR2_LEGACY
564         select BR2_PACKAGE_DIRECTFB_EXAMPLES
565         help
566           The per-DirectFB example options have been removed. The
567           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
568           examples.
570 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
571         bool "DirectFB example df_stress has been removed"
572         select BR2_PACKAGE_DIRECTFB_EXAMPLES
573         help
574           The per-DirectFB example options have been removed. The
575           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
576           examples.
578 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
579         bool "DirectFB example df_texture has been removed"
580         select BR2_LEGACY
581         select BR2_PACKAGE_DIRECTFB_EXAMPLES
582         help
583           The per-DirectFB example options have been removed. The
584           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
585           examples.
587 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
588         bool "DirectFB example df_video has been removed"
589         select BR2_LEGACY
590         select BR2_PACKAGE_DIRECTFB_EXAMPLES
591         help
592           The per-DirectFB example options have been removed. The
593           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
594           examples.
596 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
597         bool "DirectFB example df_video_particle has been removed"
598         select BR2_LEGACY
599         select BR2_PACKAGE_DIRECTFB_EXAMPLES
600         help
601           The per-DirectFB example options have been removed. The
602           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
603           examples.
605 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
606         bool "DirectFB example df_window has been removed"
607         select BR2_LEGACY
608         select BR2_PACKAGE_DIRECTFB_EXAMPLES
609         help
610           The per-DirectFB example options have been removed. The
611           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
612           examples.
614 config BR2_PACKAGE_KOBS_NG
615         bool "kobs-ng was replaced by imx-kobs"
616         select BR2_LEGACY
617         select BR2_PACKAGE_IMX_KOBS
618         help
619           The outdated kobs-ng has been replaced by the Freescale-
620           maintained imx-kobs package.
622 config BR2_PACKAGE_SAWMAN
623         bool "sawman package removed"
624         select BR2_LEGACY
625         select BR2_PACKAGE_DIRECTFB_SAWMAN
626         help
627           This option has been removed because the sawman package no
628           longer exists: it was merged inside DirectFB itself. This
629           feature can now be enabled using the
630           BR2_PACKAGE_DIRECTFB_SAWMAN option.
632 config BR2_PACKAGE_DIVINE
633         bool "divine package removed"
634         select BR2_LEGACY
635         select BR2_PACKAGE_DIRECTFB_DIVINE
636         help
637           This option has been removed because the divine package no
638           longer exists: it was merged inside DirectFB itself. This
639           feature can now be enabled using the
640           BR2_PACKAGE_DIRECTFB_DIVINE option.
642 ###############################################################################
643 comment "Legacy options removed in 2015.08"
645 config BR2_PACKAGE_KODI_PVR_ADDONS
646         bool "Kodi PVR addon was split"
647         select BR2_LEGACY
648         select BR2_PACKAGE_KODI_PVR_ARGUSTV
649         select BR2_PACKAGE_KODI_PVR_DVBLINK
650         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
651         select BR2_PACKAGE_KODI_PVR_FILMON
652         select BR2_PACKAGE_KODI_PVR_HTS
653         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
654         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
655         select BR2_PACKAGE_KODI_PVR_MYTHTV
656         select BR2_PACKAGE_KODI_PVR_NEXTPVR
657         select BR2_PACKAGE_KODI_PVR_NJOY
658         select BR2_PACKAGE_KODI_PVR_PCTV
659         select BR2_PACKAGE_KODI_PVR_STALKER
660         select BR2_PACKAGE_KODI_PVR_VBOX
661         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
662         select BR2_PACKAGE_KODI_PVR_VUPLUS
663         select BR2_PACKAGE_KODI_PVR_WMC
664         help
665           Kodi PVR addon was split into seperate modules
667 config BR2_BINUTILS_VERSION_2_23_2
668         bool "binutils 2.23 option renamed"
669         select BR2_LEGACY
670         select BR2_BINUTILS_VERSION_2_23_X
671         help
672           The binutils version option has been renamed to match the
673           same patchlevel logic used by gcc. The new option is now
674           BR2_BINUTILS_VERSION_2_23_X.
676 config BR2_BINUTILS_VERSION_2_24
677         bool "binutils 2.24 option renamed"
678         select BR2_LEGACY
679         select BR2_BINUTILS_VERSION_2_24_X
680         help
681           The binutils version option has been renamed to match the
682           same patchlevel logic used by gcc. The new option is now
683           BR2_BINUTILS_VERSION_2_24_X.
685 config BR2_BINUTILS_VERSION_2_25
686         bool "binutils 2.25 option renamed"
687         select BR2_LEGACY
688         select BR2_BINUTILS_VERSION_2_25_X
689         help
690           The binutils version option has been renamed to match the
691           same patchlevel logic used by gcc. The new option is now
692           BR2_BINUTILS_VERSION_2_25_X.
694 config BR2_PACKAGE_PERF
695         bool "perf option has been renamed"
696         select BR2_LEGACY
697         select BR2_LINUX_KERNEL_TOOL_PERF
698         help
699           The perf package has been moved as a Linux tools package,
700           and the option to enable it is now
701           BR2_LINUX_KERNEL_TOOL_PERF.
703 config BR2_BINUTILS_VERSION_2_22
704         bool "binutils 2.22 removed"
705         select BR2_LEGACY
706         help
707           Binutils 2.22 has been removed, using a newer version is
708           recommended.
710 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
711         bool "gpu-viv-bin-mx6q"
712         select BR2_LEGACY
713         select BR2_PACKAGE_IMX_GPU_VIV
714         help
715           Vivante graphics libraries have been renamed to
716           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
717           name.
719 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
720         depends on BR2_PACKAGE_PYTHON
721         bool "libsemanage python bindings removed"
722         select BR2_LEGACY
723         help
724           This option has been removed, since the libsemanage Python
725           bindings on the target were not useful.
727 config BR2_TARGET_UBOOT_NETWORK
728         bool "U-Boot custom network settings removed"
729         select BR2_LEGACY
730         help
731           U-Boot's custom network settings options have been removed.
733 ###############################################################################
734 comment "Legacy options removed in 2015.05"
736 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
737         bool "jffs2 16kB erasesize NAND flash option renamed"
738         select BR2_LEGACY
739         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
740         help
741           The JFFS2 NAND flash options now longer include the page
742           size.
744 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
745         bool "jffs2 128kB erasesize NAND flash option renamed"
746         select BR2_LEGACY
747         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
748         help
749           The JFFS2 NAND flash options now longer include the page
750           size.
752 config BR2_PACKAGE_MONO_20
753         bool "2.0/3.5 .Net Runtime"
754         select BR2_LEGACY
755         help
756           This option no longer exists, all versions of the .Net
757           runtime are now installed.
759 config BR2_PACKAGE_MONO_40
760         bool "4.0 .Net Runtime"
761         select BR2_LEGACY
762         help
763           This option no longer exists, all versions of the .Net
764           runtime are now installed.
766 config BR2_PACKAGE_MONO_45
767         bool "4.5 .Net Runtime"
768         select BR2_LEGACY
769         help
770           This option no longer exists, all versions of the .Net
771           runtime are now installed.
773 config BR2_CIVETWEB_WITH_LUA
774         bool "civetweb lua option renamed"
775         select BR2_LEGACY
776         select BR2_PACKAGE_CIVETWEB_WITH_LUA
777         help
778           civetweb's lua option has been renamed to
779           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
780           packages name options.
782 config BR2_PACKAGE_TIFF_TIFF2PDF
783         bool "tiff utility-specific option removed"
784         select BR2_LEGACY
785         select BR2_PACKAGE_TIFF_UTILITIES
786         help
787           utility-specific options have been removed in favour of
788           the new option BR2_PACKAGE_TIFF_UTILITIES.
790 config BR2_PACKAGE_TIFF_TIFFCP
791         bool "tiff utility-specific option removed"
792         select BR2_LEGACY
793         select BR2_PACKAGE_TIFF_UTILITIES
794         help
795           utility-specific options have been removed in favour of
796           the new option BR2_PACKAGE_TIFF_UTILITIES.
798 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
799         bool "RTAI patch file path has been removed"
800         select BR2_LEGACY
801         help
802           This option has never worked, so it has been removed.
804 config BR2_TARGET_GENERIC_PASSWD_DES
805         bool "Encoding passwords with DES has been removed"
806         select BR2_LEGACY
807         help
808           Paswords can now only be encoded with either of md5, sha256 or sha512.
809           The default is md5, which is stronger that DES (but still pretty weak).
811 config BR2_PACKAGE_GTK2_THEME_HICOLOR
812         bool "hicolor (default theme) is a duplicate"
813         select BR2_LEGACY
814         select BR2_PACKAGE_HICOLOR_ICON_THEME
815         help
816           The option was just a duplicate of hicolor icon theme.
818 config BR2_PACKAGE_VALGRIND_PTRCHECK
819         bool "valgrind's PTRCheck was renamed to SGCheck"
820         select BR2_LEGACY
821         select BR2_PACKAGE_VALGRIND_SGCHECK
822         help
823           PTRCheck was renamed to SGCheck in valgrind
825 ###############################################################################
826 comment "Legacy options removed in 2015.02"
828 config BR2_PACKAGE_LIBGC
829         bool "libgc package removed"
830         select BR2_LEGACY
831         select BR2_PACKAGE_BDWGC
832         help
833           libgc has been removed because we have the same package under a
834           different name, bdwgc.
836 config BR2_PACKAGE_WDCTL
837         bool "util-linux' wdctl option has been renamed"
838         select BR2_LEGACY
839         select BR2_PACKAGE_UTIL_LINUX_WDCTL
840         help
841           util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
842           to be aligned with how the other options are named.
844 config BR2_PACKAGE_UTIL_LINUX_ARCH
845         bool "util-linux' arch option has been removed"
846         select BR2_LEGACY
847         help
848           util-linux' arch was dropped in util-linux 2.23, in favor of
849           the coreutils version.
851 config BR2_PACKAGE_UTIL_LINUX_DDATE
852         bool "util-linux' ddate option has been removed"
853         select BR2_LEGACY
854         help
855           util-linux' ddate was dropped in util-linux 2.23.
857 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
858         bool "rpm's bzip2 payloads option has been removed"
859         select BR2_LEGACY
860         select BR2_PACKAGE_BZIP2
861         help
862           The bzip2 payloads option rely entirely on the dependant package bzip2.
863           So, you need to select it to enable this feature.
865 config BR2_PACKAGE_RPM_XZ_PAYLOADS
866         bool "rpm's xz payloads option has been removed"
867         select BR2_LEGACY
868         select BR2_PACKAGE_XZ
869         help
870           The xz payloads option rely entirely on the dependant package xz.
871           So, you need to select it to enable this feature.
873 config BR2_PACKAGE_M4
874         bool "m4 target package removed"
875         select BR2_LEGACY
876         help
877           The m4 target package has been removed, it's been
878           deprecated for some time now.
880 config BR2_PACKAGE_FLEX_BINARY
881         bool "flex binary in target option removed"
882         select BR2_LEGACY
883         help
884           The flex binary in the target option has been removed.
885           It's been deprecated for some time now and is essentially a
886           development tool which isn't very useful in the target.
888 config BR2_PACKAGE_BISON
889         bool "bison target package removed"
890         select BR2_LEGACY
891         help
892           The bison target package has been removed, it's been
893           deprecated for some time now and is essentially a development
894           tool which isn't very useful in the target.
896 config BR2_PACKAGE_GOB2
897         bool "gob2 target package removed"
898         select BR2_LEGACY
899         help
900           The gob2 target package has been removed, it's been
901           deprecated for some time now and was essentially useless
902           without a target toolchain.
904 config BR2_PACKAGE_DISTCC
905         bool "distcc target package removed"
906         select BR2_LEGACY
907         help
908           The distcc target package has been removed, it's been
909           deprecated for some time now and was essentially useless
910           without a target toolchain.
912 config BR2_PACKAGE_HASERL_VERSION_0_8_X
913         bool "haserl 0.8.x version removed"
914         select BR2_LEGACY
915         help
916           The 0.8.x version option for haserl has been removed since it
917           has been deprecated for some time now.
918           You should be able to use the 0.9.x version without issues.
920 config BR2_PACKAGE_STRONGSWAN_TOOLS
921         bool "strongswan option has been removed"
922         select BR2_LEGACY
923         select BR2_PACKAGE_STRONGSWAN_PKI
924         select BR2_PACKAGE_STRONGSWAN_SCEP
925         help
926           The tools option has been removed upstream and the different tools
927           have been split between the pki and scep options, with others
928           deprecated.
930 config BR2_PACKAGE_XBMC_ADDON_XVDR
931         bool "xbmc options have been renamed"
932         select BR2_LEGACY
933         select BR2_PACKAGE_KODI_ADDON_XVDR
934         help
935           The XBMC media center project was renamed to Kodi entertainment center
937 config BR2_PACKAGE_XBMC_PVR_ADDONS
938         bool "xbmc options have been renamed"
939         select BR2_LEGACY
940         select BR2_PACKAGE_KODI_PVR_ADDONS
941         help
942           The XBMC media center project was renamed to Kodi entertainment center
944 config BR2_PACKAGE_XBMC
945         bool "xbmc options have been renamed"
946         select BR2_LEGACY
947         select BR2_PACKAGE_KODI
948         help
949           The XBMC media center project was renamed to Kodi entertainment center
951 config BR2_PACKAGE_XBMC_ALSA_LIB
952         bool "xbmc options have been renamed"
953         select BR2_LEGACY
954         select BR2_PACKAGE_KODI_ALSA_LIB
955         help
956           The XBMC media center project was renamed to Kodi entertainment center
958 config BR2_PACKAGE_XBMC_AVAHI
959         bool "xbmc options have been renamed"
960         select BR2_LEGACY
961         select BR2_PACKAGE_KODI_AVAHI
962         help
963           The XBMC media center project was renamed to Kodi entertainment center
965 config BR2_PACKAGE_XBMC_DBUS
966         bool "xbmc options have been renamed"
967         select BR2_LEGACY
968         select BR2_PACKAGE_KODI_DBUS
969         help
970           The XBMC media center project was renamed to Kodi entertainment center
972 config BR2_PACKAGE_XBMC_LIBBLURAY
973         bool "xbmc options have been renamed"
974         select BR2_LEGACY
975         select BR2_PACKAGE_KODI_LIBBLURAY
976         help
977           The XBMC media center project was renamed to Kodi entertainment center
979 config BR2_PACKAGE_XBMC_GOOM
980         bool "xbmc options have been renamed"
981         select BR2_LEGACY
982         select BR2_PACKAGE_KODI_GOOM
983         help
984           The XBMC media center project was renamed to Kodi entertainment center
986 config BR2_PACKAGE_XBMC_RSXS
987         bool "xbmc options have been renamed"
988         select BR2_LEGACY
989         select BR2_PACKAGE_KODI_RSXS
990         help
991           The XBMC media center project was renamed to Kodi entertainment center
993 config BR2_PACKAGE_XBMC_LIBCEC
994         bool "xbmc options have been renamed"
995         select BR2_LEGACY
996         select BR2_PACKAGE_KODI_LIBCEC
997         help
998           The XBMC media center project was renamed to Kodi entertainment center
1000 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
1001         bool "xbmc options have been renamed"
1002         select BR2_LEGACY
1003         select BR2_PACKAGE_KODI_LIBMICROHTTPD
1004         help
1005           The XBMC media center project was renamed to Kodi entertainment center
1007 config BR2_PACKAGE_XBMC_LIBNFS
1008         bool "xbmc options have been renamed"
1009         select BR2_LEGACY
1010         select BR2_PACKAGE_KODI_LIBNFS
1011         help
1012           The XBMC media center project was renamed to Kodi entertainment center
1014 config BR2_PACKAGE_XBMC_RTMPDUMP
1015         bool "xbmc options have been renamed"
1016         select BR2_LEGACY
1017         select BR2_PACKAGE_KODI_RTMPDUMP
1018         help
1019           The XBMC media center project was renamed to Kodi entertainment center
1021 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
1022         bool "xbmc options have been renamed"
1023         select BR2_LEGACY
1024         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
1025         help
1026           The XBMC media center project was renamed to Kodi entertainment center
1028 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
1029         bool "xbmc options have been renamed"
1030         select BR2_LEGACY
1031         select BR2_PACKAGE_KODI_LIBSMBCLIENT
1032         help
1033           The XBMC media center project was renamed to Kodi entertainment center
1035 config BR2_PACKAGE_XBMC_LIBTHEORA
1036         bool "xbmc options have been renamed"
1037         select BR2_LEGACY
1038         select BR2_PACKAGE_KODI_LIBTHEORA
1039         help
1040           The XBMC media center project was renamed to Kodi entertainment center
1042 config BR2_PACKAGE_XBMC_LIBUSB
1043         bool "xbmc options have been renamed"
1044         select BR2_LEGACY
1045         select BR2_PACKAGE_KODI_LIBUSB
1046         help
1047           The XBMC media center project was renamed to Kodi entertainment center
1049 config BR2_PACKAGE_XBMC_LIBVA
1050         bool "xbmc options have been renamed"
1051         select BR2_LEGACY
1052         select BR2_PACKAGE_KODI_LIBVA
1053         help
1054           The XBMC media center project was renamed to Kodi entertainment center
1056 config BR2_PACKAGE_XBMC_WAVPACK
1057         bool "xbmc options have been renamed"
1058         select BR2_LEGACY
1059         select BR2_PACKAGE_KODI_WAVPACK
1060         help
1061           The XBMC media center project was renamed to Kodi entertainment center
1063 config BR2_PREFER_STATIC_LIB
1064         bool "static library option renamed"
1065         select BR2_LEGACY
1066         help
1067           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
1068           highlights the fact that the option no longer "prefers"
1069           static libraries, but "enforces" static libraries (i.e
1070           shared libraries are completely unused).
1072           Take care of updating the type of libraries you want under the
1073           "Build options" menu.
1075 ###############################################################################
1076 comment "Legacy options removed in 2014.11"
1078 config BR2_x86_generic
1079         bool "x86 generic variant has been removed"
1080         select BR2_LEGACY
1081         help
1082           The generic x86 CPU variant has been removed. Use another
1083           CPU variant instead.
1085 config BR2_GCC_VERSION_4_4_X
1086         bool "gcc 4.4.x has been removed"
1087         select BR2_LEGACY
1088         help
1089           The 4.4.x version of gcc has been removed. Use a newer
1090           version instead.
1092 config BR2_sparc_sparchfleon
1093         bool "sparchfleon CPU has been removed"
1094         select BR2_LEGACY
1095         help
1096           The sparchfleon CPU was only supported in a patched gcc 4.4
1097           version. Its support has been removed in favor of the leon3
1098           CPU starting from gcc 4.8.x.
1100 config BR2_sparc_sparchfleonv8
1101         bool "sparchfleonv8 CPU has been removed"
1102         select BR2_LEGACY
1103         help
1104           The sparchfleonv8 CPU was only supported in a patched gcc
1105           4.4 version. Its support has been removed in favor of the
1106           leon3 CPU starting from gcc 4.8.x.
1108 config BR2_sparc_sparcsfleon
1109         bool "sparcsfleon CPU has been removed"
1110         select BR2_LEGACY
1111         help
1112           The sparcsfleon CPU was only supported in a patched gcc 4.4
1113           version. Its support has been removed in favor of the leon3
1114           CPU starting from gcc 4.8.x.
1116 config BR2_sparc_sparcsfleonv8
1117         bool "sparcsfleonv8 CPU has been removed"
1118         select BR2_LEGACY
1119         help
1120           The sparcsfleonv8 CPU was only supported in a patched gcc
1121           4.4 version. Its support has been removed in favor of the
1122           leon3 CPU starting from gcc 4.8.x.
1124 config BR2_PACKAGE_XLIB_LIBPCIACCESS
1125         bool "xlib-libpciaccess option has been renamed"
1126         depends on BR2_PACKAGE_XORG7
1127         select BR2_LEGACY
1128         select BR2_PACKAGE_LIBPCIACCESS
1129         help
1130           libpciaccess neither depends on X11 nor Xlib. Thus the
1131           package has been renamed BR2_PACKAGE_LIBPCIACCESS
1133 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
1134         bool "Xceive xc5000 option has been renamed"
1135         select BR2_LEGACY
1136         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
1137         help
1138           The Xceive xc5000 option now also handles older firmwares from
1139           Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
1140           from Cresta, who bought Xceive.
1142 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1143         bool "Chelsio T4 option has been renamed"
1144         select BR2_LEGACY
1145         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1146         help
1147           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
1148           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
1149           to better account for the fact that a T5 variant exists.
1151 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
1152         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
1153         select BR2_LEGACY
1154         help
1155           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
1156           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
1157           select it in:
1158               Target packages -> Hardware handling ->
1159               Firmware -> linux-firmware -> WiFi firmware ->
1160               iwlwifi 3160/726x revision to use (revision 7)
1162 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
1163         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
1164         select BR2_LEGACY
1165         help
1166           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
1167           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
1168           select it in:
1169               Target packages -> Hardware handling ->
1170               Firmware -> linux-firmware -> WiFi firmware ->
1171               iwlwifi 3160/726x revision to use (revision 8)
1173 ###############################################################################
1174 comment "Legacy options removed in 2014.08"
1176 config BR2_PACKAGE_LIBELF
1177         bool "libelf has been removed"
1178         select BR2_PACKAGE_ELFUTILS
1179         select BR2_LEGACY
1180         help
1181           The libelf package provided an old version of the libelf library
1182           and is deprecated. The libelf library is now provided by the
1183           elfutils package.
1185 config BR2_KERNEL_HEADERS_3_8
1186         bool "kernel headers version 3.8.x are no longer supported"
1187         select BR2_KERNEL_HEADERS_3_10
1188         select BR2_LEGACY
1189         help
1190           Version 3.8.x of the Linux kernel headers have been deprecated
1191           for more than four buildroot releases and are now removed.
1192           As an alternative, version 3.10.x of the headers have been
1193           automatically selected in your configuration.
1195 config BR2_PACKAGE_GETTEXT_TOOLS
1196         bool "support for gettext-tools on target has been removed"
1197         select BR2_LEGACY
1198         help
1199           The option to install the gettext utilities on the target
1200           has been removed. This is not necessary as Buildroot is not
1201           designed to provide a full development environment on the
1202           target. gettext tools should be used on the build machine
1203           instead.
1205 config BR2_PACKAGE_PROCPS
1206         bool "procps has been replaced by procps-ng"
1207         select BR2_PACKAGE_PROCPS_NG
1208         select BR2_LEGACY
1209         help
1210           The procps package has been replaced by the equivalent procps-ng.
1212 config BR2_BINUTILS_VERSION_2_20_1
1213         bool "binutils 2.20.1 has been removed"
1214         select BR2_LEGACY
1215         help
1216           The 2.20.1 version of binutils has been removed. Use a newer
1217           version instead.
1219 config BR2_BINUTILS_VERSION_2_21
1220         bool "binutils 2.21 has been removed"
1221         select BR2_LEGACY
1222         help
1223           The 2.21 version of binutils has been removed. Use a newer
1224           version instead.
1226 config BR2_BINUTILS_VERSION_2_23_1
1227         bool "binutils 2.23.1 has been removed"
1228         select BR2_LEGACY
1229         help
1230           The 2.23.1 version of binutils has been removed. Use a newer
1231           version instead.
1233 config BR2_UCLIBC_VERSION_0_9_32
1234         bool "uclibc 0.9.32 has been removed"
1235         select BR2_LEGACY
1236         help
1237           The 0.9.32 version of uClibc has been removed. Use a newer
1238           version instead.
1240 config BR2_GCC_VERSION_4_3_X
1241         bool "gcc 4.3.x has been removed"
1242         select BR2_LEGACY
1243         help
1244           The 4.3.x version of gcc has been removed. Use a newer
1245           version instead.
1247 config BR2_GCC_VERSION_4_6_X
1248         bool "gcc 4.6.x has been removed"
1249         select BR2_LEGACY
1250         help
1251           The 4.6.x version of gcc has been removed. Use a newer
1252           version instead.
1254 config BR2_GDB_VERSION_7_4
1255         bool "gdb 7.4 has been removed"
1256         select BR2_LEGACY
1257         help
1258           The 7.4 version of gdb has been removed. Use a newer version
1259           instead.
1261 config BR2_GDB_VERSION_7_5
1262         bool "gdb 7.5 has been removed"
1263         select BR2_LEGACY
1264         help
1265           The 7.5 version of gdb has been removed. Use a newer version
1266           instead.
1268 config BR2_BUSYBOX_VERSION_1_19_X
1269         bool "busybox version selection has been removed"
1270         select BR2_LEGACY
1271         help
1272           The possibility of selecting the Busybox version has been
1273           removed. Use the latest version provided by the Busybox
1274           package instead.
1276 config BR2_BUSYBOX_VERSION_1_20_X
1277         bool "busybox version selection has been removed"
1278         select BR2_LEGACY
1279         help
1280           The possibility of selecting the Busybox version has been
1281           removed. Use the latest version provided by the Busybox
1282           package instead.
1284 config BR2_BUSYBOX_VERSION_1_21_X
1285         bool "busybox version selection has been removed"
1286         select BR2_LEGACY
1287         help
1288           The possibility of selecting the Busybox version has been
1289           removed. Use the latest version provided by the Busybox
1290           package instead.
1292 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
1293         bool "decode_tm6000"
1294         select BR2_PACKAGE_LIBV4L_UTILS
1295         select BR2_LEGACY
1296         help
1297           This libv4l option has been deprecated and replaced by a single
1298           option to build all the libv4l utilities.
1300 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
1301         bool "ir-keytable"
1302         select BR2_PACKAGE_LIBV4L_UTILS
1303         select BR2_LEGACY
1304         help
1305           This libv4l option has been deprecated and replaced by a single
1306           option to build all the libv4l utilities.
1308 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
1309         bool "v4l2-compliance"
1310         select BR2_PACKAGE_LIBV4L_UTILS
1311         select BR2_LEGACY
1312         help
1313           This libv4l option has been deprecated and replaced by a single
1314           option to build all the libv4l utilities.
1316 config BR2_PACKAGE_LIBV4L_V4L2_CTL
1317         bool "v4l2-ctl"
1318         select BR2_PACKAGE_LIBV4L_UTILS
1319         select BR2_LEGACY
1320         help
1321           This libv4l option has been deprecated and replaced by a single
1322           option to build all the libv4l utilities.
1324 config BR2_PACKAGE_LIBV4L_V4L2_DBG
1325         bool "v4l2-dbg"
1326         select BR2_PACKAGE_LIBV4L_UTILS
1327         select BR2_LEGACY
1328         help
1329           This libv4l option has been deprecated and replaced by a single
1330           option to build all the libv4l utilities.
1332 ###############################################################################
1333 comment "Legacy options removed in 2014.05"
1335 config BR2_PACKAGE_EVTEST_CAPTURE
1336         bool "evtest-capture support removed (dropped since evtest 1.31)"
1337         select BR2_LEGACY
1338         help
1339           Support for evtest-capture has been removed (dropped from
1340           evtest package since version 1.31), use evemu package
1341           instead.
1343 config BR2_KERNEL_HEADERS_3_6
1344         bool "kernel headers version 3.6.x are no longer supported"
1345         select BR2_KERNEL_HEADERS_3_10
1346         select BR2_LEGACY
1347         help
1348           Version 3.6.x of the Linux kernel headers have been deprecated
1349           for more than four buildroot releases and are now removed.
1350           As an alternative, version 3.10.x of the headers have been
1351           automatically selected in your configuration.
1353 config BR2_KERNEL_HEADERS_3_7
1354         bool "kernel headers version 3.7.x are no longer supported"
1355         select BR2_KERNEL_HEADERS_3_10
1356         select BR2_LEGACY
1357         help
1358           Version 3.7.x of the Linux kernel headers have been deprecated
1359           for more than four buildroot releases and are now removed.
1360           As an alternative, version 3.10.x of the headers have been
1361           automatically selected in your configuration.
1363 config BR2_PACKAGE_VALA
1364         bool "vala target package has been removed"
1365         select BR2_LEGACY
1366         help
1367           The 'vala' target package has been removed since it has been
1368           deprecated for more than four buildroot releases.
1369           Note: the host vala package still exists.
1371 config BR2_TARGET_TZ_ZONELIST
1372         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
1374 config BR2_PACKAGE_TZDATA_ZONELIST
1375         string "tzdata: the timezone list option has been renamed"
1376         help
1377           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
1378           BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
1379           menu. You'll need to select BR2_TARGET_TZ_INFO.
1381 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
1382         bool
1383         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
1384         select BR2_LEGACY
1386 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
1387         bool "Lua command-line editing none has been renamed"
1388         select BR2_LEGACY
1389         help
1390           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
1391           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
1392           it in the corresponding choice.
1394 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
1395         bool "Lua command-line editing using readline has been renamed"
1396         select BR2_LEGACY
1397         help
1398           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
1399           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
1400           it in the corresponding choice.
1402 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
1403         bool "Lua command-line editing using linenoise has been renamed"
1404         select BR2_LEGACY
1405         help
1406           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
1407           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
1408           it in the corresponding choice.
1410 config BR2_PACKAGE_DVB_APPS_UTILS
1411         bool "dvb-apps utilities now built by default"
1412         select BR2_LEGACY
1413         help
1414           The dvb-apps utilities are now always built when the dvb-apps
1415           package is selected.
1417 config BR2_KERNEL_HEADERS_SNAP
1418         bool "Local Linux snapshot support removed"
1419         select BR2_LEGACY
1420         help
1421           Support for using a custom snapshot to install the Linux
1422           kernel headers has been removed.
1424 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
1425         bool "/dev management by udev removed"
1426         select BR2_LEGACY
1427         help
1428           The 'udev' package has been converted to a virtual package.
1429           The providers for this feature are: 'eudev', 'systemd'.
1431           Therefore, if you are not using 'systemd' as init system, you
1432           must choose 'Dynamic using eudev' in the '/dev management'
1433           menu to get the same behaviour as in your old configuration.
1435           If you are using 'systemd', its internal implementation of
1436           'udev' will be used automatically.
1438           You must also check the packages depending on 'udev' are still
1439           selected.
1441 config BR2_PACKAGE_UDEV
1442         bool "udev is now a virtual package"
1443         select BR2_LEGACY
1444         select BR2_PACKAGE_HAS_UDEV
1445         help
1446           The 'udev' package has been converted to a virtual package.
1447           The providers for this feature are: 'eudev', 'systemd'.
1449           Your old configuration refers to packages depending on 'udev',
1450           either for build or at runtime.
1452           Check that a 'udev' provider is selected. If you are not using
1453           'systemd' as init system, 'eudev' should be selected, which is
1454           the case if '/dev management' is set to 'Dynamic using eudev'.
1456           If you are using 'systemd', its internal implementation of 'udev'
1457           is used.
1459 config BR2_PACKAGE_UDEV_RULES_GEN
1460         bool "udev rules generation handled by provider"
1461         select BR2_LEGACY
1462         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
1463         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
1464         help
1465           The 'udev' package has been converted to a virtual package.
1466           The providers for this feature are: 'eudev', 'systemd'.
1468           If you are not using 'systemd' as init system, udev rules
1469           generation will be handled by 'eudev'. Check that
1470           '/dev management' is set to 'Dynamic using eudev' to get
1471           the same behaviour as in your old configuration.
1473           If you are using 'systemd', it internal implementation of 'udev'
1474           will generate the rules.
1476 config BR2_PACKAGE_UDEV_ALL_EXTRAS
1477         bool "udev extras removed"
1478         select BR2_LEGACY
1479         help
1480           The 'udev' package has been converted to a virtual package.
1481           The providers for this feature are: 'eudev', 'systemd'.
1483           The option to enable the extra features of 'udev' (gudev, ...)
1484           has been removed. These features are automatically enabled in
1485           the 'udev' providers if the dependencies are selected. For
1486           example, selecting 'libglib2' will trigger the build of gudev.
1488 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
1489         bool "xlib-libpthread-stubs option has been renamed"
1490         depends on BR2_PACKAGE_XORG7
1491         select BR2_LEGACY
1492         select BR2_PACKAGE_LIBPTHREAD_STUBS
1493         help
1494           The pthread stubs neither depend on X11 nor Xlib. Thus the
1495           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
1497 ###############################################################################
1498 comment "Legacy options removed in 2014.02"
1500 config BR2_sh2
1501         bool "sh2 support removed"
1502         select BR2_LEGACY
1503         help
1504           Due to an inexistent user base and generally poor Linux
1505           support, the support for the SH2 architecture was removed.
1507 config BR2_sh3
1508         bool "sh3 support removed"
1509         select BR2_LEGACY
1510         help
1511           Due to an inexistent user base and generally poor Linux
1512           support, the support for the SH3 architecture was removed.
1514 config BR2_sh3eb
1515         bool "sh3eb support removed"
1516         select BR2_LEGACY
1517         help
1518           Due to an inexistent user base and generally poor Linux
1519           support, the support for the SH3eb architecture was removed.
1521 config BR2_KERNEL_HEADERS_3_1
1522         bool "kernel headers version 3.1.x are no longer supported"
1523         select BR2_KERNEL_HEADERS_3_2
1524         select BR2_LEGACY
1525         help
1526           Version 3.1.x of the Linux kernel headers have been deprecated
1527           for more than four buildroot releases and are now removed.
1528           As an alternative, version 3.2.x of the headers have been
1529           automatically selected in your configuration.
1531 config BR2_KERNEL_HEADERS_3_3
1532         bool "kernel headers version 3.3.x are no longer supported"
1533         select BR2_KERNEL_HEADERS_3_4
1534         select BR2_LEGACY
1535         help
1536           Version 3.3.x of the Linux kernel headers have been deprecated
1537           for more than four buildroot releases and are now removed.
1538           As an alternative, version 3.4.x of the headers have been
1539           automatically selected in your configuration.
1541 config BR2_KERNEL_HEADERS_3_5
1542         bool "kernel headers version 3.5.x are no longer supported"
1543         select BR2_KERNEL_HEADERS_3_10
1544         select BR2_LEGACY
1545         help
1546           Version 3.5.x of the Linux kernel headers have been deprecated
1547           for more than four buildroot releases and are now removed.
1548           As an alternative, version 3.10.x of the headers have been
1549           automatically selected in your configuration.
1551 config BR2_GDB_VERSION_7_2
1552         bool "gdb 7.2.x is no longer supported"
1553         select BR2_GDB_VERSION_7_6
1554         select BR2_LEGACY
1555         help
1556           Version 7.2.x of gdb has been deprecated for more than four
1557           buildroot releases and is now removed. As an alternative, gdb
1558           7.5.x has been automatically selected in your configuration.
1560 config BR2_GDB_VERSION_7_3
1561         bool "gdb 7.3.x is no longer supported"
1562         select BR2_GDB_VERSION_7_6
1563         select BR2_LEGACY
1564         help
1565           Version 7.3.x of gdb has been deprecated for more than four
1566           buildroot releases and is now removed. As an alternative, gdb
1567           7.5.x has been automatically selected in your configuration.
1569 config BR2_PACKAGE_CCACHE
1570         bool "ccache target package has been removed"
1571         select BR2_LEGACY
1572         help
1573           The 'ccache' target package has been removed since it has been
1574           deprecated for more than four buildroot releases.
1575           Note: using ccache for speeding up builds is still supported.
1577 config BR2_HAVE_DOCUMENTATION
1578         bool "support for documentation on target has been removed"
1579         select BR2_LEGACY
1580         help
1581           Support for documentation on target has been removed since it has
1582           been deprecated for more than four buildroot releases.
1584 config BR2_PACKAGE_AUTOMAKE
1585         bool "automake target package has been removed"
1586         select BR2_LEGACY
1587         help
1588           The 'automake' target package has been removed since it has been
1589           deprecated for more than four buildroot releases.
1590           Note: the host automake still exists.
1592 config BR2_PACKAGE_AUTOCONF
1593         bool "autoconf target package has been removed"
1594         select BR2_LEGACY
1595         help
1596           The 'autoconf' target package has been removed since it has been
1597           deprecated for more than four buildroot releases.
1598           Note: the host autoconf still exists.
1600 config BR2_PACKAGE_XSTROKE
1601         bool "xstroke has been removed"
1602         select BR2_LEGACY
1603         help
1604           The 'xstroke' package has been removed since it has been
1605           deprecated for more than four buildroot releases.
1607 config BR2_PACKAGE_LZMA
1608         bool "lzma target package has been removed"
1609         select BR2_LEGACY
1610         help
1611           The 'lzma' target package has been removed since it has been
1612           deprecated for more than four buildroot releases.
1613           Note: generating lzma-compressed rootfs images is still supported.
1615 config BR2_PACKAGE_TTCP
1616         bool "ttcp has been removed"
1617         select BR2_LEGACY
1618         help
1619           The 'ttcp' package has been removed since it has been
1620           deprecated for more than four buildroot releases.
1622 config BR2_PACKAGE_LIBNFC_LLCP
1623         bool "libnfc-llcp has been replaced by libllcp"
1624         select BR2_LEGACY
1625         select BR2_PACKAGE_LIBLLCP
1626         help
1627           The 'libnfc-llcp' package has been removed since upstream renamed
1628           to 'libllcp'. We have added a new package for 'libllcp' and bumped
1629           the version at the same time.
1631 config BR2_PACKAGE_MYSQL_CLIENT
1632         bool "MySQL client renamed to MySQL"
1633         select BR2_LEGACY
1634         select BR2_PACKAGE_MYSQL
1635         help
1636           The option has been renamed BR2_PACKAGE_MYSQL
1638 config BR2_PACKAGE_SQUASHFS3
1639         bool "squashfs3 has been removed"
1640         select BR2_LEGACY
1641         select BR2_PACKAGE_SQUASHFS
1642         help
1643           The 'squashfs3' package has been removed since it has been
1644           deprecated for more than four buildroot releases. Package
1645           'squashfs' (4) has been selected automatically as replacement.
1647 config BR2_TARGET_ROOTFS_SQUASHFS3
1648         bool "squashfs3 rootfs support has been removed"
1649         select BR2_LEGACY
1650         help
1651           Together with the removal of the squashfs3 package, support
1652           for squashfs3 root filesystems has been removed too. Squashfs
1653           root filesystems will automatically use squashfs4 now.
1655 config BR2_PACKAGE_NETKITBASE
1656         bool "netkitbase has been removed"
1657         select BR2_LEGACY
1658         help
1659           The 'netkitbase' package has been removed since it has been
1660           deprecated since 2012.11. This package provided 'inetd'
1661           which is replaced by 'xinet' and 'ping' which is replaced by
1662           'busybox' or 'fping'.
1664 config BR2_PACKAGE_NETKITTELNET
1665         bool "netkittelnet has been removed"
1666         select BR2_LEGACY
1667         help
1668           The 'netkittelnet' package has been removed since it has
1669           been deprecated since 2012.11. 'busybox' provides a telnet
1670           client and should be used instead.
1672 config BR2_PACKAGE_LUASQL
1673         bool "luasql has been replaced by luasql-sqlite3"
1674         select BR2_PACKAGE_LUASQL_SQLITE3
1675         select BR2_LEGACY
1676         help
1677           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
1679 config BR2_PACKAGE_LUACJSON
1680         bool "luacjson has been replaced by lua-cjson"
1681         select BR2_PACKAGE_LUA_CJSON
1682         select BR2_LEGACY
1683         help
1684           The option has been renamed BR2_PACKAGE_LUA_CJSON.
1686 ###############################################################################
1687 comment "Legacy options removed in 2013.11"
1689 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
1690         bool "lvm2's 'dmsetup only' option removed"
1691         select BR2_LEGACY
1692         help
1693           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
1694           led to problems with other packages that need the full lvm2
1695           suite. Therefore, the option has been replaced with the positive
1696           BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
1698 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
1699 # in order to automatically propagate old configs
1701 config BR2_PACKAGE_QT_JAVASCRIPTCORE
1702         bool "qt javascriptcore option removed"
1703         select BR2_LEGACY
1704         help
1705           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
1706           force the activation or disabling of the JIT compiler in the
1707           Qt Javascript interpreter. However, the JIT compiler is not
1708           available for all architectures, so forcing its activation
1709           does not always work. Moreover, Qt knows by itself for which
1710           architectures JIT support is possible, and will
1711           automatically enable it if possible.
1713           Therefore, this option was in fact useless, and causing
1714           build problems when enabled on architectures for which the
1715           JIT support was not available. It has been removed, and
1716           there is no replacement: Qt will enable JIT at compile time
1717           when possible.
1719 config BR2_PACKAGE_MODULE_INIT_TOOLS
1720         bool "module-init-tools replaced by kmod"
1721         select BR2_PACKAGE_KMOD
1722         select BR2_PACKAGE_KMOD_TOOLS
1723         select BR2_LEGACY
1724         help
1725           The 'module-init-tools' package has been removed, since it
1726           has been depracated upstream and replaced by 'kmod'.
1728 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
1729         string "u-boot: the git repository URL option has been renamed"
1730         help
1731           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
1732           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
1734 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
1735         bool
1736         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
1737         select BR2_LEGACY
1739 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
1740 # boot/uboot/Config.in
1742 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
1743         string "u-boot: the git repository version option has been renamed"
1744         help
1745           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
1746           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
1748 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
1749         bool
1750         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
1751         select BR2_LEGACY
1753 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
1754 # boot/uboot/Config.in
1756 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
1757         string "linux: the git repository URL option has been renamed"
1758         help
1759           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
1760           been renamed to
1761           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
1763 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
1764         bool
1765         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
1766         select BR2_LEGACY
1768 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
1769 # linux/Config.in
1771 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
1772         string "linux: the git repository version option has been renamed"
1773         help
1774           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
1775           been renamed to
1776           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
1778 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
1779         bool
1780         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
1781         select BR2_LEGACY
1783 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
1784 # linux/Config.in
1786 ###############################################################################
1787 comment "Legacy options removed in 2013.08"
1789 config BR2_ARM_OABI
1790         bool "ARM OABI support has been removed"
1791         select BR2_LEGACY
1792         help
1793           The support for the ARM OABI was deprecated since a while,
1794           and has been removed completely from Buildroot. It is also
1795           deprecated in upstream gcc, since gcc 4.7. People should
1796           switch to EABI instead, which should not be a problem as
1797           long as you don't have pre-built OABI binaries in your
1798           system that you can't recompile.
1800 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
1801         bool "dosfstools dosfsck renamed to fsck.fat"
1802         select BR2_LEGACY
1803         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
1804         help
1805           dosfsck was renamed upstream to fsck.fat for consistency.
1807 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
1808         bool "dosfstools dosfslabel renamed to fatlabel"
1809         select BR2_LEGACY
1810         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
1811         help
1812           doslabel was renamed upstream to fatlabel for consistency.
1814 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
1815         bool "dosfstools mkdosfs renamed to mkfs.fat"
1816         select BR2_LEGACY
1817         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
1818         help
1819           mkdosfs was renamed upstream to mkfs.fat for consistency.
1821 config BR2_ELF2FLT
1822         bool "the elf2flt option has been renamed"
1823         select BR2_LEGACY
1824         help
1825           The BR2_ELF2FLT option has been renamed to
1826           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
1827           the package infrastructure.
1829 config BR2_VFP_FLOAT
1830         bool "the ARM VFP floating point option has been renamed"
1831         select BR2_LEGACY
1832         help
1833           Due to a major refactoring of the floating-point handling of
1834           the ARM architecture support, the BR2_VFP_FLOAT option has
1835           been replaced with a choice of options that allows to select
1836           between various VFP versions/capabilities.
1838 config BR2_PACKAGE_GCC_TARGET
1839         bool "gcc on the target filesystem has been removed"
1840         select BR2_LEGACY
1841         help
1842           The support for gcc in the target filesystem was deprecated
1843           since a while, and has been removed completely from Buildroot.
1844           See Buildroot's documentation for more explanations.
1846 config BR2_HAVE_DEVFILES
1847         bool "development files in target filesystem has been removed"
1848         select BR2_LEGACY
1849         help
1850           The installation of the development files in the target
1851           filesystem was deprecated since a while, and has been removed
1852           completely from Buildroot.
1853           See Buildroot's documentation for more explanations.
1855 ###############################################################################
1856 comment "Legacy options removed in 2013.05"
1858 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
1859         bool "Realtek 8192 replaced by Realtek 81xx"
1860         select BR2_LEGACY
1861         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
1862         help
1863           Now covers the whole Realtek 81xx familly: 8188/8192.
1865 config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
1866         bool "Realtek 8712 replaced by Realtek 87xx"
1867         select BR2_LEGACY
1868         select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
1869         help
1870           Now covers the whole Realtek 87xx familly: 8712/8723.
1872 ###############################################################################
1873 comment "Legacy options removed in 2013.02"
1875 config BR2_sa110
1876         bool "sa110 ARM target switched to strongarm"
1877         select BR2_LEGACY
1878         select BR2_strongarm
1879         help
1880           The SA110 is the same as a generic StrongARM, it just differs
1881           in speed, peripherals and cache.
1883 config BR2_sa1100
1884         bool "sa1100 ARM target switched to strongarm"
1885         select BR2_LEGACY
1886         select BR2_strongarm
1887         help
1888           The SA1100 is the same as a generic StrongARM, it just differs
1889           in speed, peripherals and cache.
1891 config BR2_PACKAGE_GDISK
1892         bool "gdisk has been replaced by gptfdisk"
1893         select BR2_LEGACY
1894         select BR2_PACKAGE_GPTFDISK
1895         help
1896           The option has been renamed BR2_PACKAGE_GPTFDISK.
1898 config BR2_PACKAGE_GDISK_GDISK
1899         bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
1900         select BR2_LEGACY
1901         select BR2_PACKAGE_GPTFDISK
1902         select BR2_PACKAGE_GPTFDISK_GDISK
1903         help
1904           The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
1906 config BR2_PACKAGE_GDISK_SGDISK
1907         bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
1908         select BR2_LEGACY
1909         select BR2_PACKAGE_GPTFDISK
1910         select BR2_PACKAGE_GPTFDISK_SGDISK
1911         help
1912           The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
1914 config BR2_PACKAGE_GDB_HOST
1915         bool "gdb for the host option has been renamed"
1916         select BR2_PACKAGE_HOST_GDB
1917         select BR2_LEGACY
1918         help
1919           Due to the conversion of gdb to the package infrastructure,
1920           the BR2_PACKAGE_GDB_HOST option has been renamed
1921           BR2_PACKAGE_HOST_GDB.
1923 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
1924         bool "DirectFB RGB16 dithering option has been renamed"
1925         select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
1926         select BR2_LEGACY
1927         help
1928           The option has been renamed
1929           BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
1931 config BR2_PACKAGE_DIRECTB_TESTS
1932         bool "DirectFB Tests option has been renamed"
1933         select BR2_PACKAGE_DIRECTFB_TESTS
1934         select BR2_LEGACY
1935         help
1936           The option has been renamed
1937           BR2_PACKAGE_DIRECTFB_TESTS.
1939 ###############################################################################
1940 comment "Legacy options removed in 2012.11"
1942 config BR2_PACKAGE_CUSTOMIZE
1943         bool "customize package has been removed"
1944         select BR2_LEGACY
1945         help
1946           The 'customize' special package has been removed. Instead,
1947           we recommend to create either your own packages, or use a
1948           post-build script to customize your root filesystem. See
1949           Buildroot's documentation for more details.
1951 config BR2_PACKAGE_XSERVER_xorg
1952         bool "X.org modular server"
1953         select BR2_LEGACY
1954         select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
1955         help
1956           The option has been renamed
1957           BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
1959 config BR2_PACKAGE_XSERVER_tinyx
1960         bool "KDrive / TinyX server"
1961         select BR2_LEGACY
1962         select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
1963         help
1964           The option has been renamed
1965           BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
1967 config BR2_PACKAGE_PTHREAD_STUBS
1968         bool "pthread-stubs option has been renamed"
1969         select BR2_LEGACY
1970         select BR2_PACKAGE_LIBPTHREAD_STUBS
1971         help
1972           For consistency reason, the pthread-stubs package has been
1973           renamed to libpthread-stubs.
1975 ###############################################################################
1976 comment "Legacy options removed in 2012.08"
1978 config BR2_PACKAGE_GETTEXT_STATIC
1979         bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
1980         select BR2_LEGACY
1981         help
1982           To build a static gettext library, select BR2_PREFER_STATIC_LIB.
1985 config BR2_PACKAGE_LIBINTL
1986         bool "libintl"
1987         select BR2_LEGACY
1988         select BR2_PACKAGE_GETTEXT
1989         help
1990           libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
1991           only installs the library, not the executables.
1993 config BR2_PACKAGE_INPUT_TOOLS_EVTEST
1994         bool "input-tools evtest is now a separate package evtest"
1995         select BR2_LEGACY
1996         select BR2_PACKAGE_EVTEST
1997         help
1998           The evtest program from input-tools is now a separate package.
2000 config BR2_BFIN_FDPIC
2001         bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
2002         select BR2_BINFMT_FDPIC
2003         select BR2_LEGACY
2005 config BR2_BFIN_FLAT
2006         bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
2007         select BR2_BINFMT_FLAT
2008         select BR2_LEGACY
2010 endmenu
2012 endif # !SKIP_LEGACY