]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - Config.in.legacy
4e4f499454e3e9c8973c8d048505efb713add261
[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
103           uses an option that no longer exists in current buildroot. In
104           that case, the build will fail. Look for config options which
105           are selected in the menu below: they no longer exist and
106           should be replaced by something 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: legacy options older than 5 years have been   "
139 comment "removed, and configuration files that still have    "
140 comment "those options set, will fail to build, or run in    "
141 comment "unpredictable ways.                                 "
142 comment "----------------------------------------------------"
143 endif
144
145 ###############################################################################
146 comment "Legacy options removed in 2018.05"
147
148 config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
149         bool "ipsec-tools security context disable option renamed"
150         select BR2_LEGACY
151         help
152           For consistency reasons, the option
153           BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
154           BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
155
156 config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
157         bool "ipsec-tools SELinux security context enable option renamed"
158         select BR2_LEGACY
159         help
160           For consistency reasons, the option
161           BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
162           BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
163
164 config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
165         bool "ipsec-tools kernel security context enable option renamed"
166         select BR2_LEGACY
167         help
168           For consistency reasons, the option
169           BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
170           BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
171
172 config BR2_PACKAGE_LIBTFDI_CPP
173         bool "libftdi C++ bindings option renamed"
174         select BR2_LEGACY
175         select BR2_PACKAGE_LIBFTDI_CPP
176         help
177           The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
178           BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
179           name.
180
181 config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
182         bool "jquery-ui-themes option black-tie renamed"
183         select BR2_LEGACY
184         help
185           For consistency reasons, the jquery-ui-themes option for the
186           black-tie theme has been renamed from
187           BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
188           BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
189
190 config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
191         bool "jquery-ui-themes option blitzer renamed"
192         select BR2_LEGACY
193         help
194           For consistency reasons, the jquery-ui-themes option for the
195           blitzer theme has been renamed from
196           BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
197           BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
198
199 config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
200         bool "jquery-ui-themes option cupertino renamed"
201         select BR2_LEGACY
202         help
203           For consistency reasons, the jquery-ui-themes option for the
204           cupertino theme has been renamed from
205           BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
206           BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
207
208 config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
209         bool "jquery-ui-themes option dark-hive renamed"
210         select BR2_LEGACY
211         help
212           For consistency reasons, the jquery-ui-themes option for the
213           dark-hive theme has been renamed from
214           BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
215           BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
216
217 config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
218         bool "jquery-ui-themes option dot-luv renamed"
219         select BR2_LEGACY
220         help
221           For consistency reasons, the jquery-ui-themes option for the
222           dot-luv theme has been renamed from
223           BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
224           BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
225
226 config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
227         bool "jquery-ui-themes option eggplant renamed"
228         select BR2_LEGACY
229         help
230           For consistency reasons, the jquery-ui-themes option for the
231           eggplant theme has been renamed from
232           BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
233           BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
234
235 config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
236         bool "jquery-ui-themes option excite-bike renamed"
237         select BR2_LEGACY
238         help
239           For consistency reasons, the jquery-ui-themes option for the
240           excite-bike theme has been renamed from
241           BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
242           BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
243
244 config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
245         bool "jquery-ui-themes option flick renamed"
246         select BR2_LEGACY
247         help
248           For consistency reasons, the jquery-ui-themes option for the
249           flick theme has been renamed from
250           BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
251           BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
252
253 config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
254         bool "jquery-ui-themes option hot-sneaks renamed"
255         select BR2_LEGACY
256         help
257           For consistency reasons, the jquery-ui-themes option for the
258           hot-sneaks theme has been renamed from
259           BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
260           BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
261
262 config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
263         bool "jquery-ui-themes option humanity renamed"
264         select BR2_LEGACY
265         help
266           For consistency reasons, the jquery-ui-themes option for the
267           humanity theme has been renamed from
268           BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
269           BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
270
271 config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
272         bool "jquery-ui-themes option le-frog renamed"
273         select BR2_LEGACY
274         help
275           For consistency reasons, the jquery-ui-themes option for the
276           le-frog theme has been renamed from
277           BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
278           BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
279
280 config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
281         bool "jquery-ui-themes option mint-choc renamed"
282         select BR2_LEGACY
283         help
284           For consistency reasons, the jquery-ui-themes option for the
285           mint-choc theme has been renamed from
286           BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
287           BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
288
289 config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
290         bool "jquery-ui-themes option overcast renamed"
291         select BR2_LEGACY
292         help
293           For consistency reasons, the jquery-ui-themes option for the
294           overcast theme has been renamed from
295           BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
296           BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
297
298 config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
299         bool "jquery-ui-themes option pepper-grinder renamed"
300         select BR2_LEGACY
301         help
302           For consistency reasons, the jquery-ui-themes option for the
303           pepper-grinder theme has been renamed from
304           BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
305           BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
306
307 config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
308         bool "jquery-ui-themes option redmond renamed"
309         select BR2_LEGACY
310         help
311           For consistency reasons, the jquery-ui-themes option for the
312           redmond theme has been renamed from
313           BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
314           BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
315
316 config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
317         bool "jquery-ui-themes option smoothness renamed"
318         select BR2_LEGACY
319         help
320           For consistency reasons, the jquery-ui-themes option for the
321           smoothness theme has been renamed from
322           BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
323           BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
324
325 config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
326         bool "jquery-ui-themes option south-street renamed"
327         select BR2_LEGACY
328         help
329           For consistency reasons, the jquery-ui-themes option for the
330           south-street theme has been renamed from
331           BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
332           BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
333
334 config BR2_PACKAGE_JQUERY_UI_THEME_START
335         bool "jquery-ui-themes option start renamed"
336         select BR2_LEGACY
337         help
338           For consistency reasons, the jquery-ui-themes option for the
339           start theme has been renamed from
340           BR2_PACKAGE_JQUERY_UI_THEME_START to
341           BR2_PACKAGE_JQUERY_UI_THEMES_START.
342
343 config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
344         bool "jquery-ui-themes option sunny renamed"
345         select BR2_LEGACY
346         help
347           For consistency reasons, the jquery-ui-themes option for the
348           sunny theme has been renamed from
349           BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
350           BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
351
352 config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
353         bool "jquery-ui-themes option swanky-purse renamed"
354         select BR2_LEGACY
355         help
356           For consistency reasons, the jquery-ui-themes option for the
357           swanky-purse theme has been renamed from
358           BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
359           BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
360
361 config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
362         bool "jquery-ui-themes option trontastic renamed"
363         select BR2_LEGACY
364         help
365           For consistency reasons, the jquery-ui-themes option for the
366           trontastic theme has been renamed from
367           BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
368           BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
369
370 config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
371         bool "jquery-ui-themes option ui-darkness renamed"
372         select BR2_LEGACY
373         help
374           For consistency reasons, the jquery-ui-themes option for the
375           ui-darkness theme has been renamed from
376           BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
377           BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
378
379 config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
380         bool "jquery-ui-themes option ui-lightness renamed"
381         select BR2_LEGACY
382         help
383           For consistency reasons, the jquery-ui-themes option for the
384           ui-lightness theme has been renamed from
385           BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
386           BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
387
388 config BR2_PACKAGE_JQUERY_UI_THEME_VADER
389         bool "jquery-ui-themes option vader renamed"
390         select BR2_LEGACY
391         help
392           For consistency reasons, the jquery-ui-themes option for the
393           vader theme has been renamed from
394           BR2_PACKAGE_JQUERY_UI_THEME_VADER to
395           BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
396
397 config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
398         bool "bluez5-utils health plugin option renamed"
399         select BR2_LEGACY
400         select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
401         help
402           For consistency reasons, the option
403           BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
404           BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
405
406 config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
407         bool "bluez5-utils midi plugin option renamed"
408         select BR2_LEGACY
409         select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
410         help
411           For consistency reasons, the option
412           BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
413           BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
414
415 config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
416         bool "bluez5-utils nfc plugin option renamed"
417         select BR2_LEGACY
418         select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
419         help
420           For consistency reasons, the option
421           BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
422           BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
423
424 config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
425         bool "bluez5-utils sap plugin option renamed"
426         select BR2_LEGACY
427         select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
428         help
429           For consistency reasons, the option
430           BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
431           BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
432
433 config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
434         bool "bluez5-utils sixaxis plugin option renamed"
435         select BR2_LEGACY
436         select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
437         help
438           For consistency reasons, the option
439           BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
440           BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
441
442 config BR2_PACKAGE_TRANSMISSION_REMOTE
443         bool "transmission remote tool option removed"
444         select BR2_LEGACY
445         select BR2_PACKAGE_TRANSMISSION_DAEMON
446         help
447           Upstream does not provide a separate configure option for
448           the tool transmission-remote, it is built when the
449           transmission daemon has been enabled. Therefore, Buildroot
450           has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
451           for you.
452
453 config BR2_PACKAGE_LIBKCAPI_APPS
454         bool "libkcapi test applications removed"
455         select BR2_LEGACY
456         select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
457         select BR2_PACKAGE_LIBKCAPI_RNGAPP
458         select BR2_PACKAGE_LIBKCAPI_SPEED
459         select BR2_PACKAGE_LIBKCAPI_TEST
460         help
461           Test applications (hasher, rng read, speed-test, test) now
462           have their own configuration options in the libkcapi menu.
463
464 config BR2_PACKAGE_MPLAYER
465         bool "mplayer package removed"
466         select BR2_LEGACY
467         help
468           The mplayer package was removed.
469
470 config BR2_PACKAGE_MPLAYER_MPLAYER
471         bool "mplayer package removed"
472         select BR2_LEGACY
473         help
474           The mplayer package was removed.
475
476 config BR2_PACKAGE_MPLAYER_MENCODER
477         bool "mplayer package removed"
478         select BR2_LEGACY
479         help
480           The mplayer package was removed.
481
482 config BR2_PACKAGE_LIBPLAYER_MPLAYER
483         bool "mplayer support in libplayer removed"
484         select BR2_LEGACY
485         help
486           The mplayer package was removed.
487
488 config BR2_PACKAGE_IQVLINUX
489         bool "iqvlinux package removed"
490         select BR2_LEGACY
491         help
492           This package contained a kernel module from Intel, which
493           could only be used together with Intel userspace tools
494           provided under NDA, which also come with the same kernel
495           module. The copy of the kernel module available on
496           SourceForge is provided only to comply with the GPLv2
497           requirement. Intel engineers were even surprised it even
498           built and were not willing to make any effort to fix their
499           tarball naming to contain a version number. Therefore, it
500           does not make sense for Buildroot to provide such a package.
501
502           See https://sourceforge.net/p/e1000/bugs/589/ for the
503           discussion.
504
505 config BR2_BINFMT_FLAT_SEP_DATA
506         bool "binfmt FLAT with separate code and data removed"
507         select BR2_LEGACY
508         help
509           This FLAT binary format was only used on Blackfin, which has
510           been removed.
511
512 config BR2_bfin
513         bool "Blackfin architecture support removed"
514         select BR2_LEGACY
515         help
516           Following the removal of Blackfin support for the upstream
517           Linux kernel, Buildroot has removed support for this CPU
518           architecture.
519
520 config BR2_PACKAGE_KODI_ADSP_BASIC
521         bool "kodi-adsp-basic package removed"
522         select BR2_LEGACY
523         help
524           kodi-adsp-basic is unmaintained
525
526 config BR2_PACKAGE_KODI_ADSP_FREESURROUND
527         bool "kodi-adsp-freesurround package removed"
528         select BR2_LEGACY
529         help
530           kodi-adsp-freesurround is unmaintained
531
532 ###############################################################################
533 comment "Legacy options removed in 2018.02"
534
535 config BR2_KERNEL_HEADERS_3_4
536         bool "kernel headers version 3.4.x are no longer supported"
537         select BR2_KERNEL_HEADERS_4_1
538         select BR2_LEGACY
539         help
540           Version 3.4.x of the Linux kernel headers are no longer
541           maintained upstream and are now removed. As an alternative,
542           version 4.1.x of the headers have been automatically
543           selected in your configuration.
544
545 config BR2_KERNEL_HEADERS_3_10
546         bool "kernel headers version 3.10.x are no longer supported"
547         select BR2_KERNEL_HEADERS_4_1
548         select BR2_LEGACY
549         help
550           Version 3.10.x of the Linux kernel headers are no longer
551           maintained upstream and are now removed. As an alternative,
552           version 4.1.x of the headers have been automatically
553           selected in your configuration.
554
555 config BR2_KERNEL_HEADERS_3_12
556         bool "kernel headers version 3.12.x are no longer supported"
557         select BR2_KERNEL_HEADERS_4_1
558         select BR2_LEGACY
559         help
560           Version 3.12.x of the Linux kernel headers are no longer
561           maintained upstream and are now removed. As an alternative,
562           version 4.1.x of the headers have been automatically
563           selected in your configuration.
564
565 config BR2_BINUTILS_VERSION_2_27_X
566         bool "binutils version 2.27 support removed"
567         select BR2_LEGACY
568         help
569           Support for binutils version 2.27 has been removed. The
570           current default version (2.29 or later) has been selected
571           instead.
572
573 config BR2_PACKAGE_EEPROG
574         bool "eeprog package removed"
575         select BR2_LEGACY
576         select BR2_PACKAGE_I2C_TOOLS
577         select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
578         help
579           The eeprog program is now provided by the i2c-tools package.
580
581 config BR2_PACKAGE_GNUPG2_GPGV2
582         bool "gnupg2 gpgv2 option removed"
583         select BR2_LEGACY
584         select BR2_PACKAGE_GNUPG2_GPGV
585         help
586           The gpgv2 executable is now named gpgv. The config option
587           has been renamed accordingly.
588
589 config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
590         bool "Vivante apitrace tool option removed"
591         select BR2_LEGACY
592         help
593           The apitrace tool for Vivante is not provided by the
594           imx-gpu-viv package any longer.
595
596 config BR2_PACKAGE_IMX_GPU_VIV_G2D
597         bool "Vivante G2D libraries from imx-gpu-viv removed"
598         select BR2_LEGACY
599         select BR2_PACKAGE_IMX_GPU_G2D
600         help
601           The G2D libraries are now provided by the imx-gpu-g2d package.
602
603 ###############################################################################
604 comment "Legacy options removed in 2017.11"
605
606 config BR2_PACKAGE_RFKILL
607         bool "rfkill package removed"
608         select BR2_LEGACY
609         select BR2_PACKAGE_UTIL_LINUX
610         select BR2_PACKAGE_UTIL_LINUX_RFKILL
611         help
612           The rfkill program is now provided by the util-linux package.
613
614 config BR2_PACKAGE_UTIL_LINUX_RESET
615         bool "util-linux reset option removed"
616         select BR2_LEGACY
617         help
618           The util-linux package no longer offers a "reset" command. Use
619           either the reset command provided by BusyBox or select ncurses
620           programs, which will install a symlink from "tset" to reset.
621
622 config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
623         bool "policycoreutils audit2allow option removed"
624         select BR2_LEGACY
625         select BR2_PACKAGE_SELINUX_PYTHON
626         select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
627         help
628           The policycoreutils package no longer offers audit2allow
629           as a option. This package has been moved into the
630           selinux-python package by the SELinux maintainers.
631
632 config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
633         bool "policycoreutils restorecond option removed"
634         select BR2_LEGACY
635         select BR2_PACKAGE_RESTORECOND
636         help
637           The policycoreutils package no longer offers restorecond
638           as a option.  This package has been moved into a seperate
639           package maintained by the SELinux maintainers.
640
641 config BR2_PACKAGE_SEPOLGEN
642         bool "sepolgen package has been removed"
643         select BR2_LEGACY
644         select BR2_PACKAGE_SELINUX_PYTHON
645         select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
646         help
647           Sepolgen is no longer a individual package, but instead has
648           been moved into the selinux-python package by the SELinux
649           maintainers.
650
651 config BR2_PACKAGE_OPENOBEX_BLUEZ
652         bool "openobex bluez option removed"
653         select BR2_LEGACY
654         select BR2_PACKAGE_BLUEZ_UTILS
655         help
656           The OpenOBEX package no longer offers an option to enable or
657           disable BlueZ support. Instead, BlueZ support is always
658           included when the bluez5_utils or bluez_utils package is
659           selected.
660
661 config BR2_PACKAGE_OPENOBEX_LIBUSB
662         bool "openobex libusb option removed"
663         select BR2_LEGACY
664         select BR2_PACKAGE_LIBUSB
665         help
666           The OpenOBEX package no longer offers an option to enable or
667           disable libusb support. Instead, USB support is always
668           included when the libusb package is selected.
669
670 config BR2_PACKAGE_OPENOBEX_APPS
671         bool "openobex apps option removed"
672         select BR2_LEGACY
673         help
674           The OpenOBEX package no longer offers an option to enable or
675           disable apps support.
676
677 config BR2_PACKAGE_OPENOBEX_SYSLOG
678         bool "openobex syslog option removed"
679         select BR2_LEGACY
680         help
681           The OpenOBEX package no longer offers an option to enable or
682           disable syslog support.
683
684 config BR2_PACKAGE_OPENOBEX_DUMP
685         bool "openobex dump option removed"
686         select BR2_LEGACY
687         help
688           The OpenOBEX package no longer offers an option to enable or
689           disable dump support.
690
691 config BR2_PACKAGE_AICCU
692         bool "aiccu utility removed"
693         select BR2_LEGACY
694         help
695           As the SixXS project has ceased its operation on 2017-06-06,
696           the AICCU utility has no use anymore and has been removed.
697
698           https://www.sixxs.net/sunset/
699
700 config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
701         bool "util-linux login utilities option removed"
702         select BR2_LEGACY
703         select BR2_PACKAGE_UTIL_LINUX_LAST
704         select BR2_PACKAGE_UTIL_LINUX_LOGIN
705         select BR2_PACKAGE_UTIL_LINUX_RUNUSER
706         select BR2_PACKAGE_UTIL_LINUX_SU
707         select BR2_PACKAGE_UTIL_LINUX_SULOGIN
708         help
709           Login utilities (last, login, runuser, su, sulogin) now have
710           their own configuration options in the util-linux menu.
711
712 ###############################################################################
713 comment "Legacy options removed in 2017.08"
714
715 config BR2_TARGET_GRUB
716         bool "grub (aka grub-legacy) has been removed"
717         select BR2_LEGACY
718         help
719           grub-legacy is no longer maintained, and no longer builds with
720           recent binutils versions.
721
722           Use grub2 or syslinux instead.
723
724 config BR2_PACKAGE_SIMICSFS
725         bool "simicsfs support removed"
726         select BR2_LEGACY
727         help
728           Support for simicsfs kernel driver that provides access to a
729           host computer's local filesystem when the target is
730           executing within a SIMICS simulation has been removed.
731
732           Simics is now moving away from the simicsfs kernel module,
733           as the kernel module has required too much maintenance
734           work. Users should move to the user mode Simics agent
735           instead.
736
737 config BR2_BINUTILS_VERSION_2_26_X
738         bool "binutils version 2.26 support removed"
739         select BR2_LEGACY
740         help
741           Support for binutils version 2.26 has been removed. The
742           current default version (2.28 or later) has been selected
743           instead.
744
745 config BR2_XTENSA_OVERLAY_DIR
746         string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
747         help
748           The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
749           BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
750           path to the overlay file, not to the directory containing
751           it.
752
753 config BR2_XTENSA_OVERLAY_DIR_WRAP
754         bool
755         default y if BR2_XTENSA_OVERLAY_DIR != ""
756         select BR2_LEGACY
757
758 config BR2_XTENSA_CUSTOM_NAME
759         string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
760         help
761           The BR2_XTENSA_CUSTOM_NAME option has been removed.
762
763 config BR2_XTENSA_CUSTOM_NAME_WRAP
764         bool
765         default y if BR2_XTENSA_CUSTOM_NAME != ""
766         select BR2_LEGACY
767
768 config BR2_PACKAGE_HOST_MKE2IMG
769         bool "host mke2img has been removed"
770         select BR2_LEGACY
771         help
772           We now call mkfs directly to generate ext2/3/4 filesystem
773           image, so mke2img is no longer necessary.
774
775 config BR2_TARGET_ROOTFS_EXT2_BLOCKS
776         int "exact size in blocks has been removed"
777         default 0
778         help
779           This option has been removed in favor of
780           BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
781           to the value you had before. Set to 0 here to remove the
782           warning.
783
784 config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
785         bool
786         default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
787                 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
788         select BR2_LEGACY
789
790 # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
791
792 config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
793         int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
794         default 0
795         help
796           Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
797           images. It now automatically selects the number of inodes
798           based on the image size. The extra number of inodes can no
799           longer be provided; instead, provide the total number of
800           inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
801
802 config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
803         bool
804         default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
805         select BR2_LEGACY
806
807 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
808         bool "cdxaparse removed"
809         select BR2_LEGACY
810
811 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
812         bool "dataurisrc moved to gstreamer1"
813         select BR2_LEGACY
814         help
815           Dataurisrc has moved to gstreamer core and is always built.
816
817 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
818         bool "dccp removed"
819         select BR2_LEGACY
820
821 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
822         bool "hdvparse removed"
823         select BR2_LEGACY
824
825 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
826         bool "mve removed"
827         select BR2_LEGACY
828
829 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
830         bool "nuvdemux removed"
831         select BR2_LEGACY
832
833 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
834         bool "patchdetect removed"
835         select BR2_LEGACY
836
837 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
838         bool "sdi removed"
839         select BR2_LEGACY
840
841 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
842         bool "tta removed"
843         select BR2_LEGACY
844
845 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
846         bool "videomeasure removed"
847         select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
848         select BR2_LEGACY
849         help
850           videomeasure plugin has been removed and has been replaced by
851           iqa, which has automatically been enabled.
852
853 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
854         bool "apexsink removed"
855         select BR2_LEGACY
856
857 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
858         bool "sdl removed"
859         select BR2_LEGACY
860
861 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
862         bool "mad (*.mp3 audio) removed"
863         select BR2_LEGACY
864
865 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
866         bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
867         select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
868         select BR2_LEGACY
869         help
870           The WebRTC plugin in GStreamer 1.x has always been named
871           webrtcdsp, but was wrongly introduced in Buildroot under the
872           name webrtc. Therefore, we have renamed the option to match
873           the actual name of the GStreamer plugin.
874
875 config BR2_STRIP_none
876         bool "Strip command 'none' has been removed"
877         select BR2_LEGACY
878         help
879           The strip command choice has been changed into a single
880           boolean option. Please check that the new setting is
881           correct (in the "Build options" sub-menu)
882
883 config BR2_PACKAGE_BEECRYPT_CPP
884         bool "C++ support removed in beecrypt"
885         select BR2_LEGACY
886         help
887           Support for C++ depends on icu. The beecrypt package is
888           incompatible with icu 59+.
889
890 config BR2_PACKAGE_SPICE_CLIENT
891         bool "spice client support removed"
892         select BR2_LEGACY
893         help
894           Spice client support has been removed upstream. The
895           functionality now lives in the spice-gtk widget and
896           virt-viewer.
897
898 config BR2_PACKAGE_SPICE_GUI
899         bool "spice gui support removed"
900         select BR2_LEGACY
901         help
902           Spice gui support has been removed upstream. The
903           functionality now lives in the spice-gtk widget and
904           virt-viewer.
905
906 config BR2_PACKAGE_SPICE_TUNNEL
907         bool "spice network redirection removed"
908         select BR2_LEGACY
909         help
910           Spice network redirection, aka tunnelling has been removed
911           upstream.
912
913 config BR2_PACKAGE_INPUT_TOOLS
914         bool "input-tools removed"
915         select BR2_LEGACY
916         select BR2_PACKAGE_LINUXCONSOLETOOLS
917         help
918           input-tools has been removed, it is replaced by
919           linuxconsoletools, which has automatically been enabled.
920
921 config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
922         bool "inputattach moved to linuxconsoletools"
923         select BR2_LEGACY
924         select BR2_PACKAGE_LINUXCONSOLETOOLS
925         select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
926         help
927           input-tools has been removed, inputattach is now part
928           of linuxconsoletools, which has automatically been
929           enabled.
930
931 config BR2_PACKAGE_INPUT_TOOLS_JSCAL
932         bool "jscal moved to linuxconsoletools"
933         select BR2_LEGACY
934         select BR2_PACKAGE_LINUXCONSOLETOOLS
935         select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
936         help
937           input-tools has been removed, jscal is now part
938           of linuxconsoletools, which has automatically been
939           enabled.
940
941 config BR2_PACKAGE_INPUT_TOOLS_JSTEST
942         bool "jstest moved to linuxconsoletools"
943         select BR2_LEGACY
944         select BR2_PACKAGE_LINUXCONSOLETOOLS
945         select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
946         help
947           input-tools has been removed, jstest is now part
948           of linuxconsoletools, which has automatically been
949           enabled.
950
951 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
952         bool "SH Sourcery toolchain has been removed"
953         select BR2_LEGACY
954         help
955           The Sourcery CodeBench toolchain for the sh architecture has
956           been removed, since it uses glibc older than 2.17 that
957           requires -lrt to link executables using clock_* system calls.
958           This makes this toolchain difficult to maintain over time.
959
960 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
961         bool "x86 Sourcery toolchain has been removed"
962         select BR2_LEGACY
963         help
964           The Sourcery CodeBench toolchain for the x86 architecture has
965           been removed, since it uses glibc older than 2.17 that
966           requires -lrt to link executables using clock_* system calls.
967           This makes this toolchain difficult to maintain over time.
968
969 config BR2_GCC_VERSION_4_8_X
970         bool "gcc 4.8.x support removed"
971         select BR2_LEGACY
972         help
973           Support for gcc version 4.8.x has been removed. The current
974           default version (5.x or later) has been selected instead.
975
976 ###############################################################################
977 comment "Legacy options removed in 2017.05"
978
979 config BR2_PACKAGE_SUNXI_MALI_R2P4
980         bool "sunxi-mali r2p4 removed"
981         select BR2_LEGACY
982         help
983           sunxi-mali libMali for r2p4 Mali kernel module has been
984           removed since the libump package only provides libUMP.so.3.
985           libMali for r2p4 Mali kernel module requires libUMP.so.2.
986
987 config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
988         bool "CoffeeScript option has been removed"
989         select BR2_LEGACY
990         help
991           The option to enable NodeJS CoffeeScript has been removed.
992           To continue using it, add "coffee-script" to
993           BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
994
995 config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
996         bool "Express web application framework option has been removed"
997         select BR2_LEGACY
998         help
999           The option to enable the NodeJS Express web application
1000           framework has been removed. To continue using it, add
1001           "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1002
1003 config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1004         bool "bluez5_utils gatttool install option removed"
1005         select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1006         help
1007           The option to install gatttool specifically has been removed.
1008           Since version 5.44 gatttool is in the list of deprecated
1009           tools. The option to build and install deprecated tools has
1010           been automatically enabled.
1011
1012 config BR2_PACKAGE_OPENOCD_FT2XXX
1013         bool "openocd ft2232 support has been removed"
1014         select BR2_PACKAGE_OPENOCD_FTDI
1015         select BR2_LEGACY
1016         help
1017           FT2232 support in OpenOCD has been removed, it's replaced by
1018           FDTI support, which has automatically been enabled.
1019
1020 config BR2_PACKAGE_KODI_RTMPDUMP
1021         bool "kodi rtmp has been removed"
1022         select BR2_LEGACY
1023         select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
1024         help
1025           Internal rtmp support was removed from Kodi.
1026
1027 config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1028         bool "kodi-visualisation-fountain has been removed"
1029         select BR2_LEGACY
1030         help
1031           According to upstream 'the visualization is not currently
1032           in a working shape.'
1033
1034 config BR2_PACKAGE_PORTMAP
1035         bool "portmap has been removed"
1036         select BR2_LEGACY
1037         select BR2_PACKAGE_RPCBIND
1038         help
1039           The portmap upstream tarball is removed, no releases since
1040           ten years and latest change in upstream git in 2014.
1041           You should better use rpcbind as a RPC portmapper.
1042
1043 config BR2_BINUTILS_VERSION_2_25_X
1044         bool "binutils version 2.25 support removed"
1045         select BR2_LEGACY
1046         help
1047           Support for binutils version 2.25 has been removed. The
1048           current default version (2.27 or later) has been selected
1049           instead.
1050
1051 config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1052         bool "uclibc RPC support has been removed"
1053         select BR2_LEGACY
1054         help
1055           uClibc-ng removed internal RPC implementation in 1.0.23. You
1056           should use libtirpc instead.
1057
1058 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1059         int "extra size in blocks has been removed"
1060         default 0
1061         help
1062           Since the support for auto calculation of the filesystem size
1063           has been removed, this option is now useless and must be 0.
1064           You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1065           matchs your needs.
1066
1067 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1068         bool
1069         default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1070         select BR2_LEGACY
1071
1072 config BR2_PACKAGE_SYSTEMD_KDBUS
1073         bool "systemd-kdbus has been removed"
1074         select BR2_LEGACY
1075         help
1076           --enable/disable-kdbus configure option has been removed since
1077           systemd-231.
1078
1079 config BR2_PACKAGE_POLARSSL
1080         bool "polarssl has been removed"
1081         select BR2_LEGACY
1082         help
1083           The polarssl crypto library has been removed since the 1.2.x
1084           release branch is no longer maintained. Newer upstream
1085           branches/releases (mbedtls) have API changes so they're not
1086           drop-in replacements.
1087
1088 config BR2_NBD_CLIENT
1089         bool "nbd client option was renamed"
1090         select BR2_LEGACY
1091         select BR2_PACKAGE_NBD_CLIENT
1092         help
1093           The nbd client option has been renamed to
1094           BR2_PACKAGE_NBD_CLIENT.
1095
1096 config BR2_NBD_SERVER
1097         bool "nbd server option was renamed"
1098         select BR2_LEGACY
1099         select BR2_PACKAGE_NBD_SERVER
1100         help
1101           The nbd server option has been renamed to
1102           BR2_PACKAGE_NBD_SERVER.
1103
1104 config BR2_PACKAGE_GMOCK
1105         bool "gmock merged into gtest package"
1106         select BR2_LEGACY
1107         select BR2_PACKAGE_GTEST
1108         select BR2_PACKAGE_GTEST_GMOCK
1109         help
1110           GMock is now a suboption of the GTest package.
1111
1112 config BR2_KERNEL_HEADERS_4_8
1113         bool "kernel headers version 4.8.x are no longer supported"
1114         select BR2_KERNEL_HEADERS_4_4
1115         select BR2_LEGACY
1116         help
1117           Version 4.8.x of the Linux kernel headers are no longer
1118           maintained upstream and are now removed. As an alternative,
1119           version 4.4.x of the headers have been automatically
1120           selected in your configuration.
1121
1122 config BR2_KERNEL_HEADERS_3_18
1123         bool "kernel headers version 3.18.x are no longer supported"
1124         select BR2_KERNEL_HEADERS_3_12
1125         select BR2_LEGACY
1126         help
1127           Version 3.18.x of the Linux kernel headers are no longer
1128           maintained upstream and are now removed. As an alternative,
1129           version 3.12.x of the headers have been automatically
1130           selected in your configuration.
1131
1132 config BR2_GLIBC_VERSION_2_22
1133         bool "glibc 2.22 removed"
1134         select BR2_LEGACY
1135         help
1136           Support for glibc version 2.22 has been removed. The current
1137           default version has been selected instead.
1138
1139 ###############################################################################
1140 comment "Legacy options removed in 2017.02"
1141
1142 config BR2_PACKAGE_PERL_DB_FILE
1143         bool "perl-db-file removed"
1144         select BR2_LEGACY
1145         select BR2_PACKAGE_BERKELEYDB
1146         select BR2_PACKAGE_PERL
1147         help
1148           DB_File can be built as a core Perl module, so the separate
1149           perl-db-file package has been removed.
1150
1151 config BR2_KERNEL_HEADERS_4_7
1152         bool "kernel headers version 4.7.x are no longer supported"
1153         select BR2_KERNEL_HEADERS_4_4
1154         select BR2_LEGACY
1155         help
1156           Version 4.7.x of the Linux kernel headers are no longer
1157           maintained upstream and are now removed. As an alternative,
1158           version 4.4.x of the headers have been automatically
1159           selected in your configuration.
1160
1161 config BR2_KERNEL_HEADERS_4_6
1162         bool "kernel headers version 4.6.x are no longer supported"
1163         select BR2_KERNEL_HEADERS_4_4
1164         select BR2_LEGACY
1165         help
1166           Version 4.6.x of the Linux kernel headers are no longer
1167           maintained upstream and are now removed. As an alternative,
1168           version 4.4.x of the headers have been automatically
1169           selected in your configuration.
1170
1171 config BR2_KERNEL_HEADERS_4_5
1172         bool "kernel headers version 4.5.x are no longer supported"
1173         select BR2_KERNEL_HEADERS_4_4
1174         select BR2_LEGACY
1175         help
1176           Version 4.5.x of the Linux kernel headers are no longer
1177            maintained upstream and are now removed. As an alternative,
1178            version 4.4.x of the headers have been automatically
1179            selected in your configuration.
1180
1181 config BR2_KERNEL_HEADERS_3_14
1182         bool "kernel headers version 3.14.x are no longer supported"
1183         select BR2_KERNEL_HEADERS_3_12
1184         select BR2_LEGACY
1185           help
1186           Version 3.14.x of the Linux kernel headers are no longer
1187           maintained upstream and are now removed. As an alternative,
1188           version 3.12.x of the headers have been automatically
1189           selected in your configuration.
1190
1191 config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1192         bool "musl-cross 1.1.12 toolchain removed"
1193         select BR2_LEGACY
1194         help
1195           The support for the prebuilt toolchain based on the Musl C
1196           library provided by the musl-cross project has been removed.
1197           Upstream doesn't provide any prebuilt toolchain anymore, use
1198           the Buildroot toolchain instead.
1199
1200 config BR2_UCLIBC_INSTALL_TEST_SUITE
1201         bool "uClibc tests now in uclibc-ng-test"
1202         select BR2_LEGACY
1203         select BR2_PACKAGE_UCLIBC_NG_TEST
1204         help
1205           The test suite of the uClibc C library has been moved into a
1206           separate package, uclibc-ng-test.
1207
1208 config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1209         bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1210         select BR2_LEGACY
1211         help
1212           The ADI Blackfin toolchain has many bugs which are fixed in
1213           more recent gcc and uClibc-ng releases. Use the Buildroot
1214           toolchain instead.
1215
1216 config BR2_PACKAGE_MAKEDEVS
1217         bool "makedevs removed"
1218         select BR2_LEGACY
1219         help
1220           The makedevs tool is part of busybox. The Buildroot fork
1221           should not be used outside of the Buildroot infrastructure.
1222
1223 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1224         bool "Arago ARMv7 2011.09 removed"
1225         select BR2_LEGACY
1226         help
1227           The Arago toolchains are every old and not updated anymore.
1228
1229 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1230         bool "Arago ARMv5 2011.09 removed"
1231         select BR2_LEGACY
1232         help
1233           The Arago toolchains are every old and not updated anymore.
1234
1235 config BR2_PACKAGE_SNOWBALL_HDMISERVICE
1236         bool "snowball-hdmiservice removed"
1237         select BR2_LEGACY
1238         help
1239           We no longer have support for the Snowball platform in
1240           Buildroot, so this package was no longer useful.
1241
1242 config BR2_PACKAGE_SNOWBALL_INIT
1243         bool "snowball-init removed"
1244         select BR2_LEGACY
1245         help
1246           We no longer have support for the Snowball platform in
1247           Buildroot, so this package was no longer useful.
1248
1249 config BR2_GDB_VERSION_7_9
1250         bool "gdb 7.9 has been removed"
1251         select BR2_LEGACY
1252         help
1253           The 7.9 version of gdb has been removed. Use a newer version
1254           instead.
1255
1256 ###############################################################################
1257 comment "Legacy options removed in 2016.11"
1258
1259 config BR2_PACKAGE_PHP_SAPI_CLI_CGI
1260         bool "PHP CGI and CLI options are now seperate"
1261         select BR2_PACKAGE_PHP_SAPI_CLI
1262         select BR2_PACKAGE_PHP_SAPI_CGI
1263         select BR2_LEGACY
1264         help
1265           The PHP Interface options have been split up into a
1266           separate option for each interface.
1267
1268 config BR2_PACKAGE_PHP_SAPI_CLI_FPM
1269         bool "PHP CLI and FPM options are now separate"
1270         select BR2_PACKAGE_PHP_SAPI_CLI
1271         select BR2_PACKAGE_PHP_SAPI_FPM
1272         select BR2_LEGACY
1273         help
1274           The PHP Interface options have been split up into a
1275           separate option for each interface.
1276
1277 config BR2_PACKAGE_WVSTREAMS
1278         bool "wvstreams removed"
1279         select BR2_LEGACY
1280         help
1281           wvstreams is not maintained anymore since about 2009. It also
1282           doesn't build anymore with recent compilers (GCC 5+).
1283
1284 config BR2_PACKAGE_WVDIAL
1285         bool "wvdial removed"
1286         select BR2_LEGACY
1287         help
1288           wvdial is not maintained anymore since about 2009. It also
1289           doesn't build anymore with recent compilers (GCC 5+).
1290
1291 config BR2_PACKAGE_WEBKITGTK24
1292         bool "webkitgtk 2.4.x removed"
1293         select BR2_LEGACY
1294         help
1295           This legacy package only existed because some other packages
1296           depended on that specific version of webkitgtk. However, the
1297           other packages have been fixed. webkitgtk 2.4 is full of
1298           security issues so it needs to be removed.
1299
1300 config BR2_PACKAGE_TORSMO
1301         bool "torsmo removed"
1302         select BR2_LEGACY
1303         help
1304           torsmo has been unmaintained for a long time, and nobody
1305           seems to be interested in it.
1306
1307 config BR2_PACKAGE_SSTRIP
1308         bool "sstrip removed"
1309         select BR2_LEGACY
1310         help
1311           sstrip is unmaintained and potentially harmful. It doesn't
1312           save so much compared to normal binutils strip, and there is
1313           a big risk of binaries that don't work. Use normal strip
1314           instead.
1315
1316 config BR2_KERNEL_HEADERS_4_3
1317         bool "kernel headers version 4.3.x are no longer supported"
1318         select BR2_KERNEL_HEADERS_4_1
1319         select BR2_LEGACY
1320         help
1321           Version 4.3.x of the Linux kernel headers are no longer
1322           maintained upstream and are now removed. As an alternative,
1323           version 4.1.x of the headers have been automatically
1324           selected in your configuration.
1325
1326 config BR2_KERNEL_HEADERS_4_2
1327         bool "kernel headers version 4.2.x are no longer supported"
1328         select BR2_KERNEL_HEADERS_4_1
1329         select BR2_LEGACY
1330         help
1331           Version 4.2.x of the Linux kernel headers are no longer
1332           maintained upstream and are now removed. As an alternative,
1333           version 4.1.x of the headers have been automatically
1334           selected in your configuration.
1335
1336 config BR2_PACKAGE_KODI_ADDON_XVDR
1337         bool "kodi-addon-xvdr removed"
1338         select BR2_LEGACY
1339         help
1340           According to the github project page:
1341           https://github.com/pipelka/xbmc-addon-xvdr
1342           this package is discontinued.
1343
1344 config BR2_PACKAGE_IPKG
1345         bool "ipkg removed"
1346         select BR2_LEGACY
1347         help
1348           ipkg dates back to the early 2000s when Compaq started the
1349           handhelds.org project and it hasn't seen development since
1350           2006. Use opkg as a replacement.
1351
1352 config BR2_GCC_VERSION_4_7_X
1353         bool "gcc 4.7.x support removed"
1354         select BR2_LEGACY
1355         help
1356           Support for gcc version 4.7.x has been removed. The current
1357           default version (4.9.x or later) has been selected instead.
1358
1359 config BR2_BINUTILS_VERSION_2_24_X
1360         bool "binutils version 2.24 support removed"
1361         select BR2_LEGACY
1362         help
1363           Support for binutils version 2.24 has been removed. The
1364           current default version (2.26 or later) has been selected
1365           instead.
1366
1367 config BR2_PACKAGE_WESTON_RPI
1368         bool "Weston propietary RPI support is gone"
1369         select BR2_LEGACY
1370         help
1371           Upstream decided the propietary (rpi-userland) weston composer
1372           support wasn't worth the effort so it was removed. Switch to
1373           the open VC4 support.
1374
1375 config BR2_LINUX_KERNEL_TOOL_CPUPOWER
1376         bool "linux-tool cpupower"
1377         depends on BR2_LINUX_KERNEL
1378         select BR2_LEGACY
1379         select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
1380         help
1381           Linux tool cpupower option was renamed.
1382
1383 config BR2_LINUX_KERNEL_TOOL_PERF
1384         bool "linux-tool perf"
1385         depends on BR2_LINUX_KERNEL
1386         select BR2_LEGACY
1387         select BR2_PACKAGE_LINUX_TOOLS_PERF
1388         help
1389           Linux tool perf option was renamed.
1390
1391 config BR2_LINUX_KERNEL_TOOL_SELFTESTS
1392         bool "linux-tool selftests"
1393         depends on BR2_LINUX_KERNEL
1394         select BR2_LEGACY
1395         select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
1396         help
1397           Linux tool selftests option was renamed.
1398
1399 config BR2_GCC_VERSION_4_8_ARC
1400         bool "gcc arc option renamed"
1401         select BR2_LEGACY
1402         select BR2_GCC_VERSION_ARC
1403         help
1404           The option that selects the gcc version for the ARC
1405           architecture has been renamed to BR2_GCC_VERSION_ARC.
1406
1407 config BR2_KERNEL_HEADERS_4_0
1408         bool "kernel headers version 4.0.x are no longer supported"
1409         select BR2_KERNEL_HEADERS_3_12
1410         select BR2_LEGACY
1411         help
1412           Version 4.0.x of the Linux kernel headers have been deprecated
1413           for more than four buildroot releases and are now removed.
1414           As an alternative, version 3.12.x of the headers have been
1415           automatically selected in your configuration.
1416
1417 config BR2_KERNEL_HEADERS_3_19
1418         bool "kernel headers version 3.19.x are no longer supported"
1419         select BR2_KERNEL_HEADERS_3_12
1420         select BR2_LEGACY
1421         help
1422           Version 3.19.x of the Linux kernel headers have been
1423           deprecated for more than four buildroot releases and are now
1424           removed.
1425           As an alternative, version 3.12.x of the headers have been
1426           automatically selected in your configuration.
1427
1428 config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
1429         bool "libevas-generic-loaders package removed"
1430         select BR2_LEGACY
1431         select BR2_PACKAGE_EFL
1432         help
1433           With EFL 1.18, libevas-generic-loaders is now provided by the
1434           efl package.
1435
1436 config BR2_PACKAGE_ELEMENTARY
1437         bool "elementary package removed"
1438         select BR2_LEGACY
1439         select BR2_PACKAGE_EFL
1440         help
1441           With EFL 1.18, elementary is now provided by the efl package.
1442
1443 config BR2_LINUX_KERNEL_CUSTOM_LOCAL
1444         bool "Linux kernel local directory option removed"
1445         help
1446           The option to select a local directory as the source of the
1447           Linux kernel has been removed. It hurts reproducibility of
1448           builds.
1449
1450           In case you were using this option during development of your
1451           Linux kernel, use the override mechanism instead.
1452
1453 ###############################################################################
1454 comment "Legacy options removed in 2016.08"
1455
1456 config BR2_PACKAGE_EFL_JP2K
1457         bool "libevas jp2k loader has been removed"
1458         select BR2_LEGACY
1459         help
1460           JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
1461           while Buildroot only packages openjpeg 2.x. Therefore, the
1462           JP2K loader has been removed from EFL.
1463
1464 config BR2_PACKAGE_SYSTEMD_COMPAT
1465         bool "systemd compatibility libraries have been removed"
1466         select BR2_LEGACY
1467         help
1468           The systemd option to enable the compatibility libraries has
1469           been removed. Theses libraries have been useless since a few
1470           version, and have been fully dropped from the source since
1471           v230.
1472
1473 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
1474         bool "gst1-plugins-bad liveadder plugin removed"
1475         select BR2_LEGACY
1476         select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
1477         help
1478           The functionality of the liveadder plugin of the
1479           gst1-plugins-bad package has been merged into audiomixer.
1480
1481 config BR2_PACKAGE_LIBFSLVPUWRAP
1482         bool "libfslvpuwrap has been renamed to imx-vpuwrap"
1483         select BR2_LEGACY
1484         select BR2_PACKAGE_IMX_VPUWRAP
1485         help
1486           The libfslvpuwrap has been renamed to match the renamed
1487           package.
1488
1489 config BR2_PACKAGE_LIBFSLPARSER
1490         bool "libfslparser has been renamed to imx-parser"
1491         select BR2_LEGACY
1492         select BR2_PACKAGE_IMX_PARSER
1493         help
1494           The libfslparser has been renamed to match the renamed
1495           package.
1496
1497 config BR2_PACKAGE_LIBFSLCODEC
1498         bool "libfslcodec has been renamed to imx-codec"
1499         select BR2_LEGACY
1500         select BR2_PACKAGE_IMX_CODEC
1501         help
1502           The libfslcodec has been renamed to match the renamed package.
1503
1504 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
1505         bool "FIT support in uboot-tools has been refactored"
1506         select BR2_LEGACY
1507         select BR2_PACKAGE_DTC
1508         select BR2_PACKAGE_DTC_PROGRAMS
1509         select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
1510         select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
1511         select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
1512         help
1513           This option has been removed in favor of a more fine-grained
1514           configuration, which is recommended. Selecting this option
1515           enables FIT and FIT signature support for the target packages.
1516           It will also select the dtc and openssl packages.
1517
1518 config BR2_PTHREADS_OLD
1519         bool "linuxthreads (stable/old)"
1520         select BR2_LEGACY
1521         help
1522           Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
1523           BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
1524
1525 config BR2_BINUTILS_VERSION_2_23_X
1526         bool "binutils 2.23 removed"
1527         select BR2_LEGACY
1528         help
1529           Binutils 2.23 has been removed, using a newer version is
1530           recommended.
1531
1532 config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
1533         bool "eglibc support has been removed"
1534         select BR2_LEGACY
1535         help
1536           The eglibc project no longer exists, as it has been merged
1537           back into the glibc project. Therefore, support for eglibc
1538           has been removed, and glibc should be used instead.
1539
1540 config BR2_GDB_VERSION_7_8
1541         bool "gdb 7.8 has been removed"
1542         select BR2_LEGACY
1543         help
1544           The 7.8 version of gdb has been removed. Use a newer version
1545           instead.
1546
1547 ###############################################################################
1548 comment "Legacy options removed in 2016.05"
1549
1550 config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
1551         bool "openvpn polarssl crypto backend removed"
1552         select BR2_LEGACY
1553         help
1554           The OpenVPN polarssl crypto backend option has been removed.
1555           Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
1556           compatible with mbedtls (polarssl) series 2.x which is the
1557           version provided in buildroot. And both can't coexist.
1558           It now uses OpenSSL as the only option.
1559
1560 config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1561         bool "nginx http spdy module removed"
1562         select BR2_LEGACY
1563         select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1564         help
1565           The ngx_http_spdy_module has been superseded by the
1566           ngx_http_v2_module since nginx v1.9.5.  The
1567           ngx_http_v2_module modules has been automatically selected
1568           in your configuration.
1569
1570 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1571         bool "gst1-plugins-bad rtp plugin moved to good"
1572         select BR2_LEGACY
1573         help
1574           The rtp plugin has been moved from gst1-plugins-base to
1575           gst1-plugins-good.
1576
1577 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1578         bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1579         select BR2_LEGACY
1580         help
1581           The mpg123 plugin has been moved from gst1-plugins-bad to
1582           gst1-plugins-ugly.
1583
1584 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1585         bool "PowerPC Sourcery toolchain has been removed"
1586         select BR2_LEGACY
1587         help
1588           The Sourcery CodeBench toolchain for the PowerPC
1589           architecture has been removed, as it was very old, not
1590           maintained, and causing numerous build failures with modern
1591           userspace packages.
1592
1593 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1594         bool "PowerPC Sourcery E500v2 toolchain has been removed"
1595         select BR2_LEGACY
1596         help
1597           The Sourcery CodeBench toolchain for the PowerPC E500v2
1598           architecture has been removed, as it was very old, not
1599           maintained, and causing numerous build failures with modern
1600           userspace packages.
1601
1602 config BR2_x86_i386
1603         bool "x86 i386 support removed"
1604         select BR2_LEGACY
1605         help
1606           The support for the i386 processors of the x86 architecture
1607           has been removed.
1608
1609 config BR2_PACKAGE_QT5QUICK1
1610         bool "qt5quick1 package removed"
1611         select BR2_LEGACY
1612         help
1613           The qt5quick1 package has been removed, since it was removed
1614           from upstream starting from Qt 5.6.
1615
1616 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
1617         string "uboot custom patch dir has been removed"
1618         help
1619           The uboot custom patch directory option has been removed. Use
1620           the improved BR2_TARGET_UBOOT_PATCH option instead.
1621
1622 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1623         bool
1624         default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1625         select BR2_LEGACY
1626
1627 # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1628 # boot/uboot/Config.in
1629
1630 config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1631         bool "xf86-input-void removed"
1632         select BR2_LEGACY
1633         help
1634           The xf86-input-void package has been removed, there's no need
1635           for it in any modern (post-2007) xorg server.
1636
1637 config BR2_KERNEL_HEADERS_3_17
1638         bool "kernel headers version 3.17.x are no longer supported"
1639         select BR2_KERNEL_HEADERS_3_12
1640         select BR2_LEGACY
1641         help
1642           Version 3.17.x of the Linux kernel headers have been
1643           deprecated for more than four buildroot releases and are now
1644           removed.
1645           As an alternative, version 3.12.x of the headers have been
1646           automatically selected in your configuration.
1647
1648 config BR2_GDB_VERSION_7_7
1649         bool "gdb 7.7 has been removed"
1650         select BR2_LEGACY
1651         help
1652           The 7.7 version of gdb has been removed. Use a newer version
1653           instead.
1654
1655 config BR2_PACKAGE_FOOMATIC_FILTERS
1656         bool "foomatic-filters"
1657         select BR2_LEGACY
1658         help
1659           The foomatic-filters package was removed.
1660
1661 config BR2_PACKAGE_SAMBA
1662         bool "samba"
1663         select BR2_LEGACY
1664         help
1665           The samba package was removed in favour of samba4 since the
1666           3.x series isn't supported by upstream any longer.
1667
1668 config BR2_PACKAGE_KODI_WAVPACK
1669         bool "wavpack"
1670         select BR2_LEGACY
1671         help
1672           wavpack support was removed in favour of ffmpeg:
1673           https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1674
1675 config BR2_PACKAGE_KODI_RSXS
1676         bool "rsxs support in Kodi was moved to an addon"
1677         select BR2_LEGACY
1678         select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1679         help
1680           rsxs support in Kodi was moved to an addon
1681
1682 config BR2_PACKAGE_KODI_GOOM
1683         bool "Goom support in Kodi was moved to an addon"
1684         select BR2_LEGACY
1685         select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1686         help
1687           Goom support in Kodi was moved to an addon
1688
1689 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1690         bool "systemd all extras option has been removed"
1691         select BR2_LEGACY
1692         select BR2_PACKAGE_XZ
1693         select BR2_PACKAGE_LIBGCRYPT
1694         help
1695           The systemd option to enable "all extras" has been
1696           removed. To get the same features, the libgcrypt and xz
1697           package should now be enabled.
1698
1699 config BR2_GCC_VERSION_4_5_X
1700         bool "gcc 4.5.x has been removed"
1701         select BR2_LEGACY
1702         help
1703           The 4.5.x version of gcc has been removed. Use a newer
1704           version instead.
1705
1706 config BR2_PACKAGE_SQLITE_READLINE
1707         bool "sqlite command-line editing support was updated"
1708         select BR2_PACKAGE_NCURSES
1709         select BR2_PACKAGE_READLINE
1710         select BR2_LEGACY
1711         help
1712           This option was removed in favour of the sqlite package
1713           deciding itself depending on the enabled packages whether
1714           command-line editing should be enabled, it also also takes
1715           libedit into account.
1716
1717 ###############################################################################
1718 comment "Legacy options removed in 2016.02"
1719
1720 config BR2_PACKAGE_DOVECOT_BZIP2
1721         bool "bzip2 support option has been removed"
1722         select BR2_LEGACY
1723         select BR2_PACKAGE_BZIP2
1724         help
1725           Bzip2 support is built if the bzip2 package is selected.
1726
1727 config BR2_PACKAGE_DOVECOT_ZLIB
1728         bool "zlib support option has been removed"
1729         select BR2_LEGACY
1730         select BR2_PACKAGE_ZLIB
1731         help
1732           Zlib support is built if the zlib package is selected.
1733
1734 config BR2_PACKAGE_E2FSPROGS_FINDFS
1735         bool "e2fsprogs findfs option has been removed"
1736         select BR2_LEGACY
1737         help
1738           This option attempted to enable findfs capabilities from
1739           e2fsprogs but has not worked since July 2015 (due to
1740           packaging changes). One can use BusyBox's findfs support or
1741           enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
1742
1743 config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1744         bool "openpowerlink debug option has been removed"
1745         select BR2_LEGACY
1746         help
1747           This option depends on BR2_ENABLE_DEBUG which should not be
1748           used by packages anymore.
1749
1750 config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1751         bool "openpowerlink package has been updated"
1752         select BR2_LEGACY
1753         select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1754         help
1755           openpowerlink kernel modules are built if the
1756           kernel stack library is selected.
1757
1758 config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1759         bool "openpowerlink package has been updated"
1760         select BR2_LEGACY
1761         select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1762         help
1763           The user space support has been split in two part:
1764           - a monolitic user space library
1765           - a user spae deamon driver
1766
1767 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1768         bool "using the linux headers version for the kernel has been removed"
1769         select BR2_LEGACY
1770         help
1771           The option to use the version of the kernel headers for the
1772           kernel to build has been removed.
1773
1774           There is now the converse, better-suited and more versatile
1775           option to use the kernel version for the linux headers.
1776
1777 config BR2_PACKAGE_CUPS_PDFTOPS
1778         bool "Pdftops support has been removed from Cups"
1779         select BR2_PACKAGE_CUPS_FILTERS
1780         select BR2_LEGACY
1781         help
1782           Pdftops support has been removed from the cups package
1783           It is now part of the cups-filters package.
1784
1785 config BR2_KERNEL_HEADERS_3_16
1786         bool "kernel headers version 3.16.x are no longer supported"
1787         select BR2_KERNEL_HEADERS_3_12
1788         select BR2_LEGACY
1789         help
1790           Version 3.16.x of the Linux kernel headers have been
1791           deprecated for more than four buildroot releases and are now
1792           removed.
1793           As an alternative, version 3.12.x of the headers have been
1794           automatically selected in your configuration.
1795
1796 config BR2_PACKAGE_PYTHON_PYXML
1797         bool "python-pyxml package has been removed"
1798         select BR2_LEGACY
1799         help
1800           PyXML is obsolete and its functionality is covered either via
1801           native Python XML support or python-lxml package.
1802
1803 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1804 config BR2_ENABLE_SSP
1805         bool "Stack Smashing protection now has different levels"
1806         help
1807           The protection offered by SSP can now be selected from
1808           different protection levels. Be sure to review the SSP level
1809           in the build options menu.
1810
1811 config BR2_PACKAGE_DIRECTFB_CLE266
1812         bool "cle266 driver for directfb removed"
1813         select BR2_LEGACY
1814         help
1815           The cle266 directfb driver support has been removed.
1816           It doesn't build in the latest version and it's unlikely
1817           anyone has any use for it.
1818
1819 config BR2_PACKAGE_DIRECTFB_UNICHROME
1820         bool "unichrome driver for directfb removed"
1821         select BR2_LEGACY
1822         help
1823           The unichrome directfb driver support has been removed.
1824           It doesn't build in the latest version and it's unlikely
1825           anyone has any use for it.
1826
1827 config BR2_PACKAGE_LIBELEMENTARY
1828         bool "libelementary has been renamed to elementary"
1829         select BR2_LEGACY
1830         select BR2_PACKAGE_ELEMENTARY
1831         help
1832           The libelementary package has been renamed to match the
1833           upstream name.
1834
1835 config BR2_PACKAGE_LIBEINA
1836         bool "libeina package has been removed"
1837         select BR2_LEGACY
1838         select BR2_PACKAGE_EFL
1839         help
1840           With EFL 1.15, libeina is now provided by the efl package.
1841
1842 config BR2_PACKAGE_LIBEET
1843         bool "libeet package has been removed"
1844         select BR2_LEGACY
1845         select BR2_PACKAGE_EFL
1846         help
1847           With EFL 1.15, libeet is now provided by the efl package.
1848
1849 config BR2_PACKAGE_LIBEVAS
1850         bool "libevas package has been removed"
1851         select BR2_LEGACY
1852         select BR2_PACKAGE_EFL
1853         help
1854           With EFL 1.15, libevas is now provided by the efl package.
1855
1856 config BR2_PACKAGE_LIBECORE
1857         bool "libecore package has been removed"
1858         select BR2_LEGACY
1859         select BR2_PACKAGE_EFL
1860         help
1861           With EFL 1.15, libecore is now provided by the efl package.
1862
1863 config BR2_PACKAGE_LIBEDBUS
1864         bool "libedbus package has been removed"
1865         select BR2_LEGACY
1866         select BR2_PACKAGE_EFL
1867         help
1868           With EFL 1.15, libedbus is now provided by the efl package.
1869
1870 config BR2_PACKAGE_LIBEFREET
1871         bool "libefreet package has been removed"
1872         select BR2_LEGACY
1873         select BR2_PACKAGE_EFL
1874         help
1875           With EFL 1.15, libefreet is now provided by the efl package.
1876
1877 config BR2_PACKAGE_LIBEIO
1878         bool "libeio package has been removed"
1879         select BR2_LEGACY
1880         select BR2_PACKAGE_EFL
1881         help
1882           With EFL 1.15, libeio is now provided by the efl package.
1883
1884 config BR2_PACKAGE_LIBEMBRYO
1885         bool "libembryo package has been removed"
1886         select BR2_LEGACY
1887         select BR2_PACKAGE_EFL
1888         help
1889           With EFL 1.15, libembryo is now provided by the efl package.
1890
1891 config BR2_PACKAGE_LIBEDJE
1892         bool "libedje package has been removed"
1893         select BR2_LEGACY
1894         select BR2_PACKAGE_EFL
1895         help
1896           With EFL 1.15, libedje is now provided by the efl package.
1897
1898 config BR2_PACKAGE_LIBETHUMB
1899         bool "libethumb package has been removed"
1900         select BR2_LEGACY
1901         select BR2_PACKAGE_EFL
1902         help
1903           With EFL 1.15, libethumb is now provided by the efl package.
1904
1905 config BR2_PACKAGE_INFOZIP
1906         bool "infozip option has been renamed to zip"
1907         select BR2_LEGACY
1908         select BR2_PACKAGE_ZIP
1909         help
1910           Info-Zip's Zip package has been renamed from infozip to zip,
1911           to avoid ambiguities with Info-Zip's UnZip which has been
1912           added in the unzip package.
1913
1914 config BR2_BR2_PACKAGE_NODEJS_0_10_X
1915         bool "nodejs 0.10.x option removed"
1916         select BR2_LEGACY
1917         select BR2_PACKAGE_NODEJS
1918         help
1919           nodejs 0.10.x option has been removed.  0.10.x is now
1920           automatically chosen for ARMv5 architectures only and the
1921           latest nodejs for all other supported architectures. The
1922           correct nodejs version has been automatically selected in your
1923           configuration.
1924
1925 config BR2_BR2_PACKAGE_NODEJS_0_12_X
1926         bool "nodejs version 0.12.x has been removed"
1927         select BR2_LEGACY
1928         select BR2_PACKAGE_NODEJS
1929         help
1930           nodejs version 0.12.x has been removed.  As an alternative,
1931           the latest nodejs version has been automatically selected in
1932           your configuration.
1933
1934 config BR2_BR2_PACKAGE_NODEJS_4_X
1935         bool "nodejs version 4.x has been removed"
1936         select BR2_LEGACY
1937         select BR2_PACKAGE_NODEJS
1938         help
1939           nodejs version 4.x has been removed.  As an alternative,
1940           the latest nodejs version has been automatically selected in
1941           your configuration.
1942
1943 ###############################################################################
1944 comment "Legacy options removed in 2015.11"
1945
1946 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
1947         bool "gst1-plugins-bad real plugin has been removed"
1948         select BR2_LEGACY
1949         help
1950           The real plugin from GStreamer 1 bad plugins has been
1951           removed.
1952
1953 config BR2_PACKAGE_MEDIA_CTL
1954         bool "media-ctl package has been removed"
1955         select BR2_LEGACY
1956         select BR2_PACKAGE_LIBV4L
1957         select BR2_PACKAGE_LIBV4L_UTILS
1958         help
1959           media-ctl source and developement have been moved to v4l-utils
1960           since June 2014. For an up-to-date media-ctl version select
1961           BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
1962
1963 config BR2_PACKAGE_SCHIFRA
1964         bool "schifra package has been removed"
1965         select BR2_LEGACY
1966         help
1967           Schifra package has been maked broken since 2014.11 release
1968           and haven't been fixed since then.
1969
1970 config BR2_PACKAGE_ZXING
1971         bool "zxing option has been renamed"
1972         select BR2_LEGACY
1973         select BR2_PACKAGE_ZXING_CPP
1974         help
1975           ZXing no longer provides the cpp bindings, it has been renamed
1976           to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
1977
1978 # Since FreeRDP has new dependencies, protect this legacy to avoid the
1979 # infamous "unmet direct dependencies" kconfig error.
1980 config BR2_PACKAGE_FREERDP_CLIENT
1981         bool "freerdp client option renamed"
1982         depends on BR2_PACKAGE_FREERDP
1983         select BR2_LEGACY
1984         select BR2_PACKAGE_FREERDP_CLIENT_X11
1985
1986 config BR2_PACKAGE_BLACKBOX
1987         bool "blackbox package has been removed"
1988         select BR2_LEGACY
1989         help
1990           Upstream is dead and the package has been deprecated for
1991           some time. There are other alternative maintained WMs.
1992
1993 config BR2_KERNEL_HEADERS_3_0
1994         bool "kernel headers version 3.0.x are no longer supported"
1995         select BR2_KERNEL_HEADERS_3_2
1996         select BR2_LEGACY
1997         help
1998           Version 3.0.x of the Linux kernel headers have been deprecated
1999           for more than four buildroot releases and are now removed.
2000           As an alternative, version 3.2.x of the headers have been
2001           automatically selected in your configuration.
2002
2003 config BR2_KERNEL_HEADERS_3_11
2004         bool "kernel headers version 3.11.x are no longer supported"
2005         select BR2_KERNEL_HEADERS_3_10
2006         select BR2_LEGACY
2007         help
2008           Version 3.11.x of the Linux kernel headers have been
2009           deprecated for more than four buildroot releases and are now
2010           removed.
2011           As an alternative, version 3.10.x of the headers have been
2012           automatically selected in your configuration.
2013
2014 config BR2_KERNEL_HEADERS_3_13
2015         bool "kernel headers version 3.13.x are no longer supported"
2016         select BR2_KERNEL_HEADERS_3_12
2017         select BR2_LEGACY
2018         help
2019           Version 3.13.x of the Linux kernel headers have been
2020           deprecated for more than four buildroot releases and are now
2021           removed.
2022           As an alternative, version 3.12.x of the headers have been
2023           automatically selected in your configuration.
2024
2025 config BR2_KERNEL_HEADERS_3_15
2026         bool "kernel headers version 3.15.x are no longer supported"
2027         select BR2_KERNEL_HEADERS_3_12
2028         select BR2_LEGACY
2029         help
2030           Version 3.15.x of the Linux kernel headers have been
2031           deprecated for more than four buildroot releases and are now
2032           removed.
2033           As an alternative, version 3.12.x of the headers have been
2034           automatically selected in your configuration.
2035
2036 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2037         bool "DirectFB example df_andi has been removed"
2038         select BR2_LEGACY
2039         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2040         help
2041           The per-DirectFB example options have been removed. The
2042           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2043           examples.
2044
2045 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2046         bool "DirectFB example df_bltload has been removed"
2047         select BR2_LEGACY
2048         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2049         help
2050           The per-DirectFB example options have been removed. The
2051           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2052           examples.
2053
2054 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2055         bool "DirectFB example df_cpuload has been removed"
2056         select BR2_LEGACY
2057         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2058         help
2059           The per-DirectFB example options have been removed. The
2060           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2061           examples.
2062
2063 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2064         bool "DirectFB example df_databuffer has been removed"
2065         select BR2_LEGACY
2066         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2067         help
2068           The per-DirectFB example options have been removed. The
2069           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2070           examples.
2071
2072 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2073         bool "DirectFB example df_dioload has been removed"
2074         select BR2_LEGACY
2075         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2076         help
2077           The per-DirectFB example options have been removed. The
2078           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2079           examples.
2080
2081 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2082         bool "DirectFB example df_dok has been removed"
2083         select BR2_LEGACY
2084         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2085         help
2086           The per-DirectFB example options have been removed. The
2087           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2088           examples.
2089
2090 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2091         bool "DirectFB example df_drivertest has been removed"
2092         select BR2_LEGACY
2093         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2094         help
2095           The per-DirectFB example options have been removed. The
2096           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2097           examples.
2098
2099 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2100         bool "DirectFB example df_fire has been removed"
2101         select BR2_LEGACY
2102         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2103         help
2104           The per-DirectFB example options have been removed. The
2105           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2106           examples.
2107
2108 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2109         bool "DirectFB example df_flip has been removed"
2110         select BR2_LEGACY
2111         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2112         help
2113           The per-DirectFB example options have been removed. The
2114           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2115           examples.
2116
2117 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2118         bool "DirectFB example df_fonts has been removed"
2119         select BR2_LEGACY
2120         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2121         help
2122           The per-DirectFB example options have been removed. The
2123           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2124           examples.
2125
2126 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2127         bool "DirectFB example df_input has been removed"
2128         select BR2_LEGACY
2129         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2130         help
2131           The per-DirectFB example options have been removed. The
2132           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2133           examples.
2134
2135 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2136         bool "DirectFB example df_joystick has been removed"
2137         select BR2_LEGACY
2138         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2139         help
2140           The per-DirectFB example options have been removed. The
2141           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2142           examples.
2143
2144 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2145         bool "DirectFB example df_knuckles has been removed"
2146         select BR2_LEGACY
2147         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2148         help
2149           The per-DirectFB example options have been removed. The
2150           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2151           examples.
2152
2153 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2154         bool "DirectFB example df_layer has been removed"
2155         select BR2_LEGACY
2156         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2157         help
2158           The per-DirectFB example options have been removed. The
2159           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2160           examples.
2161
2162 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2163         bool "DirectFB example df_matrix has been removed"
2164         select BR2_LEGACY
2165         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2166         help
2167           The per-DirectFB example options have been removed. The
2168           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2169           examples.
2170
2171 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2172         bool "DirectFB example df_matrix_water has been removed"
2173         select BR2_LEGACY
2174         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2175         help
2176           The per-DirectFB example options have been removed. The
2177           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2178           examples.
2179
2180 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2181         bool "DirectFB example df_neo has been removed"
2182         select BR2_LEGACY
2183         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2184         help
2185           The per-DirectFB example options have been removed. The
2186           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2187           examples.
2188
2189 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2190         bool "DirectFB example df_netload has been removed"
2191         select BR2_LEGACY
2192         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2193         help
2194           The per-DirectFB example options have been removed. The
2195           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2196           examples.
2197
2198 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2199         bool "DirectFB example df_palette has been removed"
2200         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2201         help
2202           The per-DirectFB example options have been removed. The
2203           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2204           examples.
2205
2206 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2207         bool "DirectFB example df_particle has been removed"
2208         select BR2_LEGACY
2209         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2210         help
2211           The per-DirectFB example options have been removed. The
2212           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2213           examples.
2214
2215 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2216         bool "DirectFB example df_porter has been removed"
2217         select BR2_LEGACY
2218         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2219         help
2220           The per-DirectFB example options have been removed. The
2221           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2222           examples.
2223
2224 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2225         bool "DirectFB example df_stress has been removed"
2226         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2227         help
2228           The per-DirectFB example options have been removed. The
2229           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2230           examples.
2231
2232 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2233         bool "DirectFB example df_texture has been removed"
2234         select BR2_LEGACY
2235         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2236         help
2237           The per-DirectFB example options have been removed. The
2238           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2239           examples.
2240
2241 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2242         bool "DirectFB example df_video has been removed"
2243         select BR2_LEGACY
2244         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2245         help
2246           The per-DirectFB example options have been removed. The
2247           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2248           examples.
2249
2250 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2251         bool "DirectFB example df_video_particle has been removed"
2252         select BR2_LEGACY
2253         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2254         help
2255           The per-DirectFB example options have been removed. The
2256           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2257           examples.
2258
2259 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2260         bool "DirectFB example df_window has been removed"
2261         select BR2_LEGACY
2262         select BR2_PACKAGE_DIRECTFB_EXAMPLES
2263         help
2264           The per-DirectFB example options have been removed. The
2265           BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2266           examples.
2267
2268 config BR2_PACKAGE_KOBS_NG
2269         bool "kobs-ng was replaced by imx-kobs"
2270         select BR2_LEGACY
2271         select BR2_PACKAGE_IMX_KOBS
2272         help
2273           The outdated kobs-ng has been replaced by the Freescale-
2274           maintained imx-kobs package.
2275
2276 config BR2_PACKAGE_SAWMAN
2277         bool "sawman package removed"
2278         select BR2_LEGACY
2279         select BR2_PACKAGE_DIRECTFB_SAWMAN
2280         help
2281           This option has been removed because the sawman package no
2282           longer exists: it was merged inside DirectFB itself. This
2283           feature can now be enabled using the
2284           BR2_PACKAGE_DIRECTFB_SAWMAN option.
2285
2286 config BR2_PACKAGE_DIVINE
2287         bool "divine package removed"
2288         select BR2_LEGACY
2289         select BR2_PACKAGE_DIRECTFB_DIVINE
2290         help
2291           This option has been removed because the divine package no
2292           longer exists: it was merged inside DirectFB itself. This
2293           feature can now be enabled using the
2294           BR2_PACKAGE_DIRECTFB_DIVINE option.
2295
2296 ###############################################################################
2297 comment "Legacy options removed in 2015.08"
2298
2299 config BR2_PACKAGE_KODI_PVR_ADDONS
2300         bool "Kodi PVR addon was split"
2301         select BR2_LEGACY
2302         select BR2_PACKAGE_KODI_PVR_ARGUSTV
2303         select BR2_PACKAGE_KODI_PVR_DVBLINK
2304         select BR2_PACKAGE_KODI_PVR_DVBVIEWER
2305         select BR2_PACKAGE_KODI_PVR_FILMON
2306         select BR2_PACKAGE_KODI_PVR_HTS
2307         select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
2308         select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
2309         select BR2_PACKAGE_KODI_PVR_MYTHTV
2310         select BR2_PACKAGE_KODI_PVR_NEXTPVR
2311         select BR2_PACKAGE_KODI_PVR_NJOY
2312         select BR2_PACKAGE_KODI_PVR_PCTV
2313         select BR2_PACKAGE_KODI_PVR_STALKER
2314         select BR2_PACKAGE_KODI_PVR_VBOX
2315         select BR2_PACKAGE_KODI_PVR_VDR_VNSI
2316         select BR2_PACKAGE_KODI_PVR_VUPLUS
2317         select BR2_PACKAGE_KODI_PVR_WMC
2318         help
2319           Kodi PVR addon was split into seperate modules
2320
2321 config BR2_BINUTILS_VERSION_2_23_2
2322         bool "binutils 2.23 option renamed"
2323         select BR2_LEGACY
2324         help
2325           Binutils 2.23.2 has been removed, using a newer version is
2326           recommended.
2327
2328 config BR2_BINUTILS_VERSION_2_24
2329         bool "binutils 2.24 option renamed"
2330         select BR2_LEGACY
2331         select BR2_BINUTILS_VERSION_2_24_X
2332         help
2333           The binutils version option has been renamed to match the
2334           same patchlevel logic used by gcc. The new option is now
2335           BR2_BINUTILS_VERSION_2_24_X.
2336
2337 config BR2_BINUTILS_VERSION_2_25
2338         bool "binutils 2.25 option renamed"
2339         select BR2_LEGACY
2340         select BR2_BINUTILS_VERSION_2_25_X
2341         help
2342           The binutils version option has been renamed to match the
2343           same patchlevel logic used by gcc. The new option is now
2344           BR2_BINUTILS_VERSION_2_25_X.
2345
2346 config BR2_PACKAGE_PERF
2347         bool "perf option has been renamed"
2348         select BR2_LEGACY
2349         select BR2_LINUX_KERNEL_TOOL_PERF
2350         help
2351           The perf package has been moved as a Linux tools package,
2352           and the option to enable it is now
2353           BR2_LINUX_KERNEL_TOOL_PERF.
2354
2355 config BR2_BINUTILS_VERSION_2_22
2356         bool "binutils 2.22 removed"
2357         select BR2_LEGACY
2358         help
2359           Binutils 2.22 has been removed, using a newer version is
2360           recommended.
2361
2362 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
2363         bool "gpu-viv-bin-mx6q"
2364         select BR2_LEGACY
2365         select BR2_PACKAGE_IMX_GPU_VIV
2366         help
2367           Vivante graphics libraries have been renamed to
2368           BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
2369           name.
2370
2371 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
2372         bool "libsemanage python bindings removed"
2373         depends on BR2_PACKAGE_PYTHON
2374         select BR2_LEGACY
2375         help
2376           This option has been removed, since the libsemanage Python
2377           bindings on the target were not useful.
2378
2379 config BR2_TARGET_UBOOT_NETWORK
2380         bool "U-Boot custom network settings removed"
2381         select BR2_LEGACY
2382         help
2383           U-Boot's custom network settings options have been removed.
2384
2385 ###############################################################################
2386 comment "Legacy options removed in 2015.05"
2387
2388 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
2389         bool "jffs2 16kB erasesize NAND flash option renamed"
2390         select BR2_LEGACY
2391         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
2392         help
2393           The JFFS2 NAND flash options now longer include the page
2394           size.
2395
2396 config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
2397         bool "jffs2 128kB erasesize NAND flash option renamed"
2398         select BR2_LEGACY
2399         select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2400         help
2401           The JFFS2 NAND flash options now longer include the page
2402           size.
2403
2404 config BR2_PACKAGE_MONO_20
2405         bool "2.0/3.5 .Net Runtime"
2406         select BR2_LEGACY
2407         help
2408           This option no longer exists, all versions of the .Net
2409           runtime are now installed.
2410
2411 config BR2_PACKAGE_MONO_40
2412         bool "4.0 .Net Runtime"
2413         select BR2_LEGACY
2414         help
2415           This option no longer exists, all versions of the .Net
2416           runtime are now installed.
2417
2418 config BR2_PACKAGE_MONO_45
2419         bool "4.5 .Net Runtime"
2420         select BR2_LEGACY
2421         help
2422           This option no longer exists, all versions of the .Net
2423           runtime are now installed.
2424
2425 config BR2_CIVETWEB_WITH_LUA
2426         bool "civetweb lua option renamed"
2427         select BR2_LEGACY
2428         select BR2_PACKAGE_CIVETWEB_WITH_LUA
2429         help
2430           civetweb's lua option has been renamed to
2431           BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2432           packages name options.
2433
2434 config BR2_PACKAGE_TIFF_TIFF2PDF
2435         bool "tiff utility-specific option removed"
2436         select BR2_LEGACY
2437         select BR2_PACKAGE_TIFF_UTILITIES
2438         help
2439           utility-specific options have been removed in favour of
2440           the new option BR2_PACKAGE_TIFF_UTILITIES.
2441
2442 config BR2_PACKAGE_TIFF_TIFFCP
2443         bool "tiff utility-specific option removed"
2444         select BR2_LEGACY
2445         select BR2_PACKAGE_TIFF_UTILITIES
2446         help
2447           utility-specific options have been removed in favour of
2448           the new option BR2_PACKAGE_TIFF_UTILITIES.
2449
2450 config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
2451         bool "RTAI patch file path has been removed"
2452         select BR2_LEGACY
2453         help
2454           This option has never worked, so it has been removed.
2455
2456 config BR2_TARGET_GENERIC_PASSWD_DES
2457         bool "Encoding passwords with DES has been removed"
2458         select BR2_LEGACY
2459         help
2460           Paswords can now only be encoded with either of md5, sha256 or
2461           sha512. The default is md5, which is stronger that DES (but
2462           still pretty weak).
2463
2464 config BR2_PACKAGE_GTK2_THEME_HICOLOR
2465         bool "hicolor (default theme) is a duplicate"
2466         select BR2_LEGACY
2467         select BR2_PACKAGE_HICOLOR_ICON_THEME
2468         help
2469           The option was just a duplicate of hicolor icon theme.
2470
2471 config BR2_PACKAGE_VALGRIND_PTRCHECK
2472         bool "valgrind's PTRCheck was renamed to SGCheck"
2473         select BR2_LEGACY
2474         select BR2_PACKAGE_VALGRIND_SGCHECK
2475         help
2476           PTRCheck was renamed to SGCheck in valgrind
2477
2478 ###############################################################################
2479 comment "Legacy options removed in 2015.02"
2480
2481 config BR2_PACKAGE_LIBGC
2482         bool "libgc package removed"
2483         select BR2_LEGACY
2484         select BR2_PACKAGE_BDWGC
2485         help
2486           libgc has been removed because we have the same package under
2487           a different name, bdwgc.
2488
2489 config BR2_PACKAGE_WDCTL
2490         bool "util-linux' wdctl option has been renamed"
2491         select BR2_LEGACY
2492         select BR2_PACKAGE_UTIL_LINUX_WDCTL
2493         help
2494           util-linux' wdctl option has been renamed to
2495           BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
2496           options are named.
2497
2498 config BR2_PACKAGE_UTIL_LINUX_ARCH
2499         bool "util-linux' arch option has been removed"
2500         select BR2_LEGACY
2501         help
2502           util-linux' arch was dropped in util-linux 2.23, in favor of
2503           the coreutils version.
2504
2505 config BR2_PACKAGE_UTIL_LINUX_DDATE
2506         bool "util-linux' ddate option has been removed"
2507         select BR2_LEGACY
2508         help
2509           util-linux' ddate was dropped in util-linux 2.23.
2510
2511 config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2512         bool "rpm's bzip2 payloads option has been removed"
2513         select BR2_LEGACY
2514         select BR2_PACKAGE_BZIP2
2515         help
2516           The bzip2 payloads option rely entirely on the dependant
2517           package bzip2. So, you need to select it to enable this
2518           feature.
2519
2520 config BR2_PACKAGE_RPM_XZ_PAYLOADS
2521         bool "rpm's xz payloads option has been removed"
2522         select BR2_LEGACY
2523         select BR2_PACKAGE_XZ
2524         help
2525           The xz payloads option rely entirely on the dependant package
2526           xz. So, you need to select it to enable this feature.
2527
2528 config BR2_PACKAGE_M4
2529         bool "m4 target package removed"
2530         select BR2_LEGACY
2531         help
2532           The m4 target package has been removed, it's been
2533           deprecated for some time now.
2534
2535 config BR2_PACKAGE_FLEX_BINARY
2536         bool "flex binary in target option removed"
2537         select BR2_LEGACY
2538         help
2539           The flex binary in the target option has been removed.
2540           It's been deprecated for some time now and is essentially a
2541           development tool which isn't very useful in the target.
2542
2543 config BR2_PACKAGE_BISON
2544         bool "bison target package removed"
2545         select BR2_LEGACY
2546         help
2547           The bison target package has been removed, it's been
2548           deprecated for some time now and is essentially a development
2549           tool which isn't very useful in the target.
2550
2551 config BR2_PACKAGE_GOB2
2552         bool "gob2 target package removed"
2553         select BR2_LEGACY
2554         help
2555           The gob2 target package has been removed, it's been
2556           deprecated for some time now and was essentially useless
2557           without a target toolchain.
2558
2559 config BR2_PACKAGE_DISTCC
2560         bool "distcc target package removed"
2561         select BR2_LEGACY
2562         help
2563           The distcc target package has been removed, it's been
2564           deprecated for some time now and was essentially useless
2565           without a target toolchain.
2566
2567 config BR2_PACKAGE_HASERL_VERSION_0_8_X
2568         bool "haserl 0.8.x version removed"
2569         select BR2_LEGACY
2570         help
2571           The 0.8.x version option for haserl has been removed since it
2572           has been deprecated for some time now.
2573           You should be able to use the 0.9.x version without issues.
2574
2575 config BR2_PACKAGE_STRONGSWAN_TOOLS
2576         bool "strongswan option has been removed"
2577         select BR2_LEGACY
2578         select BR2_PACKAGE_STRONGSWAN_PKI
2579         select BR2_PACKAGE_STRONGSWAN_SCEP
2580         help
2581           The tools option has been removed upstream and the different
2582           tools have been split between the pki and scep options, with
2583           others deprecated.
2584
2585 config BR2_PACKAGE_XBMC_ADDON_XVDR
2586         bool "xbmc-addon-xvdr removed"
2587         select BR2_LEGACY
2588         help
2589           According to the github project page:
2590           https://github.com/pipelka/xbmc-addon-xvdr
2591           this package is discontinued.
2592
2593 config BR2_PACKAGE_XBMC_PVR_ADDONS
2594         bool "xbmc options have been renamed"
2595         select BR2_LEGACY
2596         select BR2_PACKAGE_KODI_PVR_ADDONS
2597         help
2598           The XBMC media center project was renamed to Kodi
2599           entertainment center
2600
2601 config BR2_PACKAGE_XBMC
2602         bool "xbmc options have been renamed"
2603         select BR2_LEGACY
2604         select BR2_PACKAGE_KODI
2605         help
2606           The XBMC media center project was renamed to Kodi
2607           entertainment center
2608
2609 config BR2_PACKAGE_XBMC_ALSA_LIB
2610         bool "xbmc options have been renamed"
2611         select BR2_LEGACY
2612         select BR2_PACKAGE_KODI_ALSA_LIB
2613         help
2614           The XBMC media center project was renamed to Kodi
2615           entertainment center
2616
2617 config BR2_PACKAGE_XBMC_AVAHI
2618         bool "xbmc options have been renamed"
2619         select BR2_LEGACY
2620         select BR2_PACKAGE_KODI_AVAHI
2621         help
2622           The XBMC media center project was renamed to Kodi
2623           entertainment center
2624
2625 config BR2_PACKAGE_XBMC_DBUS
2626         bool "xbmc options have been renamed"
2627         select BR2_LEGACY
2628         select BR2_PACKAGE_KODI_DBUS
2629         help
2630           The XBMC media center project was renamed to Kodi
2631           entertainment center
2632
2633 config BR2_PACKAGE_XBMC_LIBBLURAY
2634         bool "xbmc options have been renamed"
2635         select BR2_LEGACY
2636         select BR2_PACKAGE_KODI_LIBBLURAY
2637         help
2638           The XBMC media center project was renamed to Kodi
2639           entertainment center
2640
2641 config BR2_PACKAGE_XBMC_GOOM
2642         bool "xbmc options have been renamed"
2643         select BR2_LEGACY
2644         select BR2_PACKAGE_KODI_GOOM
2645         help
2646           The XBMC media center project was renamed to Kodi
2647           entertainment center
2648
2649 config BR2_PACKAGE_XBMC_RSXS
2650         bool "xbmc options have been renamed"
2651         select BR2_LEGACY
2652         select BR2_PACKAGE_KODI_RSXS
2653         help
2654           The XBMC media center project was renamed to Kodi
2655           entertainment center
2656
2657 config BR2_PACKAGE_XBMC_LIBCEC
2658         bool "xbmc options have been renamed"
2659         select BR2_LEGACY
2660         select BR2_PACKAGE_KODI_LIBCEC
2661         help
2662           The XBMC media center project was renamed to Kodi
2663           entertainment center
2664
2665 config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2666         bool "xbmc options have been renamed"
2667         select BR2_LEGACY
2668         select BR2_PACKAGE_KODI_LIBMICROHTTPD
2669         help
2670           The XBMC media center project was renamed to Kodi
2671           entertainment center
2672
2673 config BR2_PACKAGE_XBMC_LIBNFS
2674         bool "xbmc options have been renamed"
2675         select BR2_LEGACY
2676         select BR2_PACKAGE_KODI_LIBNFS
2677         help
2678           The XBMC media center project was renamed to Kodi
2679           entertainment center
2680
2681 config BR2_PACKAGE_XBMC_RTMPDUMP
2682         bool "xbmc options have been renamed"
2683         select BR2_LEGACY
2684         select BR2_PACKAGE_KODI_RTMPDUMP
2685         help
2686           The XBMC media center project was renamed to Kodi
2687           entertainment center
2688
2689 config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2690         bool "xbmc options have been renamed"
2691         select BR2_LEGACY
2692         select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2693         help
2694           The XBMC media center project was renamed to Kodi
2695           entertainment center
2696
2697 config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2698         bool "xbmc options have been renamed"
2699         select BR2_LEGACY
2700         select BR2_PACKAGE_KODI_LIBSMBCLIENT
2701         help
2702           The XBMC media center project was renamed to Kodi
2703           entertainment center
2704
2705 config BR2_PACKAGE_XBMC_LIBTHEORA
2706         bool "xbmc options have been renamed"
2707         select BR2_LEGACY
2708         select BR2_PACKAGE_KODI_LIBTHEORA
2709         help
2710           The XBMC media center project was renamed to Kodi
2711           entertainment center
2712
2713 config BR2_PACKAGE_XBMC_LIBUSB
2714         bool "xbmc options have been renamed"
2715         select BR2_LEGACY
2716         select BR2_PACKAGE_KODI_LIBUSB
2717         help
2718           The XBMC media center project was renamed to Kodi
2719           entertainment center
2720
2721 config BR2_PACKAGE_XBMC_LIBVA
2722         bool "xbmc options have been renamed"
2723         select BR2_LEGACY
2724         select BR2_PACKAGE_KODI_LIBVA
2725         help
2726           The XBMC media center project was renamed to Kodi
2727           entertainment center
2728
2729 config BR2_PACKAGE_XBMC_WAVPACK
2730         bool "xbmc options have been renamed"
2731         select BR2_LEGACY
2732         select BR2_PACKAGE_KODI_WAVPACK
2733         help
2734           The XBMC media center project was renamed to Kodi
2735           entertainment center
2736
2737 config BR2_PREFER_STATIC_LIB
2738         bool "static library option renamed"
2739         select BR2_LEGACY
2740         help
2741           The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2742           highlights the fact that the option no longer "prefers"
2743           static libraries, but "enforces" static libraries (i.e
2744           shared libraries are completely unused).
2745
2746           Take care of updating the type of libraries you want under the
2747           "Build options" menu.
2748
2749 ###############################################################################
2750 comment "Legacy options removed in 2014.11"
2751
2752 config BR2_x86_generic
2753         bool "x86 generic variant has been removed"
2754         select BR2_LEGACY
2755         help
2756           The generic x86 CPU variant has been removed. Use another
2757           CPU variant instead.
2758
2759 config BR2_GCC_VERSION_4_4_X
2760         bool "gcc 4.4.x has been removed"
2761         select BR2_LEGACY
2762         help
2763           The 4.4.x version of gcc has been removed. Use a newer
2764           version instead.
2765
2766 config BR2_sparc_sparchfleon
2767         bool "sparchfleon CPU has been removed"
2768         select BR2_LEGACY
2769         help
2770           The sparchfleon CPU was only supported in a patched gcc 4.4
2771           version. Its support has been removed in favor of the leon3
2772           CPU starting from gcc 4.8.x.
2773
2774 config BR2_sparc_sparchfleonv8
2775         bool "sparchfleonv8 CPU has been removed"
2776         select BR2_LEGACY
2777         help
2778           The sparchfleonv8 CPU was only supported in a patched gcc
2779           4.4 version. Its support has been removed in favor of the
2780           leon3 CPU starting from gcc 4.8.x.
2781
2782 config BR2_sparc_sparcsfleon
2783         bool "sparcsfleon CPU has been removed"
2784         select BR2_LEGACY
2785         help
2786           The sparcsfleon CPU was only supported in a patched gcc 4.4
2787           version. Its support has been removed in favor of the leon3
2788           CPU starting from gcc 4.8.x.
2789
2790 config BR2_sparc_sparcsfleonv8
2791         bool "sparcsfleonv8 CPU has been removed"
2792         select BR2_LEGACY
2793         help
2794           The sparcsfleonv8 CPU was only supported in a patched gcc
2795           4.4 version. Its support has been removed in favor of the
2796           leon3 CPU starting from gcc 4.8.x.
2797
2798 config BR2_PACKAGE_XLIB_LIBPCIACCESS
2799         bool "xlib-libpciaccess option has been renamed"
2800         depends on BR2_PACKAGE_XORG7
2801         select BR2_LEGACY
2802         select BR2_PACKAGE_LIBPCIACCESS
2803         help
2804           libpciaccess neither depends on X11 nor Xlib. Thus the
2805           package has been renamed BR2_PACKAGE_LIBPCIACCESS
2806
2807 config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2808         bool "Xceive xc5000 option has been renamed"
2809         select BR2_LEGACY
2810         select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2811         help
2812           The Xceive xc5000 option now also handles older firmwares from
2813           Xceive (the xc4000 series), as well as new firmwares (the
2814           xc5000c) from Cresta, who bought Xceive.
2815
2816 config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2817         bool "Chelsio T4 option has been renamed"
2818         select BR2_LEGACY
2819         select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2820         help
2821           The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2822           has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
2823           to better account for the fact that a T5 variant exists.
2824
2825 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
2826         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
2827         select BR2_LEGACY
2828         help
2829           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
2830           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
2831           select it in:
2832               Target packages -> Hardware handling ->
2833               Firmware -> linux-firmware -> WiFi firmware ->
2834               iwlwifi 3160/726x revision to use (revision 7)
2835
2836 config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
2837         bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
2838         select BR2_LEGACY
2839         help
2840           The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
2841           renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
2842           select it in:
2843               Target packages -> Hardware handling ->
2844               Firmware -> linux-firmware -> WiFi firmware ->
2845               iwlwifi 3160/726x revision to use (revision 8)
2846
2847 ###############################################################################
2848 comment "Legacy options removed in 2014.08"
2849
2850 config BR2_PACKAGE_LIBELF
2851         bool "libelf has been removed"
2852         select BR2_PACKAGE_ELFUTILS
2853         select BR2_LEGACY
2854         help
2855           The libelf package provided an old version of the libelf
2856           library and is deprecated. The libelf library is now provided
2857           by the elfutils package.
2858
2859 config BR2_KERNEL_HEADERS_3_8
2860         bool "kernel headers version 3.8.x are no longer supported"
2861         select BR2_KERNEL_HEADERS_3_4
2862         select BR2_LEGACY
2863         help
2864           Version 3.8.x of the Linux kernel headers have been deprecated
2865           for more than four buildroot releases and are now removed.
2866           As an alternative, version 3.4.x of the headers have been
2867           automatically selected in your configuration.
2868
2869 config BR2_PACKAGE_GETTEXT_TOOLS
2870         bool "support for gettext-tools on target has been removed"
2871         select BR2_LEGACY
2872         help
2873           The option to install the gettext utilities on the target
2874           has been removed. This is not necessary as Buildroot is not
2875           designed to provide a full development environment on the
2876           target. gettext tools should be used on the build machine
2877           instead.
2878
2879 config BR2_PACKAGE_PROCPS
2880         bool "procps has been replaced by procps-ng"
2881         select BR2_PACKAGE_PROCPS_NG
2882         select BR2_LEGACY
2883         help
2884           The procps package has been replaced by the equivalent
2885           procps-ng.
2886
2887 config BR2_BINUTILS_VERSION_2_20_1
2888         bool "binutils 2.20.1 has been removed"
2889         select BR2_LEGACY
2890         help
2891           The 2.20.1 version of binutils has been removed. Use a newer
2892           version instead.
2893
2894 config BR2_BINUTILS_VERSION_2_21
2895         bool "binutils 2.21 has been removed"
2896         select BR2_LEGACY
2897         help
2898           The 2.21 version of binutils has been removed. Use a newer
2899           version instead.
2900
2901 config BR2_BINUTILS_VERSION_2_23_1
2902         bool "binutils 2.23.1 has been removed"
2903         select BR2_LEGACY
2904         help
2905           The 2.23.1 version of binutils has been removed. Use a newer
2906           version instead.
2907
2908 config BR2_UCLIBC_VERSION_0_9_32
2909         bool "uclibc 0.9.32 has been removed"
2910         select BR2_LEGACY
2911         help
2912           The 0.9.32 version of uClibc has been removed. Use a newer
2913           version instead.
2914
2915 config BR2_GCC_VERSION_4_3_X
2916         bool "gcc 4.3.x has been removed"
2917         select BR2_LEGACY
2918         help
2919           The 4.3.x version of gcc has been removed. Use a newer
2920           version instead.
2921
2922 config BR2_GCC_VERSION_4_6_X
2923         bool "gcc 4.6.x has been removed"
2924         select BR2_LEGACY
2925         help
2926           The 4.6.x version of gcc has been removed. Use a newer
2927           version instead.
2928
2929 config BR2_GDB_VERSION_7_4
2930         bool "gdb 7.4 has been removed"
2931         select BR2_LEGACY
2932         help
2933           The 7.4 version of gdb has been removed. Use a newer version
2934           instead.
2935
2936 config BR2_GDB_VERSION_7_5
2937         bool "gdb 7.5 has been removed"
2938         select BR2_LEGACY
2939         help
2940           The 7.5 version of gdb has been removed. Use a newer version
2941           instead.
2942
2943 config BR2_BUSYBOX_VERSION_1_19_X
2944         bool "busybox version selection has been removed"
2945         select BR2_LEGACY
2946         help
2947           The possibility of selecting the Busybox version has been
2948           removed. Use the latest version provided by the Busybox
2949           package instead.
2950
2951 config BR2_BUSYBOX_VERSION_1_20_X
2952         bool "busybox version selection has been removed"
2953         select BR2_LEGACY
2954         help
2955           The possibility of selecting the Busybox version has been
2956           removed. Use the latest version provided by the Busybox
2957           package instead.
2958
2959 config BR2_BUSYBOX_VERSION_1_21_X
2960         bool "busybox version selection has been removed"
2961         select BR2_LEGACY
2962         help
2963           The possibility of selecting the Busybox version has been
2964           removed. Use the latest version provided by the Busybox
2965           package instead.
2966
2967 config BR2_PACKAGE_LIBV4L_DECODE_TM6000
2968         bool "decode_tm6000"
2969         select BR2_PACKAGE_LIBV4L_UTILS
2970         select BR2_LEGACY
2971         help
2972           This libv4l option has been deprecated and replaced by a
2973           single option to build all the libv4l utilities.
2974
2975 config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
2976         bool "ir-keytable"
2977         select BR2_PACKAGE_LIBV4L_UTILS
2978         select BR2_LEGACY
2979         help
2980           This libv4l option has been deprecated and replaced by a
2981           single option to build all the libv4l utilities.
2982
2983 config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
2984         bool "v4l2-compliance"
2985         select BR2_PACKAGE_LIBV4L_UTILS
2986         select BR2_LEGACY
2987         help
2988           This libv4l option has been deprecated and replaced by a
2989           single option to build all the libv4l utilities.
2990
2991 config BR2_PACKAGE_LIBV4L_V4L2_CTL
2992         bool "v4l2-ctl"
2993         select BR2_PACKAGE_LIBV4L_UTILS
2994         select BR2_LEGACY
2995         help
2996           This libv4l option has been deprecated and replaced by a
2997           single option to build all the libv4l utilities.
2998
2999 config BR2_PACKAGE_LIBV4L_V4L2_DBG
3000         bool "v4l2-dbg"
3001         select BR2_PACKAGE_LIBV4L_UTILS
3002         select BR2_LEGACY
3003         help
3004           This libv4l option has been deprecated and replaced by a
3005           single option to build all the libv4l utilities.
3006
3007 ###############################################################################
3008 comment "Legacy options removed in 2014.05"
3009
3010 config BR2_PACKAGE_EVTEST_CAPTURE
3011         bool "evtest-capture support removed (dropped since evtest 1.31)"
3012         select BR2_LEGACY
3013         help
3014           Support for evtest-capture has been removed (dropped from
3015           evtest package since version 1.31), use evemu package
3016           instead.
3017
3018 config BR2_KERNEL_HEADERS_3_6
3019         bool "kernel headers version 3.6.x are no longer supported"
3020         select BR2_KERNEL_HEADERS_3_4
3021         select BR2_LEGACY
3022         help
3023           Version 3.6.x of the Linux kernel headers have been deprecated
3024           for more than four buildroot releases and are now removed.
3025           As an alternative, version 3.4.x of the headers have been
3026           automatically selected in your configuration.
3027
3028 config BR2_KERNEL_HEADERS_3_7
3029         bool "kernel headers version 3.7.x are no longer supported"
3030         select BR2_KERNEL_HEADERS_3_4
3031         select BR2_LEGACY
3032         help
3033           Version 3.7.x of the Linux kernel headers have been deprecated
3034           for more than four buildroot releases and are now removed.
3035           As an alternative, version 3.4.x of the headers have been
3036           automatically selected in your configuration.
3037
3038 config BR2_PACKAGE_VALA
3039         bool "vala target package has been removed"
3040         select BR2_LEGACY
3041         help
3042           The 'vala' target package has been removed since it has been
3043           deprecated for more than four buildroot releases.
3044           Note: the host vala package still exists.
3045
3046 config BR2_TARGET_TZ_ZONELIST
3047         default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3048
3049 config BR2_PACKAGE_TZDATA_ZONELIST
3050         string "tzdata: the timezone list option has been renamed"
3051         help
3052           The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
3053           BR2_TARGET_TZ_ZONELIST, and moved to the "System
3054           configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
3055
3056 config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3057         bool
3058         default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3059         select BR2_LEGACY
3060
3061 config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3062         bool "Lua command-line editing none has been renamed"
3063         select BR2_LEGACY
3064         help
3065           The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
3066           renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3067           select it in the corresponding choice.
3068
3069 config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3070         bool "Lua command-line editing using readline has been renamed"
3071         select BR2_LEGACY
3072         help
3073           The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3074           renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3075           it in the corresponding choice.
3076
3077 config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3078         bool "Lua command-line editing using linenoise has been renamed"
3079         select BR2_LEGACY
3080         help
3081           The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3082           renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3083           it in the corresponding choice.
3084
3085 config BR2_PACKAGE_DVB_APPS_UTILS
3086         bool "dvb-apps utilities now built by default"
3087         select BR2_LEGACY
3088         help
3089           The dvb-apps utilities are now always built when the dvb-apps
3090           package is selected.
3091
3092 config BR2_KERNEL_HEADERS_SNAP
3093         bool "Local Linux snapshot support removed"
3094         select BR2_LEGACY
3095         help
3096           Support for using a custom snapshot to install the Linux
3097           kernel headers has been removed.
3098
3099 config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3100         bool "/dev management by udev removed"
3101         select BR2_LEGACY
3102         help
3103           The 'udev' package has been converted to a virtual package.
3104           The providers for this feature are: 'eudev', 'systemd'.
3105
3106           Therefore, if you are not using 'systemd' as init system, you
3107           must choose 'Dynamic using eudev' in the '/dev management'
3108           menu to get the same behaviour as in your old configuration.
3109
3110           If you are using 'systemd', its internal implementation of
3111           'udev' will be used automatically.
3112
3113           You must also check the packages depending on 'udev' are still
3114           selected.
3115
3116 config BR2_PACKAGE_UDEV
3117         bool "udev is now a virtual package"
3118         select BR2_LEGACY
3119         select BR2_PACKAGE_HAS_UDEV
3120         help
3121           The 'udev' package has been converted to a virtual package.
3122           The providers for this feature are: 'eudev', 'systemd'.
3123
3124           Your old configuration refers to packages depending on 'udev',
3125           either for build or at runtime.
3126
3127           Check that a 'udev' provider is selected. If you are not using
3128           'systemd' as init system, 'eudev' should be selected, which is
3129           the case if '/dev management' is set to 'Dynamic using eudev'.
3130
3131           If you are using 'systemd', its internal implementation of
3132           'udev' is used.
3133
3134 config BR2_PACKAGE_UDEV_RULES_GEN
3135         bool "udev rules generation handled by provider"
3136         select BR2_LEGACY
3137         select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3138         select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
3139         help
3140           The 'udev' package has been converted to a virtual package.
3141           The providers for this feature are: 'eudev', 'systemd'.
3142
3143           If you are not using 'systemd' as init system, udev rules
3144           generation will be handled by 'eudev'. Check that
3145           '/dev management' is set to 'Dynamic using eudev' to get
3146           the same behaviour as in your old configuration.
3147
3148           If you are using 'systemd', it internal implementation of
3149           'udev' will generate the rules.
3150
3151 config BR2_PACKAGE_UDEV_ALL_EXTRAS
3152         bool "udev extras removed"
3153         select BR2_LEGACY
3154         help
3155           The 'udev' package has been converted to a virtual package.
3156           The providers for this feature are: 'eudev', 'systemd'.
3157
3158           The option to enable the extra features of 'udev' (gudev, ...)
3159           has been removed. These features are automatically enabled in
3160           the 'udev' providers if the dependencies are selected. For
3161           example, selecting 'libglib2' will trigger the build of gudev.
3162
3163 config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3164         bool "xlib-libpthread-stubs option has been renamed"
3165         depends on BR2_PACKAGE_XORG7
3166         select BR2_LEGACY
3167         select BR2_PACKAGE_LIBPTHREAD_STUBS
3168         help
3169           The pthread stubs neither depend on X11 nor Xlib. Thus the
3170           package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3171
3172 ###############################################################################
3173 comment "Legacy options removed in 2014.02"
3174
3175 config BR2_sh2
3176         bool "sh2 support removed"
3177         select BR2_LEGACY
3178         help
3179           Due to an inexistent user base and generally poor Linux
3180           support, the support for the SH2 architecture was removed.
3181
3182 config BR2_sh3
3183         bool "sh3 support removed"
3184         select BR2_LEGACY
3185         help
3186           Due to an inexistent user base and generally poor Linux
3187           support, the support for the SH3 architecture was removed.
3188
3189 config BR2_sh3eb
3190         bool "sh3eb support removed"
3191         select BR2_LEGACY
3192         help
3193           Due to an inexistent user base and generally poor Linux
3194           support, the support for the SH3eb architecture was removed.
3195
3196 config BR2_KERNEL_HEADERS_3_1
3197         bool "kernel headers version 3.1.x are no longer supported"
3198         select BR2_KERNEL_HEADERS_3_2
3199         select BR2_LEGACY
3200         help
3201           Version 3.1.x of the Linux kernel headers have been deprecated
3202           for more than four buildroot releases and are now removed.
3203           As an alternative, version 3.2.x of the headers have been
3204           automatically selected in your configuration.
3205
3206 config BR2_KERNEL_HEADERS_3_3
3207         bool "kernel headers version 3.3.x are no longer supported"
3208         select BR2_KERNEL_HEADERS_3_2
3209         select BR2_LEGACY
3210         help
3211           Version 3.3.x of the Linux kernel headers have been deprecated
3212           for more than four buildroot releases and are now removed.
3213           As an alternative, version 3.2.x of the headers have been
3214           automatically selected in your configuration.
3215
3216 config BR2_KERNEL_HEADERS_3_5
3217         bool "kernel headers version 3.5.x are no longer supported"
3218         select BR2_KERNEL_HEADERS_3_4
3219         select BR2_LEGACY
3220         help
3221           Version 3.5.x of the Linux kernel headers have been deprecated
3222           for more than four buildroot releases and are now removed.
3223           As an alternative, version 3.4.x of the headers have been
3224           automatically selected in your configuration.
3225
3226 config BR2_GDB_VERSION_7_2
3227         bool "gdb 7.2.x is no longer supported"
3228         select BR2_GDB_VERSION_7_6
3229         select BR2_LEGACY
3230         help
3231           Version 7.2.x of gdb has been deprecated for more than four
3232           buildroot releases and is now removed. As an alternative, gdb
3233           7.5.x has been automatically selected in your configuration.
3234
3235 config BR2_GDB_VERSION_7_3
3236         bool "gdb 7.3.x is no longer supported"
3237         select BR2_GDB_VERSION_7_6
3238         select BR2_LEGACY
3239         help
3240           Version 7.3.x of gdb has been deprecated for more than four
3241           buildroot releases and is now removed. As an alternative, gdb
3242           7.5.x has been automatically selected in your configuration.
3243
3244 config BR2_PACKAGE_CCACHE
3245         bool "ccache target package has been removed"
3246         select BR2_LEGACY
3247         help
3248           The 'ccache' target package has been removed since it has been
3249           deprecated for more than four buildroot releases.
3250           Note: using ccache for speeding up builds is still supported.
3251
3252 config BR2_HAVE_DOCUMENTATION
3253         bool "support for documentation on target has been removed"
3254         select BR2_LEGACY
3255         help
3256           Support for documentation on target has been removed since it
3257           has been deprecated for more than four buildroot releases.
3258
3259 config BR2_PACKAGE_AUTOMAKE
3260         bool "automake target package has been removed"
3261         select BR2_LEGACY
3262         help
3263           The 'automake' target package has been removed since it has
3264           been deprecated for more than four buildroot releases.
3265           Note: the host automake still exists.
3266
3267 config BR2_PACKAGE_AUTOCONF
3268         bool "autoconf target package has been removed"
3269         select BR2_LEGACY
3270         help
3271           The 'autoconf' target package has been removed since it has
3272           been deprecated for more than four buildroot releases.
3273           Note: the host autoconf still exists.
3274
3275 config BR2_PACKAGE_XSTROKE
3276         bool "xstroke has been removed"
3277         select BR2_LEGACY
3278         help
3279           The 'xstroke' package has been removed since it has been
3280           deprecated for more than four buildroot releases.
3281
3282 config BR2_PACKAGE_LZMA
3283         bool "lzma target package has been removed"
3284         select BR2_LEGACY
3285         help
3286           The 'lzma' target package has been removed since it has been
3287           deprecated for more than four buildroot releases.
3288           Note: generating lzma-compressed rootfs images is still
3289           supported.
3290
3291 config BR2_PACKAGE_TTCP
3292         bool "ttcp has been removed"
3293         select BR2_LEGACY
3294         help
3295           The 'ttcp' package has been removed since it has been
3296           deprecated for more than four buildroot releases.
3297
3298 config BR2_PACKAGE_LIBNFC_LLCP
3299         bool "libnfc-llcp has been replaced by libllcp"
3300         select BR2_LEGACY
3301         select BR2_PACKAGE_LIBLLCP
3302         help
3303           The 'libnfc-llcp' package has been removed since upstream
3304           renamed to 'libllcp'. We have added a new package for
3305           'libllcp' and bumped the version at the same time.
3306
3307 config BR2_PACKAGE_MYSQL_CLIENT
3308         bool "MySQL client renamed to MySQL"
3309         select BR2_LEGACY
3310         select BR2_PACKAGE_MYSQL
3311         help
3312           The option has been renamed BR2_PACKAGE_MYSQL
3313
3314 config BR2_PACKAGE_SQUASHFS3
3315         bool "squashfs3 has been removed"
3316         select BR2_LEGACY
3317         select BR2_PACKAGE_SQUASHFS
3318         help
3319           The 'squashfs3' package has been removed since it has been
3320           deprecated for more than four buildroot releases. Package
3321           'squashfs' (4) has been selected automatically as replacement.
3322
3323 config BR2_TARGET_ROOTFS_SQUASHFS3
3324         bool "squashfs3 rootfs support has been removed"
3325         select BR2_LEGACY
3326         help
3327           Together with the removal of the squashfs3 package, support
3328           for squashfs3 root filesystems has been removed too. Squashfs
3329           root filesystems will automatically use squashfs4 now.
3330
3331 config BR2_PACKAGE_NETKITBASE
3332         bool "netkitbase has been removed"
3333         select BR2_LEGACY
3334         help
3335           The 'netkitbase' package has been removed since it has been
3336           deprecated since 2012.11. This package provided 'inetd'
3337           which is replaced by 'xinet' and 'ping' which is replaced by
3338           'busybox' or 'fping'.
3339
3340 config BR2_PACKAGE_NETKITTELNET
3341         bool "netkittelnet has been removed"
3342         select BR2_LEGACY
3343         help
3344           The 'netkittelnet' package has been removed since it has
3345           been deprecated since 2012.11. 'busybox' provides a telnet
3346           client and should be used instead.
3347
3348 config BR2_PACKAGE_LUASQL
3349         bool "luasql has been replaced by luasql-sqlite3"
3350         select BR2_PACKAGE_LUASQL_SQLITE3
3351         select BR2_LEGACY
3352         help
3353           The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
3354
3355 config BR2_PACKAGE_LUACJSON
3356         bool "luacjson has been replaced by lua-cjson"
3357         select BR2_PACKAGE_LUA_CJSON
3358         select BR2_LEGACY
3359         help
3360           The option has been renamed BR2_PACKAGE_LUA_CJSON.
3361
3362 ###############################################################################
3363 comment "Legacy options removed in 2013.11"
3364
3365 config BR2_PACKAGE_LVM2_DMSETUP_ONLY
3366         bool "lvm2's 'dmsetup only' option removed"
3367         select BR2_LEGACY
3368         help
3369           The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
3370           led to problems with other packages that need the full lvm2
3371           suite. Therefore, the option has been replaced with the
3372           positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
3373
3374 # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
3375 # in order to automatically propagate old configs
3376
3377 config BR2_PACKAGE_QT_JAVASCRIPTCORE
3378         bool "qt javascriptcore option removed"
3379         select BR2_LEGACY
3380         help
3381           The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
3382           force the activation or disabling of the JIT compiler in the
3383           Qt Javascript interpreter. However, the JIT compiler is not
3384           available for all architectures, so forcing its activation
3385           does not always work. Moreover, Qt knows by itself for which
3386           architectures JIT support is possible, and will
3387           automatically enable it if possible.
3388
3389           Therefore, this option was in fact useless, and causing
3390           build problems when enabled on architectures for which the
3391           JIT support was not available. It has been removed, and
3392           there is no replacement: Qt will enable JIT at compile time
3393           when possible.
3394
3395 config BR2_PACKAGE_MODULE_INIT_TOOLS
3396         bool "module-init-tools replaced by kmod"
3397         select BR2_PACKAGE_KMOD
3398         select BR2_PACKAGE_KMOD_TOOLS
3399         select BR2_LEGACY
3400         help
3401           The 'module-init-tools' package has been removed, since it
3402           has been depracated upstream and replaced by 'kmod'.
3403
3404 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
3405         string "u-boot: the git repository URL option has been renamed"
3406         help
3407           The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
3408           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
3409
3410 config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
3411         bool
3412         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
3413         select BR2_LEGACY
3414
3415 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
3416 # boot/uboot/Config.in
3417
3418 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
3419         string "u-boot: the git repository version option has been renamed"
3420         help
3421           The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3422           been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3423
3424 config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3425         bool
3426         default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3427         select BR2_LEGACY
3428
3429 # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3430 # boot/uboot/Config.in
3431
3432 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3433         string "linux: the git repository URL option has been renamed"
3434         help
3435           The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3436           been renamed to
3437           BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3438
3439 config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3440         bool
3441         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3442         select BR2_LEGACY
3443
3444 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3445 # linux/Config.in
3446
3447 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3448         string "linux: the git repository version option has been renamed"
3449         help
3450           The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3451           been renamed to
3452           BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3453
3454 config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3455         bool
3456         default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3457         select BR2_LEGACY
3458
3459 # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
3460 # linux/Config.in
3461
3462 ###############################################################################
3463 comment "Legacy options removed in 2013.08"
3464
3465 config BR2_ARM_OABI
3466         bool "ARM OABI support has been removed"
3467         select BR2_LEGACY
3468         help
3469           The support for the ARM OABI was deprecated since a while,
3470           and has been removed completely from Buildroot. It is also
3471           deprecated in upstream gcc, since gcc 4.7. People should
3472           switch to EABI instead, which should not be a problem as
3473           long as you don't have pre-built OABI binaries in your
3474           system that you can't recompile.
3475
3476 config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
3477         bool "dosfstools dosfsck renamed to fsck.fat"
3478         select BR2_LEGACY
3479         select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
3480         help
3481           dosfsck was renamed upstream to fsck.fat for consistency.
3482
3483 config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
3484         bool "dosfstools dosfslabel renamed to fatlabel"
3485         select BR2_LEGACY
3486         select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
3487         help
3488           doslabel was renamed upstream to fatlabel for consistency.
3489
3490 config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
3491         bool "dosfstools mkdosfs renamed to mkfs.fat"
3492         select BR2_LEGACY
3493         select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
3494         help
3495           mkdosfs was renamed upstream to mkfs.fat for consistency.
3496
3497 config BR2_ELF2FLT
3498         bool "the elf2flt option has been renamed"
3499         select BR2_LEGACY
3500         help
3501           The BR2_ELF2FLT option has been renamed to
3502           BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3503           the package infrastructure.
3504
3505 config BR2_VFP_FLOAT
3506         bool "the ARM VFP floating point option has been renamed"
3507         select BR2_LEGACY
3508         help
3509           Due to a major refactoring of the floating-point handling of
3510           the ARM architecture support, the BR2_VFP_FLOAT option has
3511           been replaced with a choice of options that allows to select
3512           between various VFP versions/capabilities.
3513
3514 config BR2_PACKAGE_GCC_TARGET
3515         bool "gcc on the target filesystem has been removed"
3516         select BR2_LEGACY
3517         help
3518           The support for gcc in the target filesystem was deprecated
3519           since a while, and has been removed completely from Buildroot.
3520           See Buildroot's documentation for more explanations.
3521
3522 config BR2_HAVE_DEVFILES
3523         bool "development files in target filesystem has been removed"
3524         select BR2_LEGACY
3525         help
3526           The installation of the development files in the target
3527           filesystem was deprecated since a while, and has been removed
3528           completely from Buildroot.
3529           See Buildroot's documentation for more explanations.
3530
3531 endmenu
3532
3533 endif # !SKIP_LEGACY