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