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