blob: 7fc4792aed4d8f77451f47b0c55612881dcf870d [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# 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.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
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.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
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.
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010019# 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]
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020059#
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
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010065# 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.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020067#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010070# config BR2_FOO_STRING
71# string "Some foo string"
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020072#
73# becomes:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010074# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020077#
78# and in Config.in.legacy:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010079# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020083#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010084# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020088#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010089# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020090#
91# [End of example]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000092
Arnout Vandecappelle53903a12015-04-11 01:49:02 +020093config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000099config BR2_LEGACY
100 bool
101 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -0300102 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.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000112menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000113
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000114if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200115comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000116comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200117comment "longer exist in buildroot, as indicated in the menu "
118comment "below. As long as these options stay selected, or in"
119comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000120comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200121comment "* "
122comment "Where possible, an automatic conversion from old to "
123comment "new symbols has been performed. Before making any "
124comment "change in this legacy menu, make sure to exit the "
125comment "configuration editor a first time and save the "
126comment "configuration. Otherwise, the automatic conversion "
127comment "of symbols will be lost. "
128comment "* "
129comment "After this initial save, reopen the configuration "
130comment "editor, inspect the options selected below, read "
131comment "their help texts, and verify/update the new "
132comment "configuration in the corresponding configuration "
133comment "menus. When everything is ok, you can disable the "
134comment "legacy options in the menu below. Once you have "
135comment "disabled all legacy options, this text will "
136comment "disappear and you will be able to start the build. "
137comment "* "
Yann E. MORIN0b39b142017-12-27 00:39:04 +0100138comment "Note: legacy options older than 5 years have been "
139comment "removed, and configuration files that still have "
140comment "those options set, will fail to build, or run in "
141comment "unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200142comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000143endif
144
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200145###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200146comment "Legacy options removed in 2018.05"
147
Petr Vorel8553b392018-05-13 21:07:36 +0200148config 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
156config 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
164config 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
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200172# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
173# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200174config BR2_PACKAGE_TI_SGX_AM335X
175 bool "ti-sgx-km AM335X option renamed"
176 select BR2_LEGACY
177 help
178 For consistency reasons, the option
179 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
180 BR2_PACKAGE_TI_SGX_KM_AM335X.
181
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200182# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
183# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200184config BR2_PACKAGE_TI_SGX_AM437X
185 bool "ti-sgx-km AM437X option renamed"
186 select BR2_LEGACY
187 help
188 For consistency reasons, the option
189 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
190 BR2_PACKAGE_TI_SGX_KM_AM437X.
191
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200192# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
193# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200194config BR2_PACKAGE_TI_SGX_AM4430
195 bool "ti-sgx-km AM4430 option renamed"
196 select BR2_LEGACY
197 help
198 For consistency reasons, the option
199 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
200 BR2_PACKAGE_TI_SGX_KM_AM4430.
201
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200202# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
203# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200204config BR2_PACKAGE_TI_SGX_AM5430
205 bool "ti-sgx-km AM5430 option renamed"
206 select BR2_LEGACY
207 help
208 For consistency reasons, the option
209 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
210 BR2_PACKAGE_TI_SGX_KM_AM5430.
211
Thomas Petazzonia79df202018-05-13 21:07:34 +0200212config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
213 bool "janus-gateway audio-bridge option renamed"
214 select BR2_LEGACY
215 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
216 help
217 For consistency reasons, the janus-gateway option
218 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
219 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
220
221config BR2_PACKAGE_JANUS_ECHO_TEST
222 bool "janus-gateway echo-test option renamed"
223 select BR2_LEGACY
224 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
225 help
226 For consistency reasons, the janus-gateway option
227 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
228 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
229
230config BR2_PACKAGE_JANUS_RECORDPLAY
231 bool "janus-gateway recordplay option renamed"
232 select BR2_LEGACY
233 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
234 help
235 For consistency reasons, the janus-gateway option
236 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
237 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
238
239config BR2_PACKAGE_JANUS_SIP_GATEWAY
240 bool "janus-gateway sip-gateway option renamed"
241 select BR2_LEGACY
242 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
243 help
244 For consistency reasons, the janus-gateway option
245 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
246 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
247
248config BR2_PACKAGE_JANUS_STREAMING
249 bool "janus-gateway streaming option renamed"
250 select BR2_LEGACY
251 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
252 help
253 For consistency reasons, the janus-gateway option
254 BR2_PACKAGE_JANUS_STREAMING has been renamed to
255 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
256
257config BR2_PACKAGE_JANUS_TEXT_ROOM
258 bool "janus-gateway text-room option renamed"
259 select BR2_LEGACY
260 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
261 help
262 For consistency reasons, the janus-gateway option
263 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
264 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
265
266config BR2_PACKAGE_JANUS_VIDEO_CALL
267 bool "janus-gateway video-call option renamed"
268 select BR2_LEGACY
269 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
270 help
271 For consistency reasons, the janus-gateway option
272 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
273 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
274
275config BR2_PACKAGE_JANUS_VIDEO_ROOM
276 bool "janus-gateway video-room option renamed"
277 select BR2_LEGACY
278 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
279 help
280 For consistency reasons, the janus-gateway option
281 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
282 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
283
284config BR2_PACKAGE_JANUS_MQTT
285 bool "janus-gateway mqtt option renamed"
286 select BR2_LEGACY
287 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
288 help
289 For consistency reasons, the janus-gateway option
290 BR2_PACKAGE_JANUS_MQTT has been renamed to
291 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
292
293config BR2_PACKAGE_JANUS_RABBITMQ
294 bool "janus-gateway rabbitmq option renamed"
295 select BR2_LEGACY
296 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
297 help
298 For consistency reasons, the janus-gateway option
299 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
300 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
301
302config BR2_PACKAGE_JANUS_REST
303 bool "janus-gateway rest option renamed"
304 select BR2_LEGACY
305 select BR2_PACKAGE_JANUS_GATEWAY_REST
306 help
307 For consistency reasons, the janus-gateway option
308 BR2_PACKAGE_JANUS_REST has been renamed to
309 BR2_PACKAGE_JANUS_GATEWAY_REST.
310
311config BR2_PACKAGE_JANUS_UNIX_SOCKETS
312 bool "janus-gateway unix-sockets option renamed"
313 select BR2_LEGACY
314 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
315 help
316 For consistency reasons, the janus-gateway option
317 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
318 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
319
320config BR2_PACKAGE_JANUS_WEBSOCKETS
321 bool "janus-gateway websockets option renamed"
322 select BR2_LEGACY
323 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
324 help
325 For consistency reasons, the janus-gateway option
326 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
327 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
328
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200329config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
330 bool "ipsec-tools security context disable option renamed"
331 select BR2_LEGACY
332 help
333 For consistency reasons, the option
334 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
335 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
336
337config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
338 bool "ipsec-tools SELinux security context enable option renamed"
339 select BR2_LEGACY
340 help
341 For consistency reasons, the option
342 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
343 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
344
345config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
346 bool "ipsec-tools kernel security context enable option renamed"
347 select BR2_LEGACY
348 help
349 For consistency reasons, the option
350 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
351 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
352
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +0200353config BR2_PACKAGE_LIBTFDI_CPP
354 bool "libftdi C++ bindings option renamed"
355 select BR2_LEGACY
356 select BR2_PACKAGE_LIBFTDI_CPP
357 help
358 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
359 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
360 name.
361
Thomas Petazzoni94c14622018-05-13 21:07:31 +0200362config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
363 bool "jquery-ui-themes option black-tie renamed"
364 select BR2_LEGACY
365 help
366 For consistency reasons, the jquery-ui-themes option for the
367 black-tie theme has been renamed from
368 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
369 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
370
371config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
372 bool "jquery-ui-themes option blitzer renamed"
373 select BR2_LEGACY
374 help
375 For consistency reasons, the jquery-ui-themes option for the
376 blitzer theme has been renamed from
377 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
378 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
379
380config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
381 bool "jquery-ui-themes option cupertino renamed"
382 select BR2_LEGACY
383 help
384 For consistency reasons, the jquery-ui-themes option for the
385 cupertino theme has been renamed from
386 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
387 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
388
389config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
390 bool "jquery-ui-themes option dark-hive renamed"
391 select BR2_LEGACY
392 help
393 For consistency reasons, the jquery-ui-themes option for the
394 dark-hive theme has been renamed from
395 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
396 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
397
398config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
399 bool "jquery-ui-themes option dot-luv renamed"
400 select BR2_LEGACY
401 help
402 For consistency reasons, the jquery-ui-themes option for the
403 dot-luv theme has been renamed from
404 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
405 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
406
407config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
408 bool "jquery-ui-themes option eggplant renamed"
409 select BR2_LEGACY
410 help
411 For consistency reasons, the jquery-ui-themes option for the
412 eggplant theme has been renamed from
413 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
414 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
415
416config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
417 bool "jquery-ui-themes option excite-bike renamed"
418 select BR2_LEGACY
419 help
420 For consistency reasons, the jquery-ui-themes option for the
421 excite-bike theme has been renamed from
422 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
423 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
424
425config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
426 bool "jquery-ui-themes option flick renamed"
427 select BR2_LEGACY
428 help
429 For consistency reasons, the jquery-ui-themes option for the
430 flick theme has been renamed from
431 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
432 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
433
434config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
435 bool "jquery-ui-themes option hot-sneaks renamed"
436 select BR2_LEGACY
437 help
438 For consistency reasons, the jquery-ui-themes option for the
439 hot-sneaks theme has been renamed from
440 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
441 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
442
443config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
444 bool "jquery-ui-themes option humanity renamed"
445 select BR2_LEGACY
446 help
447 For consistency reasons, the jquery-ui-themes option for the
448 humanity theme has been renamed from
449 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
450 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
451
452config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
453 bool "jquery-ui-themes option le-frog renamed"
454 select BR2_LEGACY
455 help
456 For consistency reasons, the jquery-ui-themes option for the
457 le-frog theme has been renamed from
458 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
459 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
460
461config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
462 bool "jquery-ui-themes option mint-choc renamed"
463 select BR2_LEGACY
464 help
465 For consistency reasons, the jquery-ui-themes option for the
466 mint-choc theme has been renamed from
467 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
468 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
469
470config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
471 bool "jquery-ui-themes option overcast renamed"
472 select BR2_LEGACY
473 help
474 For consistency reasons, the jquery-ui-themes option for the
475 overcast theme has been renamed from
476 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
477 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
478
479config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
480 bool "jquery-ui-themes option pepper-grinder renamed"
481 select BR2_LEGACY
482 help
483 For consistency reasons, the jquery-ui-themes option for the
484 pepper-grinder theme has been renamed from
485 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
486 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
487
488config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
489 bool "jquery-ui-themes option redmond renamed"
490 select BR2_LEGACY
491 help
492 For consistency reasons, the jquery-ui-themes option for the
493 redmond theme has been renamed from
494 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
495 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
496
497config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
498 bool "jquery-ui-themes option smoothness renamed"
499 select BR2_LEGACY
500 help
501 For consistency reasons, the jquery-ui-themes option for the
502 smoothness theme has been renamed from
503 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
504 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
505
506config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
507 bool "jquery-ui-themes option south-street renamed"
508 select BR2_LEGACY
509 help
510 For consistency reasons, the jquery-ui-themes option for the
511 south-street theme has been renamed from
512 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
513 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
514
515config BR2_PACKAGE_JQUERY_UI_THEME_START
516 bool "jquery-ui-themes option start renamed"
517 select BR2_LEGACY
518 help
519 For consistency reasons, the jquery-ui-themes option for the
520 start theme has been renamed from
521 BR2_PACKAGE_JQUERY_UI_THEME_START to
522 BR2_PACKAGE_JQUERY_UI_THEMES_START.
523
524config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
525 bool "jquery-ui-themes option sunny renamed"
526 select BR2_LEGACY
527 help
528 For consistency reasons, the jquery-ui-themes option for the
529 sunny theme has been renamed from
530 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
531 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
532
533config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
534 bool "jquery-ui-themes option swanky-purse renamed"
535 select BR2_LEGACY
536 help
537 For consistency reasons, the jquery-ui-themes option for the
538 swanky-purse theme has been renamed from
539 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
540 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
541
542config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
543 bool "jquery-ui-themes option trontastic renamed"
544 select BR2_LEGACY
545 help
546 For consistency reasons, the jquery-ui-themes option for the
547 trontastic theme has been renamed from
548 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
549 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
550
551config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
552 bool "jquery-ui-themes option ui-darkness renamed"
553 select BR2_LEGACY
554 help
555 For consistency reasons, the jquery-ui-themes option for the
556 ui-darkness theme has been renamed from
557 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
558 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
559
560config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
561 bool "jquery-ui-themes option ui-lightness renamed"
562 select BR2_LEGACY
563 help
564 For consistency reasons, the jquery-ui-themes option for the
565 ui-lightness theme has been renamed from
566 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
567 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
568
569config BR2_PACKAGE_JQUERY_UI_THEME_VADER
570 bool "jquery-ui-themes option vader renamed"
571 select BR2_LEGACY
572 help
573 For consistency reasons, the jquery-ui-themes option for the
574 vader theme has been renamed from
575 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
576 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
577
Thomas Petazzonib2b874f2018-05-13 21:07:30 +0200578config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
579 bool "bluez5-utils health plugin option renamed"
580 select BR2_LEGACY
581 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
582 help
583 For consistency reasons, the option
584 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
585 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
586
587config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
588 bool "bluez5-utils midi plugin option renamed"
589 select BR2_LEGACY
590 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
591 help
592 For consistency reasons, the option
593 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
594 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
595
596config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
597 bool "bluez5-utils nfc plugin option renamed"
598 select BR2_LEGACY
599 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
600 help
601 For consistency reasons, the option
602 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
603 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
604
605config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
606 bool "bluez5-utils sap plugin option renamed"
607 select BR2_LEGACY
608 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
609 help
610 For consistency reasons, the option
611 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
612 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
613
614config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
615 bool "bluez5-utils sixaxis plugin option renamed"
616 select BR2_LEGACY
617 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
618 help
619 For consistency reasons, the option
620 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
621 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
622
Bernd Kuhls79a678d2018-05-02 08:05:40 +0200623config BR2_PACKAGE_TRANSMISSION_REMOTE
624 bool "transmission remote tool option removed"
625 select BR2_LEGACY
626 select BR2_PACKAGE_TRANSMISSION_DAEMON
627 help
628 Upstream does not provide a separate configure option for
629 the tool transmission-remote, it is built when the
630 transmission daemon has been enabled. Therefore, Buildroot
631 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
632 for you.
633
Fabrice Fontainef6421152018-05-07 00:09:01 +0200634config BR2_PACKAGE_LIBKCAPI_APPS
635 bool "libkcapi test applications removed"
636 select BR2_LEGACY
637 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
638 select BR2_PACKAGE_LIBKCAPI_RNGAPP
639 select BR2_PACKAGE_LIBKCAPI_SPEED
640 select BR2_PACKAGE_LIBKCAPI_TEST
641 help
642 Test applications (hasher, rng read, speed-test, test) now
643 have their own configuration options in the libkcapi menu.
644
Bernd Kuhlsdacb1762018-05-01 09:10:17 +0200645config BR2_PACKAGE_MPLAYER
646 bool "mplayer package removed"
647 select BR2_LEGACY
648 help
649 The mplayer package was removed.
650
651config BR2_PACKAGE_MPLAYER_MPLAYER
652 bool "mplayer package removed"
653 select BR2_LEGACY
654 help
655 The mplayer package was removed.
656
657config BR2_PACKAGE_MPLAYER_MENCODER
658 bool "mplayer package removed"
659 select BR2_LEGACY
660 help
661 The mplayer package was removed.
662
Bernd Kuhls3f449112018-05-01 09:10:14 +0200663config BR2_PACKAGE_LIBPLAYER_MPLAYER
664 bool "mplayer support in libplayer removed"
665 select BR2_LEGACY
666 help
667 The mplayer package was removed.
668
Thomas Petazzoni46444ba2018-04-04 18:00:09 +0200669config BR2_PACKAGE_IQVLINUX
670 bool "iqvlinux package removed"
671 select BR2_LEGACY
672 help
673 This package contained a kernel module from Intel, which
674 could only be used together with Intel userspace tools
675 provided under NDA, which also come with the same kernel
676 module. The copy of the kernel module available on
677 SourceForge is provided only to comply with the GPLv2
678 requirement. Intel engineers were even surprised it even
679 built and were not willing to make any effort to fix their
680 tarball naming to contain a version number. Therefore, it
681 does not make sense for Buildroot to provide such a package.
682
683 See https://sourceforge.net/p/e1000/bugs/589/ for the
684 discussion.
685
Thomas Petazzonie2ea4152018-04-05 21:50:18 +0200686config BR2_BINFMT_FLAT_SEP_DATA
687 bool "binfmt FLAT with separate code and data removed"
688 select BR2_LEGACY
689 help
690 This FLAT binary format was only used on Blackfin, which has
691 been removed.
692
Thomas Petazzoni325bb372018-04-05 21:50:17 +0200693config BR2_bfin
694 bool "Blackfin architecture support removed"
695 select BR2_LEGACY
696 help
697 Following the removal of Blackfin support for the upstream
698 Linux kernel, Buildroot has removed support for this CPU
699 architecture.
700
Bernd Kuhls9657e962018-04-01 15:58:08 +0200701config BR2_PACKAGE_KODI_ADSP_BASIC
702 bool "kodi-adsp-basic package removed"
703 select BR2_LEGACY
704 help
705 kodi-adsp-basic is unmaintained
706
707config BR2_PACKAGE_KODI_ADSP_FREESURROUND
708 bool "kodi-adsp-freesurround package removed"
709 select BR2_LEGACY
710 help
711 kodi-adsp-freesurround is unmaintained
712
713###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +0200714comment "Legacy options removed in 2018.02"
715
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +0100716config BR2_KERNEL_HEADERS_3_4
717 bool "kernel headers version 3.4.x are no longer supported"
718 select BR2_KERNEL_HEADERS_4_1
719 select BR2_LEGACY
720 help
721 Version 3.4.x of the Linux kernel headers are no longer
722 maintained upstream and are now removed. As an alternative,
723 version 4.1.x of the headers have been automatically
724 selected in your configuration.
725
726config BR2_KERNEL_HEADERS_3_10
727 bool "kernel headers version 3.10.x are no longer supported"
728 select BR2_KERNEL_HEADERS_4_1
729 select BR2_LEGACY
730 help
731 Version 3.10.x of the Linux kernel headers are no longer
732 maintained upstream and are now removed. As an alternative,
733 version 4.1.x of the headers have been automatically
734 selected in your configuration.
735
736config BR2_KERNEL_HEADERS_3_12
737 bool "kernel headers version 3.12.x are no longer supported"
738 select BR2_KERNEL_HEADERS_4_1
739 select BR2_LEGACY
740 help
741 Version 3.12.x of the Linux kernel headers are no longer
742 maintained upstream and are now removed. As an alternative,
743 version 4.1.x of the headers have been automatically
744 selected in your configuration.
745
Romain Naour453d29f2018-01-29 23:39:41 +0100746config BR2_BINUTILS_VERSION_2_27_X
747 bool "binutils version 2.27 support removed"
748 select BR2_LEGACY
749 help
750 Support for binutils version 2.27 has been removed. The
751 current default version (2.29 or later) has been selected
752 instead.
753
Baruch Siach55d79ed2018-01-02 08:16:01 +0200754config BR2_PACKAGE_EEPROG
755 bool "eeprog package removed"
756 select BR2_LEGACY
757 select BR2_PACKAGE_I2C_TOOLS
758 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
759 help
760 The eeprog program is now provided by the i2c-tools package.
761
Baruch Siach86dfb422017-11-14 14:02:38 +0200762config BR2_PACKAGE_GNUPG2_GPGV2
763 bool "gnupg2 gpgv2 option removed"
764 select BR2_LEGACY
765 select BR2_PACKAGE_GNUPG2_GPGV
766 help
767 The gpgv2 executable is now named gpgv. The config option
768 has been renamed accordingly.
769
Gary Bissonf7a7d942018-01-05 15:39:36 +0100770config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
771 bool "Vivante apitrace tool option removed"
772 select BR2_LEGACY
773 help
774 The apitrace tool for Vivante is not provided by the
775 imx-gpu-viv package any longer.
776
777config BR2_PACKAGE_IMX_GPU_VIV_G2D
778 bool "Vivante G2D libraries from imx-gpu-viv removed"
779 select BR2_LEGACY
780 select BR2_PACKAGE_IMX_GPU_G2D
781 help
782 The G2D libraries are now provided by the imx-gpu-g2d package.
783
Baruch Siach86dfb422017-11-14 14:02:38 +0200784###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -0300785comment "Legacy options removed in 2017.11"
786
Carlos Santos6c10e402017-10-21 20:30:18 -0200787config BR2_PACKAGE_RFKILL
788 bool "rfkill package removed"
789 select BR2_LEGACY
790 select BR2_PACKAGE_UTIL_LINUX
791 select BR2_PACKAGE_UTIL_LINUX_RFKILL
792 help
793 The rfkill program is now provided by the util-linux package.
794
Carlos Santosd4382002017-10-31 08:47:51 -0200795config BR2_PACKAGE_UTIL_LINUX_RESET
796 bool "util-linux reset option removed"
797 select BR2_LEGACY
798 help
799 The util-linux package no longer offers a "reset" command. Use
800 either the reset command provided by BusyBox or select ncurses
801 programs, which will install a symlink from "tset" to reset.
802
Adam Duskett9d6da7a2017-10-17 18:32:18 -0400803config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
804 bool "policycoreutils audit2allow option removed"
805 select BR2_LEGACY
806 select BR2_PACKAGE_SELINUX_PYTHON
807 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
808 help
809 The policycoreutils package no longer offers audit2allow
810 as a option. This package has been moved into the
811 selinux-python package by the SELinux maintainers.
812
813config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
814 bool "policycoreutils restorecond option removed"
815 select BR2_LEGACY
816 select BR2_PACKAGE_RESTORECOND
817 help
818 The policycoreutils package no longer offers restorecond
819 as a option. This package has been moved into a seperate
820 package maintained by the SELinux maintainers.
821
822config BR2_PACKAGE_SEPOLGEN
823 bool "sepolgen package has been removed"
824 select BR2_LEGACY
825 select BR2_PACKAGE_SELINUX_PYTHON
826 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
827 help
828 Sepolgen is no longer a individual package, but instead has
829 been moved into the selinux-python package by the SELinux
830 maintainers.
831
Bernd Kuhls49a9fb02017-09-16 17:15:35 +0200832config BR2_PACKAGE_OPENOBEX_BLUEZ
833 bool "openobex bluez option removed"
834 select BR2_LEGACY
835 select BR2_PACKAGE_BLUEZ_UTILS
836 help
837 The OpenOBEX package no longer offers an option to enable or
838 disable BlueZ support. Instead, BlueZ support is always
839 included when the bluez5_utils or bluez_utils package is
840 selected.
841
842config BR2_PACKAGE_OPENOBEX_LIBUSB
843 bool "openobex libusb option removed"
844 select BR2_LEGACY
845 select BR2_PACKAGE_LIBUSB
846 help
847 The OpenOBEX package no longer offers an option to enable or
848 disable libusb support. Instead, USB support is always
849 included when the libusb package is selected.
850
851config BR2_PACKAGE_OPENOBEX_APPS
852 bool "openobex apps option removed"
853 select BR2_LEGACY
854 help
855 The OpenOBEX package no longer offers an option to enable or
856 disable apps support.
857
858config BR2_PACKAGE_OPENOBEX_SYSLOG
859 bool "openobex syslog option removed"
860 select BR2_LEGACY
861 help
862 The OpenOBEX package no longer offers an option to enable or
863 disable syslog support.
864
865config BR2_PACKAGE_OPENOBEX_DUMP
866 bool "openobex dump option removed"
867 select BR2_LEGACY
868 help
869 The OpenOBEX package no longer offers an option to enable or
870 disable dump support.
871
Alexander Mukhinfca70382017-09-10 13:21:34 +0300872config BR2_PACKAGE_AICCU
873 bool "aiccu utility removed"
874 select BR2_LEGACY
875 help
876 As the SixXS project has ceased its operation on 2017-06-06,
877 the AICCU utility has no use anymore and has been removed.
878
879 https://www.sixxs.net/sunset/
880
Carlos Santosf52af612017-09-01 21:41:38 -0300881config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
882 bool "util-linux login utilities option removed"
883 select BR2_LEGACY
884 select BR2_PACKAGE_UTIL_LINUX_LAST
885 select BR2_PACKAGE_UTIL_LINUX_LOGIN
886 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
887 select BR2_PACKAGE_UTIL_LINUX_SU
888 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
889 help
890 Login utilities (last, login, runuser, su, sulogin) now have
891 their own configuration options in the util-linux menu.
892
893###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200894comment "Legacy options removed in 2017.08"
895
Yann E. MORIN144dc9c2017-08-11 18:05:08 +0200896config BR2_TARGET_GRUB
897 bool "grub (aka grub-legacy) has been removed"
898 select BR2_LEGACY
899 help
900 grub-legacy is no longer maintained, and no longer builds with
901 recent binutils versions.
902
903 Use grub2 or syslinux instead.
904
Bin Meng20db0982017-08-30 08:55:25 -0700905config BR2_PACKAGE_SIMICSFS
906 bool "simicsfs support removed"
907 select BR2_LEGACY
908 help
909 Support for simicsfs kernel driver that provides access to a
910 host computer's local filesystem when the target is
911 executing within a SIMICS simulation has been removed.
912
913 Simics is now moving away from the simicsfs kernel module,
914 as the kernel module has required too much maintenance
915 work. Users should move to the user mode Simics agent
916 instead.
917
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +0200918config BR2_BINUTILS_VERSION_2_26_X
919 bool "binutils version 2.26 support removed"
920 select BR2_LEGACY
921 help
922 Support for binutils version 2.26 has been removed. The
923 current default version (2.28 or later) has been selected
924 instead.
925
Yann E. MORINb3b60702017-07-09 05:21:56 -0700926config BR2_XTENSA_OVERLAY_DIR
927 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700928 help
Yann E. MORINb3b60702017-07-09 05:21:56 -0700929 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
930 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
931 path to the overlay file, not to the directory containing
932 it.
933
934config BR2_XTENSA_OVERLAY_DIR_WRAP
935 bool
936 default y if BR2_XTENSA_OVERLAY_DIR != ""
937 select BR2_LEGACY
938
939config BR2_XTENSA_CUSTOM_NAME
940 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
941 help
942 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -0700943
944config BR2_XTENSA_CUSTOM_NAME_WRAP
945 bool
946 default y if BR2_XTENSA_CUSTOM_NAME != ""
947 select BR2_LEGACY
948
Sébastien Szymanskif47fc952017-07-04 16:47:29 +0200949config BR2_PACKAGE_HOST_MKE2IMG
950 bool "host mke2img has been removed"
951 select BR2_LEGACY
952 help
953 We now call mkfs directly to generate ext2/3/4 filesystem
954 image, so mke2img is no longer necessary.
955
Samuel Martinbee9e882017-07-09 07:00:38 +0200956config BR2_TARGET_ROOTFS_EXT2_BLOCKS
957 int "exact size in blocks has been removed"
958 default 0
959 help
960 This option has been removed in favor of
961 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
962 to the value you had before. Set to 0 here to remove the
963 warning.
964
965config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
966 bool
967 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
968 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
969 select BR2_LEGACY
970
971# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
972
Samuel Martin235b6f12017-07-04 16:47:25 +0200973config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
974 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
975 default 0
976 help
977 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
978 images. It now automatically selects the number of inodes
979 based on the image size. The extra number of inodes can no
980 longer be provided; instead, provide the total number of
981 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
982
983config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
984 bool
985 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
986 select BR2_LEGACY
987
Vicente Olivert Rierae278d852017-05-12 11:18:01 +0100988config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
989 bool "cdxaparse removed"
990 select BR2_LEGACY
991
992config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
993 bool "dataurisrc moved to gstreamer1"
994 select BR2_LEGACY
995 help
996 Dataurisrc has moved to gstreamer core and is always built.
997
998config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
999 bool "dccp removed"
1000 select BR2_LEGACY
1001
1002config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1003 bool "hdvparse removed"
1004 select BR2_LEGACY
1005
1006config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1007 bool "mve removed"
1008 select BR2_LEGACY
1009
1010config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1011 bool "nuvdemux removed"
1012 select BR2_LEGACY
1013
1014config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1015 bool "patchdetect removed"
1016 select BR2_LEGACY
1017
1018config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1019 bool "sdi removed"
1020 select BR2_LEGACY
1021
1022config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1023 bool "tta removed"
1024 select BR2_LEGACY
1025
1026config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1027 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001028 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001029 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001030 help
1031 videomeasure plugin has been removed and has been replaced by
1032 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001033
1034config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1035 bool "apexsink removed"
1036 select BR2_LEGACY
1037
1038config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1039 bool "sdl removed"
1040 select BR2_LEGACY
1041
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001042config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1043 bool "mad (*.mp3 audio) removed"
1044 select BR2_LEGACY
1045
Thomas Petazzoni4c06d242017-07-04 10:11:54 +02001046config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
1047 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
1048 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
1049 select BR2_LEGACY
1050 help
1051 The WebRTC plugin in GStreamer 1.x has always been named
1052 webrtcdsp, but was wrongly introduced in Buildroot under the
1053 name webrtc. Therefore, we have renamed the option to match
1054 the actual name of the GStreamer plugin.
1055
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001056config BR2_STRIP_none
1057 bool "Strip command 'none' has been removed"
1058 select BR2_LEGACY
1059 help
1060 The strip command choice has been changed into a single
1061 boolean option. Please check that the new setting is
1062 correct (in the "Build options" sub-menu)
1063
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001064config BR2_PACKAGE_BEECRYPT_CPP
1065 bool "C++ support removed in beecrypt"
1066 select BR2_LEGACY
1067 help
1068 Support for C++ depends on icu. The beecrypt package is
1069 incompatible with icu 59+.
1070
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001071config BR2_PACKAGE_SPICE_CLIENT
1072 bool "spice client support removed"
1073 select BR2_LEGACY
1074 help
1075 Spice client support has been removed upstream. The
1076 functionality now lives in the spice-gtk widget and
1077 virt-viewer.
1078
1079config BR2_PACKAGE_SPICE_GUI
1080 bool "spice gui support removed"
1081 select BR2_LEGACY
1082 help
1083 Spice gui support has been removed upstream. The
1084 functionality now lives in the spice-gtk widget and
1085 virt-viewer.
1086
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001087config BR2_PACKAGE_SPICE_TUNNEL
1088 bool "spice network redirection removed"
1089 select BR2_LEGACY
1090 help
1091 Spice network redirection, aka tunnelling has been removed
1092 upstream.
1093
Koen Martens438b2d12017-06-20 20:54:49 +02001094config BR2_PACKAGE_INPUT_TOOLS
1095 bool "input-tools removed"
1096 select BR2_LEGACY
1097 select BR2_PACKAGE_LINUXCONSOLETOOLS
1098 help
1099 input-tools has been removed, it is replaced by
1100 linuxconsoletools, which has automatically been enabled.
1101
1102config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1103 bool "inputattach moved to linuxconsoletools"
1104 select BR2_LEGACY
1105 select BR2_PACKAGE_LINUXCONSOLETOOLS
1106 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1107 help
1108 input-tools has been removed, inputattach is now part
1109 of linuxconsoletools, which has automatically been
1110 enabled.
1111
1112config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1113 bool "jscal moved to linuxconsoletools"
1114 select BR2_LEGACY
1115 select BR2_PACKAGE_LINUXCONSOLETOOLS
1116 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1117 help
1118 input-tools has been removed, jscal is now part
1119 of linuxconsoletools, which has automatically been
1120 enabled.
1121
1122config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1123 bool "jstest moved to linuxconsoletools"
1124 select BR2_LEGACY
1125 select BR2_PACKAGE_LINUXCONSOLETOOLS
1126 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1127 help
1128 input-tools has been removed, jstest is now part
1129 of linuxconsoletools, which has automatically been
1130 enabled.
1131
Baruch Siach6510a822017-06-16 06:32:48 +03001132config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1133 bool "SH Sourcery toolchain has been removed"
1134 select BR2_LEGACY
1135 help
1136 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001137 been removed, since it uses glibc older than 2.17 that
1138 requires -lrt to link executables using clock_* system calls.
1139 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001140
Baruch Siach06cac642017-06-16 06:32:47 +03001141config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1142 bool "x86 Sourcery toolchain has been removed"
1143 select BR2_LEGACY
1144 help
1145 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001146 been removed, since it uses glibc older than 2.17 that
1147 requires -lrt to link executables using clock_* system calls.
1148 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001149
Romain Naourf6695212017-05-23 22:24:40 +02001150config BR2_GCC_VERSION_4_8_X
1151 bool "gcc 4.8.x support removed"
1152 select BR2_LEGACY
1153 help
1154 Support for gcc version 4.8.x has been removed. The current
1155 default version (5.x or later) has been selected instead.
1156
1157###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001158comment "Legacy options removed in 2017.05"
1159
Romain Naour95426af2017-02-21 22:43:16 +01001160config BR2_PACKAGE_SUNXI_MALI_R2P4
1161 bool "sunxi-mali r2p4 removed"
1162 select BR2_LEGACY
1163 help
1164 sunxi-mali libMali for r2p4 Mali kernel module has been
1165 removed since the libump package only provides libUMP.so.3.
1166 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1167
Martin Barkd999a7f2017-05-06 14:19:13 +01001168config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1169 bool "CoffeeScript option has been removed"
1170 select BR2_LEGACY
1171 help
1172 The option to enable NodeJS CoffeeScript has been removed.
1173 To continue using it, add "coffee-script" to
1174 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1175
Martin Bark096f8b12017-05-06 14:19:12 +01001176config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1177 bool "Express web application framework option has been removed"
1178 select BR2_LEGACY
1179 help
1180 The option to enable the NodeJS Express web application
1181 framework has been removed. To continue using it, add
1182 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1183
Baruch Siach0364d442017-05-01 15:59:41 +03001184config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1185 bool "bluez5_utils gatttool install option removed"
1186 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1187 help
1188 The option to install gatttool specifically has been removed.
1189 Since version 5.44 gatttool is in the list of deprecated
1190 tools. The option to build and install deprecated tools has
1191 been automatically enabled.
1192
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001193config BR2_PACKAGE_OPENOCD_FT2XXX
1194 bool "openocd ft2232 support has been removed"
1195 select BR2_PACKAGE_OPENOCD_FTDI
1196 select BR2_LEGACY
1197 help
1198 FT2232 support in OpenOCD has been removed, it's replaced by
1199 FDTI support, which has automatically been enabled.
1200
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001201config BR2_PACKAGE_KODI_RTMPDUMP
1202 bool "kodi rtmp has been removed"
1203 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001204 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001205 help
1206 Internal rtmp support was removed from Kodi.
1207
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001208config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1209 bool "kodi-visualisation-fountain has been removed"
1210 select BR2_LEGACY
1211 help
1212 According to upstream 'the visualization is not currently
1213 in a working shape.'
1214
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001215config BR2_PACKAGE_PORTMAP
1216 bool "portmap has been removed"
1217 select BR2_LEGACY
1218 select BR2_PACKAGE_RPCBIND
1219 help
1220 The portmap upstream tarball is removed, no releases since
1221 ten years and latest change in upstream git in 2014.
1222 You should better use rpcbind as a RPC portmapper.
1223
Thomas Petazzoni58472912017-04-03 22:28:21 +02001224config BR2_BINUTILS_VERSION_2_25_X
1225 bool "binutils version 2.25 support removed"
1226 select BR2_LEGACY
1227 help
1228 Support for binutils version 2.25 has been removed. The
1229 current default version (2.27 or later) has been selected
1230 instead.
1231
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001232config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1233 bool "uclibc RPC support has been removed"
1234 select BR2_LEGACY
1235 help
1236 uClibc-ng removed internal RPC implementation in 1.0.23. You
1237 should use libtirpc instead.
1238
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001239config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1240 int "extra size in blocks has been removed"
1241 default 0
1242 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001243 Since the support for auto calculation of the filesystem size
1244 has been removed, this option is now useless and must be 0.
1245 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1246 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001247
1248config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1249 bool
1250 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1251 select BR2_LEGACY
1252
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001253config BR2_PACKAGE_SYSTEMD_KDBUS
1254 bool "systemd-kdbus has been removed"
1255 select BR2_LEGACY
1256 help
1257 --enable/disable-kdbus configure option has been removed since
1258 systemd-231.
1259
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001260config BR2_PACKAGE_POLARSSL
1261 bool "polarssl has been removed"
1262 select BR2_LEGACY
1263 help
1264 The polarssl crypto library has been removed since the 1.2.x
1265 release branch is no longer maintained. Newer upstream
1266 branches/releases (mbedtls) have API changes so they're not
1267 drop-in replacements.
1268
Yann E. MORIN61551182017-03-12 10:58:15 +01001269config BR2_NBD_CLIENT
1270 bool "nbd client option was renamed"
1271 select BR2_LEGACY
1272 select BR2_PACKAGE_NBD_CLIENT
1273 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001274 The nbd client option has been renamed to
1275 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001276
1277config BR2_NBD_SERVER
1278 bool "nbd server option was renamed"
1279 select BR2_LEGACY
1280 select BR2_PACKAGE_NBD_SERVER
1281 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001282 The nbd server option has been renamed to
1283 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001284
Carlos Santos6a9c6312017-02-14 09:05:16 -02001285config BR2_PACKAGE_GMOCK
1286 bool "gmock merged into gtest package"
1287 select BR2_LEGACY
1288 select BR2_PACKAGE_GTEST
1289 select BR2_PACKAGE_GTEST_GMOCK
1290 help
1291 GMock is now a suboption of the GTest package.
1292
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001293config BR2_KERNEL_HEADERS_4_8
1294 bool "kernel headers version 4.8.x are no longer supported"
1295 select BR2_KERNEL_HEADERS_4_4
1296 select BR2_LEGACY
1297 help
1298 Version 4.8.x of the Linux kernel headers are no longer
1299 maintained upstream and are now removed. As an alternative,
1300 version 4.4.x of the headers have been automatically
1301 selected in your configuration.
1302
1303config BR2_KERNEL_HEADERS_3_18
1304 bool "kernel headers version 3.18.x are no longer supported"
1305 select BR2_KERNEL_HEADERS_3_12
1306 select BR2_LEGACY
1307 help
1308 Version 3.18.x of the Linux kernel headers are no longer
1309 maintained upstream and are now removed. As an alternative,
1310 version 3.12.x of the headers have been automatically
1311 selected in your configuration.
1312
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001313config BR2_GLIBC_VERSION_2_22
1314 bool "glibc 2.22 removed"
1315 select BR2_LEGACY
1316 help
1317 Support for glibc version 2.22 has been removed. The current
1318 default version has been selected instead.
1319
1320###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001321comment "Legacy options removed in 2017.02"
1322
Francois Perrad8546ff32016-12-26 15:50:35 +01001323config BR2_PACKAGE_PERL_DB_FILE
1324 bool "perl-db-file removed"
1325 select BR2_LEGACY
1326 select BR2_PACKAGE_BERKELEYDB
1327 select BR2_PACKAGE_PERL
1328 help
1329 DB_File can be built as a core Perl module, so the separate
1330 perl-db-file package has been removed.
1331
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001332config BR2_KERNEL_HEADERS_4_7
1333 bool "kernel headers version 4.7.x are no longer supported"
1334 select BR2_KERNEL_HEADERS_4_4
1335 select BR2_LEGACY
1336 help
1337 Version 4.7.x of the Linux kernel headers are no longer
1338 maintained upstream and are now removed. As an alternative,
1339 version 4.4.x of the headers have been automatically
1340 selected in your configuration.
1341
1342config BR2_KERNEL_HEADERS_4_6
1343 bool "kernel headers version 4.6.x are no longer supported"
1344 select BR2_KERNEL_HEADERS_4_4
1345 select BR2_LEGACY
1346 help
1347 Version 4.6.x of the Linux kernel headers are no longer
1348 maintained upstream and are now removed. As an alternative,
1349 version 4.4.x of the headers have been automatically
1350 selected in your configuration.
1351
1352config BR2_KERNEL_HEADERS_4_5
1353 bool "kernel headers version 4.5.x are no longer supported"
1354 select BR2_KERNEL_HEADERS_4_4
1355 select BR2_LEGACY
1356 help
1357 Version 4.5.x of the Linux kernel headers are no longer
1358 maintained upstream and are now removed. As an alternative,
1359 version 4.4.x of the headers have been automatically
1360 selected in your configuration.
1361
1362config BR2_KERNEL_HEADERS_3_14
1363 bool "kernel headers version 3.14.x are no longer supported"
1364 select BR2_KERNEL_HEADERS_3_12
1365 select BR2_LEGACY
1366 help
1367 Version 3.14.x of the Linux kernel headers are no longer
1368 maintained upstream and are now removed. As an alternative,
1369 version 3.12.x of the headers have been automatically
1370 selected in your configuration.
1371
Romain Naour63abbcc2016-12-16 16:29:45 +01001372config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1373 bool "musl-cross 1.1.12 toolchain removed"
1374 select BR2_LEGACY
1375 help
1376 The support for the prebuilt toolchain based on the Musl C
1377 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001378 Upstream doesn't provide any prebuilt toolchain anymore, use
1379 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01001380
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01001381config BR2_UCLIBC_INSTALL_TEST_SUITE
1382 bool "uClibc tests now in uclibc-ng-test"
1383 select BR2_LEGACY
1384 select BR2_PACKAGE_UCLIBC_NG_TEST
1385 help
1386 The test suite of the uClibc C library has been moved into a
1387 separate package, uclibc-ng-test.
1388
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01001389config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1390 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1391 select BR2_LEGACY
1392 help
1393 The ADI Blackfin toolchain has many bugs which are fixed in
1394 more recent gcc and uClibc-ng releases. Use the Buildroot
1395 toolchain instead.
1396
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01001397config BR2_PACKAGE_MAKEDEVS
1398 bool "makedevs removed"
1399 select BR2_LEGACY
1400 help
1401 The makedevs tool is part of busybox. The Buildroot fork
1402 should not be used outside of the Buildroot infrastructure.
1403
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01001404config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1405 bool "Arago ARMv7 2011.09 removed"
1406 select BR2_LEGACY
1407 help
1408 The Arago toolchains are every old and not updated anymore.
1409
1410config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1411 bool "Arago ARMv5 2011.09 removed"
1412 select BR2_LEGACY
1413 help
1414 The Arago toolchains are every old and not updated anymore.
1415
Thomas Petazzonied364d12016-11-05 14:32:38 +01001416config BR2_PACKAGE_SNOWBALL_HDMISERVICE
1417 bool "snowball-hdmiservice removed"
1418 select BR2_LEGACY
1419 help
1420 We no longer have support for the Snowball platform in
1421 Buildroot, so this package was no longer useful.
1422
1423config BR2_PACKAGE_SNOWBALL_INIT
1424 bool "snowball-init removed"
1425 select BR2_LEGACY
1426 help
1427 We no longer have support for the Snowball platform in
1428 Buildroot, so this package was no longer useful.
1429
Jörg Krause69aa0572016-12-14 14:40:58 +01001430config BR2_GDB_VERSION_7_9
1431 bool "gdb 7.9 has been removed"
1432 select BR2_LEGACY
1433 help
1434 The 7.9 version of gdb has been removed. Use a newer version
1435 instead.
1436
Thomas Petazzonied364d12016-11-05 14:32:38 +01001437###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02001438comment "Legacy options removed in 2016.11"
1439
Fabrice Fontainec4572132016-09-12 23:31:07 +02001440config BR2_PACKAGE_PHP_SAPI_CLI_CGI
1441 bool "PHP CGI and CLI options are now seperate"
1442 select BR2_PACKAGE_PHP_SAPI_CLI
1443 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001444 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001445 help
1446 The PHP Interface options have been split up into a
1447 separate option for each interface.
1448
1449config BR2_PACKAGE_PHP_SAPI_CLI_FPM
1450 bool "PHP CLI and FPM options are now separate"
1451 select BR2_PACKAGE_PHP_SAPI_CLI
1452 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001453 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001454 help
1455 The PHP Interface options have been split up into a
1456 separate option for each interface.
1457
Arnout Vandecappelle35343992016-10-15 16:51:06 +02001458config BR2_PACKAGE_WVSTREAMS
1459 bool "wvstreams removed"
1460 select BR2_LEGACY
1461 help
1462 wvstreams is not maintained anymore since about 2009. It also
1463 doesn't build anymore with recent compilers (GCC 5+).
1464
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02001465config BR2_PACKAGE_WVDIAL
1466 bool "wvdial removed"
1467 select BR2_LEGACY
1468 help
1469 wvdial is not maintained anymore since about 2009. It also
1470 doesn't build anymore with recent compilers (GCC 5+).
1471
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02001472config BR2_PACKAGE_WEBKITGTK24
1473 bool "webkitgtk 2.4.x removed"
1474 select BR2_LEGACY
1475 help
1476 This legacy package only existed because some other packages
1477 depended on that specific version of webkitgtk. However, the
1478 other packages have been fixed. webkitgtk 2.4 is full of
1479 security issues so it needs to be removed.
1480
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02001481config BR2_PACKAGE_TORSMO
1482 bool "torsmo removed"
1483 select BR2_LEGACY
1484 help
1485 torsmo has been unmaintained for a long time, and nobody
1486 seems to be interested in it.
1487
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02001488config BR2_PACKAGE_SSTRIP
1489 bool "sstrip removed"
1490 select BR2_LEGACY
1491 help
1492 sstrip is unmaintained and potentially harmful. It doesn't
1493 save so much compared to normal binutils strip, and there is
1494 a big risk of binaries that don't work. Use normal strip
1495 instead.
1496
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001497config BR2_KERNEL_HEADERS_4_3
1498 bool "kernel headers version 4.3.x are no longer supported"
1499 select BR2_KERNEL_HEADERS_4_1
1500 select BR2_LEGACY
1501 help
1502 Version 4.3.x of the Linux kernel headers are no longer
1503 maintained upstream and are now removed. As an alternative,
1504 version 4.1.x of the headers have been automatically
1505 selected in your configuration.
1506
1507config BR2_KERNEL_HEADERS_4_2
1508 bool "kernel headers version 4.2.x are no longer supported"
1509 select BR2_KERNEL_HEADERS_4_1
1510 select BR2_LEGACY
1511 help
1512 Version 4.2.x of the Linux kernel headers are no longer
1513 maintained upstream and are now removed. As an alternative,
1514 version 4.1.x of the headers have been automatically
1515 selected in your configuration.
1516
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001517config BR2_PACKAGE_KODI_ADDON_XVDR
1518 bool "kodi-addon-xvdr removed"
1519 select BR2_LEGACY
1520 help
1521 According to the github project page:
1522 https://github.com/pipelka/xbmc-addon-xvdr
1523 this package is discontinued.
1524
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001525config BR2_PACKAGE_IPKG
1526 bool "ipkg removed"
1527 select BR2_LEGACY
1528 help
1529 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001530 handhelds.org project and it hasn't seen development since
1531 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001532
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02001533config BR2_GCC_VERSION_4_7_X
1534 bool "gcc 4.7.x support removed"
1535 select BR2_LEGACY
1536 help
1537 Support for gcc version 4.7.x has been removed. The current
1538 default version (4.9.x or later) has been selected instead.
1539
Arnout Vandecappelled8878112016-10-15 16:50:57 +02001540config BR2_BINUTILS_VERSION_2_24_X
1541 bool "binutils version 2.24 support removed"
1542 select BR2_LEGACY
1543 help
1544 Support for binutils version 2.24 has been removed. The
1545 current default version (2.26 or later) has been selected
1546 instead.
1547
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03001548config BR2_PACKAGE_WESTON_RPI
1549 bool "Weston propietary RPI support is gone"
1550 select BR2_LEGACY
1551 help
1552 Upstream decided the propietary (rpi-userland) weston composer
1553 support wasn't worth the effort so it was removed. Switch to
1554 the open VC4 support.
1555
Yann E. MORIN20b14462016-09-06 16:29:14 +02001556config BR2_LINUX_KERNEL_TOOL_CPUPOWER
1557 bool "linux-tool cpupower"
1558 depends on BR2_LINUX_KERNEL
1559 select BR2_LEGACY
1560 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
1561 help
1562 Linux tool cpupower option was renamed.
1563
1564config BR2_LINUX_KERNEL_TOOL_PERF
1565 bool "linux-tool perf"
1566 depends on BR2_LINUX_KERNEL
1567 select BR2_LEGACY
1568 select BR2_PACKAGE_LINUX_TOOLS_PERF
1569 help
1570 Linux tool perf option was renamed.
1571
1572config BR2_LINUX_KERNEL_TOOL_SELFTESTS
1573 bool "linux-tool selftests"
1574 depends on BR2_LINUX_KERNEL
1575 select BR2_LEGACY
1576 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
1577 help
1578 Linux tool selftests option was renamed.
1579
Thomas Petazzoni50332a52016-08-11 15:25:38 +02001580config BR2_GCC_VERSION_4_8_ARC
1581 bool "gcc arc option renamed"
1582 select BR2_LEGACY
1583 select BR2_GCC_VERSION_ARC
1584 help
1585 The option that selects the gcc version for the ARC
1586 architecture has been renamed to BR2_GCC_VERSION_ARC.
1587
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001588config BR2_KERNEL_HEADERS_4_0
1589 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001590 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001591 select BR2_LEGACY
1592 help
1593 Version 4.0.x of the Linux kernel headers have been deprecated
1594 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001595 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001596 automatically selected in your configuration.
1597
1598config BR2_KERNEL_HEADERS_3_19
1599 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001600 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001601 select BR2_LEGACY
1602 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001603 Version 3.19.x of the Linux kernel headers have been
1604 deprecated for more than four buildroot releases and are now
1605 removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001606 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001607 automatically selected in your configuration.
1608
Romain Naour0e517312016-09-02 22:31:32 +02001609config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
1610 bool "libevas-generic-loaders package removed"
1611 select BR2_LEGACY
1612 select BR2_PACKAGE_EFL
1613 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001614 With EFL 1.18, libevas-generic-loaders is now provided by the
1615 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02001616
Romain Naourc22b7582016-09-02 22:31:31 +02001617config BR2_PACKAGE_ELEMENTARY
1618 bool "elementary package removed"
1619 select BR2_LEGACY
1620 select BR2_PACKAGE_EFL
1621 help
1622 With EFL 1.18, elementary is now provided by the efl package.
1623
Yann E. MORINe782cd52016-08-28 01:03:04 +02001624config BR2_LINUX_KERNEL_CUSTOM_LOCAL
1625 bool "Linux kernel local directory option removed"
1626 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001627 The option to select a local directory as the source of the
1628 Linux kernel has been removed. It hurts reproducibility of
1629 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02001630
1631 In case you were using this option during development of your
1632 Linux kernel, use the override mechanism instead.
1633
1634###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001635comment "Legacy options removed in 2016.08"
1636
Arnout Vandecappelleac191072017-03-08 00:50:54 +01001637config BR2_PACKAGE_EFL_JP2K
1638 bool "libevas jp2k loader has been removed"
1639 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01001640 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01001641 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
1642 while Buildroot only packages openjpeg 2.x. Therefore, the
1643 JP2K loader has been removed from EFL.
1644
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001645config BR2_PACKAGE_SYSTEMD_COMPAT
1646 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02001647 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001648 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02001649 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001650 been removed. Theses libraries have been useless since a few
1651 version, and have been fully dropped from the source since
1652 v230.
1653
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02001654config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
1655 bool "gst1-plugins-bad liveadder plugin removed"
1656 select BR2_LEGACY
1657 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
1658 help
1659 The functionality of the liveadder plugin of the
1660 gst1-plugins-bad package has been merged into audiomixer.
1661
Andrew Webster0f92b192016-06-10 14:13:29 -04001662config BR2_PACKAGE_LIBFSLVPUWRAP
1663 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
1664 select BR2_LEGACY
1665 select BR2_PACKAGE_IMX_VPUWRAP
1666 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001667 The libfslvpuwrap has been renamed to match the renamed
1668 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04001669
Andrew Webster64998902016-06-10 14:13:18 -04001670config BR2_PACKAGE_LIBFSLPARSER
1671 bool "libfslparser has been renamed to imx-parser"
1672 select BR2_LEGACY
1673 select BR2_PACKAGE_IMX_PARSER
1674 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001675 The libfslparser has been renamed to match the renamed
1676 package.
Andrew Webster64998902016-06-10 14:13:18 -04001677
Andrew Webster47e62032016-06-10 14:13:05 -04001678config BR2_PACKAGE_LIBFSLCODEC
1679 bool "libfslcodec has been renamed to imx-codec"
1680 select BR2_LEGACY
1681 select BR2_PACKAGE_IMX_CODEC
1682 help
1683 The libfslcodec has been renamed to match the renamed package.
1684
Carlos Santosb5d99002016-06-03 16:35:39 -03001685config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
1686 bool "FIT support in uboot-tools has been refactored"
1687 select BR2_LEGACY
1688 select BR2_PACKAGE_DTC
1689 select BR2_PACKAGE_DTC_PROGRAMS
1690 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
1691 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
1692 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
1693 help
1694 This option has been removed in favor of a more fine-grained
1695 configuration, which is recommended. Selecting this option
1696 enables FIT and FIT signature support for the target packages.
1697 It will also select the dtc and openssl packages.
1698
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02001699config BR2_PTHREADS_OLD
1700 bool "linuxthreads (stable/old)"
1701 select BR2_LEGACY
1702 help
1703 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
1704 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
1705
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001706config BR2_BINUTILS_VERSION_2_23_X
1707 bool "binutils 2.23 removed"
1708 select BR2_LEGACY
1709 help
1710 Binutils 2.23 has been removed, using a newer version is
1711 recommended.
1712
Thomas Petazzoni500de252016-05-17 00:13:00 +02001713config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
1714 bool "eglibc support has been removed"
1715 select BR2_LEGACY
1716 help
1717 The eglibc project no longer exists, as it has been merged
1718 back into the glibc project. Therefore, support for eglibc
1719 has been removed, and glibc should be used instead.
1720
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001721config BR2_GDB_VERSION_7_8
1722 bool "gdb 7.8 has been removed"
1723 select BR2_LEGACY
1724 help
1725 The 7.8 version of gdb has been removed. Use a newer version
1726 instead.
1727
1728###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001729comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01001730
Gustavo Zacarias3380da62016-05-14 10:33:47 -03001731config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
1732 bool "openvpn polarssl crypto backend removed"
1733 select BR2_LEGACY
1734 help
1735 The OpenVPN polarssl crypto backend option has been removed.
1736 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
1737 compatible with mbedtls (polarssl) series 2.x which is the
1738 version provided in buildroot. And both can't coexist.
1739 It now uses OpenSSL as the only option.
1740
Martin Bark4dfc2cb2016-05-03 10:36:54 +01001741config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1742 bool "nginx http spdy module removed"
1743 select BR2_LEGACY
1744 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1745 help
1746 The ngx_http_spdy_module has been superseded by the
1747 ngx_http_v2_module since nginx v1.9.5. The
1748 ngx_http_v2_module modules has been automatically selected
1749 in your configuration.
1750
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03001751config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1752 bool "gst1-plugins-bad rtp plugin moved to good"
1753 select BR2_LEGACY
1754 help
1755 The rtp plugin has been moved from gst1-plugins-base to
1756 gst1-plugins-good.
1757
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03001758config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1759 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1760 select BR2_LEGACY
1761 help
1762 The mpg123 plugin has been moved from gst1-plugins-bad to
1763 gst1-plugins-ugly.
1764
Gustavo Zacarias8490e832016-04-29 10:18:56 -03001765config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1766 bool "PowerPC Sourcery toolchain has been removed"
1767 select BR2_LEGACY
1768 help
1769 The Sourcery CodeBench toolchain for the PowerPC
1770 architecture has been removed, as it was very old, not
1771 maintained, and causing numerous build failures with modern
1772 userspace packages.
1773
1774config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1775 bool "PowerPC Sourcery E500v2 toolchain has been removed"
1776 select BR2_LEGACY
1777 help
1778 The Sourcery CodeBench toolchain for the PowerPC E500v2
1779 architecture has been removed, as it was very old, not
1780 maintained, and causing numerous build failures with modern
1781 userspace packages.
1782
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001783config BR2_x86_i386
1784 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02001785 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001786 help
1787 The support for the i386 processors of the x86 architecture
1788 has been removed.
1789
Julien CORJONf75ee802016-03-17 10:42:25 +01001790config BR2_PACKAGE_QT5QUICK1
1791 bool "qt5quick1 package removed"
1792 select BR2_LEGACY
1793 help
1794 The qt5quick1 package has been removed, since it was removed
1795 from upstream starting from Qt 5.6.
1796
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001797config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05001798 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001799 help
1800 The uboot custom patch directory option has been removed. Use
1801 the improved BR2_TARGET_UBOOT_PATCH option instead.
1802
Danomi Manchegof61583f2016-12-19 22:10:12 -05001803config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1804 bool
1805 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1806 select BR2_LEGACY
1807
1808# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1809# boot/uboot/Config.in
1810
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03001811config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1812 bool "xf86-input-void removed"
1813 select BR2_LEGACY
1814 help
1815 The xf86-input-void package has been removed, there's no need
1816 for it in any modern (post-2007) xorg server.
1817
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001818config BR2_KERNEL_HEADERS_3_17
1819 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001820 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001821 select BR2_LEGACY
1822 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001823 Version 3.17.x of the Linux kernel headers have been
1824 deprecated for more than four buildroot releases and are now
1825 removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001826 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001827 automatically selected in your configuration.
1828
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03001829config BR2_GDB_VERSION_7_7
1830 bool "gdb 7.7 has been removed"
1831 select BR2_LEGACY
1832 help
1833 The 7.7 version of gdb has been removed. Use a newer version
1834 instead.
1835
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03001836config BR2_PACKAGE_FOOMATIC_FILTERS
1837 bool "foomatic-filters"
1838 select BR2_LEGACY
1839 help
1840 The foomatic-filters package was removed.
1841
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03001842config BR2_PACKAGE_SAMBA
1843 bool "samba"
1844 select BR2_LEGACY
1845 help
1846 The samba package was removed in favour of samba4 since the
1847 3.x series isn't supported by upstream any longer.
1848
Bernd Kuhls6922b412016-02-20 23:09:11 +01001849config BR2_PACKAGE_KODI_WAVPACK
1850 bool "wavpack"
1851 select BR2_LEGACY
1852 help
1853 wavpack support was removed in favour of ffmpeg:
1854 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1855
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01001856config BR2_PACKAGE_KODI_RSXS
1857 bool "rsxs support in Kodi was moved to an addon"
1858 select BR2_LEGACY
1859 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1860 help
1861 rsxs support in Kodi was moved to an addon
1862
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01001863config BR2_PACKAGE_KODI_GOOM
1864 bool "Goom support in Kodi was moved to an addon"
1865 select BR2_LEGACY
1866 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1867 help
1868 Goom support in Kodi was moved to an addon
1869
Gabe Evanse5a073a2016-02-25 21:55:11 +00001870config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1871 bool "systemd all extras option has been removed"
1872 select BR2_LEGACY
1873 select BR2_PACKAGE_XZ
1874 select BR2_PACKAGE_LIBGCRYPT
1875 help
1876 The systemd option to enable "all extras" has been
1877 removed. To get the same features, the libgcrypt and xz
1878 package should now be enabled.
1879
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03001880config BR2_GCC_VERSION_4_5_X
1881 bool "gcc 4.5.x has been removed"
1882 select BR2_LEGACY
1883 help
1884 The 4.5.x version of gcc has been removed. Use a newer
1885 version instead.
1886
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001887config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05001888 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001889 select BR2_PACKAGE_NCURSES
1890 select BR2_PACKAGE_READLINE
1891 select BR2_LEGACY
1892 help
1893 This option was removed in favour of the sqlite package
1894 deciding itself depending on the enabled packages whether
1895 command-line editing should be enabled, it also also takes
1896 libedit into account.
1897
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001898###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01001899comment "Legacy options removed in 2016.02"
1900
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01001901config BR2_PACKAGE_DOVECOT_BZIP2
1902 bool "bzip2 support option has been removed"
1903 select BR2_LEGACY
1904 select BR2_PACKAGE_BZIP2
1905 help
1906 Bzip2 support is built if the bzip2 package is selected.
1907
1908config BR2_PACKAGE_DOVECOT_ZLIB
1909 bool "zlib support option has been removed"
1910 select BR2_LEGACY
1911 select BR2_PACKAGE_ZLIB
1912 help
1913 Zlib support is built if the zlib package is selected.
1914
James Knightead1df42016-02-12 11:40:05 -05001915config BR2_PACKAGE_E2FSPROGS_FINDFS
1916 bool "e2fsprogs findfs option has been removed"
1917 select BR2_LEGACY
1918 help
1919 This option attempted to enable findfs capabilities from
1920 e2fsprogs but has not worked since July 2015 (due to
1921 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01001922 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05001923
Romain Naourb1063a02016-02-07 17:56:56 +01001924config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
1925 bool "openpowerlink debug option has been removed"
1926 select BR2_LEGACY
1927 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001928 This option depends on BR2_ENABLE_DEBUG which should not be
1929 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01001930
1931config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
1932 bool "openpowerlink package has been updated"
1933 select BR2_LEGACY
1934 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
1935 help
1936 openpowerlink kernel modules are built if the
1937 kernel stack library is selected.
1938
1939config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
1940 bool "openpowerlink package has been updated"
1941 select BR2_LEGACY
1942 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
1943 help
1944 The user space support has been split in two part:
1945 - a monolitic user space library
1946 - a user spae deamon driver
1947
Yann E. MORINe3e05832016-02-06 00:06:17 +01001948config BR2_LINUX_KERNEL_SAME_AS_HEADERS
1949 bool "using the linux headers version for the kernel has been removed"
1950 select BR2_LEGACY
1951 help
1952 The option to use the version of the kernel headers for the
1953 kernel to build has been removed.
1954
1955 There is now the converse, better-suited and more versatile
1956 option to use the kernel version for the linux headers.
1957
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001958config BR2_PACKAGE_CUPS_PDFTOPS
1959 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02001960 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02001961 select BR2_LEGACY
1962 help
1963 Pdftops support has been removed from the cups package
1964 It is now part of the cups-filters package.
1965
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001966config BR2_KERNEL_HEADERS_3_16
1967 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001968 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001969 select BR2_LEGACY
1970 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001971 Version 3.16.x of the Linux kernel headers have been
1972 deprecated for more than four buildroot releases and are now
1973 removed.
1974 As an alternative, version 3.12.x of the headers have been
1975 automatically selected in your configuration.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03001976
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01001977config BR2_PACKAGE_PYTHON_PYXML
1978 bool "python-pyxml package has been removed"
1979 select BR2_LEGACY
1980 help
1981 PyXML is obsolete and its functionality is covered either via
1982 native Python XML support or python-lxml package.
1983
Steven Noonand29c7192015-12-27 12:07:31 +01001984# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
1985config BR2_ENABLE_SSP
1986 bool "Stack Smashing protection now has different levels"
1987 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001988 The protection offered by SSP can now be selected from
1989 different protection levels. Be sure to review the SSP level
1990 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01001991
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001992config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03001993 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03001994 select BR2_LEGACY
1995 help
1996 The cle266 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
2000config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002001 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002002 select BR2_LEGACY
2003 help
2004 The unichrome directfb driver support has been removed.
2005 It doesn't build in the latest version and it's unlikely
2006 anyone has any use for it.
2007
Romain Naour820e1682015-12-19 17:39:14 +01002008config BR2_PACKAGE_LIBELEMENTARY
2009 bool "libelementary has been renamed to elementary"
2010 select BR2_LEGACY
2011 select BR2_PACKAGE_ELEMENTARY
2012 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002013 The libelementary package has been renamed to match the
2014 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002015
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002016config BR2_PACKAGE_LIBEINA
2017 bool "libeina package has been removed"
2018 select BR2_LEGACY
2019 select BR2_PACKAGE_EFL
2020 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002021 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002022
Romain Naour49700f02015-12-15 23:40:37 +01002023config BR2_PACKAGE_LIBEET
2024 bool "libeet package has been removed"
2025 select BR2_LEGACY
2026 select BR2_PACKAGE_EFL
2027 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002028 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002029
Romain Naoure5989d62015-12-15 23:40:36 +01002030config BR2_PACKAGE_LIBEVAS
2031 bool "libevas package has been removed"
2032 select BR2_LEGACY
2033 select BR2_PACKAGE_EFL
2034 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002035 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002036
Romain Naour1fe1b602015-12-15 23:40:35 +01002037config BR2_PACKAGE_LIBECORE
2038 bool "libecore package has been removed"
2039 select BR2_LEGACY
2040 select BR2_PACKAGE_EFL
2041 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002042 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002043
Romain Naour8c05c382015-12-15 23:40:34 +01002044config BR2_PACKAGE_LIBEDBUS
2045 bool "libedbus package has been removed"
2046 select BR2_LEGACY
2047 select BR2_PACKAGE_EFL
2048 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002049 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002050
Romain Naourd2b042c2015-12-15 23:40:33 +01002051config BR2_PACKAGE_LIBEFREET
2052 bool "libefreet package has been removed"
2053 select BR2_LEGACY
2054 select BR2_PACKAGE_EFL
2055 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002056 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002057
Romain Naoure155c952015-12-15 23:40:32 +01002058config BR2_PACKAGE_LIBEIO
2059 bool "libeio package has been removed"
2060 select BR2_LEGACY
2061 select BR2_PACKAGE_EFL
2062 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002063 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002064
Romain Naourb728fb72015-12-15 23:40:31 +01002065config BR2_PACKAGE_LIBEMBRYO
2066 bool "libembryo package has been removed"
2067 select BR2_LEGACY
2068 select BR2_PACKAGE_EFL
2069 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002070 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002071
Romain Naour4c93c102015-12-15 23:40:30 +01002072config BR2_PACKAGE_LIBEDJE
2073 bool "libedje package has been removed"
2074 select BR2_LEGACY
2075 select BR2_PACKAGE_EFL
2076 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002077 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002078
Romain Naour905dba12015-12-15 23:40:29 +01002079config BR2_PACKAGE_LIBETHUMB
2080 bool "libethumb package has been removed"
2081 select BR2_LEGACY
2082 select BR2_PACKAGE_EFL
2083 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002084 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002085
Luca Ceresolif0c94702015-11-27 18:38:00 +01002086config BR2_PACKAGE_INFOZIP
2087 bool "infozip option has been renamed to zip"
2088 select BR2_LEGACY
2089 select BR2_PACKAGE_ZIP
2090 help
2091 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002092 to avoid ambiguities with Info-Zip's UnZip which has been
2093 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002094
Martin Barka2d16602015-12-23 12:16:04 +00002095config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002096 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002097 select BR2_LEGACY
2098 select BR2_PACKAGE_NODEJS
2099 help
Martin Bark75b70492016-01-30 14:51:00 +00002100 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002101 automatically chosen for ARMv5 architectures only and the
2102 latest nodejs for all other supported architectures. The
2103 correct nodejs version has been automatically selected in your
2104 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002105
Martin Barka314b872015-12-23 12:16:03 +00002106config BR2_BR2_PACKAGE_NODEJS_0_12_X
2107 bool "nodejs version 0.12.x has been removed"
2108 select BR2_LEGACY
2109 select BR2_PACKAGE_NODEJS
2110 help
2111 nodejs version 0.12.x has been removed. As an alternative,
2112 the latest nodejs version has been automatically selected in
2113 your configuration.
2114
Martin Bark90bf67c2015-12-23 12:16:02 +00002115config BR2_BR2_PACKAGE_NODEJS_4_X
2116 bool "nodejs version 4.x has been removed"
2117 select BR2_LEGACY
2118 select BR2_PACKAGE_NODEJS
2119 help
2120 nodejs version 4.x has been removed. As an alternative,
2121 the latest nodejs version has been automatically selected in
2122 your configuration.
2123
Luca Ceresolif0c94702015-11-27 18:38:00 +01002124###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002125comment "Legacy options removed in 2015.11"
2126
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002127config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2128 bool "gst1-plugins-bad real plugin has been removed"
2129 select BR2_LEGACY
2130 help
2131 The real plugin from GStreamer 1 bad plugins has been
2132 removed.
2133
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002134config BR2_PACKAGE_MEDIA_CTL
2135 bool "media-ctl package has been removed"
2136 select BR2_LEGACY
2137 select BR2_PACKAGE_LIBV4L
2138 select BR2_PACKAGE_LIBV4L_UTILS
2139 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002140 media-ctl source and developement have been moved to v4l-utils
2141 since June 2014. For an up-to-date media-ctl version select
2142 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002143
Romain Naourf8031332015-10-03 18:35:05 +02002144config BR2_PACKAGE_SCHIFRA
2145 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002146 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002147 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002148 Schifra package has been maked broken since 2014.11 release
2149 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002150
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002151config BR2_PACKAGE_ZXING
2152 bool "zxing option has been renamed"
2153 select BR2_LEGACY
2154 select BR2_PACKAGE_ZXING_CPP
2155 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002156 ZXing no longer provides the cpp bindings, it has been renamed
2157 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002158
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002159# Since FreeRDP has new dependencies, protect this legacy to avoid the
2160# infamous "unmet direct dependencies" kconfig error.
2161config BR2_PACKAGE_FREERDP_CLIENT
2162 bool "freerdp client option renamed"
2163 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002164 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002165 select BR2_PACKAGE_FREERDP_CLIENT_X11
2166
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002167config BR2_PACKAGE_BLACKBOX
2168 bool "blackbox package has been removed"
2169 select BR2_LEGACY
2170 help
2171 Upstream is dead and the package has been deprecated for
2172 some time. There are other alternative maintained WMs.
2173
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002174config BR2_KERNEL_HEADERS_3_0
2175 bool "kernel headers version 3.0.x are no longer supported"
2176 select BR2_KERNEL_HEADERS_3_2
2177 select BR2_LEGACY
2178 help
2179 Version 3.0.x of the Linux kernel headers have been deprecated
2180 for more than four buildroot releases and are now removed.
2181 As an alternative, version 3.2.x of the headers have been
2182 automatically selected in your configuration.
2183
2184config BR2_KERNEL_HEADERS_3_11
2185 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002186 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002187 select BR2_LEGACY
2188 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002189 Version 3.11.x of the Linux kernel headers have been
2190 deprecated for more than four buildroot releases and are now
2191 removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002192 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002193 automatically selected in your configuration.
2194
2195config BR2_KERNEL_HEADERS_3_13
2196 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002197 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002198 select BR2_LEGACY
2199 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002200 Version 3.13.x of the Linux kernel headers have been
2201 deprecated for more than four buildroot releases and are now
2202 removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002203 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002204 automatically selected in your configuration.
2205
2206config BR2_KERNEL_HEADERS_3_15
2207 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002208 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002209 select BR2_LEGACY
2210 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002211 Version 3.15.x of the Linux kernel headers have been
2212 deprecated for more than four buildroot releases and are now
2213 removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002214 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002215 automatically selected in your configuration.
2216
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002217config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2218 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002219 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002220 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2221 help
2222 The per-DirectFB example options have been removed. The
2223 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2224 examples.
2225
2226config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2227 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002228 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002229 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2230 help
2231 The per-DirectFB example options have been removed. The
2232 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2233 examples.
2234
2235config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2236 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002237 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002238 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2239 help
2240 The per-DirectFB example options have been removed. The
2241 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2242 examples.
2243
2244config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2245 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002246 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002247 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2248 help
2249 The per-DirectFB example options have been removed. The
2250 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2251 examples.
2252
2253config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2254 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002255 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002256 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2257 help
2258 The per-DirectFB example options have been removed. The
2259 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2260 examples.
2261
2262config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2263 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002264 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002265 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2266 help
2267 The per-DirectFB example options have been removed. The
2268 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2269 examples.
2270
2271config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2272 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002273 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002274 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2275 help
2276 The per-DirectFB example options have been removed. The
2277 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2278 examples.
2279
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002280config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2281 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002282 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002283 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2284 help
2285 The per-DirectFB example options have been removed. The
2286 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2287 examples.
2288
2289config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2290 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002291 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002292 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2293 help
2294 The per-DirectFB example options have been removed. The
2295 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2296 examples.
2297
2298config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2299 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002300 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002301 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2302 help
2303 The per-DirectFB example options have been removed. The
2304 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2305 examples.
2306
2307config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2308 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002309 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002310 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2311 help
2312 The per-DirectFB example options have been removed. The
2313 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2314 examples.
2315
2316config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2317 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002318 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002319 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2320 help
2321 The per-DirectFB example options have been removed. The
2322 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2323 examples.
2324
2325config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2326 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002327 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002328 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2329 help
2330 The per-DirectFB example options have been removed. The
2331 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2332 examples.
2333
2334config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2335 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002336 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002337 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2338 help
2339 The per-DirectFB example options have been removed. The
2340 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2341 examples.
2342
2343config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2344 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002345 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002346 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2347 help
2348 The per-DirectFB example options have been removed. The
2349 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2350 examples.
2351
2352config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2353 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002354 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002355 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2356 help
2357 The per-DirectFB example options have been removed. The
2358 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2359 examples.
2360
2361config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2362 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002363 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002364 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2365 help
2366 The per-DirectFB example options have been removed. The
2367 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2368 examples.
2369
2370config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2371 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002372 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002373 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
2379config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2380 bool "DirectFB example df_palette has been removed"
2381 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2382 help
2383 The per-DirectFB example options have been removed. The
2384 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2385 examples.
2386
2387config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2388 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002389 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002390 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2391 help
2392 The per-DirectFB example options have been removed. The
2393 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2394 examples.
2395
2396config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2397 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002398 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002399 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
2405config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2406 bool "DirectFB example df_stress has been removed"
2407 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2408 help
2409 The per-DirectFB example options have been removed. The
2410 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2411 examples.
2412
2413config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2414 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002415 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002416 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2417 help
2418 The per-DirectFB example options have been removed. The
2419 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2420 examples.
2421
2422config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2423 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002424 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002425 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2426 help
2427 The per-DirectFB example options have been removed. The
2428 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2429 examples.
2430
2431config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2432 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002433 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002434 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2435 help
2436 The per-DirectFB example options have been removed. The
2437 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2438 examples.
2439
2440config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2441 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002442 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002443 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2444 help
2445 The per-DirectFB example options have been removed. The
2446 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2447 examples.
2448
Gary Bisson2b78fb22015-09-23 15:39:27 +02002449config BR2_PACKAGE_KOBS_NG
2450 bool "kobs-ng was replaced by imx-kobs"
2451 select BR2_LEGACY
2452 select BR2_PACKAGE_IMX_KOBS
2453 help
2454 The outdated kobs-ng has been replaced by the Freescale-
2455 maintained imx-kobs package.
2456
Thomas Petazzoni11573f52015-09-02 00:01:11 +02002457config BR2_PACKAGE_SAWMAN
2458 bool "sawman package removed"
2459 select BR2_LEGACY
2460 select BR2_PACKAGE_DIRECTFB_SAWMAN
2461 help
2462 This option has been removed because the sawman package no
2463 longer exists: it was merged inside DirectFB itself. This
2464 feature can now be enabled using the
2465 BR2_PACKAGE_DIRECTFB_SAWMAN option.
2466
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002467config BR2_PACKAGE_DIVINE
2468 bool "divine package removed"
2469 select BR2_LEGACY
2470 select BR2_PACKAGE_DIRECTFB_DIVINE
2471 help
2472 This option has been removed because the divine package no
2473 longer exists: it was merged inside DirectFB itself. This
2474 feature can now be enabled using the
2475 BR2_PACKAGE_DIRECTFB_DIVINE option.
2476
2477###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002478comment "Legacy options removed in 2015.08"
2479
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002480config BR2_PACKAGE_KODI_PVR_ADDONS
2481 bool "Kodi PVR addon was split"
2482 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02002483 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02002484 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02002485 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02002486 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02002487 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02002488 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02002489 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02002490 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02002491 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02002492 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02002493 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02002494 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02002495 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02002496 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02002497 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02002498 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002499 help
2500 Kodi PVR addon was split into seperate modules
2501
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002502config BR2_BINUTILS_VERSION_2_23_2
2503 bool "binutils 2.23 option renamed"
2504 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002505 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002506 Binutils 2.23.2 has been removed, using a newer version is
2507 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002508
2509config BR2_BINUTILS_VERSION_2_24
2510 bool "binutils 2.24 option renamed"
2511 select BR2_LEGACY
2512 select BR2_BINUTILS_VERSION_2_24_X
2513 help
2514 The binutils version option has been renamed to match the
2515 same patchlevel logic used by gcc. The new option is now
2516 BR2_BINUTILS_VERSION_2_24_X.
2517
2518config BR2_BINUTILS_VERSION_2_25
2519 bool "binutils 2.25 option renamed"
2520 select BR2_LEGACY
2521 select BR2_BINUTILS_VERSION_2_25_X
2522 help
2523 The binutils version option has been renamed to match the
2524 same patchlevel logic used by gcc. The new option is now
2525 BR2_BINUTILS_VERSION_2_25_X.
2526
Romain Naour1326e762015-07-14 19:35:14 +02002527config BR2_PACKAGE_PERF
2528 bool "perf option has been renamed"
2529 select BR2_LEGACY
2530 select BR2_LINUX_KERNEL_TOOL_PERF
2531 help
2532 The perf package has been moved as a Linux tools package,
2533 and the option to enable it is now
2534 BR2_LINUX_KERNEL_TOOL_PERF.
2535
Thomas Petazzoni2f845952015-07-11 14:52:53 +02002536config BR2_BINUTILS_VERSION_2_22
2537 bool "binutils 2.22 removed"
2538 select BR2_LEGACY
2539 help
2540 Binutils 2.22 has been removed, using a newer version is
2541 recommended.
2542
Gary Bisson4c0613e2015-05-26 10:19:37 +02002543config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
2544 bool "gpu-viv-bin-mx6q"
2545 select BR2_LEGACY
2546 select BR2_PACKAGE_IMX_GPU_VIV
2547 help
2548 Vivante graphics libraries have been renamed to
2549 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
2550 name.
2551
Matt Weber7742abe2015-06-02 08:28:35 -05002552config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05002553 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03002554 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02002555 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05002556 help
2557 This option has been removed, since the libsemanage Python
2558 bindings on the target were not useful.
2559
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002560config BR2_TARGET_UBOOT_NETWORK
2561 bool "U-Boot custom network settings removed"
2562 select BR2_LEGACY
2563 help
2564 U-Boot's custom network settings options have been removed.
2565
2566###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002567comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002568
Michał Leśniewskie3904a82015-05-19 20:26:30 +02002569config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
2570 bool "jffs2 16kB erasesize NAND flash option renamed"
2571 select BR2_LEGACY
2572 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
2573 help
2574 The JFFS2 NAND flash options now longer include the page
2575 size.
2576
2577config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
2578 bool "jffs2 128kB erasesize NAND flash option renamed"
2579 select BR2_LEGACY
2580 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2581 help
2582 The JFFS2 NAND flash options now longer include the page
2583 size.
2584
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02002585config BR2_PACKAGE_MONO_20
2586 bool "2.0/3.5 .Net Runtime"
2587 select BR2_LEGACY
2588 help
2589 This option no longer exists, all versions of the .Net
2590 runtime are now installed.
2591
2592config BR2_PACKAGE_MONO_40
2593 bool "4.0 .Net Runtime"
2594 select BR2_LEGACY
2595 help
2596 This option no longer exists, all versions of the .Net
2597 runtime are now installed.
2598
2599config BR2_PACKAGE_MONO_45
2600 bool "4.5 .Net Runtime"
2601 select BR2_LEGACY
2602 help
2603 This option no longer exists, all versions of the .Net
2604 runtime are now installed.
2605
Peter Korsgaardefd49e32015-04-27 22:29:05 +02002606config BR2_CIVETWEB_WITH_LUA
2607 bool "civetweb lua option renamed"
2608 select BR2_LEGACY
2609 select BR2_PACKAGE_CIVETWEB_WITH_LUA
2610 help
2611 civetweb's lua option has been renamed to
2612 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2613 packages name options.
2614
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02002615config BR2_PACKAGE_TIFF_TIFF2PDF
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
2623config BR2_PACKAGE_TIFF_TIFFCP
2624 bool "tiff utility-specific option removed"
2625 select BR2_LEGACY
2626 select BR2_PACKAGE_TIFF_UTILITIES
2627 help
2628 utility-specific options have been removed in favour of
2629 the new option BR2_PACKAGE_TIFF_UTILITIES.
2630
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002631config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
2632 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002633 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002634 help
2635 This option has never worked, so it has been removed.
2636
Yann E. MORIN02917962015-03-24 19:54:15 +01002637config BR2_TARGET_GENERIC_PASSWD_DES
2638 bool "Encoding passwords with DES has been removed"
2639 select BR2_LEGACY
2640 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002641 Paswords can now only be encoded with either of md5, sha256 or
2642 sha512. The default is md5, which is stronger that DES (but
2643 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01002644
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03002645config BR2_PACKAGE_GTK2_THEME_HICOLOR
2646 bool "hicolor (default theme) is a duplicate"
2647 select BR2_LEGACY
2648 select BR2_PACKAGE_HICOLOR_ICON_THEME
2649 help
2650 The option was just a duplicate of hicolor icon theme.
2651
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002652config BR2_PACKAGE_VALGRIND_PTRCHECK
2653 bool "valgrind's PTRCheck was renamed to SGCheck"
2654 select BR2_LEGACY
2655 select BR2_PACKAGE_VALGRIND_SGCHECK
2656 help
2657 PTRCheck was renamed to SGCheck in valgrind
2658
2659###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002660comment "Legacy options removed in 2015.02"
2661
Pedro Aguilar10900c02015-02-27 06:38:07 +02002662config BR2_PACKAGE_LIBGC
2663 bool "libgc package removed"
2664 select BR2_LEGACY
2665 select BR2_PACKAGE_BDWGC
2666 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002667 libgc has been removed because we have the same package under
2668 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02002669
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002670config BR2_PACKAGE_WDCTL
2671 bool "util-linux' wdctl option has been renamed"
2672 select BR2_LEGACY
2673 select BR2_PACKAGE_UTIL_LINUX_WDCTL
2674 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002675 util-linux' wdctl option has been renamed to
2676 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
2677 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002678
Danomi Manchegoe44edb82015-07-13 22:57:06 -04002679config BR2_PACKAGE_UTIL_LINUX_ARCH
2680 bool "util-linux' arch option has been removed"
2681 select BR2_LEGACY
2682 help
2683 util-linux' arch was dropped in util-linux 2.23, in favor of
2684 the coreutils version.
2685
2686config BR2_PACKAGE_UTIL_LINUX_DDATE
2687 bool "util-linux' ddate option has been removed"
2688 select BR2_LEGACY
2689 help
2690 util-linux' ddate was dropped in util-linux 2.23.
2691
Romain Naour3c476542015-01-18 20:53:08 +01002692config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2693 bool "rpm's bzip2 payloads option has been removed"
2694 select BR2_LEGACY
2695 select BR2_PACKAGE_BZIP2
2696 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002697 The bzip2 payloads option rely entirely on the dependant
2698 package bzip2. So, you need to select it to enable this
2699 feature.
Romain Naour3c476542015-01-18 20:53:08 +01002700
2701config BR2_PACKAGE_RPM_XZ_PAYLOADS
2702 bool "rpm's xz payloads option has been removed"
2703 select BR2_LEGACY
2704 select BR2_PACKAGE_XZ
2705 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002706 The xz payloads option rely entirely on the dependant package
2707 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01002708
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03002709config BR2_PACKAGE_M4
2710 bool "m4 target package removed"
2711 select BR2_LEGACY
2712 help
2713 The m4 target package has been removed, it's been
2714 deprecated for some time now.
2715
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03002716config BR2_PACKAGE_FLEX_BINARY
2717 bool "flex binary in target option removed"
2718 select BR2_LEGACY
2719 help
2720 The flex binary in the target option has been removed.
2721 It's been deprecated for some time now and is essentially a
2722 development tool which isn't very useful in the target.
2723
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03002724config BR2_PACKAGE_BISON
2725 bool "bison target package removed"
2726 select BR2_LEGACY
2727 help
2728 The bison target package has been removed, it's been
2729 deprecated for some time now and is essentially a development
2730 tool which isn't very useful in the target.
2731
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03002732config BR2_PACKAGE_GOB2
2733 bool "gob2 target package removed"
2734 select BR2_LEGACY
2735 help
2736 The gob2 target package has been removed, it's been
2737 deprecated for some time now and was essentially useless
2738 without a target toolchain.
2739
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03002740config BR2_PACKAGE_DISTCC
2741 bool "distcc target package removed"
2742 select BR2_LEGACY
2743 help
2744 The distcc target package has been removed, it's been
2745 deprecated for some time now and was essentially useless
2746 without a target toolchain.
2747
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03002748config BR2_PACKAGE_HASERL_VERSION_0_8_X
2749 bool "haserl 0.8.x version removed"
2750 select BR2_LEGACY
2751 help
2752 The 0.8.x version option for haserl has been removed since it
2753 has been deprecated for some time now.
2754 You should be able to use the 0.9.x version without issues.
2755
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002756config BR2_PACKAGE_STRONGSWAN_TOOLS
2757 bool "strongswan option has been removed"
2758 select BR2_LEGACY
2759 select BR2_PACKAGE_STRONGSWAN_PKI
2760 select BR2_PACKAGE_STRONGSWAN_SCEP
2761 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002762 The tools option has been removed upstream and the different
2763 tools have been split between the pki and scep options, with
2764 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002765
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002766config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002767 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002768 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002769 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002770 According to the github project page:
2771 https://github.com/pipelka/xbmc-addon-xvdr
2772 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002773
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002774config BR2_PACKAGE_XBMC_PVR_ADDONS
2775 bool "xbmc options have been renamed"
2776 select BR2_LEGACY
2777 select BR2_PACKAGE_KODI_PVR_ADDONS
2778 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002779 The XBMC media center project was renamed to Kodi
2780 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002781
Bernd Kuhls35784592014-12-23 18:46:27 +01002782config BR2_PACKAGE_XBMC
2783 bool "xbmc options have been renamed"
2784 select BR2_LEGACY
2785 select BR2_PACKAGE_KODI
2786 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002787 The XBMC media center project was renamed to Kodi
2788 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002789
2790config BR2_PACKAGE_XBMC_ALSA_LIB
2791 bool "xbmc options have been renamed"
2792 select BR2_LEGACY
2793 select BR2_PACKAGE_KODI_ALSA_LIB
2794 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002795 The XBMC media center project was renamed to Kodi
2796 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002797
2798config BR2_PACKAGE_XBMC_AVAHI
2799 bool "xbmc options have been renamed"
2800 select BR2_LEGACY
2801 select BR2_PACKAGE_KODI_AVAHI
2802 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002803 The XBMC media center project was renamed to Kodi
2804 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002805
2806config BR2_PACKAGE_XBMC_DBUS
2807 bool "xbmc options have been renamed"
2808 select BR2_LEGACY
2809 select BR2_PACKAGE_KODI_DBUS
2810 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002811 The XBMC media center project was renamed to Kodi
2812 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002813
2814config BR2_PACKAGE_XBMC_LIBBLURAY
2815 bool "xbmc options have been renamed"
2816 select BR2_LEGACY
2817 select BR2_PACKAGE_KODI_LIBBLURAY
2818 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002819 The XBMC media center project was renamed to Kodi
2820 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002821
2822config BR2_PACKAGE_XBMC_GOOM
2823 bool "xbmc options have been renamed"
2824 select BR2_LEGACY
2825 select BR2_PACKAGE_KODI_GOOM
2826 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002827 The XBMC media center project was renamed to Kodi
2828 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002829
2830config BR2_PACKAGE_XBMC_RSXS
2831 bool "xbmc options have been renamed"
2832 select BR2_LEGACY
2833 select BR2_PACKAGE_KODI_RSXS
2834 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002835 The XBMC media center project was renamed to Kodi
2836 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002837
2838config BR2_PACKAGE_XBMC_LIBCEC
2839 bool "xbmc options have been renamed"
2840 select BR2_LEGACY
2841 select BR2_PACKAGE_KODI_LIBCEC
2842 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002843 The XBMC media center project was renamed to Kodi
2844 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002845
2846config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2847 bool "xbmc options have been renamed"
2848 select BR2_LEGACY
2849 select BR2_PACKAGE_KODI_LIBMICROHTTPD
2850 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002851 The XBMC media center project was renamed to Kodi
2852 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002853
2854config BR2_PACKAGE_XBMC_LIBNFS
2855 bool "xbmc options have been renamed"
2856 select BR2_LEGACY
2857 select BR2_PACKAGE_KODI_LIBNFS
2858 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002859 The XBMC media center project was renamed to Kodi
2860 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002861
2862config BR2_PACKAGE_XBMC_RTMPDUMP
2863 bool "xbmc options have been renamed"
2864 select BR2_LEGACY
2865 select BR2_PACKAGE_KODI_RTMPDUMP
2866 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002867 The XBMC media center project was renamed to Kodi
2868 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002869
2870config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2871 bool "xbmc options have been renamed"
2872 select BR2_LEGACY
2873 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2874 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002875 The XBMC media center project was renamed to Kodi
2876 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002877
2878config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2879 bool "xbmc options have been renamed"
2880 select BR2_LEGACY
2881 select BR2_PACKAGE_KODI_LIBSMBCLIENT
2882 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002883 The XBMC media center project was renamed to Kodi
2884 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002885
2886config BR2_PACKAGE_XBMC_LIBTHEORA
2887 bool "xbmc options have been renamed"
2888 select BR2_LEGACY
2889 select BR2_PACKAGE_KODI_LIBTHEORA
2890 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002891 The XBMC media center project was renamed to Kodi
2892 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002893
2894config BR2_PACKAGE_XBMC_LIBUSB
2895 bool "xbmc options have been renamed"
2896 select BR2_LEGACY
2897 select BR2_PACKAGE_KODI_LIBUSB
2898 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002899 The XBMC media center project was renamed to Kodi
2900 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002901
2902config BR2_PACKAGE_XBMC_LIBVA
2903 bool "xbmc options have been renamed"
2904 select BR2_LEGACY
2905 select BR2_PACKAGE_KODI_LIBVA
2906 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002907 The XBMC media center project was renamed to Kodi
2908 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002909
2910config BR2_PACKAGE_XBMC_WAVPACK
2911 bool "xbmc options have been renamed"
2912 select BR2_LEGACY
2913 select BR2_PACKAGE_KODI_WAVPACK
2914 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002915 The XBMC media center project was renamed to Kodi
2916 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002917
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002918config BR2_PREFER_STATIC_LIB
2919 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01002920 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002921 help
2922 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
2923 highlights the fact that the option no longer "prefers"
2924 static libraries, but "enforces" static libraries (i.e
2925 shared libraries are completely unused).
2926
Samuel Martina44b1c12014-12-14 17:24:24 +01002927 Take care of updating the type of libraries you want under the
2928 "Build options" menu.
2929
Bernd Kuhls35784592014-12-23 18:46:27 +01002930###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02002931comment "Legacy options removed in 2014.11"
2932
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002933config BR2_x86_generic
2934 bool "x86 generic variant has been removed"
2935 select BR2_LEGACY
2936 help
2937 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02002938 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01002939
Andreas Larsson40e18f22014-10-30 09:29:36 +01002940config BR2_GCC_VERSION_4_4_X
2941 bool "gcc 4.4.x has been removed"
2942 select BR2_LEGACY
2943 help
2944 The 4.4.x version of gcc has been removed. Use a newer
2945 version instead.
2946
Andreas Larsson43b78e72014-10-30 09:29:35 +01002947config BR2_sparc_sparchfleon
2948 bool "sparchfleon CPU has been removed"
2949 select BR2_LEGACY
2950 help
2951 The sparchfleon CPU was only supported in a patched gcc 4.4
2952 version. Its support has been removed in favor of the leon3
2953 CPU starting from gcc 4.8.x.
2954
2955config BR2_sparc_sparchfleonv8
2956 bool "sparchfleonv8 CPU has been removed"
2957 select BR2_LEGACY
2958 help
2959 The sparchfleonv8 CPU was only supported in a patched gcc
2960 4.4 version. Its support has been removed in favor of the
2961 leon3 CPU starting from gcc 4.8.x.
2962
2963config BR2_sparc_sparcsfleon
2964 bool "sparcsfleon CPU has been removed"
2965 select BR2_LEGACY
2966 help
2967 The sparcsfleon CPU was only supported in a patched gcc 4.4
2968 version. Its support has been removed in favor of the leon3
2969 CPU starting from gcc 4.8.x.
2970
2971config BR2_sparc_sparcsfleonv8
2972 bool "sparcsfleonv8 CPU has been removed"
2973 select BR2_LEGACY
2974 help
2975 The sparcsfleonv8 CPU was only supported in a patched gcc
2976 4.4 version. Its support has been removed in favor of the
2977 leon3 CPU starting from gcc 4.8.x.
2978
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02002979config BR2_PACKAGE_XLIB_LIBPCIACCESS
2980 bool "xlib-libpciaccess option has been renamed"
2981 depends on BR2_PACKAGE_XORG7
2982 select BR2_LEGACY
2983 select BR2_PACKAGE_LIBPCIACCESS
2984 help
2985 libpciaccess neither depends on X11 nor Xlib. Thus the
2986 package has been renamed BR2_PACKAGE_LIBPCIACCESS
2987
Yann E. MORINb581bba2014-09-21 20:38:13 +02002988config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
2989 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002990 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02002991 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
2992 help
2993 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002994 Xceive (the xc4000 series), as well as new firmwares (the
2995 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02002996
Yann E. MORINdac546e2014-09-21 20:38:12 +02002997config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
2998 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002999 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003000 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3001 help
3002 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3003 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3004 to better account for the fact that a T5 variant exists.
3005
Yann E. MORIN120136e2014-09-21 20:38:09 +02003006config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3007 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003008 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003009 help
3010 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3011 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3012 select it in:
3013 Target packages -> Hardware handling ->
3014 Firmware -> linux-firmware -> WiFi firmware ->
3015 iwlwifi 3160/726x revision to use (revision 7)
3016
3017config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3018 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003019 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003020 help
3021 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3022 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3023 select it in:
3024 Target packages -> Hardware handling ->
3025 Firmware -> linux-firmware -> WiFi firmware ->
3026 iwlwifi 3160/726x revision to use (revision 8)
3027
3028###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003029comment "Legacy options removed in 2014.08"
3030
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003031config BR2_PACKAGE_LIBELF
3032 bool "libelf has been removed"
3033 select BR2_PACKAGE_ELFUTILS
3034 select BR2_LEGACY
3035 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003036 The libelf package provided an old version of the libelf
3037 library and is deprecated. The libelf library is now provided
3038 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003039
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003040config BR2_KERNEL_HEADERS_3_8
3041 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003042 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003043 select BR2_LEGACY
3044 help
3045 Version 3.8.x of the Linux kernel headers have been deprecated
3046 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003047 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003048 automatically selected in your configuration.
3049
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003050config BR2_PACKAGE_GETTEXT_TOOLS
3051 bool "support for gettext-tools on target has been removed"
3052 select BR2_LEGACY
3053 help
3054 The option to install the gettext utilities on the target
3055 has been removed. This is not necessary as Buildroot is not
3056 designed to provide a full development environment on the
3057 target. gettext tools should be used on the build machine
3058 instead.
3059
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003060config BR2_PACKAGE_PROCPS
3061 bool "procps has been replaced by procps-ng"
3062 select BR2_PACKAGE_PROCPS_NG
3063 select BR2_LEGACY
3064 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003065 The procps package has been replaced by the equivalent
3066 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003067
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003068config BR2_BINUTILS_VERSION_2_20_1
3069 bool "binutils 2.20.1 has been removed"
3070 select BR2_LEGACY
3071 help
3072 The 2.20.1 version of binutils has been removed. Use a newer
3073 version instead.
3074
3075config BR2_BINUTILS_VERSION_2_21
3076 bool "binutils 2.21 has been removed"
3077 select BR2_LEGACY
3078 help
3079 The 2.21 version of binutils has been removed. Use a newer
3080 version instead.
3081
3082config BR2_BINUTILS_VERSION_2_23_1
3083 bool "binutils 2.23.1 has been removed"
3084 select BR2_LEGACY
3085 help
3086 The 2.23.1 version of binutils has been removed. Use a newer
3087 version instead.
3088
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003089config BR2_UCLIBC_VERSION_0_9_32
3090 bool "uclibc 0.9.32 has been removed"
3091 select BR2_LEGACY
3092 help
3093 The 0.9.32 version of uClibc has been removed. Use a newer
3094 version instead.
3095
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003096config BR2_GCC_VERSION_4_3_X
3097 bool "gcc 4.3.x has been removed"
3098 select BR2_LEGACY
3099 help
3100 The 4.3.x version of gcc has been removed. Use a newer
3101 version instead.
3102
3103config BR2_GCC_VERSION_4_6_X
3104 bool "gcc 4.6.x has been removed"
3105 select BR2_LEGACY
3106 help
3107 The 4.6.x version of gcc has been removed. Use a newer
3108 version instead.
3109
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003110config BR2_GDB_VERSION_7_4
3111 bool "gdb 7.4 has been removed"
3112 select BR2_LEGACY
3113 help
3114 The 7.4 version of gdb has been removed. Use a newer version
3115 instead.
3116
3117config BR2_GDB_VERSION_7_5
3118 bool "gdb 7.5 has been removed"
3119 select BR2_LEGACY
3120 help
3121 The 7.5 version of gdb has been removed. Use a newer version
3122 instead.
3123
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003124config BR2_BUSYBOX_VERSION_1_19_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
3132config BR2_BUSYBOX_VERSION_1_20_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
3140config BR2_BUSYBOX_VERSION_1_21_X
3141 bool "busybox version selection has been removed"
3142 select BR2_LEGACY
3143 help
3144 The possibility of selecting the Busybox version has been
3145 removed. Use the latest version provided by the Busybox
3146 package instead.
3147
Ezequiel García07ac0452014-07-05 18:07:40 -03003148config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3149 bool "decode_tm6000"
3150 select BR2_PACKAGE_LIBV4L_UTILS
3151 select BR2_LEGACY
3152 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003153 This libv4l option has been deprecated and replaced by a
3154 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003155
3156config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3157 bool "ir-keytable"
3158 select BR2_PACKAGE_LIBV4L_UTILS
3159 select BR2_LEGACY
3160 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003161 This libv4l option has been deprecated and replaced by a
3162 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003163
3164config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3165 bool "v4l2-compliance"
3166 select BR2_PACKAGE_LIBV4L_UTILS
3167 select BR2_LEGACY
3168 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003169 This libv4l option has been deprecated and replaced by a
3170 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003171
3172config BR2_PACKAGE_LIBV4L_V4L2_CTL
3173 bool "v4l2-ctl"
3174 select BR2_PACKAGE_LIBV4L_UTILS
3175 select BR2_LEGACY
3176 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003177 This libv4l option has been deprecated and replaced by a
3178 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003179
3180config BR2_PACKAGE_LIBV4L_V4L2_DBG
3181 bool "v4l2-dbg"
3182 select BR2_PACKAGE_LIBV4L_UTILS
3183 select BR2_LEGACY
3184 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003185 This libv4l option has been deprecated and replaced by a
3186 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003187
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003188###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003189comment "Legacy options removed in 2014.05"
3190
Peter Seiderer4990a382014-04-23 00:12:23 +02003191config BR2_PACKAGE_EVTEST_CAPTURE
3192 bool "evtest-capture support removed (dropped since evtest 1.31)"
3193 select BR2_LEGACY
3194 help
3195 Support for evtest-capture has been removed (dropped from
3196 evtest package since version 1.31), use evemu package
3197 instead.
3198
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003199config BR2_KERNEL_HEADERS_3_6
3200 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003201 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003202 select BR2_LEGACY
3203 help
3204 Version 3.6.x of the Linux kernel headers have been deprecated
3205 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003206 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003207 automatically selected in your configuration.
3208
3209config BR2_KERNEL_HEADERS_3_7
3210 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003211 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003212 select BR2_LEGACY
3213 help
3214 Version 3.7.x of the Linux kernel headers have been deprecated
3215 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003216 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003217 automatically selected in your configuration.
3218
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003219config BR2_PACKAGE_VALA
3220 bool "vala target package has been removed"
3221 select BR2_LEGACY
3222 help
3223 The 'vala' target package has been removed since it has been
3224 deprecated for more than four buildroot releases.
3225 Note: the host vala package still exists.
3226
Yann E. MORINd6a37912014-04-07 21:58:03 +02003227config BR2_TARGET_TZ_ZONELIST
3228 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3229
3230config BR2_PACKAGE_TZDATA_ZONELIST
3231 string "tzdata: the timezone list option has been renamed"
3232 help
3233 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003234 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3235 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003236
3237config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3238 bool
3239 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3240 select BR2_LEGACY
3241
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003242config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3243 bool "Lua command-line editing none has been renamed"
3244 select BR2_LEGACY
3245 help
3246 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003247 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3248 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003249
3250config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3251 bool "Lua command-line editing using readline has been renamed"
3252 select BR2_LEGACY
3253 help
3254 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3255 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3256 it in the corresponding choice.
3257
3258config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3259 bool "Lua command-line editing using linenoise has been renamed"
3260 select BR2_LEGACY
3261 help
3262 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3263 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3264 it in the corresponding choice.
3265
Yann E. MORIN365ae612014-03-28 01:00:24 +01003266config BR2_PACKAGE_DVB_APPS_UTILS
3267 bool "dvb-apps utilities now built by default"
3268 select BR2_LEGACY
3269 help
3270 The dvb-apps utilities are now always built when the dvb-apps
3271 package is selected.
3272
Yann E. MORIN971e3312014-03-01 15:52:56 +01003273config BR2_KERNEL_HEADERS_SNAP
3274 bool "Local Linux snapshot support removed"
3275 select BR2_LEGACY
3276 help
3277 Support for using a custom snapshot to install the Linux
3278 kernel headers has been removed.
3279
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003280config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3281 bool "/dev management by udev removed"
3282 select BR2_LEGACY
3283 help
3284 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003285 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003286
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003287 Therefore, if you are not using 'systemd' as init system, you
3288 must choose 'Dynamic using eudev' in the '/dev management'
3289 menu to get the same behaviour as in your old configuration.
3290
3291 If you are using 'systemd', its internal implementation of
3292 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003293
3294 You must also check the packages depending on 'udev' are still
3295 selected.
3296
3297config BR2_PACKAGE_UDEV
3298 bool "udev is now a virtual package"
3299 select BR2_LEGACY
3300 select BR2_PACKAGE_HAS_UDEV
3301 help
3302 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003303 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003304
3305 Your old configuration refers to packages depending on 'udev',
3306 either for build or at runtime.
3307
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003308 Check that a 'udev' provider is selected. If you are not using
3309 'systemd' as init system, 'eudev' should be selected, which is
3310 the case if '/dev management' is set to 'Dynamic using eudev'.
3311
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003312 If you are using 'systemd', its internal implementation of
3313 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003314
3315config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003316 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003317 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003318 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3319 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003320 help
3321 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003322 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003323
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003324 If you are not using 'systemd' as init system, udev rules
3325 generation will be handled by 'eudev'. Check that
3326 '/dev management' is set to 'Dynamic using eudev' to get
3327 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003328
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003329 If you are using 'systemd', it internal implementation of
3330 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003331
3332config BR2_PACKAGE_UDEV_ALL_EXTRAS
3333 bool "udev extras removed"
3334 select BR2_LEGACY
3335 help
3336 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003337 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003338
3339 The option to enable the extra features of 'udev' (gudev, ...)
3340 has been removed. These features are automatically enabled in
3341 the 'udev' providers if the dependencies are selected. For
3342 example, selecting 'libglib2' will trigger the build of gudev.
3343
Bernd Kuhls5562be12014-03-01 16:41:10 +01003344config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3345 bool "xlib-libpthread-stubs option has been renamed"
3346 depends on BR2_PACKAGE_XORG7
3347 select BR2_LEGACY
3348 select BR2_PACKAGE_LIBPTHREAD_STUBS
3349 help
3350 The pthread stubs neither depend on X11 nor Xlib. Thus the
3351 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3352
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003353###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003354comment "Legacy options removed in 2014.02"
3355
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003356config BR2_sh2
3357 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003358 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003359 help
3360 Due to an inexistent user base and generally poor Linux
3361 support, the support for the SH2 architecture was removed.
3362
3363config BR2_sh3
3364 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003365 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003366 help
3367 Due to an inexistent user base and generally poor Linux
3368 support, the support for the SH3 architecture was removed.
3369
3370config BR2_sh3eb
3371 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003372 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003373 help
3374 Due to an inexistent user base and generally poor Linux
3375 support, the support for the SH3eb architecture was removed.
3376
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003377config BR2_KERNEL_HEADERS_3_1
3378 bool "kernel headers version 3.1.x are no longer supported"
3379 select BR2_KERNEL_HEADERS_3_2
3380 select BR2_LEGACY
3381 help
3382 Version 3.1.x of the Linux kernel headers have been deprecated
3383 for more than four buildroot releases and are now removed.
3384 As an alternative, version 3.2.x of the headers have been
3385 automatically selected in your configuration.
3386
3387config BR2_KERNEL_HEADERS_3_3
3388 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003389 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003390 select BR2_LEGACY
3391 help
3392 Version 3.3.x of the Linux kernel headers have been deprecated
3393 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003394 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003395 automatically selected in your configuration.
3396
3397config BR2_KERNEL_HEADERS_3_5
3398 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003399 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003400 select BR2_LEGACY
3401 help
3402 Version 3.5.x of the Linux kernel headers have been deprecated
3403 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003404 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003405 automatically selected in your configuration.
3406
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003407config BR2_GDB_VERSION_7_2
3408 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003409 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003410 select BR2_LEGACY
3411 help
3412 Version 7.2.x of gdb has been deprecated for more than four
3413 buildroot releases and is now removed. As an alternative, gdb
3414 7.5.x has been automatically selected in your configuration.
3415
3416config BR2_GDB_VERSION_7_3
3417 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003418 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003419 select BR2_LEGACY
3420 help
3421 Version 7.3.x of gdb has been deprecated for more than four
3422 buildroot releases and is now removed. As an alternative, gdb
3423 7.5.x has been automatically selected in your configuration.
3424
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01003425config BR2_PACKAGE_CCACHE
3426 bool "ccache target package has been removed"
3427 select BR2_LEGACY
3428 help
3429 The 'ccache' target package has been removed since it has been
3430 deprecated for more than four buildroot releases.
3431 Note: using ccache for speeding up builds is still supported.
3432
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003433config BR2_HAVE_DOCUMENTATION
3434 bool "support for documentation on target has been removed"
3435 select BR2_LEGACY
3436 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003437 Support for documentation on target has been removed since it
3438 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003439
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003440config BR2_PACKAGE_AUTOMAKE
3441 bool "automake target package has been removed"
3442 select BR2_LEGACY
3443 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003444 The 'automake' target package has been removed since it has
3445 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003446 Note: the host automake still exists.
3447
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003448config BR2_PACKAGE_AUTOCONF
3449 bool "autoconf target package has been removed"
3450 select BR2_LEGACY
3451 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003452 The 'autoconf' target package has been removed since it has
3453 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003454 Note: the host autoconf still exists.
3455
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01003456config BR2_PACKAGE_XSTROKE
3457 bool "xstroke has been removed"
3458 select BR2_LEGACY
3459 help
3460 The 'xstroke' package has been removed since it has been
3461 deprecated for more than four buildroot releases.
3462
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003463config BR2_PACKAGE_LZMA
3464 bool "lzma target package has been removed"
3465 select BR2_LEGACY
3466 help
3467 The 'lzma' target package has been removed since it has been
3468 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003469 Note: generating lzma-compressed rootfs images is still
3470 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003471
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01003472config BR2_PACKAGE_TTCP
3473 bool "ttcp has been removed"
3474 select BR2_LEGACY
3475 help
3476 The 'ttcp' package has been removed since it has been
3477 deprecated for more than four buildroot releases.
3478
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003479config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003480 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003481 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003482 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003483 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003484 The 'libnfc-llcp' package has been removed since upstream
3485 renamed to 'libllcp'. We have added a new package for
3486 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003487
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00003488config BR2_PACKAGE_MYSQL_CLIENT
3489 bool "MySQL client renamed to MySQL"
3490 select BR2_LEGACY
3491 select BR2_PACKAGE_MYSQL
3492 help
3493 The option has been renamed BR2_PACKAGE_MYSQL
3494
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01003495config BR2_PACKAGE_SQUASHFS3
3496 bool "squashfs3 has been removed"
3497 select BR2_LEGACY
3498 select BR2_PACKAGE_SQUASHFS
3499 help
3500 The 'squashfs3' package has been removed since it has been
3501 deprecated for more than four buildroot releases. Package
3502 'squashfs' (4) has been selected automatically as replacement.
3503
3504config BR2_TARGET_ROOTFS_SQUASHFS3
3505 bool "squashfs3 rootfs support has been removed"
3506 select BR2_LEGACY
3507 help
3508 Together with the removal of the squashfs3 package, support
3509 for squashfs3 root filesystems has been removed too. Squashfs
3510 root filesystems will automatically use squashfs4 now.
3511
Arnaud Aujon560fe852013-12-15 20:23:12 +01003512config BR2_PACKAGE_NETKITBASE
3513 bool "netkitbase has been removed"
3514 select BR2_LEGACY
3515 help
3516 The 'netkitbase' package has been removed since it has been
3517 deprecated since 2012.11. This package provided 'inetd'
3518 which is replaced by 'xinet' and 'ping' which is replaced by
3519 'busybox' or 'fping'.
3520
3521config BR2_PACKAGE_NETKITTELNET
3522 bool "netkittelnet has been removed"
3523 select BR2_LEGACY
3524 help
3525 The 'netkittelnet' package has been removed since it has
3526 been deprecated since 2012.11. 'busybox' provides a telnet
3527 client and should be used instead.
3528
Francois Perrad63058f82014-01-11 16:42:09 +01003529config BR2_PACKAGE_LUASQL
3530 bool "luasql has been replaced by luasql-sqlite3"
3531 select BR2_PACKAGE_LUASQL_SQLITE3
3532 select BR2_LEGACY
3533 help
3534 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
3535
Francois Perrada6c53472014-01-11 16:42:08 +01003536config BR2_PACKAGE_LUACJSON
3537 bool "luacjson has been replaced by lua-cjson"
3538 select BR2_PACKAGE_LUA_CJSON
3539 select BR2_LEGACY
3540 help
3541 The option has been renamed BR2_PACKAGE_LUA_CJSON.
3542
Arnaud Aujon560fe852013-12-15 20:23:12 +01003543###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003544comment "Legacy options removed in 2013.11"
3545
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003546config BR2_PACKAGE_LVM2_DMSETUP_ONLY
3547 bool "lvm2's 'dmsetup only' option removed"
3548 select BR2_LEGACY
3549 help
3550 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
3551 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003552 suite. Therefore, the option has been replaced with the
3553 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003554
3555# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
3556# in order to automatically propagate old configs
3557
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01003558config BR2_PACKAGE_QT_JAVASCRIPTCORE
3559 bool "qt javascriptcore option removed"
3560 select BR2_LEGACY
3561 help
3562 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
3563 force the activation or disabling of the JIT compiler in the
3564 Qt Javascript interpreter. However, the JIT compiler is not
3565 available for all architectures, so forcing its activation
3566 does not always work. Moreover, Qt knows by itself for which
3567 architectures JIT support is possible, and will
3568 automatically enable it if possible.
3569
3570 Therefore, this option was in fact useless, and causing
3571 build problems when enabled on architectures for which the
3572 JIT support was not available. It has been removed, and
3573 there is no replacement: Qt will enable JIT at compile time
3574 when possible.
3575
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003576config BR2_PACKAGE_MODULE_INIT_TOOLS
3577 bool "module-init-tools replaced by kmod"
3578 select BR2_PACKAGE_KMOD
3579 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01003580 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003581 help
3582 The 'module-init-tools' package has been removed, since it
3583 has been depracated upstream and replaced by 'kmod'.
3584
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02003585config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
3586 string "u-boot: the git repository URL option has been renamed"
3587 help
3588 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
3589 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
3590
3591config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
3592 bool
3593 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
3594 select BR2_LEGACY
3595
3596# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
3597# boot/uboot/Config.in
3598
3599config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
3600 string "u-boot: the git repository version option has been renamed"
3601 help
3602 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3603 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3604
3605config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3606 bool
3607 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3608 select BR2_LEGACY
3609
3610# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3611# boot/uboot/Config.in
3612
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02003613config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3614 string "linux: the git repository URL option has been renamed"
3615 help
3616 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3617 been renamed to
3618 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3619
3620config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3621 bool
3622 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3623 select BR2_LEGACY
3624
3625# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3626# linux/Config.in
3627
3628config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3629 string "linux: the git repository version option has been renamed"
3630 help
3631 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3632 been renamed to
3633 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3634
3635config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3636 bool
3637 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3638 select BR2_LEGACY
3639
3640# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
3641# linux/Config.in
3642
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003643###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003644comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003645
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02003646config BR2_ARM_OABI
3647 bool "ARM OABI support has been removed"
3648 select BR2_LEGACY
3649 help
3650 The support for the ARM OABI was deprecated since a while,
3651 and has been removed completely from Buildroot. It is also
3652 deprecated in upstream gcc, since gcc 4.7. People should
3653 switch to EABI instead, which should not be a problem as
3654 long as you don't have pre-built OABI binaries in your
3655 system that you can't recompile.
3656
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003657config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
3658 bool "dosfstools dosfsck renamed to fsck.fat"
3659 select BR2_LEGACY
3660 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
3661 help
3662 dosfsck was renamed upstream to fsck.fat for consistency.
3663
3664config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
3665 bool "dosfstools dosfslabel renamed to fatlabel"
3666 select BR2_LEGACY
3667 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
3668 help
3669 doslabel was renamed upstream to fatlabel for consistency.
3670
3671config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
3672 bool "dosfstools mkdosfs renamed to mkfs.fat"
3673 select BR2_LEGACY
3674 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
3675 help
3676 mkdosfs was renamed upstream to mkfs.fat for consistency.
3677
Thomas Petazzonie21db002013-06-30 21:28:57 +02003678config BR2_ELF2FLT
3679 bool "the elf2flt option has been renamed"
3680 select BR2_LEGACY
3681 help
3682 The BR2_ELF2FLT option has been renamed to
3683 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3684 the package infrastructure.
3685
Thomas Petazzonid8060052013-07-16 10:03:17 +02003686config BR2_VFP_FLOAT
3687 bool "the ARM VFP floating point option has been renamed"
3688 select BR2_LEGACY
3689 help
3690 Due to a major refactoring of the floating-point handling of
3691 the ARM architecture support, the BR2_VFP_FLOAT option has
3692 been replaced with a choice of options that allows to select
3693 between various VFP versions/capabilities.
3694
Samuel Martinba8f82b2013-08-30 06:08:59 +02003695config BR2_PACKAGE_GCC_TARGET
3696 bool "gcc on the target filesystem has been removed"
3697 select BR2_LEGACY
3698 help
3699 The support for gcc in the target filesystem was deprecated
3700 since a while, and has been removed completely from Buildroot.
3701 See Buildroot's documentation for more explanations.
3702
3703config BR2_HAVE_DEVFILES
3704 bool "development files in target filesystem has been removed"
3705 select BR2_LEGACY
3706 help
3707 The installation of the development files in the target
3708 filesystem was deprecated since a while, and has been removed
3709 completely from Buildroot.
3710 See Buildroot's documentation for more explanations.
3711
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00003712endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02003713
3714endif # !SKIP_LEGACY