blob: 9743ebd08f211a1f18fc664c53e94d1d9c2ce021 [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###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200146comment "Legacy options removed in 2018.08"
147
Adam Duskett3f2aef52018-06-24 00:35:22 +0200148config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
149 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
150 select BR2_LEGACY
151 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
152 help
153 The opengl option has been moved from gst1-plugins-bad to
154 gst1-plugins-base.
155
156config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
157 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
158 select BR2_LEGACY
159 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
160 help
161 The gles2 option has been moved from gst1-plugins-bad to
162 gst1-plugins-base.
163
164config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
165 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
166 select BR2_LEGACY
167 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
168 help
169 The glx option has been moved from gst1-plugins-bad to
170 gst1-plugins-base.
171
172config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
173 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
174 select BR2_LEGACY
175 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
176 help
177 The egl option has been moved from gst1-plugins-bad to
178 gst1-plugins-base.
179
180config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
181 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
182 select BR2_LEGACY
183 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
184 help
185 The x11 option has been moved from gst1-plugins-bad to
186 gst1-plugins-base.
187
188config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
189 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
190 select BR2_LEGACY
191 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
192 help
193 The wayland option has been moved from gst1-plugins-bad to
194 gst1-plugins-base.
195
196config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
197 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
198 select BR2_LEGACY
199 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
200 help
201 The dispmanx option has been moved from gst1-plugins-mad to
202 gst1-plugins-base.
203
204config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
205 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
206 select BR2_LEGACY
207 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
208 help
209 The audiomixer option has been moved from gst1-plugins-bad to
210 gst1-plugins-base.
211
212config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
213 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
214 select BR2_LEGACY
215 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
216 help
217 The lame option has been moved from gst1-plugins-ugly to
218 gst1-plugins-good.
219
220config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
221 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
222 select BR2_LEGACY
223 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
224 help
225 The mpg123 option has been moved from gst1-plugins-ugly to
226 gst1-plugins-good.
227
Romain Naourbae35c82018-06-24 15:53:10 +0200228config BR2_GDB_VERSION_7_11
229 bool "gdb 7.11 has been removed"
230 select BR2_LEGACY
231 help
232 The 7.11 version of gdb has been removed. Use a newer version
233 instead.
234
Romain Naour54a2e7a2018-06-24 15:53:09 +0200235config BR2_GDB_VERSION_7_10
236 bool "gdb 7.10 has been removed"
237 select BR2_LEGACY
238 help
239 The 7.10 version of gdb has been removed. Use a newer version
240 instead.
241
242###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200243comment "Legacy options removed in 2018.05"
244
Petr Vorel8553b392018-05-13 21:07:36 +0200245config BR2_PACKAGE_MEDIAART_BACKEND_NONE
246 bool "libmediaart none backend option renamed"
247 select BR2_LEGACY
248 help
249 For consistency reasons, the option
250 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
251 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
252
253config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
254 bool "libmediaart gdk-pixbuf backend option renamed"
255 select BR2_LEGACY
256 help
257 For consistency reasons, the option
258 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
259 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
260
261config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
262 bool "libmediaart qt backend option renamed"
263 select BR2_LEGACY
264 help
265 For consistency reasons, the option
266 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
267 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
268
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200269# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
270# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200271config BR2_PACKAGE_TI_SGX_AM335X
272 bool "ti-sgx-km AM335X option renamed"
273 select BR2_LEGACY
274 help
275 For consistency reasons, the option
276 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
277 BR2_PACKAGE_TI_SGX_KM_AM335X.
278
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200279# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
280# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200281config BR2_PACKAGE_TI_SGX_AM437X
282 bool "ti-sgx-km AM437X option renamed"
283 select BR2_LEGACY
284 help
285 For consistency reasons, the option
286 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
287 BR2_PACKAGE_TI_SGX_KM_AM437X.
288
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200289# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
290# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200291config BR2_PACKAGE_TI_SGX_AM4430
292 bool "ti-sgx-km AM4430 option renamed"
293 select BR2_LEGACY
294 help
295 For consistency reasons, the option
296 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
297 BR2_PACKAGE_TI_SGX_KM_AM4430.
298
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200299# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
300# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200301config BR2_PACKAGE_TI_SGX_AM5430
302 bool "ti-sgx-km AM5430 option renamed"
303 select BR2_LEGACY
304 help
305 For consistency reasons, the option
306 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
307 BR2_PACKAGE_TI_SGX_KM_AM5430.
308
Thomas Petazzonia79df202018-05-13 21:07:34 +0200309config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
310 bool "janus-gateway audio-bridge option renamed"
311 select BR2_LEGACY
312 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
313 help
314 For consistency reasons, the janus-gateway option
315 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
316 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
317
318config BR2_PACKAGE_JANUS_ECHO_TEST
319 bool "janus-gateway echo-test option renamed"
320 select BR2_LEGACY
321 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
322 help
323 For consistency reasons, the janus-gateway option
324 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
325 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
326
327config BR2_PACKAGE_JANUS_RECORDPLAY
328 bool "janus-gateway recordplay option renamed"
329 select BR2_LEGACY
330 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
331 help
332 For consistency reasons, the janus-gateway option
333 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
334 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
335
336config BR2_PACKAGE_JANUS_SIP_GATEWAY
337 bool "janus-gateway sip-gateway option renamed"
338 select BR2_LEGACY
339 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
340 help
341 For consistency reasons, the janus-gateway option
342 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
343 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
344
345config BR2_PACKAGE_JANUS_STREAMING
346 bool "janus-gateway streaming option renamed"
347 select BR2_LEGACY
348 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
349 help
350 For consistency reasons, the janus-gateway option
351 BR2_PACKAGE_JANUS_STREAMING has been renamed to
352 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
353
354config BR2_PACKAGE_JANUS_TEXT_ROOM
355 bool "janus-gateway text-room option renamed"
356 select BR2_LEGACY
357 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
358 help
359 For consistency reasons, the janus-gateway option
360 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
361 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
362
363config BR2_PACKAGE_JANUS_VIDEO_CALL
364 bool "janus-gateway video-call option renamed"
365 select BR2_LEGACY
366 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
367 help
368 For consistency reasons, the janus-gateway option
369 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
370 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
371
372config BR2_PACKAGE_JANUS_VIDEO_ROOM
373 bool "janus-gateway video-room option renamed"
374 select BR2_LEGACY
375 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
376 help
377 For consistency reasons, the janus-gateway option
378 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
379 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
380
381config BR2_PACKAGE_JANUS_MQTT
382 bool "janus-gateway mqtt option renamed"
383 select BR2_LEGACY
384 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
385 help
386 For consistency reasons, the janus-gateway option
387 BR2_PACKAGE_JANUS_MQTT has been renamed to
388 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
389
390config BR2_PACKAGE_JANUS_RABBITMQ
391 bool "janus-gateway rabbitmq option renamed"
392 select BR2_LEGACY
393 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
394 help
395 For consistency reasons, the janus-gateway option
396 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
397 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
398
399config BR2_PACKAGE_JANUS_REST
400 bool "janus-gateway rest option renamed"
401 select BR2_LEGACY
402 select BR2_PACKAGE_JANUS_GATEWAY_REST
403 help
404 For consistency reasons, the janus-gateway option
405 BR2_PACKAGE_JANUS_REST has been renamed to
406 BR2_PACKAGE_JANUS_GATEWAY_REST.
407
408config BR2_PACKAGE_JANUS_UNIX_SOCKETS
409 bool "janus-gateway unix-sockets option renamed"
410 select BR2_LEGACY
411 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
412 help
413 For consistency reasons, the janus-gateway option
414 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
415 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
416
417config BR2_PACKAGE_JANUS_WEBSOCKETS
418 bool "janus-gateway websockets option renamed"
419 select BR2_LEGACY
420 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
421 help
422 For consistency reasons, the janus-gateway option
423 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
424 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
425
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200426config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
427 bool "ipsec-tools security context disable option renamed"
428 select BR2_LEGACY
429 help
430 For consistency reasons, the option
431 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
432 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
433
434config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
435 bool "ipsec-tools SELinux security context enable option renamed"
436 select BR2_LEGACY
437 help
438 For consistency reasons, the option
439 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
440 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
441
442config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
443 bool "ipsec-tools kernel security context enable option renamed"
444 select BR2_LEGACY
445 help
446 For consistency reasons, the option
447 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
448 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
449
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +0200450config BR2_PACKAGE_LIBTFDI_CPP
451 bool "libftdi C++ bindings option renamed"
452 select BR2_LEGACY
453 select BR2_PACKAGE_LIBFTDI_CPP
454 help
455 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
456 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
457 name.
458
Thomas Petazzoni94c14622018-05-13 21:07:31 +0200459config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
460 bool "jquery-ui-themes option black-tie renamed"
461 select BR2_LEGACY
462 help
463 For consistency reasons, the jquery-ui-themes option for the
464 black-tie theme has been renamed from
465 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
466 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
467
468config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
469 bool "jquery-ui-themes option blitzer renamed"
470 select BR2_LEGACY
471 help
472 For consistency reasons, the jquery-ui-themes option for the
473 blitzer theme has been renamed from
474 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
475 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
476
477config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
478 bool "jquery-ui-themes option cupertino renamed"
479 select BR2_LEGACY
480 help
481 For consistency reasons, the jquery-ui-themes option for the
482 cupertino theme has been renamed from
483 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
484 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
485
486config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
487 bool "jquery-ui-themes option dark-hive renamed"
488 select BR2_LEGACY
489 help
490 For consistency reasons, the jquery-ui-themes option for the
491 dark-hive theme has been renamed from
492 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
493 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
494
495config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
496 bool "jquery-ui-themes option dot-luv renamed"
497 select BR2_LEGACY
498 help
499 For consistency reasons, the jquery-ui-themes option for the
500 dot-luv theme has been renamed from
501 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
502 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
503
504config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
505 bool "jquery-ui-themes option eggplant renamed"
506 select BR2_LEGACY
507 help
508 For consistency reasons, the jquery-ui-themes option for the
509 eggplant theme has been renamed from
510 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
511 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
512
513config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
514 bool "jquery-ui-themes option excite-bike renamed"
515 select BR2_LEGACY
516 help
517 For consistency reasons, the jquery-ui-themes option for the
518 excite-bike theme has been renamed from
519 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
520 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
521
522config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
523 bool "jquery-ui-themes option flick renamed"
524 select BR2_LEGACY
525 help
526 For consistency reasons, the jquery-ui-themes option for the
527 flick theme has been renamed from
528 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
529 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
530
531config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
532 bool "jquery-ui-themes option hot-sneaks renamed"
533 select BR2_LEGACY
534 help
535 For consistency reasons, the jquery-ui-themes option for the
536 hot-sneaks theme has been renamed from
537 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
538 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
539
540config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
541 bool "jquery-ui-themes option humanity renamed"
542 select BR2_LEGACY
543 help
544 For consistency reasons, the jquery-ui-themes option for the
545 humanity theme has been renamed from
546 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
547 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
548
549config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
550 bool "jquery-ui-themes option le-frog renamed"
551 select BR2_LEGACY
552 help
553 For consistency reasons, the jquery-ui-themes option for the
554 le-frog theme has been renamed from
555 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
556 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
557
558config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
559 bool "jquery-ui-themes option mint-choc renamed"
560 select BR2_LEGACY
561 help
562 For consistency reasons, the jquery-ui-themes option for the
563 mint-choc theme has been renamed from
564 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
565 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
566
567config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
568 bool "jquery-ui-themes option overcast renamed"
569 select BR2_LEGACY
570 help
571 For consistency reasons, the jquery-ui-themes option for the
572 overcast theme has been renamed from
573 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
574 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
575
576config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
577 bool "jquery-ui-themes option pepper-grinder renamed"
578 select BR2_LEGACY
579 help
580 For consistency reasons, the jquery-ui-themes option for the
581 pepper-grinder theme has been renamed from
582 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
583 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
584
585config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
586 bool "jquery-ui-themes option redmond renamed"
587 select BR2_LEGACY
588 help
589 For consistency reasons, the jquery-ui-themes option for the
590 redmond theme has been renamed from
591 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
592 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
593
594config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
595 bool "jquery-ui-themes option smoothness renamed"
596 select BR2_LEGACY
597 help
598 For consistency reasons, the jquery-ui-themes option for the
599 smoothness theme has been renamed from
600 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
601 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
602
603config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
604 bool "jquery-ui-themes option south-street renamed"
605 select BR2_LEGACY
606 help
607 For consistency reasons, the jquery-ui-themes option for the
608 south-street theme has been renamed from
609 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
610 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
611
612config BR2_PACKAGE_JQUERY_UI_THEME_START
613 bool "jquery-ui-themes option start renamed"
614 select BR2_LEGACY
615 help
616 For consistency reasons, the jquery-ui-themes option for the
617 start theme has been renamed from
618 BR2_PACKAGE_JQUERY_UI_THEME_START to
619 BR2_PACKAGE_JQUERY_UI_THEMES_START.
620
621config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
622 bool "jquery-ui-themes option sunny renamed"
623 select BR2_LEGACY
624 help
625 For consistency reasons, the jquery-ui-themes option for the
626 sunny theme has been renamed from
627 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
628 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
629
630config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
631 bool "jquery-ui-themes option swanky-purse renamed"
632 select BR2_LEGACY
633 help
634 For consistency reasons, the jquery-ui-themes option for the
635 swanky-purse theme has been renamed from
636 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
637 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
638
639config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
640 bool "jquery-ui-themes option trontastic renamed"
641 select BR2_LEGACY
642 help
643 For consistency reasons, the jquery-ui-themes option for the
644 trontastic theme has been renamed from
645 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
646 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
647
648config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
649 bool "jquery-ui-themes option ui-darkness renamed"
650 select BR2_LEGACY
651 help
652 For consistency reasons, the jquery-ui-themes option for the
653 ui-darkness theme has been renamed from
654 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
655 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
656
657config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
658 bool "jquery-ui-themes option ui-lightness renamed"
659 select BR2_LEGACY
660 help
661 For consistency reasons, the jquery-ui-themes option for the
662 ui-lightness theme has been renamed from
663 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
664 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
665
666config BR2_PACKAGE_JQUERY_UI_THEME_VADER
667 bool "jquery-ui-themes option vader renamed"
668 select BR2_LEGACY
669 help
670 For consistency reasons, the jquery-ui-themes option for the
671 vader theme has been renamed from
672 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
673 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
674
Thomas Petazzonib2b874f2018-05-13 21:07:30 +0200675config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
676 bool "bluez5-utils health plugin option renamed"
677 select BR2_LEGACY
678 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
679 help
680 For consistency reasons, the option
681 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
682 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
683
684config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
685 bool "bluez5-utils midi plugin option renamed"
686 select BR2_LEGACY
687 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
688 help
689 For consistency reasons, the option
690 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
691 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
692
693config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
694 bool "bluez5-utils nfc plugin option renamed"
695 select BR2_LEGACY
696 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
697 help
698 For consistency reasons, the option
699 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
700 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
701
702config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
703 bool "bluez5-utils sap plugin option renamed"
704 select BR2_LEGACY
705 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
706 help
707 For consistency reasons, the option
708 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
709 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
710
711config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
712 bool "bluez5-utils sixaxis plugin option renamed"
713 select BR2_LEGACY
714 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
715 help
716 For consistency reasons, the option
717 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
718 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
719
Bernd Kuhls79a678d2018-05-02 08:05:40 +0200720config BR2_PACKAGE_TRANSMISSION_REMOTE
721 bool "transmission remote tool option removed"
722 select BR2_LEGACY
723 select BR2_PACKAGE_TRANSMISSION_DAEMON
724 help
725 Upstream does not provide a separate configure option for
726 the tool transmission-remote, it is built when the
727 transmission daemon has been enabled. Therefore, Buildroot
728 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
729 for you.
730
Fabrice Fontainef6421152018-05-07 00:09:01 +0200731config BR2_PACKAGE_LIBKCAPI_APPS
732 bool "libkcapi test applications removed"
733 select BR2_LEGACY
734 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
735 select BR2_PACKAGE_LIBKCAPI_RNGAPP
736 select BR2_PACKAGE_LIBKCAPI_SPEED
737 select BR2_PACKAGE_LIBKCAPI_TEST
738 help
739 Test applications (hasher, rng read, speed-test, test) now
740 have their own configuration options in the libkcapi menu.
741
Bernd Kuhlsdacb1762018-05-01 09:10:17 +0200742config BR2_PACKAGE_MPLAYER
743 bool "mplayer package removed"
744 select BR2_LEGACY
745 help
746 The mplayer package was removed.
747
748config BR2_PACKAGE_MPLAYER_MPLAYER
749 bool "mplayer package removed"
750 select BR2_LEGACY
751 help
752 The mplayer package was removed.
753
754config BR2_PACKAGE_MPLAYER_MENCODER
755 bool "mplayer package removed"
756 select BR2_LEGACY
757 help
758 The mplayer package was removed.
759
Bernd Kuhls3f449112018-05-01 09:10:14 +0200760config BR2_PACKAGE_LIBPLAYER_MPLAYER
761 bool "mplayer support in libplayer removed"
762 select BR2_LEGACY
763 help
764 The mplayer package was removed.
765
Thomas Petazzoni46444ba2018-04-04 18:00:09 +0200766config BR2_PACKAGE_IQVLINUX
767 bool "iqvlinux package removed"
768 select BR2_LEGACY
769 help
770 This package contained a kernel module from Intel, which
771 could only be used together with Intel userspace tools
772 provided under NDA, which also come with the same kernel
773 module. The copy of the kernel module available on
774 SourceForge is provided only to comply with the GPLv2
775 requirement. Intel engineers were even surprised it even
776 built and were not willing to make any effort to fix their
777 tarball naming to contain a version number. Therefore, it
778 does not make sense for Buildroot to provide such a package.
779
780 See https://sourceforge.net/p/e1000/bugs/589/ for the
781 discussion.
782
Thomas Petazzonie2ea4152018-04-05 21:50:18 +0200783config BR2_BINFMT_FLAT_SEP_DATA
784 bool "binfmt FLAT with separate code and data removed"
785 select BR2_LEGACY
786 help
787 This FLAT binary format was only used on Blackfin, which has
788 been removed.
789
Thomas Petazzoni325bb372018-04-05 21:50:17 +0200790config BR2_bfin
791 bool "Blackfin architecture support removed"
792 select BR2_LEGACY
793 help
794 Following the removal of Blackfin support for the upstream
795 Linux kernel, Buildroot has removed support for this CPU
796 architecture.
797
Bernd Kuhls9657e962018-04-01 15:58:08 +0200798config BR2_PACKAGE_KODI_ADSP_BASIC
799 bool "kodi-adsp-basic package removed"
800 select BR2_LEGACY
801 help
802 kodi-adsp-basic is unmaintained
803
804config BR2_PACKAGE_KODI_ADSP_FREESURROUND
805 bool "kodi-adsp-freesurround package removed"
806 select BR2_LEGACY
807 help
808 kodi-adsp-freesurround is unmaintained
809
810###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +0200811comment "Legacy options removed in 2018.02"
812
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +0100813config BR2_KERNEL_HEADERS_3_4
814 bool "kernel headers version 3.4.x are no longer supported"
815 select BR2_KERNEL_HEADERS_4_1
816 select BR2_LEGACY
817 help
818 Version 3.4.x of the Linux kernel headers are no longer
819 maintained upstream and are now removed. As an alternative,
820 version 4.1.x of the headers have been automatically
821 selected in your configuration.
822
823config BR2_KERNEL_HEADERS_3_10
824 bool "kernel headers version 3.10.x are no longer supported"
825 select BR2_KERNEL_HEADERS_4_1
826 select BR2_LEGACY
827 help
828 Version 3.10.x of the Linux kernel headers are no longer
829 maintained upstream and are now removed. As an alternative,
830 version 4.1.x of the headers have been automatically
831 selected in your configuration.
832
833config BR2_KERNEL_HEADERS_3_12
834 bool "kernel headers version 3.12.x are no longer supported"
835 select BR2_KERNEL_HEADERS_4_1
836 select BR2_LEGACY
837 help
838 Version 3.12.x of the Linux kernel headers are no longer
839 maintained upstream and are now removed. As an alternative,
840 version 4.1.x of the headers have been automatically
841 selected in your configuration.
842
Romain Naour453d29f2018-01-29 23:39:41 +0100843config BR2_BINUTILS_VERSION_2_27_X
844 bool "binutils version 2.27 support removed"
845 select BR2_LEGACY
846 help
847 Support for binutils version 2.27 has been removed. The
848 current default version (2.29 or later) has been selected
849 instead.
850
Baruch Siach55d79ed2018-01-02 08:16:01 +0200851config BR2_PACKAGE_EEPROG
852 bool "eeprog package removed"
853 select BR2_LEGACY
854 select BR2_PACKAGE_I2C_TOOLS
855 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
856 help
857 The eeprog program is now provided by the i2c-tools package.
858
Baruch Siach86dfb422017-11-14 14:02:38 +0200859config BR2_PACKAGE_GNUPG2_GPGV2
860 bool "gnupg2 gpgv2 option removed"
861 select BR2_LEGACY
862 select BR2_PACKAGE_GNUPG2_GPGV
863 help
864 The gpgv2 executable is now named gpgv. The config option
865 has been renamed accordingly.
866
Gary Bissonf7a7d942018-01-05 15:39:36 +0100867config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
868 bool "Vivante apitrace tool option removed"
869 select BR2_LEGACY
870 help
871 The apitrace tool for Vivante is not provided by the
872 imx-gpu-viv package any longer.
873
874config BR2_PACKAGE_IMX_GPU_VIV_G2D
875 bool "Vivante G2D libraries from imx-gpu-viv removed"
876 select BR2_LEGACY
877 select BR2_PACKAGE_IMX_GPU_G2D
878 help
879 The G2D libraries are now provided by the imx-gpu-g2d package.
880
Baruch Siach86dfb422017-11-14 14:02:38 +0200881###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -0300882comment "Legacy options removed in 2017.11"
883
Carlos Santos6c10e402017-10-21 20:30:18 -0200884config BR2_PACKAGE_RFKILL
885 bool "rfkill package removed"
886 select BR2_LEGACY
887 select BR2_PACKAGE_UTIL_LINUX
888 select BR2_PACKAGE_UTIL_LINUX_RFKILL
889 help
890 The rfkill program is now provided by the util-linux package.
891
Carlos Santosd4382002017-10-31 08:47:51 -0200892config BR2_PACKAGE_UTIL_LINUX_RESET
893 bool "util-linux reset option removed"
894 select BR2_LEGACY
895 help
896 The util-linux package no longer offers a "reset" command. Use
897 either the reset command provided by BusyBox or select ncurses
898 programs, which will install a symlink from "tset" to reset.
899
Adam Duskett9d6da7a2017-10-17 18:32:18 -0400900config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
901 bool "policycoreutils audit2allow option removed"
902 select BR2_LEGACY
903 select BR2_PACKAGE_SELINUX_PYTHON
904 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
905 help
906 The policycoreutils package no longer offers audit2allow
907 as a option. This package has been moved into the
908 selinux-python package by the SELinux maintainers.
909
910config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
911 bool "policycoreutils restorecond option removed"
912 select BR2_LEGACY
913 select BR2_PACKAGE_RESTORECOND
914 help
915 The policycoreutils package no longer offers restorecond
916 as a option. This package has been moved into a seperate
917 package maintained by the SELinux maintainers.
918
919config BR2_PACKAGE_SEPOLGEN
920 bool "sepolgen package has been removed"
921 select BR2_LEGACY
922 select BR2_PACKAGE_SELINUX_PYTHON
923 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
924 help
925 Sepolgen is no longer a individual package, but instead has
926 been moved into the selinux-python package by the SELinux
927 maintainers.
928
Bernd Kuhls49a9fb02017-09-16 17:15:35 +0200929config BR2_PACKAGE_OPENOBEX_BLUEZ
930 bool "openobex bluez option removed"
931 select BR2_LEGACY
932 select BR2_PACKAGE_BLUEZ_UTILS
933 help
934 The OpenOBEX package no longer offers an option to enable or
935 disable BlueZ support. Instead, BlueZ support is always
936 included when the bluez5_utils or bluez_utils package is
937 selected.
938
939config BR2_PACKAGE_OPENOBEX_LIBUSB
940 bool "openobex libusb option removed"
941 select BR2_LEGACY
942 select BR2_PACKAGE_LIBUSB
943 help
944 The OpenOBEX package no longer offers an option to enable or
945 disable libusb support. Instead, USB support is always
946 included when the libusb package is selected.
947
948config BR2_PACKAGE_OPENOBEX_APPS
949 bool "openobex apps option removed"
950 select BR2_LEGACY
951 help
952 The OpenOBEX package no longer offers an option to enable or
953 disable apps support.
954
955config BR2_PACKAGE_OPENOBEX_SYSLOG
956 bool "openobex syslog option removed"
957 select BR2_LEGACY
958 help
959 The OpenOBEX package no longer offers an option to enable or
960 disable syslog support.
961
962config BR2_PACKAGE_OPENOBEX_DUMP
963 bool "openobex dump option removed"
964 select BR2_LEGACY
965 help
966 The OpenOBEX package no longer offers an option to enable or
967 disable dump support.
968
Alexander Mukhinfca70382017-09-10 13:21:34 +0300969config BR2_PACKAGE_AICCU
970 bool "aiccu utility removed"
971 select BR2_LEGACY
972 help
973 As the SixXS project has ceased its operation on 2017-06-06,
974 the AICCU utility has no use anymore and has been removed.
975
976 https://www.sixxs.net/sunset/
977
Carlos Santosf52af612017-09-01 21:41:38 -0300978config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
979 bool "util-linux login utilities option removed"
980 select BR2_LEGACY
981 select BR2_PACKAGE_UTIL_LINUX_LAST
982 select BR2_PACKAGE_UTIL_LINUX_LOGIN
983 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
984 select BR2_PACKAGE_UTIL_LINUX_SU
985 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
986 help
987 Login utilities (last, login, runuser, su, sulogin) now have
988 their own configuration options in the util-linux menu.
989
990###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +0200991comment "Legacy options removed in 2017.08"
992
Yann E. MORIN144dc9c2017-08-11 18:05:08 +0200993config BR2_TARGET_GRUB
994 bool "grub (aka grub-legacy) has been removed"
995 select BR2_LEGACY
996 help
997 grub-legacy is no longer maintained, and no longer builds with
998 recent binutils versions.
999
1000 Use grub2 or syslinux instead.
1001
Bin Meng20db0982017-08-30 08:55:25 -07001002config BR2_PACKAGE_SIMICSFS
1003 bool "simicsfs support removed"
1004 select BR2_LEGACY
1005 help
1006 Support for simicsfs kernel driver that provides access to a
1007 host computer's local filesystem when the target is
1008 executing within a SIMICS simulation has been removed.
1009
1010 Simics is now moving away from the simicsfs kernel module,
1011 as the kernel module has required too much maintenance
1012 work. Users should move to the user mode Simics agent
1013 instead.
1014
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001015config BR2_BINUTILS_VERSION_2_26_X
1016 bool "binutils version 2.26 support removed"
1017 select BR2_LEGACY
1018 help
1019 Support for binutils version 2.26 has been removed. The
1020 current default version (2.28 or later) has been selected
1021 instead.
1022
Yann E. MORINb3b60702017-07-09 05:21:56 -07001023config BR2_XTENSA_OVERLAY_DIR
1024 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001025 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001026 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1027 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1028 path to the overlay file, not to the directory containing
1029 it.
1030
1031config BR2_XTENSA_OVERLAY_DIR_WRAP
1032 bool
1033 default y if BR2_XTENSA_OVERLAY_DIR != ""
1034 select BR2_LEGACY
1035
1036config BR2_XTENSA_CUSTOM_NAME
1037 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1038 help
1039 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001040
1041config BR2_XTENSA_CUSTOM_NAME_WRAP
1042 bool
1043 default y if BR2_XTENSA_CUSTOM_NAME != ""
1044 select BR2_LEGACY
1045
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001046config BR2_PACKAGE_HOST_MKE2IMG
1047 bool "host mke2img has been removed"
1048 select BR2_LEGACY
1049 help
1050 We now call mkfs directly to generate ext2/3/4 filesystem
1051 image, so mke2img is no longer necessary.
1052
Samuel Martinbee9e882017-07-09 07:00:38 +02001053config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1054 int "exact size in blocks has been removed"
1055 default 0
1056 help
1057 This option has been removed in favor of
1058 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1059 to the value you had before. Set to 0 here to remove the
1060 warning.
1061
1062config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1063 bool
1064 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1065 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1066 select BR2_LEGACY
1067
1068# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1069
Samuel Martin235b6f12017-07-04 16:47:25 +02001070config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1071 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1072 default 0
1073 help
1074 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1075 images. It now automatically selects the number of inodes
1076 based on the image size. The extra number of inodes can no
1077 longer be provided; instead, provide the total number of
1078 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1079
1080config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1081 bool
1082 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1083 select BR2_LEGACY
1084
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001085config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1086 bool "cdxaparse removed"
1087 select BR2_LEGACY
1088
1089config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1090 bool "dataurisrc moved to gstreamer1"
1091 select BR2_LEGACY
1092 help
1093 Dataurisrc has moved to gstreamer core and is always built.
1094
1095config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1096 bool "dccp removed"
1097 select BR2_LEGACY
1098
1099config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1100 bool "hdvparse removed"
1101 select BR2_LEGACY
1102
1103config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1104 bool "mve removed"
1105 select BR2_LEGACY
1106
1107config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1108 bool "nuvdemux removed"
1109 select BR2_LEGACY
1110
1111config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1112 bool "patchdetect removed"
1113 select BR2_LEGACY
1114
1115config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1116 bool "sdi removed"
1117 select BR2_LEGACY
1118
1119config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1120 bool "tta removed"
1121 select BR2_LEGACY
1122
1123config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1124 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001125 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001126 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001127 help
1128 videomeasure plugin has been removed and has been replaced by
1129 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001130
1131config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1132 bool "apexsink removed"
1133 select BR2_LEGACY
1134
1135config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1136 bool "sdl removed"
1137 select BR2_LEGACY
1138
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001139config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1140 bool "mad (*.mp3 audio) removed"
1141 select BR2_LEGACY
1142
Thomas Petazzoni4c06d242017-07-04 10:11:54 +02001143config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
1144 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
1145 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
1146 select BR2_LEGACY
1147 help
1148 The WebRTC plugin in GStreamer 1.x has always been named
1149 webrtcdsp, but was wrongly introduced in Buildroot under the
1150 name webrtc. Therefore, we have renamed the option to match
1151 the actual name of the GStreamer plugin.
1152
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001153config BR2_STRIP_none
1154 bool "Strip command 'none' has been removed"
1155 select BR2_LEGACY
1156 help
1157 The strip command choice has been changed into a single
1158 boolean option. Please check that the new setting is
1159 correct (in the "Build options" sub-menu)
1160
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001161config BR2_PACKAGE_BEECRYPT_CPP
1162 bool "C++ support removed in beecrypt"
1163 select BR2_LEGACY
1164 help
1165 Support for C++ depends on icu. The beecrypt package is
1166 incompatible with icu 59+.
1167
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001168config BR2_PACKAGE_SPICE_CLIENT
1169 bool "spice client support removed"
1170 select BR2_LEGACY
1171 help
1172 Spice client support has been removed upstream. The
1173 functionality now lives in the spice-gtk widget and
1174 virt-viewer.
1175
1176config BR2_PACKAGE_SPICE_GUI
1177 bool "spice gui support removed"
1178 select BR2_LEGACY
1179 help
1180 Spice gui support has been removed upstream. The
1181 functionality now lives in the spice-gtk widget and
1182 virt-viewer.
1183
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001184config BR2_PACKAGE_SPICE_TUNNEL
1185 bool "spice network redirection removed"
1186 select BR2_LEGACY
1187 help
1188 Spice network redirection, aka tunnelling has been removed
1189 upstream.
1190
Koen Martens438b2d12017-06-20 20:54:49 +02001191config BR2_PACKAGE_INPUT_TOOLS
1192 bool "input-tools removed"
1193 select BR2_LEGACY
1194 select BR2_PACKAGE_LINUXCONSOLETOOLS
1195 help
1196 input-tools has been removed, it is replaced by
1197 linuxconsoletools, which has automatically been enabled.
1198
1199config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1200 bool "inputattach moved to linuxconsoletools"
1201 select BR2_LEGACY
1202 select BR2_PACKAGE_LINUXCONSOLETOOLS
1203 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1204 help
1205 input-tools has been removed, inputattach is now part
1206 of linuxconsoletools, which has automatically been
1207 enabled.
1208
1209config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1210 bool "jscal moved to linuxconsoletools"
1211 select BR2_LEGACY
1212 select BR2_PACKAGE_LINUXCONSOLETOOLS
1213 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1214 help
1215 input-tools has been removed, jscal is now part
1216 of linuxconsoletools, which has automatically been
1217 enabled.
1218
1219config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1220 bool "jstest moved to linuxconsoletools"
1221 select BR2_LEGACY
1222 select BR2_PACKAGE_LINUXCONSOLETOOLS
1223 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1224 help
1225 input-tools has been removed, jstest is now part
1226 of linuxconsoletools, which has automatically been
1227 enabled.
1228
Baruch Siach6510a822017-06-16 06:32:48 +03001229config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1230 bool "SH Sourcery toolchain has been removed"
1231 select BR2_LEGACY
1232 help
1233 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001234 been removed, since it uses glibc older than 2.17 that
1235 requires -lrt to link executables using clock_* system calls.
1236 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001237
Baruch Siach06cac642017-06-16 06:32:47 +03001238config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1239 bool "x86 Sourcery toolchain has been removed"
1240 select BR2_LEGACY
1241 help
1242 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001243 been removed, since it uses glibc older than 2.17 that
1244 requires -lrt to link executables using clock_* system calls.
1245 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001246
Romain Naourf6695212017-05-23 22:24:40 +02001247config BR2_GCC_VERSION_4_8_X
1248 bool "gcc 4.8.x support removed"
1249 select BR2_LEGACY
1250 help
1251 Support for gcc version 4.8.x has been removed. The current
1252 default version (5.x or later) has been selected instead.
1253
1254###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001255comment "Legacy options removed in 2017.05"
1256
Romain Naour95426af2017-02-21 22:43:16 +01001257config BR2_PACKAGE_SUNXI_MALI_R2P4
1258 bool "sunxi-mali r2p4 removed"
1259 select BR2_LEGACY
1260 help
1261 sunxi-mali libMali for r2p4 Mali kernel module has been
1262 removed since the libump package only provides libUMP.so.3.
1263 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1264
Martin Barkd999a7f2017-05-06 14:19:13 +01001265config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1266 bool "CoffeeScript option has been removed"
1267 select BR2_LEGACY
1268 help
1269 The option to enable NodeJS CoffeeScript has been removed.
1270 To continue using it, add "coffee-script" to
1271 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1272
Martin Bark096f8b12017-05-06 14:19:12 +01001273config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1274 bool "Express web application framework option has been removed"
1275 select BR2_LEGACY
1276 help
1277 The option to enable the NodeJS Express web application
1278 framework has been removed. To continue using it, add
1279 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1280
Baruch Siach0364d442017-05-01 15:59:41 +03001281config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1282 bool "bluez5_utils gatttool install option removed"
1283 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1284 help
1285 The option to install gatttool specifically has been removed.
1286 Since version 5.44 gatttool is in the list of deprecated
1287 tools. The option to build and install deprecated tools has
1288 been automatically enabled.
1289
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001290config BR2_PACKAGE_OPENOCD_FT2XXX
1291 bool "openocd ft2232 support has been removed"
1292 select BR2_PACKAGE_OPENOCD_FTDI
1293 select BR2_LEGACY
1294 help
1295 FT2232 support in OpenOCD has been removed, it's replaced by
1296 FDTI support, which has automatically been enabled.
1297
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001298config BR2_PACKAGE_KODI_RTMPDUMP
1299 bool "kodi rtmp has been removed"
1300 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001301 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001302 help
1303 Internal rtmp support was removed from Kodi.
1304
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001305config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1306 bool "kodi-visualisation-fountain has been removed"
1307 select BR2_LEGACY
1308 help
1309 According to upstream 'the visualization is not currently
1310 in a working shape.'
1311
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001312config BR2_PACKAGE_PORTMAP
1313 bool "portmap has been removed"
1314 select BR2_LEGACY
1315 select BR2_PACKAGE_RPCBIND
1316 help
1317 The portmap upstream tarball is removed, no releases since
1318 ten years and latest change in upstream git in 2014.
1319 You should better use rpcbind as a RPC portmapper.
1320
Thomas Petazzoni58472912017-04-03 22:28:21 +02001321config BR2_BINUTILS_VERSION_2_25_X
1322 bool "binutils version 2.25 support removed"
1323 select BR2_LEGACY
1324 help
1325 Support for binutils version 2.25 has been removed. The
1326 current default version (2.27 or later) has been selected
1327 instead.
1328
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001329config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1330 bool "uclibc RPC support has been removed"
1331 select BR2_LEGACY
1332 help
1333 uClibc-ng removed internal RPC implementation in 1.0.23. You
1334 should use libtirpc instead.
1335
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001336config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1337 int "extra size in blocks has been removed"
1338 default 0
1339 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001340 Since the support for auto calculation of the filesystem size
1341 has been removed, this option is now useless and must be 0.
1342 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1343 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001344
1345config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1346 bool
1347 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1348 select BR2_LEGACY
1349
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001350config BR2_PACKAGE_SYSTEMD_KDBUS
1351 bool "systemd-kdbus has been removed"
1352 select BR2_LEGACY
1353 help
1354 --enable/disable-kdbus configure option has been removed since
1355 systemd-231.
1356
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001357config BR2_PACKAGE_POLARSSL
1358 bool "polarssl has been removed"
1359 select BR2_LEGACY
1360 help
1361 The polarssl crypto library has been removed since the 1.2.x
1362 release branch is no longer maintained. Newer upstream
1363 branches/releases (mbedtls) have API changes so they're not
1364 drop-in replacements.
1365
Yann E. MORIN61551182017-03-12 10:58:15 +01001366config BR2_NBD_CLIENT
1367 bool "nbd client option was renamed"
1368 select BR2_LEGACY
1369 select BR2_PACKAGE_NBD_CLIENT
1370 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001371 The nbd client option has been renamed to
1372 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001373
1374config BR2_NBD_SERVER
1375 bool "nbd server option was renamed"
1376 select BR2_LEGACY
1377 select BR2_PACKAGE_NBD_SERVER
1378 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001379 The nbd server option has been renamed to
1380 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001381
Carlos Santos6a9c6312017-02-14 09:05:16 -02001382config BR2_PACKAGE_GMOCK
1383 bool "gmock merged into gtest package"
1384 select BR2_LEGACY
1385 select BR2_PACKAGE_GTEST
1386 select BR2_PACKAGE_GTEST_GMOCK
1387 help
1388 GMock is now a suboption of the GTest package.
1389
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001390config BR2_KERNEL_HEADERS_4_8
1391 bool "kernel headers version 4.8.x are no longer supported"
1392 select BR2_KERNEL_HEADERS_4_4
1393 select BR2_LEGACY
1394 help
1395 Version 4.8.x of the Linux kernel headers are no longer
1396 maintained upstream and are now removed. As an alternative,
1397 version 4.4.x of the headers have been automatically
1398 selected in your configuration.
1399
1400config BR2_KERNEL_HEADERS_3_18
1401 bool "kernel headers version 3.18.x are no longer supported"
1402 select BR2_KERNEL_HEADERS_3_12
1403 select BR2_LEGACY
1404 help
1405 Version 3.18.x of the Linux kernel headers are no longer
1406 maintained upstream and are now removed. As an alternative,
1407 version 3.12.x of the headers have been automatically
1408 selected in your configuration.
1409
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001410config BR2_GLIBC_VERSION_2_22
1411 bool "glibc 2.22 removed"
1412 select BR2_LEGACY
1413 help
1414 Support for glibc version 2.22 has been removed. The current
1415 default version has been selected instead.
1416
1417###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001418comment "Legacy options removed in 2017.02"
1419
Francois Perrad8546ff32016-12-26 15:50:35 +01001420config BR2_PACKAGE_PERL_DB_FILE
1421 bool "perl-db-file removed"
1422 select BR2_LEGACY
1423 select BR2_PACKAGE_BERKELEYDB
1424 select BR2_PACKAGE_PERL
1425 help
1426 DB_File can be built as a core Perl module, so the separate
1427 perl-db-file package has been removed.
1428
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001429config BR2_KERNEL_HEADERS_4_7
1430 bool "kernel headers version 4.7.x are no longer supported"
1431 select BR2_KERNEL_HEADERS_4_4
1432 select BR2_LEGACY
1433 help
1434 Version 4.7.x of the Linux kernel headers are no longer
1435 maintained upstream and are now removed. As an alternative,
1436 version 4.4.x of the headers have been automatically
1437 selected in your configuration.
1438
1439config BR2_KERNEL_HEADERS_4_6
1440 bool "kernel headers version 4.6.x are no longer supported"
1441 select BR2_KERNEL_HEADERS_4_4
1442 select BR2_LEGACY
1443 help
1444 Version 4.6.x of the Linux kernel headers are no longer
1445 maintained upstream and are now removed. As an alternative,
1446 version 4.4.x of the headers have been automatically
1447 selected in your configuration.
1448
1449config BR2_KERNEL_HEADERS_4_5
1450 bool "kernel headers version 4.5.x are no longer supported"
1451 select BR2_KERNEL_HEADERS_4_4
1452 select BR2_LEGACY
1453 help
1454 Version 4.5.x of the Linux kernel headers are no longer
1455 maintained upstream and are now removed. As an alternative,
1456 version 4.4.x of the headers have been automatically
1457 selected in your configuration.
1458
1459config BR2_KERNEL_HEADERS_3_14
1460 bool "kernel headers version 3.14.x are no longer supported"
1461 select BR2_KERNEL_HEADERS_3_12
1462 select BR2_LEGACY
1463 help
1464 Version 3.14.x of the Linux kernel headers are no longer
1465 maintained upstream and are now removed. As an alternative,
1466 version 3.12.x of the headers have been automatically
1467 selected in your configuration.
1468
Romain Naour63abbcc2016-12-16 16:29:45 +01001469config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1470 bool "musl-cross 1.1.12 toolchain removed"
1471 select BR2_LEGACY
1472 help
1473 The support for the prebuilt toolchain based on the Musl C
1474 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001475 Upstream doesn't provide any prebuilt toolchain anymore, use
1476 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01001477
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01001478config BR2_UCLIBC_INSTALL_TEST_SUITE
1479 bool "uClibc tests now in uclibc-ng-test"
1480 select BR2_LEGACY
1481 select BR2_PACKAGE_UCLIBC_NG_TEST
1482 help
1483 The test suite of the uClibc C library has been moved into a
1484 separate package, uclibc-ng-test.
1485
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01001486config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1487 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1488 select BR2_LEGACY
1489 help
1490 The ADI Blackfin toolchain has many bugs which are fixed in
1491 more recent gcc and uClibc-ng releases. Use the Buildroot
1492 toolchain instead.
1493
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01001494config BR2_PACKAGE_MAKEDEVS
1495 bool "makedevs removed"
1496 select BR2_LEGACY
1497 help
1498 The makedevs tool is part of busybox. The Buildroot fork
1499 should not be used outside of the Buildroot infrastructure.
1500
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01001501config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1502 bool "Arago ARMv7 2011.09 removed"
1503 select BR2_LEGACY
1504 help
1505 The Arago toolchains are every old and not updated anymore.
1506
1507config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1508 bool "Arago ARMv5 2011.09 removed"
1509 select BR2_LEGACY
1510 help
1511 The Arago toolchains are every old and not updated anymore.
1512
Thomas Petazzonied364d12016-11-05 14:32:38 +01001513config BR2_PACKAGE_SNOWBALL_HDMISERVICE
1514 bool "snowball-hdmiservice removed"
1515 select BR2_LEGACY
1516 help
1517 We no longer have support for the Snowball platform in
1518 Buildroot, so this package was no longer useful.
1519
1520config BR2_PACKAGE_SNOWBALL_INIT
1521 bool "snowball-init removed"
1522 select BR2_LEGACY
1523 help
1524 We no longer have support for the Snowball platform in
1525 Buildroot, so this package was no longer useful.
1526
Jörg Krause69aa0572016-12-14 14:40:58 +01001527config BR2_GDB_VERSION_7_9
1528 bool "gdb 7.9 has been removed"
1529 select BR2_LEGACY
1530 help
1531 The 7.9 version of gdb has been removed. Use a newer version
1532 instead.
1533
Thomas Petazzonied364d12016-11-05 14:32:38 +01001534###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02001535comment "Legacy options removed in 2016.11"
1536
Fabrice Fontainec4572132016-09-12 23:31:07 +02001537config BR2_PACKAGE_PHP_SAPI_CLI_CGI
1538 bool "PHP CGI and CLI options are now seperate"
1539 select BR2_PACKAGE_PHP_SAPI_CLI
1540 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001541 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001542 help
1543 The PHP Interface options have been split up into a
1544 separate option for each interface.
1545
1546config BR2_PACKAGE_PHP_SAPI_CLI_FPM
1547 bool "PHP CLI and FPM options are now separate"
1548 select BR2_PACKAGE_PHP_SAPI_CLI
1549 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001550 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001551 help
1552 The PHP Interface options have been split up into a
1553 separate option for each interface.
1554
Arnout Vandecappelle35343992016-10-15 16:51:06 +02001555config BR2_PACKAGE_WVSTREAMS
1556 bool "wvstreams removed"
1557 select BR2_LEGACY
1558 help
1559 wvstreams is not maintained anymore since about 2009. It also
1560 doesn't build anymore with recent compilers (GCC 5+).
1561
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02001562config BR2_PACKAGE_WVDIAL
1563 bool "wvdial removed"
1564 select BR2_LEGACY
1565 help
1566 wvdial is not maintained anymore since about 2009. It also
1567 doesn't build anymore with recent compilers (GCC 5+).
1568
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02001569config BR2_PACKAGE_WEBKITGTK24
1570 bool "webkitgtk 2.4.x removed"
1571 select BR2_LEGACY
1572 help
1573 This legacy package only existed because some other packages
1574 depended on that specific version of webkitgtk. However, the
1575 other packages have been fixed. webkitgtk 2.4 is full of
1576 security issues so it needs to be removed.
1577
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02001578config BR2_PACKAGE_TORSMO
1579 bool "torsmo removed"
1580 select BR2_LEGACY
1581 help
1582 torsmo has been unmaintained for a long time, and nobody
1583 seems to be interested in it.
1584
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02001585config BR2_PACKAGE_SSTRIP
1586 bool "sstrip removed"
1587 select BR2_LEGACY
1588 help
1589 sstrip is unmaintained and potentially harmful. It doesn't
1590 save so much compared to normal binutils strip, and there is
1591 a big risk of binaries that don't work. Use normal strip
1592 instead.
1593
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001594config BR2_KERNEL_HEADERS_4_3
1595 bool "kernel headers version 4.3.x are no longer supported"
1596 select BR2_KERNEL_HEADERS_4_1
1597 select BR2_LEGACY
1598 help
1599 Version 4.3.x of the Linux kernel headers are no longer
1600 maintained upstream and are now removed. As an alternative,
1601 version 4.1.x of the headers have been automatically
1602 selected in your configuration.
1603
1604config BR2_KERNEL_HEADERS_4_2
1605 bool "kernel headers version 4.2.x are no longer supported"
1606 select BR2_KERNEL_HEADERS_4_1
1607 select BR2_LEGACY
1608 help
1609 Version 4.2.x of the Linux kernel headers are no longer
1610 maintained upstream and are now removed. As an alternative,
1611 version 4.1.x of the headers have been automatically
1612 selected in your configuration.
1613
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001614config BR2_PACKAGE_KODI_ADDON_XVDR
1615 bool "kodi-addon-xvdr removed"
1616 select BR2_LEGACY
1617 help
1618 According to the github project page:
1619 https://github.com/pipelka/xbmc-addon-xvdr
1620 this package is discontinued.
1621
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001622config BR2_PACKAGE_IPKG
1623 bool "ipkg removed"
1624 select BR2_LEGACY
1625 help
1626 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001627 handhelds.org project and it hasn't seen development since
1628 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001629
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02001630config BR2_GCC_VERSION_4_7_X
1631 bool "gcc 4.7.x support removed"
1632 select BR2_LEGACY
1633 help
1634 Support for gcc version 4.7.x has been removed. The current
1635 default version (4.9.x or later) has been selected instead.
1636
Arnout Vandecappelled8878112016-10-15 16:50:57 +02001637config BR2_BINUTILS_VERSION_2_24_X
1638 bool "binutils version 2.24 support removed"
1639 select BR2_LEGACY
1640 help
1641 Support for binutils version 2.24 has been removed. The
1642 current default version (2.26 or later) has been selected
1643 instead.
1644
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03001645config BR2_PACKAGE_WESTON_RPI
1646 bool "Weston propietary RPI support is gone"
1647 select BR2_LEGACY
1648 help
1649 Upstream decided the propietary (rpi-userland) weston composer
1650 support wasn't worth the effort so it was removed. Switch to
1651 the open VC4 support.
1652
Yann E. MORIN20b14462016-09-06 16:29:14 +02001653config BR2_LINUX_KERNEL_TOOL_CPUPOWER
1654 bool "linux-tool cpupower"
1655 depends on BR2_LINUX_KERNEL
1656 select BR2_LEGACY
1657 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
1658 help
1659 Linux tool cpupower option was renamed.
1660
1661config BR2_LINUX_KERNEL_TOOL_PERF
1662 bool "linux-tool perf"
1663 depends on BR2_LINUX_KERNEL
1664 select BR2_LEGACY
1665 select BR2_PACKAGE_LINUX_TOOLS_PERF
1666 help
1667 Linux tool perf option was renamed.
1668
1669config BR2_LINUX_KERNEL_TOOL_SELFTESTS
1670 bool "linux-tool selftests"
1671 depends on BR2_LINUX_KERNEL
1672 select BR2_LEGACY
1673 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
1674 help
1675 Linux tool selftests option was renamed.
1676
Thomas Petazzoni50332a52016-08-11 15:25:38 +02001677config BR2_GCC_VERSION_4_8_ARC
1678 bool "gcc arc option renamed"
1679 select BR2_LEGACY
1680 select BR2_GCC_VERSION_ARC
1681 help
1682 The option that selects the gcc version for the ARC
1683 architecture has been renamed to BR2_GCC_VERSION_ARC.
1684
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001685config BR2_KERNEL_HEADERS_4_0
1686 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001687 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001688 select BR2_LEGACY
1689 help
1690 Version 4.0.x of the Linux kernel headers have been deprecated
1691 for more than four buildroot releases and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001692 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001693 automatically selected in your configuration.
1694
1695config BR2_KERNEL_HEADERS_3_19
1696 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001697 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001698 select BR2_LEGACY
1699 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001700 Version 3.19.x of the Linux kernel headers have been
1701 deprecated for more than four buildroot releases and are now
1702 removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001703 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001704 automatically selected in your configuration.
1705
Romain Naour0e517312016-09-02 22:31:32 +02001706config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
1707 bool "libevas-generic-loaders package removed"
1708 select BR2_LEGACY
1709 select BR2_PACKAGE_EFL
1710 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001711 With EFL 1.18, libevas-generic-loaders is now provided by the
1712 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02001713
Romain Naourc22b7582016-09-02 22:31:31 +02001714config BR2_PACKAGE_ELEMENTARY
1715 bool "elementary package removed"
1716 select BR2_LEGACY
1717 select BR2_PACKAGE_EFL
1718 help
1719 With EFL 1.18, elementary is now provided by the efl package.
1720
Yann E. MORINe782cd52016-08-28 01:03:04 +02001721config BR2_LINUX_KERNEL_CUSTOM_LOCAL
1722 bool "Linux kernel local directory option removed"
1723 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001724 The option to select a local directory as the source of the
1725 Linux kernel has been removed. It hurts reproducibility of
1726 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02001727
1728 In case you were using this option during development of your
1729 Linux kernel, use the override mechanism instead.
1730
1731###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001732comment "Legacy options removed in 2016.08"
1733
Arnout Vandecappelleac191072017-03-08 00:50:54 +01001734config BR2_PACKAGE_EFL_JP2K
1735 bool "libevas jp2k loader has been removed"
1736 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01001737 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01001738 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
1739 while Buildroot only packages openjpeg 2.x. Therefore, the
1740 JP2K loader has been removed from EFL.
1741
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001742config BR2_PACKAGE_SYSTEMD_COMPAT
1743 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02001744 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001745 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02001746 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02001747 been removed. Theses libraries have been useless since a few
1748 version, and have been fully dropped from the source since
1749 v230.
1750
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02001751config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
1752 bool "gst1-plugins-bad liveadder plugin removed"
1753 select BR2_LEGACY
1754 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
1755 help
1756 The functionality of the liveadder plugin of the
1757 gst1-plugins-bad package has been merged into audiomixer.
1758
Andrew Webster0f92b192016-06-10 14:13:29 -04001759config BR2_PACKAGE_LIBFSLVPUWRAP
1760 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
1761 select BR2_LEGACY
1762 select BR2_PACKAGE_IMX_VPUWRAP
1763 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001764 The libfslvpuwrap has been renamed to match the renamed
1765 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04001766
Andrew Webster64998902016-06-10 14:13:18 -04001767config BR2_PACKAGE_LIBFSLPARSER
1768 bool "libfslparser has been renamed to imx-parser"
1769 select BR2_LEGACY
1770 select BR2_PACKAGE_IMX_PARSER
1771 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001772 The libfslparser has been renamed to match the renamed
1773 package.
Andrew Webster64998902016-06-10 14:13:18 -04001774
Andrew Webster47e62032016-06-10 14:13:05 -04001775config BR2_PACKAGE_LIBFSLCODEC
1776 bool "libfslcodec has been renamed to imx-codec"
1777 select BR2_LEGACY
1778 select BR2_PACKAGE_IMX_CODEC
1779 help
1780 The libfslcodec has been renamed to match the renamed package.
1781
Carlos Santosb5d99002016-06-03 16:35:39 -03001782config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
1783 bool "FIT support in uboot-tools has been refactored"
1784 select BR2_LEGACY
1785 select BR2_PACKAGE_DTC
1786 select BR2_PACKAGE_DTC_PROGRAMS
1787 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
1788 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
1789 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
1790 help
1791 This option has been removed in favor of a more fine-grained
1792 configuration, which is recommended. Selecting this option
1793 enables FIT and FIT signature support for the target packages.
1794 It will also select the dtc and openssl packages.
1795
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02001796config BR2_PTHREADS_OLD
1797 bool "linuxthreads (stable/old)"
1798 select BR2_LEGACY
1799 help
1800 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
1801 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
1802
Thomas Petazzoniae466a62016-05-17 00:13:01 +02001803config BR2_BINUTILS_VERSION_2_23_X
1804 bool "binutils 2.23 removed"
1805 select BR2_LEGACY
1806 help
1807 Binutils 2.23 has been removed, using a newer version is
1808 recommended.
1809
Thomas Petazzoni500de252016-05-17 00:13:00 +02001810config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
1811 bool "eglibc support has been removed"
1812 select BR2_LEGACY
1813 help
1814 The eglibc project no longer exists, as it has been merged
1815 back into the glibc project. Therefore, support for eglibc
1816 has been removed, and glibc should be used instead.
1817
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02001818config BR2_GDB_VERSION_7_8
1819 bool "gdb 7.8 has been removed"
1820 select BR2_LEGACY
1821 help
1822 The 7.8 version of gdb has been removed. Use a newer version
1823 instead.
1824
1825###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001826comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01001827
Gustavo Zacarias3380da62016-05-14 10:33:47 -03001828config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
1829 bool "openvpn polarssl crypto backend removed"
1830 select BR2_LEGACY
1831 help
1832 The OpenVPN polarssl crypto backend option has been removed.
1833 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
1834 compatible with mbedtls (polarssl) series 2.x which is the
1835 version provided in buildroot. And both can't coexist.
1836 It now uses OpenSSL as the only option.
1837
Martin Bark4dfc2cb2016-05-03 10:36:54 +01001838config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
1839 bool "nginx http spdy module removed"
1840 select BR2_LEGACY
1841 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
1842 help
1843 The ngx_http_spdy_module has been superseded by the
1844 ngx_http_v2_module since nginx v1.9.5. The
1845 ngx_http_v2_module modules has been automatically selected
1846 in your configuration.
1847
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03001848config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
1849 bool "gst1-plugins-bad rtp plugin moved to good"
1850 select BR2_LEGACY
1851 help
1852 The rtp plugin has been moved from gst1-plugins-base to
1853 gst1-plugins-good.
1854
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03001855config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
1856 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
1857 select BR2_LEGACY
1858 help
1859 The mpg123 plugin has been moved from gst1-plugins-bad to
1860 gst1-plugins-ugly.
1861
Gustavo Zacarias8490e832016-04-29 10:18:56 -03001862config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
1863 bool "PowerPC Sourcery toolchain has been removed"
1864 select BR2_LEGACY
1865 help
1866 The Sourcery CodeBench toolchain for the PowerPC
1867 architecture has been removed, as it was very old, not
1868 maintained, and causing numerous build failures with modern
1869 userspace packages.
1870
1871config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
1872 bool "PowerPC Sourcery E500v2 toolchain has been removed"
1873 select BR2_LEGACY
1874 help
1875 The Sourcery CodeBench toolchain for the PowerPC E500v2
1876 architecture has been removed, as it was very old, not
1877 maintained, and causing numerous build failures with modern
1878 userspace packages.
1879
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001880config BR2_x86_i386
1881 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02001882 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02001883 help
1884 The support for the i386 processors of the x86 architecture
1885 has been removed.
1886
Julien CORJONf75ee802016-03-17 10:42:25 +01001887config BR2_PACKAGE_QT5QUICK1
1888 bool "qt5quick1 package removed"
1889 select BR2_LEGACY
1890 help
1891 The qt5quick1 package has been removed, since it was removed
1892 from upstream starting from Qt 5.6.
1893
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001894config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05001895 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03001896 help
1897 The uboot custom patch directory option has been removed. Use
1898 the improved BR2_TARGET_UBOOT_PATCH option instead.
1899
Danomi Manchegof61583f2016-12-19 22:10:12 -05001900config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
1901 bool
1902 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
1903 select BR2_LEGACY
1904
1905# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
1906# boot/uboot/Config.in
1907
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03001908config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
1909 bool "xf86-input-void removed"
1910 select BR2_LEGACY
1911 help
1912 The xf86-input-void package has been removed, there's no need
1913 for it in any modern (post-2007) xorg server.
1914
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001915config BR2_KERNEL_HEADERS_3_17
1916 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001917 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001918 select BR2_LEGACY
1919 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001920 Version 3.17.x of the Linux kernel headers have been
1921 deprecated for more than four buildroot releases and are now
1922 removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001923 As an alternative, version 3.12.x of the headers have been
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03001924 automatically selected in your configuration.
1925
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03001926config BR2_GDB_VERSION_7_7
1927 bool "gdb 7.7 has been removed"
1928 select BR2_LEGACY
1929 help
1930 The 7.7 version of gdb has been removed. Use a newer version
1931 instead.
1932
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03001933config BR2_PACKAGE_FOOMATIC_FILTERS
1934 bool "foomatic-filters"
1935 select BR2_LEGACY
1936 help
1937 The foomatic-filters package was removed.
1938
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03001939config BR2_PACKAGE_SAMBA
1940 bool "samba"
1941 select BR2_LEGACY
1942 help
1943 The samba package was removed in favour of samba4 since the
1944 3.x series isn't supported by upstream any longer.
1945
Bernd Kuhls6922b412016-02-20 23:09:11 +01001946config BR2_PACKAGE_KODI_WAVPACK
1947 bool "wavpack"
1948 select BR2_LEGACY
1949 help
1950 wavpack support was removed in favour of ffmpeg:
1951 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
1952
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01001953config BR2_PACKAGE_KODI_RSXS
1954 bool "rsxs support in Kodi was moved to an addon"
1955 select BR2_LEGACY
1956 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
1957 help
1958 rsxs support in Kodi was moved to an addon
1959
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01001960config BR2_PACKAGE_KODI_GOOM
1961 bool "Goom support in Kodi was moved to an addon"
1962 select BR2_LEGACY
1963 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
1964 help
1965 Goom support in Kodi was moved to an addon
1966
Gabe Evanse5a073a2016-02-25 21:55:11 +00001967config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
1968 bool "systemd all extras option has been removed"
1969 select BR2_LEGACY
1970 select BR2_PACKAGE_XZ
1971 select BR2_PACKAGE_LIBGCRYPT
1972 help
1973 The systemd option to enable "all extras" has been
1974 removed. To get the same features, the libgcrypt and xz
1975 package should now be enabled.
1976
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03001977config BR2_GCC_VERSION_4_5_X
1978 bool "gcc 4.5.x has been removed"
1979 select BR2_LEGACY
1980 help
1981 The 4.5.x version of gcc has been removed. Use a newer
1982 version instead.
1983
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001984config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05001985 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01001986 select BR2_PACKAGE_NCURSES
1987 select BR2_PACKAGE_READLINE
1988 select BR2_LEGACY
1989 help
1990 This option was removed in favour of the sqlite package
1991 deciding itself depending on the enabled packages whether
1992 command-line editing should be enabled, it also also takes
1993 libedit into account.
1994
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01001995###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01001996comment "Legacy options removed in 2016.02"
1997
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01001998config BR2_PACKAGE_DOVECOT_BZIP2
1999 bool "bzip2 support option has been removed"
2000 select BR2_LEGACY
2001 select BR2_PACKAGE_BZIP2
2002 help
2003 Bzip2 support is built if the bzip2 package is selected.
2004
2005config BR2_PACKAGE_DOVECOT_ZLIB
2006 bool "zlib support option has been removed"
2007 select BR2_LEGACY
2008 select BR2_PACKAGE_ZLIB
2009 help
2010 Zlib support is built if the zlib package is selected.
2011
James Knightead1df42016-02-12 11:40:05 -05002012config BR2_PACKAGE_E2FSPROGS_FINDFS
2013 bool "e2fsprogs findfs option has been removed"
2014 select BR2_LEGACY
2015 help
2016 This option attempted to enable findfs capabilities from
2017 e2fsprogs but has not worked since July 2015 (due to
2018 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002019 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002020
Romain Naourb1063a02016-02-07 17:56:56 +01002021config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2022 bool "openpowerlink debug option has been removed"
2023 select BR2_LEGACY
2024 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002025 This option depends on BR2_ENABLE_DEBUG which should not be
2026 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002027
2028config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2029 bool "openpowerlink package has been updated"
2030 select BR2_LEGACY
2031 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2032 help
2033 openpowerlink kernel modules are built if the
2034 kernel stack library is selected.
2035
2036config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2037 bool "openpowerlink package has been updated"
2038 select BR2_LEGACY
2039 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2040 help
2041 The user space support has been split in two part:
2042 - a monolitic user space library
2043 - a user spae deamon driver
2044
Yann E. MORINe3e05832016-02-06 00:06:17 +01002045config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2046 bool "using the linux headers version for the kernel has been removed"
2047 select BR2_LEGACY
2048 help
2049 The option to use the version of the kernel headers for the
2050 kernel to build has been removed.
2051
2052 There is now the converse, better-suited and more versatile
2053 option to use the kernel version for the linux headers.
2054
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002055config BR2_PACKAGE_CUPS_PDFTOPS
2056 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002057 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002058 select BR2_LEGACY
2059 help
2060 Pdftops support has been removed from the cups package
2061 It is now part of the cups-filters package.
2062
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002063config BR2_KERNEL_HEADERS_3_16
2064 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002065 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002066 select BR2_LEGACY
2067 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002068 Version 3.16.x of the Linux kernel headers have been
2069 deprecated for more than four buildroot releases and are now
2070 removed.
2071 As an alternative, version 3.12.x of the headers have been
2072 automatically selected in your configuration.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002073
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002074config BR2_PACKAGE_PYTHON_PYXML
2075 bool "python-pyxml package has been removed"
2076 select BR2_LEGACY
2077 help
2078 PyXML is obsolete and its functionality is covered either via
2079 native Python XML support or python-lxml package.
2080
Steven Noonand29c7192015-12-27 12:07:31 +01002081# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2082config BR2_ENABLE_SSP
2083 bool "Stack Smashing protection now has different levels"
2084 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002085 The protection offered by SSP can now be selected from
2086 different protection levels. Be sure to review the SSP level
2087 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002088
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002089config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002090 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002091 select BR2_LEGACY
2092 help
2093 The cle266 directfb driver support has been removed.
2094 It doesn't build in the latest version and it's unlikely
2095 anyone has any use for it.
2096
2097config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002098 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002099 select BR2_LEGACY
2100 help
2101 The unichrome directfb driver support has been removed.
2102 It doesn't build in the latest version and it's unlikely
2103 anyone has any use for it.
2104
Romain Naour820e1682015-12-19 17:39:14 +01002105config BR2_PACKAGE_LIBELEMENTARY
2106 bool "libelementary has been renamed to elementary"
2107 select BR2_LEGACY
2108 select BR2_PACKAGE_ELEMENTARY
2109 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002110 The libelementary package has been renamed to match the
2111 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002112
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002113config BR2_PACKAGE_LIBEINA
2114 bool "libeina package has been removed"
2115 select BR2_LEGACY
2116 select BR2_PACKAGE_EFL
2117 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002118 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002119
Romain Naour49700f02015-12-15 23:40:37 +01002120config BR2_PACKAGE_LIBEET
2121 bool "libeet package has been removed"
2122 select BR2_LEGACY
2123 select BR2_PACKAGE_EFL
2124 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002125 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002126
Romain Naoure5989d62015-12-15 23:40:36 +01002127config BR2_PACKAGE_LIBEVAS
2128 bool "libevas package has been removed"
2129 select BR2_LEGACY
2130 select BR2_PACKAGE_EFL
2131 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002132 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002133
Romain Naour1fe1b602015-12-15 23:40:35 +01002134config BR2_PACKAGE_LIBECORE
2135 bool "libecore package has been removed"
2136 select BR2_LEGACY
2137 select BR2_PACKAGE_EFL
2138 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002139 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002140
Romain Naour8c05c382015-12-15 23:40:34 +01002141config BR2_PACKAGE_LIBEDBUS
2142 bool "libedbus package has been removed"
2143 select BR2_LEGACY
2144 select BR2_PACKAGE_EFL
2145 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002146 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002147
Romain Naourd2b042c2015-12-15 23:40:33 +01002148config BR2_PACKAGE_LIBEFREET
2149 bool "libefreet package has been removed"
2150 select BR2_LEGACY
2151 select BR2_PACKAGE_EFL
2152 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002153 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002154
Romain Naoure155c952015-12-15 23:40:32 +01002155config BR2_PACKAGE_LIBEIO
2156 bool "libeio package has been removed"
2157 select BR2_LEGACY
2158 select BR2_PACKAGE_EFL
2159 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002160 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002161
Romain Naourb728fb72015-12-15 23:40:31 +01002162config BR2_PACKAGE_LIBEMBRYO
2163 bool "libembryo package has been removed"
2164 select BR2_LEGACY
2165 select BR2_PACKAGE_EFL
2166 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002167 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002168
Romain Naour4c93c102015-12-15 23:40:30 +01002169config BR2_PACKAGE_LIBEDJE
2170 bool "libedje package has been removed"
2171 select BR2_LEGACY
2172 select BR2_PACKAGE_EFL
2173 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002174 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002175
Romain Naour905dba12015-12-15 23:40:29 +01002176config BR2_PACKAGE_LIBETHUMB
2177 bool "libethumb package has been removed"
2178 select BR2_LEGACY
2179 select BR2_PACKAGE_EFL
2180 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002181 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002182
Luca Ceresolif0c94702015-11-27 18:38:00 +01002183config BR2_PACKAGE_INFOZIP
2184 bool "infozip option has been renamed to zip"
2185 select BR2_LEGACY
2186 select BR2_PACKAGE_ZIP
2187 help
2188 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002189 to avoid ambiguities with Info-Zip's UnZip which has been
2190 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002191
Martin Barka2d16602015-12-23 12:16:04 +00002192config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002193 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002194 select BR2_LEGACY
2195 select BR2_PACKAGE_NODEJS
2196 help
Martin Bark75b70492016-01-30 14:51:00 +00002197 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002198 automatically chosen for ARMv5 architectures only and the
2199 latest nodejs for all other supported architectures. The
2200 correct nodejs version has been automatically selected in your
2201 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002202
Martin Barka314b872015-12-23 12:16:03 +00002203config BR2_BR2_PACKAGE_NODEJS_0_12_X
2204 bool "nodejs version 0.12.x has been removed"
2205 select BR2_LEGACY
2206 select BR2_PACKAGE_NODEJS
2207 help
2208 nodejs version 0.12.x has been removed. As an alternative,
2209 the latest nodejs version has been automatically selected in
2210 your configuration.
2211
Martin Bark90bf67c2015-12-23 12:16:02 +00002212config BR2_BR2_PACKAGE_NODEJS_4_X
2213 bool "nodejs version 4.x has been removed"
2214 select BR2_LEGACY
2215 select BR2_PACKAGE_NODEJS
2216 help
2217 nodejs version 4.x has been removed. As an alternative,
2218 the latest nodejs version has been automatically selected in
2219 your configuration.
2220
Luca Ceresolif0c94702015-11-27 18:38:00 +01002221###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002222comment "Legacy options removed in 2015.11"
2223
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002224config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2225 bool "gst1-plugins-bad real plugin has been removed"
2226 select BR2_LEGACY
2227 help
2228 The real plugin from GStreamer 1 bad plugins has been
2229 removed.
2230
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002231config BR2_PACKAGE_MEDIA_CTL
2232 bool "media-ctl package has been removed"
2233 select BR2_LEGACY
2234 select BR2_PACKAGE_LIBV4L
2235 select BR2_PACKAGE_LIBV4L_UTILS
2236 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002237 media-ctl source and developement have been moved to v4l-utils
2238 since June 2014. For an up-to-date media-ctl version select
2239 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002240
Romain Naourf8031332015-10-03 18:35:05 +02002241config BR2_PACKAGE_SCHIFRA
2242 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002243 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002244 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002245 Schifra package has been maked broken since 2014.11 release
2246 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002247
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002248config BR2_PACKAGE_ZXING
2249 bool "zxing option has been renamed"
2250 select BR2_LEGACY
2251 select BR2_PACKAGE_ZXING_CPP
2252 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002253 ZXing no longer provides the cpp bindings, it has been renamed
2254 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002255
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002256# Since FreeRDP has new dependencies, protect this legacy to avoid the
2257# infamous "unmet direct dependencies" kconfig error.
2258config BR2_PACKAGE_FREERDP_CLIENT
2259 bool "freerdp client option renamed"
2260 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002261 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002262 select BR2_PACKAGE_FREERDP_CLIENT_X11
2263
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002264config BR2_PACKAGE_BLACKBOX
2265 bool "blackbox package has been removed"
2266 select BR2_LEGACY
2267 help
2268 Upstream is dead and the package has been deprecated for
2269 some time. There are other alternative maintained WMs.
2270
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002271config BR2_KERNEL_HEADERS_3_0
2272 bool "kernel headers version 3.0.x are no longer supported"
2273 select BR2_KERNEL_HEADERS_3_2
2274 select BR2_LEGACY
2275 help
2276 Version 3.0.x of the Linux kernel headers have been deprecated
2277 for more than four buildroot releases and are now removed.
2278 As an alternative, version 3.2.x of the headers have been
2279 automatically selected in your configuration.
2280
2281config BR2_KERNEL_HEADERS_3_11
2282 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002283 select BR2_KERNEL_HEADERS_3_10
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002284 select BR2_LEGACY
2285 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002286 Version 3.11.x of the Linux kernel headers have been
2287 deprecated for more than four buildroot releases and are now
2288 removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002289 As an alternative, version 3.10.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002290 automatically selected in your configuration.
2291
2292config BR2_KERNEL_HEADERS_3_13
2293 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002294 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002295 select BR2_LEGACY
2296 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002297 Version 3.13.x of the Linux kernel headers have been
2298 deprecated for more than four buildroot releases and are now
2299 removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03002300 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002301 automatically selected in your configuration.
2302
2303config BR2_KERNEL_HEADERS_3_15
2304 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002305 select BR2_KERNEL_HEADERS_3_12
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002306 select BR2_LEGACY
2307 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002308 Version 3.15.x of the Linux kernel headers have been
2309 deprecated for more than four buildroot releases and are now
2310 removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03002311 As an alternative, version 3.12.x of the headers have been
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002312 automatically selected in your configuration.
2313
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002314config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2315 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002316 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002317 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2318 help
2319 The per-DirectFB example options have been removed. The
2320 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2321 examples.
2322
2323config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2324 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002325 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002326 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2327 help
2328 The per-DirectFB example options have been removed. The
2329 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2330 examples.
2331
2332config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2333 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002334 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002335 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2336 help
2337 The per-DirectFB example options have been removed. The
2338 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2339 examples.
2340
2341config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2342 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002343 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002344 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2345 help
2346 The per-DirectFB example options have been removed. The
2347 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2348 examples.
2349
2350config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2351 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002352 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002353 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2354 help
2355 The per-DirectFB example options have been removed. The
2356 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2357 examples.
2358
2359config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2360 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002361 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002362 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2363 help
2364 The per-DirectFB example options have been removed. The
2365 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2366 examples.
2367
2368config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2369 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002370 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002371 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2372 help
2373 The per-DirectFB example options have been removed. The
2374 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2375 examples.
2376
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002377config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2378 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002379 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002380 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2381 help
2382 The per-DirectFB example options have been removed. The
2383 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2384 examples.
2385
2386config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2387 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002388 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002389 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2390 help
2391 The per-DirectFB example options have been removed. The
2392 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2393 examples.
2394
2395config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2396 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002397 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002398 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2399 help
2400 The per-DirectFB example options have been removed. The
2401 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2402 examples.
2403
2404config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2405 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002406 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002407 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_JOYSTICK
2414 bool "DirectFB example df_joystick 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_KNUCKLES
2423 bool "DirectFB example df_knuckles 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_LAYER
2432 bool "DirectFB example df_layer 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_MATRIX
2441 bool "DirectFB example df_matrix 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
2449config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2450 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002451 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002452 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2453 help
2454 The per-DirectFB example options have been removed. The
2455 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2456 examples.
2457
2458config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2459 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002460 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002461 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2462 help
2463 The per-DirectFB example options have been removed. The
2464 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2465 examples.
2466
2467config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2468 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002469 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002470 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2471 help
2472 The per-DirectFB example options have been removed. The
2473 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2474 examples.
2475
2476config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2477 bool "DirectFB example df_palette has been removed"
2478 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2479 help
2480 The per-DirectFB example options have been removed. The
2481 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2482 examples.
2483
2484config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2485 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002486 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002487 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2488 help
2489 The per-DirectFB example options have been removed. The
2490 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2491 examples.
2492
2493config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2494 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002495 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002496 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2497 help
2498 The per-DirectFB example options have been removed. The
2499 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2500 examples.
2501
2502config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2503 bool "DirectFB example df_stress has been removed"
2504 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2505 help
2506 The per-DirectFB example options have been removed. The
2507 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2508 examples.
2509
2510config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2511 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002512 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002513 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2514 help
2515 The per-DirectFB example options have been removed. The
2516 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2517 examples.
2518
2519config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2520 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002521 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002522 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2523 help
2524 The per-DirectFB example options have been removed. The
2525 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2526 examples.
2527
2528config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2529 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002530 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002531 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2532 help
2533 The per-DirectFB example options have been removed. The
2534 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2535 examples.
2536
2537config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2538 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002539 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002540 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2541 help
2542 The per-DirectFB example options have been removed. The
2543 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2544 examples.
2545
Gary Bisson2b78fb22015-09-23 15:39:27 +02002546config BR2_PACKAGE_KOBS_NG
2547 bool "kobs-ng was replaced by imx-kobs"
2548 select BR2_LEGACY
2549 select BR2_PACKAGE_IMX_KOBS
2550 help
2551 The outdated kobs-ng has been replaced by the Freescale-
2552 maintained imx-kobs package.
2553
Thomas Petazzoni11573f52015-09-02 00:01:11 +02002554config BR2_PACKAGE_SAWMAN
2555 bool "sawman package removed"
2556 select BR2_LEGACY
2557 select BR2_PACKAGE_DIRECTFB_SAWMAN
2558 help
2559 This option has been removed because the sawman package no
2560 longer exists: it was merged inside DirectFB itself. This
2561 feature can now be enabled using the
2562 BR2_PACKAGE_DIRECTFB_SAWMAN option.
2563
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002564config BR2_PACKAGE_DIVINE
2565 bool "divine package removed"
2566 select BR2_LEGACY
2567 select BR2_PACKAGE_DIRECTFB_DIVINE
2568 help
2569 This option has been removed because the divine package no
2570 longer exists: it was merged inside DirectFB itself. This
2571 feature can now be enabled using the
2572 BR2_PACKAGE_DIRECTFB_DIVINE option.
2573
2574###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002575comment "Legacy options removed in 2015.08"
2576
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002577config BR2_PACKAGE_KODI_PVR_ADDONS
2578 bool "Kodi PVR addon was split"
2579 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02002580 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02002581 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02002582 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02002583 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02002584 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02002585 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02002586 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02002587 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02002588 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02002589 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02002590 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02002591 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02002592 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02002593 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02002594 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02002595 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002596 help
2597 Kodi PVR addon was split into seperate modules
2598
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002599config BR2_BINUTILS_VERSION_2_23_2
2600 bool "binutils 2.23 option renamed"
2601 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002602 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002603 Binutils 2.23.2 has been removed, using a newer version is
2604 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002605
2606config BR2_BINUTILS_VERSION_2_24
2607 bool "binutils 2.24 option renamed"
2608 select BR2_LEGACY
2609 select BR2_BINUTILS_VERSION_2_24_X
2610 help
2611 The binutils version option has been renamed to match the
2612 same patchlevel logic used by gcc. The new option is now
2613 BR2_BINUTILS_VERSION_2_24_X.
2614
2615config BR2_BINUTILS_VERSION_2_25
2616 bool "binutils 2.25 option renamed"
2617 select BR2_LEGACY
2618 select BR2_BINUTILS_VERSION_2_25_X
2619 help
2620 The binutils version option has been renamed to match the
2621 same patchlevel logic used by gcc. The new option is now
2622 BR2_BINUTILS_VERSION_2_25_X.
2623
Romain Naour1326e762015-07-14 19:35:14 +02002624config BR2_PACKAGE_PERF
2625 bool "perf option has been renamed"
2626 select BR2_LEGACY
2627 select BR2_LINUX_KERNEL_TOOL_PERF
2628 help
2629 The perf package has been moved as a Linux tools package,
2630 and the option to enable it is now
2631 BR2_LINUX_KERNEL_TOOL_PERF.
2632
Thomas Petazzoni2f845952015-07-11 14:52:53 +02002633config BR2_BINUTILS_VERSION_2_22
2634 bool "binutils 2.22 removed"
2635 select BR2_LEGACY
2636 help
2637 Binutils 2.22 has been removed, using a newer version is
2638 recommended.
2639
Gary Bisson4c0613e2015-05-26 10:19:37 +02002640config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
2641 bool "gpu-viv-bin-mx6q"
2642 select BR2_LEGACY
2643 select BR2_PACKAGE_IMX_GPU_VIV
2644 help
2645 Vivante graphics libraries have been renamed to
2646 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
2647 name.
2648
Matt Weber7742abe2015-06-02 08:28:35 -05002649config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05002650 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03002651 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02002652 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05002653 help
2654 This option has been removed, since the libsemanage Python
2655 bindings on the target were not useful.
2656
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002657config BR2_TARGET_UBOOT_NETWORK
2658 bool "U-Boot custom network settings removed"
2659 select BR2_LEGACY
2660 help
2661 U-Boot's custom network settings options have been removed.
2662
2663###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002664comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002665
Michał Leśniewskie3904a82015-05-19 20:26:30 +02002666config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
2667 bool "jffs2 16kB erasesize NAND flash option renamed"
2668 select BR2_LEGACY
2669 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
2670 help
2671 The JFFS2 NAND flash options now longer include the page
2672 size.
2673
2674config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
2675 bool "jffs2 128kB erasesize NAND flash option renamed"
2676 select BR2_LEGACY
2677 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2678 help
2679 The JFFS2 NAND flash options now longer include the page
2680 size.
2681
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02002682config BR2_PACKAGE_MONO_20
2683 bool "2.0/3.5 .Net Runtime"
2684 select BR2_LEGACY
2685 help
2686 This option no longer exists, all versions of the .Net
2687 runtime are now installed.
2688
2689config BR2_PACKAGE_MONO_40
2690 bool "4.0 .Net Runtime"
2691 select BR2_LEGACY
2692 help
2693 This option no longer exists, all versions of the .Net
2694 runtime are now installed.
2695
2696config BR2_PACKAGE_MONO_45
2697 bool "4.5 .Net Runtime"
2698 select BR2_LEGACY
2699 help
2700 This option no longer exists, all versions of the .Net
2701 runtime are now installed.
2702
Peter Korsgaardefd49e32015-04-27 22:29:05 +02002703config BR2_CIVETWEB_WITH_LUA
2704 bool "civetweb lua option renamed"
2705 select BR2_LEGACY
2706 select BR2_PACKAGE_CIVETWEB_WITH_LUA
2707 help
2708 civetweb's lua option has been renamed to
2709 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2710 packages name options.
2711
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02002712config BR2_PACKAGE_TIFF_TIFF2PDF
2713 bool "tiff utility-specific option removed"
2714 select BR2_LEGACY
2715 select BR2_PACKAGE_TIFF_UTILITIES
2716 help
2717 utility-specific options have been removed in favour of
2718 the new option BR2_PACKAGE_TIFF_UTILITIES.
2719
2720config BR2_PACKAGE_TIFF_TIFFCP
2721 bool "tiff utility-specific option removed"
2722 select BR2_LEGACY
2723 select BR2_PACKAGE_TIFF_UTILITIES
2724 help
2725 utility-specific options have been removed in favour of
2726 the new option BR2_PACKAGE_TIFF_UTILITIES.
2727
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002728config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
2729 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002730 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002731 help
2732 This option has never worked, so it has been removed.
2733
Yann E. MORIN02917962015-03-24 19:54:15 +01002734config BR2_TARGET_GENERIC_PASSWD_DES
2735 bool "Encoding passwords with DES has been removed"
2736 select BR2_LEGACY
2737 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002738 Paswords can now only be encoded with either of md5, sha256 or
2739 sha512. The default is md5, which is stronger that DES (but
2740 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01002741
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03002742config BR2_PACKAGE_GTK2_THEME_HICOLOR
2743 bool "hicolor (default theme) is a duplicate"
2744 select BR2_LEGACY
2745 select BR2_PACKAGE_HICOLOR_ICON_THEME
2746 help
2747 The option was just a duplicate of hicolor icon theme.
2748
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002749config BR2_PACKAGE_VALGRIND_PTRCHECK
2750 bool "valgrind's PTRCheck was renamed to SGCheck"
2751 select BR2_LEGACY
2752 select BR2_PACKAGE_VALGRIND_SGCHECK
2753 help
2754 PTRCheck was renamed to SGCheck in valgrind
2755
2756###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002757comment "Legacy options removed in 2015.02"
2758
Pedro Aguilar10900c02015-02-27 06:38:07 +02002759config BR2_PACKAGE_LIBGC
2760 bool "libgc package removed"
2761 select BR2_LEGACY
2762 select BR2_PACKAGE_BDWGC
2763 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002764 libgc has been removed because we have the same package under
2765 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02002766
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002767config BR2_PACKAGE_WDCTL
2768 bool "util-linux' wdctl option has been renamed"
2769 select BR2_LEGACY
2770 select BR2_PACKAGE_UTIL_LINUX_WDCTL
2771 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002772 util-linux' wdctl option has been renamed to
2773 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
2774 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01002775
Danomi Manchegoe44edb82015-07-13 22:57:06 -04002776config BR2_PACKAGE_UTIL_LINUX_ARCH
2777 bool "util-linux' arch option has been removed"
2778 select BR2_LEGACY
2779 help
2780 util-linux' arch was dropped in util-linux 2.23, in favor of
2781 the coreutils version.
2782
2783config BR2_PACKAGE_UTIL_LINUX_DDATE
2784 bool "util-linux' ddate option has been removed"
2785 select BR2_LEGACY
2786 help
2787 util-linux' ddate was dropped in util-linux 2.23.
2788
Romain Naour3c476542015-01-18 20:53:08 +01002789config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
2790 bool "rpm's bzip2 payloads option has been removed"
2791 select BR2_LEGACY
2792 select BR2_PACKAGE_BZIP2
2793 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002794 The bzip2 payloads option rely entirely on the dependant
2795 package bzip2. So, you need to select it to enable this
2796 feature.
Romain Naour3c476542015-01-18 20:53:08 +01002797
2798config BR2_PACKAGE_RPM_XZ_PAYLOADS
2799 bool "rpm's xz payloads option has been removed"
2800 select BR2_LEGACY
2801 select BR2_PACKAGE_XZ
2802 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002803 The xz payloads option rely entirely on the dependant package
2804 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01002805
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03002806config BR2_PACKAGE_M4
2807 bool "m4 target package removed"
2808 select BR2_LEGACY
2809 help
2810 The m4 target package has been removed, it's been
2811 deprecated for some time now.
2812
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03002813config BR2_PACKAGE_FLEX_BINARY
2814 bool "flex binary in target option removed"
2815 select BR2_LEGACY
2816 help
2817 The flex binary in the target option has been removed.
2818 It's been deprecated for some time now and is essentially a
2819 development tool which isn't very useful in the target.
2820
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03002821config BR2_PACKAGE_BISON
2822 bool "bison target package removed"
2823 select BR2_LEGACY
2824 help
2825 The bison target package has been removed, it's been
2826 deprecated for some time now and is essentially a development
2827 tool which isn't very useful in the target.
2828
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03002829config BR2_PACKAGE_GOB2
2830 bool "gob2 target package removed"
2831 select BR2_LEGACY
2832 help
2833 The gob2 target package has been removed, it's been
2834 deprecated for some time now and was essentially useless
2835 without a target toolchain.
2836
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03002837config BR2_PACKAGE_DISTCC
2838 bool "distcc target package removed"
2839 select BR2_LEGACY
2840 help
2841 The distcc target package has been removed, it's been
2842 deprecated for some time now and was essentially useless
2843 without a target toolchain.
2844
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03002845config BR2_PACKAGE_HASERL_VERSION_0_8_X
2846 bool "haserl 0.8.x version removed"
2847 select BR2_LEGACY
2848 help
2849 The 0.8.x version option for haserl has been removed since it
2850 has been deprecated for some time now.
2851 You should be able to use the 0.9.x version without issues.
2852
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002853config BR2_PACKAGE_STRONGSWAN_TOOLS
2854 bool "strongswan option has been removed"
2855 select BR2_LEGACY
2856 select BR2_PACKAGE_STRONGSWAN_PKI
2857 select BR2_PACKAGE_STRONGSWAN_SCEP
2858 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002859 The tools option has been removed upstream and the different
2860 tools have been split between the pki and scep options, with
2861 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03002862
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002863config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002864 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002865 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002866 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02002867 According to the github project page:
2868 https://github.com/pipelka/xbmc-addon-xvdr
2869 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01002870
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002871config BR2_PACKAGE_XBMC_PVR_ADDONS
2872 bool "xbmc options have been renamed"
2873 select BR2_LEGACY
2874 select BR2_PACKAGE_KODI_PVR_ADDONS
2875 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002876 The XBMC media center project was renamed to Kodi
2877 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01002878
Bernd Kuhls35784592014-12-23 18:46:27 +01002879config BR2_PACKAGE_XBMC
2880 bool "xbmc options have been renamed"
2881 select BR2_LEGACY
2882 select BR2_PACKAGE_KODI
2883 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002884 The XBMC media center project was renamed to Kodi
2885 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002886
2887config BR2_PACKAGE_XBMC_ALSA_LIB
2888 bool "xbmc options have been renamed"
2889 select BR2_LEGACY
2890 select BR2_PACKAGE_KODI_ALSA_LIB
2891 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002892 The XBMC media center project was renamed to Kodi
2893 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002894
2895config BR2_PACKAGE_XBMC_AVAHI
2896 bool "xbmc options have been renamed"
2897 select BR2_LEGACY
2898 select BR2_PACKAGE_KODI_AVAHI
2899 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002900 The XBMC media center project was renamed to Kodi
2901 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002902
2903config BR2_PACKAGE_XBMC_DBUS
2904 bool "xbmc options have been renamed"
2905 select BR2_LEGACY
2906 select BR2_PACKAGE_KODI_DBUS
2907 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002908 The XBMC media center project was renamed to Kodi
2909 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002910
2911config BR2_PACKAGE_XBMC_LIBBLURAY
2912 bool "xbmc options have been renamed"
2913 select BR2_LEGACY
2914 select BR2_PACKAGE_KODI_LIBBLURAY
2915 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002916 The XBMC media center project was renamed to Kodi
2917 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002918
2919config BR2_PACKAGE_XBMC_GOOM
2920 bool "xbmc options have been renamed"
2921 select BR2_LEGACY
2922 select BR2_PACKAGE_KODI_GOOM
2923 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002924 The XBMC media center project was renamed to Kodi
2925 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002926
2927config BR2_PACKAGE_XBMC_RSXS
2928 bool "xbmc options have been renamed"
2929 select BR2_LEGACY
2930 select BR2_PACKAGE_KODI_RSXS
2931 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002932 The XBMC media center project was renamed to Kodi
2933 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002934
2935config BR2_PACKAGE_XBMC_LIBCEC
2936 bool "xbmc options have been renamed"
2937 select BR2_LEGACY
2938 select BR2_PACKAGE_KODI_LIBCEC
2939 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002940 The XBMC media center project was renamed to Kodi
2941 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002942
2943config BR2_PACKAGE_XBMC_LIBMICROHTTPD
2944 bool "xbmc options have been renamed"
2945 select BR2_LEGACY
2946 select BR2_PACKAGE_KODI_LIBMICROHTTPD
2947 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002948 The XBMC media center project was renamed to Kodi
2949 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002950
2951config BR2_PACKAGE_XBMC_LIBNFS
2952 bool "xbmc options have been renamed"
2953 select BR2_LEGACY
2954 select BR2_PACKAGE_KODI_LIBNFS
2955 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002956 The XBMC media center project was renamed to Kodi
2957 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002958
2959config BR2_PACKAGE_XBMC_RTMPDUMP
2960 bool "xbmc options have been renamed"
2961 select BR2_LEGACY
2962 select BR2_PACKAGE_KODI_RTMPDUMP
2963 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002964 The XBMC media center project was renamed to Kodi
2965 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002966
2967config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
2968 bool "xbmc options have been renamed"
2969 select BR2_LEGACY
2970 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
2971 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002972 The XBMC media center project was renamed to Kodi
2973 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002974
2975config BR2_PACKAGE_XBMC_LIBSMBCLIENT
2976 bool "xbmc options have been renamed"
2977 select BR2_LEGACY
2978 select BR2_PACKAGE_KODI_LIBSMBCLIENT
2979 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002980 The XBMC media center project was renamed to Kodi
2981 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002982
2983config BR2_PACKAGE_XBMC_LIBTHEORA
2984 bool "xbmc options have been renamed"
2985 select BR2_LEGACY
2986 select BR2_PACKAGE_KODI_LIBTHEORA
2987 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002988 The XBMC media center project was renamed to Kodi
2989 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002990
2991config BR2_PACKAGE_XBMC_LIBUSB
2992 bool "xbmc options have been renamed"
2993 select BR2_LEGACY
2994 select BR2_PACKAGE_KODI_LIBUSB
2995 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002996 The XBMC media center project was renamed to Kodi
2997 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01002998
2999config BR2_PACKAGE_XBMC_LIBVA
3000 bool "xbmc options have been renamed"
3001 select BR2_LEGACY
3002 select BR2_PACKAGE_KODI_LIBVA
3003 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003004 The XBMC media center project was renamed to Kodi
3005 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003006
3007config BR2_PACKAGE_XBMC_WAVPACK
3008 bool "xbmc options have been renamed"
3009 select BR2_LEGACY
3010 select BR2_PACKAGE_KODI_WAVPACK
3011 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003012 The XBMC media center project was renamed to Kodi
3013 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003014
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003015config BR2_PREFER_STATIC_LIB
3016 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003017 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003018 help
3019 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3020 highlights the fact that the option no longer "prefers"
3021 static libraries, but "enforces" static libraries (i.e
3022 shared libraries are completely unused).
3023
Samuel Martina44b1c12014-12-14 17:24:24 +01003024 Take care of updating the type of libraries you want under the
3025 "Build options" menu.
3026
Bernd Kuhls35784592014-12-23 18:46:27 +01003027###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003028comment "Legacy options removed in 2014.11"
3029
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003030config BR2_x86_generic
3031 bool "x86 generic variant has been removed"
3032 select BR2_LEGACY
3033 help
3034 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003035 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003036
Andreas Larsson40e18f22014-10-30 09:29:36 +01003037config BR2_GCC_VERSION_4_4_X
3038 bool "gcc 4.4.x has been removed"
3039 select BR2_LEGACY
3040 help
3041 The 4.4.x version of gcc has been removed. Use a newer
3042 version instead.
3043
Andreas Larsson43b78e72014-10-30 09:29:35 +01003044config BR2_sparc_sparchfleon
3045 bool "sparchfleon CPU has been removed"
3046 select BR2_LEGACY
3047 help
3048 The sparchfleon CPU was only supported in a patched gcc 4.4
3049 version. Its support has been removed in favor of the leon3
3050 CPU starting from gcc 4.8.x.
3051
3052config BR2_sparc_sparchfleonv8
3053 bool "sparchfleonv8 CPU has been removed"
3054 select BR2_LEGACY
3055 help
3056 The sparchfleonv8 CPU was only supported in a patched gcc
3057 4.4 version. Its support has been removed in favor of the
3058 leon3 CPU starting from gcc 4.8.x.
3059
3060config BR2_sparc_sparcsfleon
3061 bool "sparcsfleon CPU has been removed"
3062 select BR2_LEGACY
3063 help
3064 The sparcsfleon CPU was only supported in a patched gcc 4.4
3065 version. Its support has been removed in favor of the leon3
3066 CPU starting from gcc 4.8.x.
3067
3068config BR2_sparc_sparcsfleonv8
3069 bool "sparcsfleonv8 CPU has been removed"
3070 select BR2_LEGACY
3071 help
3072 The sparcsfleonv8 CPU was only supported in a patched gcc
3073 4.4 version. Its support has been removed in favor of the
3074 leon3 CPU starting from gcc 4.8.x.
3075
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003076config BR2_PACKAGE_XLIB_LIBPCIACCESS
3077 bool "xlib-libpciaccess option has been renamed"
3078 depends on BR2_PACKAGE_XORG7
3079 select BR2_LEGACY
3080 select BR2_PACKAGE_LIBPCIACCESS
3081 help
3082 libpciaccess neither depends on X11 nor Xlib. Thus the
3083 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3084
Yann E. MORINb581bba2014-09-21 20:38:13 +02003085config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3086 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003087 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003088 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3089 help
3090 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003091 Xceive (the xc4000 series), as well as new firmwares (the
3092 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003093
Yann E. MORINdac546e2014-09-21 20:38:12 +02003094config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3095 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003096 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003097 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3098 help
3099 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3100 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3101 to better account for the fact that a T5 variant exists.
3102
Yann E. MORIN120136e2014-09-21 20:38:09 +02003103config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3104 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003105 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003106 help
3107 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3108 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3109 select it in:
3110 Target packages -> Hardware handling ->
3111 Firmware -> linux-firmware -> WiFi firmware ->
3112 iwlwifi 3160/726x revision to use (revision 7)
3113
3114config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3115 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003116 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003117 help
3118 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3119 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3120 select it in:
3121 Target packages -> Hardware handling ->
3122 Firmware -> linux-firmware -> WiFi firmware ->
3123 iwlwifi 3160/726x revision to use (revision 8)
3124
3125###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003126comment "Legacy options removed in 2014.08"
3127
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003128config BR2_PACKAGE_LIBELF
3129 bool "libelf has been removed"
3130 select BR2_PACKAGE_ELFUTILS
3131 select BR2_LEGACY
3132 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003133 The libelf package provided an old version of the libelf
3134 library and is deprecated. The libelf library is now provided
3135 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003136
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003137config BR2_KERNEL_HEADERS_3_8
3138 bool "kernel headers version 3.8.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003139 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003140 select BR2_LEGACY
3141 help
3142 Version 3.8.x of the Linux kernel headers have been deprecated
3143 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003144 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003145 automatically selected in your configuration.
3146
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003147config BR2_PACKAGE_GETTEXT_TOOLS
3148 bool "support for gettext-tools on target has been removed"
3149 select BR2_LEGACY
3150 help
3151 The option to install the gettext utilities on the target
3152 has been removed. This is not necessary as Buildroot is not
3153 designed to provide a full development environment on the
3154 target. gettext tools should be used on the build machine
3155 instead.
3156
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003157config BR2_PACKAGE_PROCPS
3158 bool "procps has been replaced by procps-ng"
3159 select BR2_PACKAGE_PROCPS_NG
3160 select BR2_LEGACY
3161 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003162 The procps package has been replaced by the equivalent
3163 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003164
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003165config BR2_BINUTILS_VERSION_2_20_1
3166 bool "binutils 2.20.1 has been removed"
3167 select BR2_LEGACY
3168 help
3169 The 2.20.1 version of binutils has been removed. Use a newer
3170 version instead.
3171
3172config BR2_BINUTILS_VERSION_2_21
3173 bool "binutils 2.21 has been removed"
3174 select BR2_LEGACY
3175 help
3176 The 2.21 version of binutils has been removed. Use a newer
3177 version instead.
3178
3179config BR2_BINUTILS_VERSION_2_23_1
3180 bool "binutils 2.23.1 has been removed"
3181 select BR2_LEGACY
3182 help
3183 The 2.23.1 version of binutils has been removed. Use a newer
3184 version instead.
3185
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003186config BR2_UCLIBC_VERSION_0_9_32
3187 bool "uclibc 0.9.32 has been removed"
3188 select BR2_LEGACY
3189 help
3190 The 0.9.32 version of uClibc has been removed. Use a newer
3191 version instead.
3192
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003193config BR2_GCC_VERSION_4_3_X
3194 bool "gcc 4.3.x has been removed"
3195 select BR2_LEGACY
3196 help
3197 The 4.3.x version of gcc has been removed. Use a newer
3198 version instead.
3199
3200config BR2_GCC_VERSION_4_6_X
3201 bool "gcc 4.6.x has been removed"
3202 select BR2_LEGACY
3203 help
3204 The 4.6.x version of gcc has been removed. Use a newer
3205 version instead.
3206
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003207config BR2_GDB_VERSION_7_4
3208 bool "gdb 7.4 has been removed"
3209 select BR2_LEGACY
3210 help
3211 The 7.4 version of gdb has been removed. Use a newer version
3212 instead.
3213
3214config BR2_GDB_VERSION_7_5
3215 bool "gdb 7.5 has been removed"
3216 select BR2_LEGACY
3217 help
3218 The 7.5 version of gdb has been removed. Use a newer version
3219 instead.
3220
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003221config BR2_BUSYBOX_VERSION_1_19_X
3222 bool "busybox version selection has been removed"
3223 select BR2_LEGACY
3224 help
3225 The possibility of selecting the Busybox version has been
3226 removed. Use the latest version provided by the Busybox
3227 package instead.
3228
3229config BR2_BUSYBOX_VERSION_1_20_X
3230 bool "busybox version selection has been removed"
3231 select BR2_LEGACY
3232 help
3233 The possibility of selecting the Busybox version has been
3234 removed. Use the latest version provided by the Busybox
3235 package instead.
3236
3237config BR2_BUSYBOX_VERSION_1_21_X
3238 bool "busybox version selection has been removed"
3239 select BR2_LEGACY
3240 help
3241 The possibility of selecting the Busybox version has been
3242 removed. Use the latest version provided by the Busybox
3243 package instead.
3244
Ezequiel García07ac0452014-07-05 18:07:40 -03003245config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3246 bool "decode_tm6000"
3247 select BR2_PACKAGE_LIBV4L_UTILS
3248 select BR2_LEGACY
3249 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003250 This libv4l option has been deprecated and replaced by a
3251 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003252
3253config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3254 bool "ir-keytable"
3255 select BR2_PACKAGE_LIBV4L_UTILS
3256 select BR2_LEGACY
3257 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003258 This libv4l option has been deprecated and replaced by a
3259 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003260
3261config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3262 bool "v4l2-compliance"
3263 select BR2_PACKAGE_LIBV4L_UTILS
3264 select BR2_LEGACY
3265 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003266 This libv4l option has been deprecated and replaced by a
3267 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003268
3269config BR2_PACKAGE_LIBV4L_V4L2_CTL
3270 bool "v4l2-ctl"
3271 select BR2_PACKAGE_LIBV4L_UTILS
3272 select BR2_LEGACY
3273 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003274 This libv4l option has been deprecated and replaced by a
3275 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003276
3277config BR2_PACKAGE_LIBV4L_V4L2_DBG
3278 bool "v4l2-dbg"
3279 select BR2_PACKAGE_LIBV4L_UTILS
3280 select BR2_LEGACY
3281 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003282 This libv4l option has been deprecated and replaced by a
3283 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003284
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003285###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003286comment "Legacy options removed in 2014.05"
3287
Peter Seiderer4990a382014-04-23 00:12:23 +02003288config BR2_PACKAGE_EVTEST_CAPTURE
3289 bool "evtest-capture support removed (dropped since evtest 1.31)"
3290 select BR2_LEGACY
3291 help
3292 Support for evtest-capture has been removed (dropped from
3293 evtest package since version 1.31), use evemu package
3294 instead.
3295
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003296config BR2_KERNEL_HEADERS_3_6
3297 bool "kernel headers version 3.6.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003298 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003299 select BR2_LEGACY
3300 help
3301 Version 3.6.x of the Linux kernel headers have been deprecated
3302 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003303 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003304 automatically selected in your configuration.
3305
3306config BR2_KERNEL_HEADERS_3_7
3307 bool "kernel headers version 3.7.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003308 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003309 select BR2_LEGACY
3310 help
3311 Version 3.7.x of the Linux kernel headers have been deprecated
3312 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003313 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003314 automatically selected in your configuration.
3315
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003316config BR2_PACKAGE_VALA
3317 bool "vala target package has been removed"
3318 select BR2_LEGACY
3319 help
3320 The 'vala' target package has been removed since it has been
3321 deprecated for more than four buildroot releases.
3322 Note: the host vala package still exists.
3323
Yann E. MORINd6a37912014-04-07 21:58:03 +02003324config BR2_TARGET_TZ_ZONELIST
3325 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3326
3327config BR2_PACKAGE_TZDATA_ZONELIST
3328 string "tzdata: the timezone list option has been renamed"
3329 help
3330 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003331 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3332 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003333
3334config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3335 bool
3336 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3337 select BR2_LEGACY
3338
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003339config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3340 bool "Lua command-line editing none has been renamed"
3341 select BR2_LEGACY
3342 help
3343 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003344 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3345 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003346
3347config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3348 bool "Lua command-line editing using readline has been renamed"
3349 select BR2_LEGACY
3350 help
3351 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3352 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3353 it in the corresponding choice.
3354
3355config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3356 bool "Lua command-line editing using linenoise has been renamed"
3357 select BR2_LEGACY
3358 help
3359 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3360 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3361 it in the corresponding choice.
3362
Yann E. MORIN365ae612014-03-28 01:00:24 +01003363config BR2_PACKAGE_DVB_APPS_UTILS
3364 bool "dvb-apps utilities now built by default"
3365 select BR2_LEGACY
3366 help
3367 The dvb-apps utilities are now always built when the dvb-apps
3368 package is selected.
3369
Yann E. MORIN971e3312014-03-01 15:52:56 +01003370config BR2_KERNEL_HEADERS_SNAP
3371 bool "Local Linux snapshot support removed"
3372 select BR2_LEGACY
3373 help
3374 Support for using a custom snapshot to install the Linux
3375 kernel headers has been removed.
3376
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003377config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3378 bool "/dev management by udev removed"
3379 select BR2_LEGACY
3380 help
3381 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003382 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003383
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003384 Therefore, if you are not using 'systemd' as init system, you
3385 must choose 'Dynamic using eudev' in the '/dev management'
3386 menu to get the same behaviour as in your old configuration.
3387
3388 If you are using 'systemd', its internal implementation of
3389 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003390
3391 You must also check the packages depending on 'udev' are still
3392 selected.
3393
3394config BR2_PACKAGE_UDEV
3395 bool "udev is now a virtual package"
3396 select BR2_LEGACY
3397 select BR2_PACKAGE_HAS_UDEV
3398 help
3399 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003400 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003401
3402 Your old configuration refers to packages depending on 'udev',
3403 either for build or at runtime.
3404
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003405 Check that a 'udev' provider is selected. If you are not using
3406 'systemd' as init system, 'eudev' should be selected, which is
3407 the case if '/dev management' is set to 'Dynamic using eudev'.
3408
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003409 If you are using 'systemd', its internal implementation of
3410 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003411
3412config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003413 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003414 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003415 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3416 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003417 help
3418 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003419 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003420
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003421 If you are not using 'systemd' as init system, udev rules
3422 generation will be handled by 'eudev'. Check that
3423 '/dev management' is set to 'Dynamic using eudev' to get
3424 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003425
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003426 If you are using 'systemd', it internal implementation of
3427 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003428
3429config BR2_PACKAGE_UDEV_ALL_EXTRAS
3430 bool "udev extras removed"
3431 select BR2_LEGACY
3432 help
3433 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003434 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003435
3436 The option to enable the extra features of 'udev' (gudev, ...)
3437 has been removed. These features are automatically enabled in
3438 the 'udev' providers if the dependencies are selected. For
3439 example, selecting 'libglib2' will trigger the build of gudev.
3440
Bernd Kuhls5562be12014-03-01 16:41:10 +01003441config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3442 bool "xlib-libpthread-stubs option has been renamed"
3443 depends on BR2_PACKAGE_XORG7
3444 select BR2_LEGACY
3445 select BR2_PACKAGE_LIBPTHREAD_STUBS
3446 help
3447 The pthread stubs neither depend on X11 nor Xlib. Thus the
3448 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3449
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003450###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003451comment "Legacy options removed in 2014.02"
3452
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003453config BR2_sh2
3454 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003455 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003456 help
3457 Due to an inexistent user base and generally poor Linux
3458 support, the support for the SH2 architecture was removed.
3459
3460config BR2_sh3
3461 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003462 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003463 help
3464 Due to an inexistent user base and generally poor Linux
3465 support, the support for the SH3 architecture was removed.
3466
3467config BR2_sh3eb
3468 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003469 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003470 help
3471 Due to an inexistent user base and generally poor Linux
3472 support, the support for the SH3eb architecture was removed.
3473
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003474config BR2_KERNEL_HEADERS_3_1
3475 bool "kernel headers version 3.1.x are no longer supported"
3476 select BR2_KERNEL_HEADERS_3_2
3477 select BR2_LEGACY
3478 help
3479 Version 3.1.x of the Linux kernel headers have been deprecated
3480 for more than four buildroot releases and are now removed.
3481 As an alternative, version 3.2.x of the headers have been
3482 automatically selected in your configuration.
3483
3484config BR2_KERNEL_HEADERS_3_3
3485 bool "kernel headers version 3.3.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003486 select BR2_KERNEL_HEADERS_3_2
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003487 select BR2_LEGACY
3488 help
3489 Version 3.3.x of the Linux kernel headers have been deprecated
3490 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003491 As an alternative, version 3.2.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003492 automatically selected in your configuration.
3493
3494config BR2_KERNEL_HEADERS_3_5
3495 bool "kernel headers version 3.5.x are no longer supported"
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003496 select BR2_KERNEL_HEADERS_3_4
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003497 select BR2_LEGACY
3498 help
3499 Version 3.5.x of the Linux kernel headers have been deprecated
3500 for more than four buildroot releases and are now removed.
Gustavo Zacariasa26aa962016-09-09 12:20:55 -03003501 As an alternative, version 3.4.x of the headers have been
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003502 automatically selected in your configuration.
3503
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003504config BR2_GDB_VERSION_7_2
3505 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003506 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003507 select BR2_LEGACY
3508 help
3509 Version 7.2.x of gdb has been deprecated for more than four
3510 buildroot releases and is now removed. As an alternative, gdb
3511 7.5.x has been automatically selected in your configuration.
3512
3513config BR2_GDB_VERSION_7_3
3514 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003515 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003516 select BR2_LEGACY
3517 help
3518 Version 7.3.x of gdb has been deprecated for more than four
3519 buildroot releases and is now removed. As an alternative, gdb
3520 7.5.x has been automatically selected in your configuration.
3521
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01003522config BR2_PACKAGE_CCACHE
3523 bool "ccache target package has been removed"
3524 select BR2_LEGACY
3525 help
3526 The 'ccache' target package has been removed since it has been
3527 deprecated for more than four buildroot releases.
3528 Note: using ccache for speeding up builds is still supported.
3529
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003530config BR2_HAVE_DOCUMENTATION
3531 bool "support for documentation on target has been removed"
3532 select BR2_LEGACY
3533 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003534 Support for documentation on target has been removed since it
3535 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003536
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003537config BR2_PACKAGE_AUTOMAKE
3538 bool "automake target package has been removed"
3539 select BR2_LEGACY
3540 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003541 The 'automake' target package has been removed since it has
3542 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003543 Note: the host automake still exists.
3544
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003545config BR2_PACKAGE_AUTOCONF
3546 bool "autoconf target package has been removed"
3547 select BR2_LEGACY
3548 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003549 The 'autoconf' target package has been removed since it has
3550 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003551 Note: the host autoconf still exists.
3552
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01003553config BR2_PACKAGE_XSTROKE
3554 bool "xstroke has been removed"
3555 select BR2_LEGACY
3556 help
3557 The 'xstroke' package has been removed since it has been
3558 deprecated for more than four buildroot releases.
3559
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003560config BR2_PACKAGE_LZMA
3561 bool "lzma target package has been removed"
3562 select BR2_LEGACY
3563 help
3564 The 'lzma' target package has been removed since it has been
3565 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003566 Note: generating lzma-compressed rootfs images is still
3567 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003568
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01003569config BR2_PACKAGE_TTCP
3570 bool "ttcp has been removed"
3571 select BR2_LEGACY
3572 help
3573 The 'ttcp' package has been removed since it has been
3574 deprecated for more than four buildroot releases.
3575
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003576config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003577 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003578 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003579 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003580 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003581 The 'libnfc-llcp' package has been removed since upstream
3582 renamed to 'libllcp'. We have added a new package for
3583 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003584
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00003585config BR2_PACKAGE_MYSQL_CLIENT
3586 bool "MySQL client renamed to MySQL"
3587 select BR2_LEGACY
3588 select BR2_PACKAGE_MYSQL
3589 help
3590 The option has been renamed BR2_PACKAGE_MYSQL
3591
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01003592config BR2_PACKAGE_SQUASHFS3
3593 bool "squashfs3 has been removed"
3594 select BR2_LEGACY
3595 select BR2_PACKAGE_SQUASHFS
3596 help
3597 The 'squashfs3' package has been removed since it has been
3598 deprecated for more than four buildroot releases. Package
3599 'squashfs' (4) has been selected automatically as replacement.
3600
3601config BR2_TARGET_ROOTFS_SQUASHFS3
3602 bool "squashfs3 rootfs support has been removed"
3603 select BR2_LEGACY
3604 help
3605 Together with the removal of the squashfs3 package, support
3606 for squashfs3 root filesystems has been removed too. Squashfs
3607 root filesystems will automatically use squashfs4 now.
3608
Arnaud Aujon560fe852013-12-15 20:23:12 +01003609config BR2_PACKAGE_NETKITBASE
3610 bool "netkitbase has been removed"
3611 select BR2_LEGACY
3612 help
3613 The 'netkitbase' package has been removed since it has been
3614 deprecated since 2012.11. This package provided 'inetd'
3615 which is replaced by 'xinet' and 'ping' which is replaced by
3616 'busybox' or 'fping'.
3617
3618config BR2_PACKAGE_NETKITTELNET
3619 bool "netkittelnet has been removed"
3620 select BR2_LEGACY
3621 help
3622 The 'netkittelnet' package has been removed since it has
3623 been deprecated since 2012.11. 'busybox' provides a telnet
3624 client and should be used instead.
3625
Francois Perrad63058f82014-01-11 16:42:09 +01003626config BR2_PACKAGE_LUASQL
3627 bool "luasql has been replaced by luasql-sqlite3"
3628 select BR2_PACKAGE_LUASQL_SQLITE3
3629 select BR2_LEGACY
3630 help
3631 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
3632
Francois Perrada6c53472014-01-11 16:42:08 +01003633config BR2_PACKAGE_LUACJSON
3634 bool "luacjson has been replaced by lua-cjson"
3635 select BR2_PACKAGE_LUA_CJSON
3636 select BR2_LEGACY
3637 help
3638 The option has been renamed BR2_PACKAGE_LUA_CJSON.
3639
Arnaud Aujon560fe852013-12-15 20:23:12 +01003640###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003641comment "Legacy options removed in 2013.11"
3642
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003643config BR2_PACKAGE_LVM2_DMSETUP_ONLY
3644 bool "lvm2's 'dmsetup only' option removed"
3645 select BR2_LEGACY
3646 help
3647 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
3648 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003649 suite. Therefore, the option has been replaced with the
3650 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003651
3652# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
3653# in order to automatically propagate old configs
3654
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01003655config BR2_PACKAGE_QT_JAVASCRIPTCORE
3656 bool "qt javascriptcore option removed"
3657 select BR2_LEGACY
3658 help
3659 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
3660 force the activation or disabling of the JIT compiler in the
3661 Qt Javascript interpreter. However, the JIT compiler is not
3662 available for all architectures, so forcing its activation
3663 does not always work. Moreover, Qt knows by itself for which
3664 architectures JIT support is possible, and will
3665 automatically enable it if possible.
3666
3667 Therefore, this option was in fact useless, and causing
3668 build problems when enabled on architectures for which the
3669 JIT support was not available. It has been removed, and
3670 there is no replacement: Qt will enable JIT at compile time
3671 when possible.
3672
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003673config BR2_PACKAGE_MODULE_INIT_TOOLS
3674 bool "module-init-tools replaced by kmod"
3675 select BR2_PACKAGE_KMOD
3676 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01003677 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003678 help
3679 The 'module-init-tools' package has been removed, since it
3680 has been depracated upstream and replaced by 'kmod'.
3681
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02003682config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
3683 string "u-boot: the git repository URL option has been renamed"
3684 help
3685 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
3686 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
3687
3688config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
3689 bool
3690 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
3691 select BR2_LEGACY
3692
3693# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
3694# boot/uboot/Config.in
3695
3696config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
3697 string "u-boot: the git repository version option has been renamed"
3698 help
3699 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3700 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3701
3702config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3703 bool
3704 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3705 select BR2_LEGACY
3706
3707# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3708# boot/uboot/Config.in
3709
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02003710config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3711 string "linux: the git repository URL option has been renamed"
3712 help
3713 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3714 been renamed to
3715 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3716
3717config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3718 bool
3719 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3720 select BR2_LEGACY
3721
3722# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3723# linux/Config.in
3724
3725config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3726 string "linux: the git repository version option has been renamed"
3727 help
3728 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3729 been renamed to
3730 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3731
3732config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3733 bool
3734 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3735 select BR2_LEGACY
3736
3737# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
3738# linux/Config.in
3739
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003740###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003741comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003742
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02003743config BR2_ARM_OABI
3744 bool "ARM OABI support has been removed"
3745 select BR2_LEGACY
3746 help
3747 The support for the ARM OABI was deprecated since a while,
3748 and has been removed completely from Buildroot. It is also
3749 deprecated in upstream gcc, since gcc 4.7. People should
3750 switch to EABI instead, which should not be a problem as
3751 long as you don't have pre-built OABI binaries in your
3752 system that you can't recompile.
3753
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003754config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
3755 bool "dosfstools dosfsck renamed to fsck.fat"
3756 select BR2_LEGACY
3757 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
3758 help
3759 dosfsck was renamed upstream to fsck.fat for consistency.
3760
3761config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
3762 bool "dosfstools dosfslabel renamed to fatlabel"
3763 select BR2_LEGACY
3764 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
3765 help
3766 doslabel was renamed upstream to fatlabel for consistency.
3767
3768config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
3769 bool "dosfstools mkdosfs renamed to mkfs.fat"
3770 select BR2_LEGACY
3771 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
3772 help
3773 mkdosfs was renamed upstream to mkfs.fat for consistency.
3774
Thomas Petazzonie21db002013-06-30 21:28:57 +02003775config BR2_ELF2FLT
3776 bool "the elf2flt option has been renamed"
3777 select BR2_LEGACY
3778 help
3779 The BR2_ELF2FLT option has been renamed to
3780 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
3781 the package infrastructure.
3782
Thomas Petazzonid8060052013-07-16 10:03:17 +02003783config BR2_VFP_FLOAT
3784 bool "the ARM VFP floating point option has been renamed"
3785 select BR2_LEGACY
3786 help
3787 Due to a major refactoring of the floating-point handling of
3788 the ARM architecture support, the BR2_VFP_FLOAT option has
3789 been replaced with a choice of options that allows to select
3790 between various VFP versions/capabilities.
3791
Samuel Martinba8f82b2013-08-30 06:08:59 +02003792config BR2_PACKAGE_GCC_TARGET
3793 bool "gcc on the target filesystem has been removed"
3794 select BR2_LEGACY
3795 help
3796 The support for gcc in the target filesystem was deprecated
3797 since a while, and has been removed completely from Buildroot.
3798 See Buildroot's documentation for more explanations.
3799
3800config BR2_HAVE_DEVFILES
3801 bool "development files in target filesystem has been removed"
3802 select BR2_LEGACY
3803 help
3804 The installation of the development files in the target
3805 filesystem was deprecated since a while, and has been removed
3806 completely from Buildroot.
3807 See Buildroot's documentation for more explanations.
3808
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00003809endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02003810
3811endif # !SKIP_LEGACY