blob: c862532af235a476014f097cb9856514f490e5de [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
2# Config.in.legacy - support for backward compatibility
3#
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +02004# When an existing Config.in symbol is removed, it should be added again in
5# this file, and take appropriate action to approximate backward compatibility.
6# This will make the transition for the user more convenient.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00007#
8# When adding legacy symbols to this file, add them to the front. The oldest
9# symbols will be removed again after about two years.
10#
11# The symbol should be copied as-is from the place where it was previously
12# defined, but the help text should be removed or replaced with something that
13# explains how to fix it.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020014#
15# For bool options, the old symbol should select BR2_LEGACY, so that the user
16# is informed at build-time about selected legacy options.
17# If there is an equivalent (set of) new symbols, these should be select'ed by
18# the old symbol for backwards compatibility.
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010019# It is not possible to select an option that is part of a choice. In that
20# case, the new option should use the old symbol as default. This requires a
21# change outside of Config.in.legacy, and this should be clearly marked as such
22# in a comment, so that removal of legacy options also include the removal of
23# these external references.
24#
25# [Example: renaming a bool option that is part of a choice from FOO to BAR]
26# original choice:
27# choice
28# prompt "Choose foobar"
29# config BR2_FOO_1
30# bool "foobar 1"
31# config BR2_FOO_2
32# bool "foobar 2"
33# endchoice
34#
35# becomes:
36# choice
37# prompt "Choose foobar"
38# default BR2_BAR_1 if BR2_FOO_1 # legacy
39# default BR2_BAR_2 if BR2_FOO_2 # legacy
40# config BR2_BAR_1
41# bool "foobar 1"
42# config BR2_BAR_2
43# bool "foobar 2"
44# endchoice
45#
46# and in Config.in.legacy:
47# config BR2_FOO_1
48# bool "foobar 1 has been renamed"
49# help
50# <suitable help text>
51# # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
52# config BR2_FOO_2
53# bool "foobar 2 has been renamed"
54# help
55# <suitable help text>
56# # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
57#
58# [End of example]
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020059#
60# For string options, it is not possible to directly select another symbol. In
61# this case, a hidden wrap bool option has to be added, that defaults to y if
62# the old string is not set at its default value. The wrap symbol should select
63# BR2_LEGACY.
64# If the original symbol has been renamed, the new symbol should use the value
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010065# of the old symbol as default. Like for choice options, a comment should be
66# added to flag that the symbol is still used in another file.
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020067#
68# [Example: renaming a string option from FOO to BAR]
69# original symbol:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010070# config BR2_FOO_STRING
71# string "Some foo string"
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020072#
73# becomes:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010074# config BR2_BAR_STRING
75# string "Some bar string"
76# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020077#
78# and in Config.in.legacy:
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010079# config BR2_FOO_STRING
80# string "The foo string has been renamed"
81# help
82# <suitable help text>
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020083#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010084# config BR2_FOO_STRING_WRAP
85# bool
86# default y if BR2_FOO_STRING != ""
87# select BR2_LEGACY
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020088#
Arnout Vandecappelle94d403d2015-12-19 00:52:03 +010089# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
Thomas De Schampheleiref8c56f52013-09-02 22:07:50 +020090#
91# [End of example]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000092
Arnout Vandecappelle53903a12015-04-11 01:49:02 +020093config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97if !BR2_SKIP_LEGACY
98
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +000099config BR2_LEGACY
100 bool
101 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -0300102 This option is selected automatically when your old .config
103 uses an option that no longer exists in current buildroot. In
104 that case, the build will fail. Look for config options which
105 are selected in the menu below: they no longer exist and
106 should be replaced by something else.
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000107
108# This comment fits exactly in a 80-column display
109comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000112menu "Legacy config options"
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +0000113
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000114if BR2_LEGACY
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200115comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000116comment "Your old configuration uses legacy options that no "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200117comment "longer exist in buildroot, as indicated in the menu "
118comment "below. As long as these options stay selected, or in"
119comment "case of string options are non-empty, the build "
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000120comment "will fail. "
Thomas De Schampheleirecce5baa2013-09-02 22:07:51 +0200121comment "* "
122comment "Where possible, an automatic conversion from old to "
123comment "new symbols has been performed. Before making any "
124comment "change in this legacy menu, make sure to exit the "
125comment "configuration editor a first time and save the "
126comment "configuration. Otherwise, the automatic conversion "
127comment "of symbols will be lost. "
128comment "* "
129comment "After this initial save, reopen the configuration "
130comment "editor, inspect the options selected below, read "
131comment "their help texts, and verify/update the new "
132comment "configuration in the corresponding configuration "
133comment "menus. When everything is ok, you can disable the "
134comment "legacy options in the menu below. Once you have "
135comment "disabled all legacy options, this text will "
136comment "disappear and you will be able to start the build. "
137comment "* "
Yann E. MORIN0b39b142017-12-27 00:39:04 +0100138comment "Note: legacy options older than 5 years have been "
139comment "removed, and configuration files that still have "
140comment "those options set, will fail to build, or run in "
141comment "unpredictable ways. "
Thomas De Schampheleirea25e4a42013-09-02 22:07:52 +0200142comment "----------------------------------------------------"
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +0000143endif
144
Yann E. MORIN67eaf702013-06-30 00:38:12 +0200145###############################################################################
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200146comment "Legacy options removed in 2018.11"
147
Fabrice Fontaine2c3c7c42018-09-30 16:02:06 +0200148config BR2_PACKAGE_BOOTUTILS
149 bool "bootutils package removed"
150 select BR2_LEGACY
151 help
152 The bootutils package was removed.
153
Romain Naouraddcc392018-09-30 14:55:46 +0200154config BR2_PACKAGE_EXPEDITE
155 bool "expedite package has been removed"
156 select BR2_LEGACY
157 help
158 expedite is not actively maintained anymore.
159 https://sourceforge.net/p/enlightenment/mailman/message/36428571
160
Bernd Kuhls3d3235f2018-09-10 18:30:00 +0200161config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
162 bool "mesa3d opengl texture float option removed"
163 select BR2_LEGACY
164 help
165 mesa3d now unconditionally enables floating-point textures,
166 as the corresponding patent has expired.
167
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200168config BR2_KERNEL_HEADERS_4_10
169 bool "kernel headers version 4.10.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200170 select BR2_LEGACY
171 help
172 Version 4.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200173 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200174
175config BR2_KERNEL_HEADERS_4_11
176 bool "kernel headers version 4.11.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200177 select BR2_LEGACY
178 help
179 Version 4.11.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200180 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200181
182config BR2_KERNEL_HEADERS_4_12
183 bool "kernel headers version 4.12.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200184 select BR2_LEGACY
185 help
186 Version 4.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200187 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200188
189config BR2_KERNEL_HEADERS_4_13
190 bool "kernel headers version 4.13.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200191 select BR2_LEGACY
192 help
193 Version 4.13.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200194 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200195
196config BR2_KERNEL_HEADERS_4_15
197 bool "kernel headers version 4.15.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200198 select BR2_LEGACY
199 help
200 Version 4.15.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200201 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200202
Yann E. MORINd220ce62018-10-04 22:00:30 +0200203config BR2_KERNEL_HEADERS_4_17
204 bool "kernel headers version 4.17.x are no longer supported"
205 select BR2_LEGACY
206 help
207 Version 4.17.x of the Linux kernel headers are no longer
208 maintained upstream and are now removed.
209
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200210###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200211comment "Legacy options removed in 2018.08"
212
Bernd Kuhlsf9063022018-07-21 16:16:48 +0200213config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
214 bool "Modular X.org server was updated to version 1.20.0"
215 select BR2_LEGACY
216 select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
217 help
218 Modular X.org server was updated to version 1.20.0
219
Bernd Kuhls14c52532018-07-21 16:16:44 +0200220config BR2_PACKAGE_XPROTO_APPLEWMPROTO
221 bool "xproto-applewmproto package replaced by xorgproto"
222 select BR2_LEGACY
223 select BR2_PACKAGE_XORGPROTO
224 help
225 The xproto-applewmproto package has been replaced by the
226 xorgproto package, which combines all xproto_* packages.
227
228config BR2_PACKAGE_XPROTO_BIGREQSPROTO
229 bool "xproto-bigreqsproto package replaced by xorgproto"
230 select BR2_LEGACY
231 select BR2_PACKAGE_XORGPROTO
232 help
233 The xproto-bigreqsproto package has been replaced by the
234 xorgproto package, which combines all xproto_* packages.
235
236config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
237 bool "xproto-compositeproto package replaced by xorgproto"
238 select BR2_LEGACY
239 select BR2_PACKAGE_XORGPROTO
240 help
241 The xproto-compositeproto package has been replaced by the
242 xorgproto package, which combines all xproto_* packages.
243
244config BR2_PACKAGE_XPROTO_DAMAGEPROTO
245 bool "xproto-dameproto package replaced by xorgproto"
246 select BR2_LEGACY
247 select BR2_PACKAGE_XORGPROTO
248 help
249 The xproto-dameproto package has been replaced by the
250 xorgproto package, which combines all xproto_* packages.
251
252config BR2_PACKAGE_XPROTO_DMXPROTO
253 bool "xproto-dmxproto package replaced by xorgproto"
254 select BR2_LEGACY
255 select BR2_PACKAGE_XORGPROTO
256 help
257 The xproto-dmxproto package has been replaced by the
258 xorgproto package, which combines all xproto_* packages.
259
260config BR2_PACKAGE_XPROTO_DRI2PROTO
261 bool "xproto-dri2proto package replaced by xorgproto"
262 select BR2_LEGACY
263 select BR2_PACKAGE_XORGPROTO
264 help
265 The xproto-dri2proto package has been replaced by the
266 xorgproto package, which combines all xproto_* packages.
267
268config BR2_PACKAGE_XPROTO_DRI3PROTO
269 bool "xproto-dri3proto package replaced by xorgproto"
270 select BR2_LEGACY
271 select BR2_PACKAGE_XORGPROTO
272 help
273 The xproto-dri3proto package has been replaced by the
274 xorgproto package, which combines all xproto_* packages.
275
276config BR2_PACKAGE_XPROTO_FIXESPROTO
277 bool "xproto-fixesproto package replaced by xorgproto"
278 select BR2_LEGACY
279 select BR2_PACKAGE_XORGPROTO
280 help
281 The xproto-fixesproto package has been replaced by the
282 xorgproto package, which combines all xproto_* packages.
283
284config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
285 bool "xproto-fontcacheproto package replaced by xorgproto"
286 select BR2_LEGACY
287 select BR2_PACKAGE_XORGPROTO
288 help
289 The xproto-fontcacheproto package has been replaced by the
290 xorgproto package, which combines all xproto_* packages.
291
292config BR2_PACKAGE_XPROTO_FONTSPROTO
293 bool "xproto-fontsproto package replaced by xorgproto"
294 select BR2_LEGACY
295 select BR2_PACKAGE_XORGPROTO
296 help
297 The xproto-fontsproto package has been replaced by the
298 xorgproto package, which combines all xproto_* packages.
299
300config BR2_PACKAGE_XPROTO_GLPROTO
301 bool "xproto-glproto package replaced by xorgproto"
302 select BR2_LEGACY
303 select BR2_PACKAGE_XORGPROTO
304 help
305 The xproto-glproto package has been replaced by the
306 xorgproto package, which combines all xproto_* packages.
307
308config BR2_PACKAGE_XPROTO_INPUTPROTO
309 bool "xproto-inputproto package replaced by xorgproto"
310 select BR2_LEGACY
311 select BR2_PACKAGE_XORGPROTO
312 help
313 The xproto-inputproto package has been replaced by the
314 xorgproto package, which combines all xproto_* packages.
315
316config BR2_PACKAGE_XPROTO_KBPROTO
317 bool "xproto-kbproto package replaced by xorgproto"
318 select BR2_LEGACY
319 select BR2_PACKAGE_XORGPROTO
320 help
321 The xproto-kbproto package has been replaced by the
322 xorgproto package, which combines all xproto_* packages.
323
324config BR2_PACKAGE_XPROTO_PRESENTPROTO
325 bool "xproto-presentproto package replaced by xorgproto"
326 select BR2_LEGACY
327 select BR2_PACKAGE_XORGPROTO
328 help
329 The xproto-presentproto package has been replaced by the
330 xorgproto package, which combines all xproto_* packages.
331
332config BR2_PACKAGE_XPROTO_RANDRPROTO
333 bool "xproto-randrproto package replaced by xorgproto"
334 select BR2_LEGACY
335 select BR2_PACKAGE_XORGPROTO
336 help
337 The xproto-randrproto package has been replaced by the
338 xorgproto package, which combines all xproto_* packages.
339
340config BR2_PACKAGE_XPROTO_RECORDPROTO
341 bool "xproto-recordproto package replaced by xorgproto"
342 select BR2_LEGACY
343 select BR2_PACKAGE_XORGPROTO
344 help
345 The xproto-recordproto package has been replaced by the
346 xorgproto package, which combines all xproto_* packages.
347
348config BR2_PACKAGE_XPROTO_RENDERPROTO
349 bool "xproto-renderproto package replaced by xorgproto"
350 select BR2_LEGACY
351 select BR2_PACKAGE_XORGPROTO
352 help
353 The xproto-renderproto package has been replaced by the
354 xorgproto package, which combines all xproto_* packages.
355
356config BR2_PACKAGE_XPROTO_RESOURCEPROTO
357 bool "xproto-resourceproto package replaced by xorgproto"
358 select BR2_LEGACY
359 select BR2_PACKAGE_XORGPROTO
360 help
361 The xproto-resourceproto package has been replaced by the
362 xorgproto package, which combines all xproto_* packages.
363
364config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
365 bool "xproto-scrnsaverprot package replaced by xorgproto"
366 select BR2_LEGACY
367 select BR2_PACKAGE_XORGPROTO
368 help
369 The xproto-scrnsaverprot package has been replaced by the
370 xorgproto package, which combines all xproto_* packages.
371
372config BR2_PACKAGE_XPROTO_VIDEOPROTO
373 bool "xproto-videoproto package replaced by xorgproto"
374 select BR2_LEGACY
375 select BR2_PACKAGE_XORGPROTO
376 help
377 The xproto-videoproto package has been replaced by the
378 xorgproto package, which combines all xproto_* packages.
379
380config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
381 bool "xproto-windowswmproto package replaced by xorgproto"
382 select BR2_LEGACY
383 select BR2_PACKAGE_XORGPROTO
384 help
385 The xproto-windowswmproto package has been replaced by the
386 xorgproto package, which combines all xproto_* packages.
387
388config BR2_PACKAGE_XPROTO_XCMISCPROTO
389 bool "xproto-xcmiscproto package replaced by xorgproto"
390 select BR2_LEGACY
391 select BR2_PACKAGE_XORGPROTO
392 help
393 The xproto-xcmiscproto package has been replaced by the
394 xorgproto package, which combines all xproto_* packages.
395
396config BR2_PACKAGE_XPROTO_XEXTPROTO
397 bool "xproto-xextproto package replaced by xorgproto"
398 select BR2_LEGACY
399 select BR2_PACKAGE_XORGPROTO
400 help
401 The xproto-xextproto package has been replaced by the
402 xorgproto package, which combines all xproto_* packages.
403
404config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
405 bool "xproto-xf86bigfontproto package replaced by xorgproto"
406 select BR2_LEGACY
407 select BR2_PACKAGE_XORGPROTO
408 help
409 The xproto-xf86bigfontproto package has been replaced by the
410 xorgproto package, which combines all xproto_* packages.
411
412config BR2_PACKAGE_XPROTO_XF86DGAPROTO
413 bool "xproto-xf86dgaproto package replaced by xorgproto"
414 select BR2_LEGACY
415 select BR2_PACKAGE_XORGPROTO
416 help
417 The xproto-xf86dgaproto package has been replaced by the
418 xorgproto package, which combines all xproto_* packages.
419
420config BR2_PACKAGE_XPROTO_XF86DRIPROTO
421 bool "xproto-xf86driproto package replaced by xorgproto"
422 select BR2_LEGACY
423 select BR2_PACKAGE_XORGPROTO
424 help
425 The xproto-xf86driproto package has been replaced by the
426 xorgproto package, which combines all xproto_* packages.
427
428config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
429 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
430 select BR2_LEGACY
431 select BR2_PACKAGE_XORGPROTO
432 help
433 The xproto-xf86vidmodeproto package has been replaced by the
434 xorgproto package, which combines all xproto_* packages.
435
436config BR2_PACKAGE_XPROTO_XINERAMAPROTO
437 bool "xproto-xineramaproto package replaced by xorgproto"
438 select BR2_LEGACY
439 select BR2_PACKAGE_XORGPROTO
440 help
441 The xproto-xineramaproto package has been replaced by the
442 xorgproto package, which combines all xproto_* packages.
443
444config BR2_PACKAGE_XPROTO_XPROTO
445 bool "xproto-xproto package replaced by xorgproto"
446 select BR2_LEGACY
447 select BR2_PACKAGE_XORGPROTO
448 help
449 The xproto-xproto package has been replaced by the
450 xorgproto package, which combines all xproto_* packages.
451
452config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
453 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
454 select BR2_LEGACY
455 select BR2_PACKAGE_XORGPROTO
456 help
457 The xproto-xproxymanagementprotocol package has been
458 replaced by the xorgproto package, which combines all
459 xproto_* packages.
460
Adam Duskett3f2aef52018-06-24 00:35:22 +0200461config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
462 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
463 select BR2_LEGACY
464 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
465 help
466 The opengl option has been moved from gst1-plugins-bad to
467 gst1-plugins-base.
468
469config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
470 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
471 select BR2_LEGACY
472 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
473 help
474 The gles2 option has been moved from gst1-plugins-bad to
475 gst1-plugins-base.
476
477config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
478 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
479 select BR2_LEGACY
480 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
481 help
482 The glx option has been moved from gst1-plugins-bad to
483 gst1-plugins-base.
484
485config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
486 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
487 select BR2_LEGACY
488 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
489 help
490 The egl option has been moved from gst1-plugins-bad to
491 gst1-plugins-base.
492
493config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
494 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
495 select BR2_LEGACY
496 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
497 help
498 The x11 option has been moved from gst1-plugins-bad to
499 gst1-plugins-base.
500
501config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
502 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
503 select BR2_LEGACY
504 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
505 help
506 The wayland option has been moved from gst1-plugins-bad to
507 gst1-plugins-base.
508
509config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
510 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
511 select BR2_LEGACY
512 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
513 help
514 The dispmanx option has been moved from gst1-plugins-mad to
515 gst1-plugins-base.
516
517config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
518 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
519 select BR2_LEGACY
520 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
521 help
522 The audiomixer option has been moved from gst1-plugins-bad to
523 gst1-plugins-base.
524
525config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
526 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
527 select BR2_LEGACY
528 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
529 help
530 The lame option has been moved from gst1-plugins-ugly to
531 gst1-plugins-good.
532
533config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
534 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
535 select BR2_LEGACY
536 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
537 help
538 The mpg123 option has been moved from gst1-plugins-ugly to
539 gst1-plugins-good.
540
Romain Naourbae35c82018-06-24 15:53:10 +0200541config BR2_GDB_VERSION_7_11
542 bool "gdb 7.11 has been removed"
543 select BR2_LEGACY
544 help
545 The 7.11 version of gdb has been removed. Use a newer version
546 instead.
547
Romain Naour54a2e7a2018-06-24 15:53:09 +0200548config BR2_GDB_VERSION_7_10
549 bool "gdb 7.10 has been removed"
550 select BR2_LEGACY
551 help
552 The 7.10 version of gdb has been removed. Use a newer version
553 instead.
554
555###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200556comment "Legacy options removed in 2018.05"
557
Petr Vorel8553b392018-05-13 21:07:36 +0200558config BR2_PACKAGE_MEDIAART_BACKEND_NONE
559 bool "libmediaart none backend option renamed"
560 select BR2_LEGACY
561 help
562 For consistency reasons, the option
563 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
564 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
565
566config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
567 bool "libmediaart gdk-pixbuf backend option renamed"
568 select BR2_LEGACY
569 help
570 For consistency reasons, the option
571 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
572 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
573
574config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
575 bool "libmediaart qt backend option renamed"
576 select BR2_LEGACY
577 help
578 For consistency reasons, the option
579 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
580 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
581
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200582# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
583# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200584config BR2_PACKAGE_TI_SGX_AM335X
585 bool "ti-sgx-km AM335X option renamed"
586 select BR2_LEGACY
587 help
588 For consistency reasons, the option
589 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
590 BR2_PACKAGE_TI_SGX_KM_AM335X.
591
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200592# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
593# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200594config BR2_PACKAGE_TI_SGX_AM437X
595 bool "ti-sgx-km AM437X option renamed"
596 select BR2_LEGACY
597 help
598 For consistency reasons, the option
599 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
600 BR2_PACKAGE_TI_SGX_KM_AM437X.
601
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200602# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
603# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200604config BR2_PACKAGE_TI_SGX_AM4430
605 bool "ti-sgx-km AM4430 option renamed"
606 select BR2_LEGACY
607 help
608 For consistency reasons, the option
609 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
610 BR2_PACKAGE_TI_SGX_KM_AM4430.
611
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200612# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
613# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200614config BR2_PACKAGE_TI_SGX_AM5430
615 bool "ti-sgx-km AM5430 option renamed"
616 select BR2_LEGACY
617 help
618 For consistency reasons, the option
619 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
620 BR2_PACKAGE_TI_SGX_KM_AM5430.
621
Thomas Petazzonia79df202018-05-13 21:07:34 +0200622config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
623 bool "janus-gateway audio-bridge option renamed"
624 select BR2_LEGACY
625 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
626 help
627 For consistency reasons, the janus-gateway option
628 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
629 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
630
631config BR2_PACKAGE_JANUS_ECHO_TEST
632 bool "janus-gateway echo-test option renamed"
633 select BR2_LEGACY
634 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
635 help
636 For consistency reasons, the janus-gateway option
637 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
638 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
639
640config BR2_PACKAGE_JANUS_RECORDPLAY
641 bool "janus-gateway recordplay option renamed"
642 select BR2_LEGACY
643 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
644 help
645 For consistency reasons, the janus-gateway option
646 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
647 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
648
649config BR2_PACKAGE_JANUS_SIP_GATEWAY
650 bool "janus-gateway sip-gateway option renamed"
651 select BR2_LEGACY
652 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
653 help
654 For consistency reasons, the janus-gateway option
655 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
656 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
657
658config BR2_PACKAGE_JANUS_STREAMING
659 bool "janus-gateway streaming option renamed"
660 select BR2_LEGACY
661 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
662 help
663 For consistency reasons, the janus-gateway option
664 BR2_PACKAGE_JANUS_STREAMING has been renamed to
665 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
666
667config BR2_PACKAGE_JANUS_TEXT_ROOM
668 bool "janus-gateway text-room option renamed"
669 select BR2_LEGACY
670 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
671 help
672 For consistency reasons, the janus-gateway option
673 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
674 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
675
676config BR2_PACKAGE_JANUS_VIDEO_CALL
677 bool "janus-gateway video-call option renamed"
678 select BR2_LEGACY
679 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
680 help
681 For consistency reasons, the janus-gateway option
682 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
683 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
684
685config BR2_PACKAGE_JANUS_VIDEO_ROOM
686 bool "janus-gateway video-room option renamed"
687 select BR2_LEGACY
688 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
689 help
690 For consistency reasons, the janus-gateway option
691 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
692 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
693
694config BR2_PACKAGE_JANUS_MQTT
695 bool "janus-gateway mqtt option renamed"
696 select BR2_LEGACY
697 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
698 help
699 For consistency reasons, the janus-gateway option
700 BR2_PACKAGE_JANUS_MQTT has been renamed to
701 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
702
703config BR2_PACKAGE_JANUS_RABBITMQ
704 bool "janus-gateway rabbitmq option renamed"
705 select BR2_LEGACY
706 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
707 help
708 For consistency reasons, the janus-gateway option
709 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
710 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
711
712config BR2_PACKAGE_JANUS_REST
713 bool "janus-gateway rest option renamed"
714 select BR2_LEGACY
715 select BR2_PACKAGE_JANUS_GATEWAY_REST
716 help
717 For consistency reasons, the janus-gateway option
718 BR2_PACKAGE_JANUS_REST has been renamed to
719 BR2_PACKAGE_JANUS_GATEWAY_REST.
720
721config BR2_PACKAGE_JANUS_UNIX_SOCKETS
722 bool "janus-gateway unix-sockets option renamed"
723 select BR2_LEGACY
724 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
725 help
726 For consistency reasons, the janus-gateway option
727 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
728 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
729
730config BR2_PACKAGE_JANUS_WEBSOCKETS
731 bool "janus-gateway websockets option renamed"
732 select BR2_LEGACY
733 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
734 help
735 For consistency reasons, the janus-gateway option
736 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
737 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
738
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200739config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
740 bool "ipsec-tools security context disable option renamed"
741 select BR2_LEGACY
742 help
743 For consistency reasons, the option
744 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
745 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
746
747config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
748 bool "ipsec-tools SELinux security context enable option renamed"
749 select BR2_LEGACY
750 help
751 For consistency reasons, the option
752 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
753 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
754
755config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
756 bool "ipsec-tools kernel security context enable option renamed"
757 select BR2_LEGACY
758 help
759 For consistency reasons, the option
760 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
761 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
762
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +0200763config BR2_PACKAGE_LIBTFDI_CPP
764 bool "libftdi C++ bindings option renamed"
765 select BR2_LEGACY
766 select BR2_PACKAGE_LIBFTDI_CPP
767 help
768 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
769 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
770 name.
771
Thomas Petazzoni94c14622018-05-13 21:07:31 +0200772config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
773 bool "jquery-ui-themes option black-tie renamed"
774 select BR2_LEGACY
775 help
776 For consistency reasons, the jquery-ui-themes option for the
777 black-tie theme has been renamed from
778 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
779 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
780
781config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
782 bool "jquery-ui-themes option blitzer renamed"
783 select BR2_LEGACY
784 help
785 For consistency reasons, the jquery-ui-themes option for the
786 blitzer theme has been renamed from
787 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
788 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
789
790config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
791 bool "jquery-ui-themes option cupertino renamed"
792 select BR2_LEGACY
793 help
794 For consistency reasons, the jquery-ui-themes option for the
795 cupertino theme has been renamed from
796 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
797 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
798
799config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
800 bool "jquery-ui-themes option dark-hive renamed"
801 select BR2_LEGACY
802 help
803 For consistency reasons, the jquery-ui-themes option for the
804 dark-hive theme has been renamed from
805 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
806 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
807
808config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
809 bool "jquery-ui-themes option dot-luv renamed"
810 select BR2_LEGACY
811 help
812 For consistency reasons, the jquery-ui-themes option for the
813 dot-luv theme has been renamed from
814 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
815 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
816
817config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
818 bool "jquery-ui-themes option eggplant renamed"
819 select BR2_LEGACY
820 help
821 For consistency reasons, the jquery-ui-themes option for the
822 eggplant theme has been renamed from
823 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
824 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
825
826config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
827 bool "jquery-ui-themes option excite-bike renamed"
828 select BR2_LEGACY
829 help
830 For consistency reasons, the jquery-ui-themes option for the
831 excite-bike theme has been renamed from
832 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
833 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
834
835config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
836 bool "jquery-ui-themes option flick renamed"
837 select BR2_LEGACY
838 help
839 For consistency reasons, the jquery-ui-themes option for the
840 flick theme has been renamed from
841 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
842 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
843
844config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
845 bool "jquery-ui-themes option hot-sneaks renamed"
846 select BR2_LEGACY
847 help
848 For consistency reasons, the jquery-ui-themes option for the
849 hot-sneaks theme has been renamed from
850 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
851 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
852
853config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
854 bool "jquery-ui-themes option humanity renamed"
855 select BR2_LEGACY
856 help
857 For consistency reasons, the jquery-ui-themes option for the
858 humanity theme has been renamed from
859 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
860 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
861
862config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
863 bool "jquery-ui-themes option le-frog renamed"
864 select BR2_LEGACY
865 help
866 For consistency reasons, the jquery-ui-themes option for the
867 le-frog theme has been renamed from
868 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
869 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
870
871config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
872 bool "jquery-ui-themes option mint-choc renamed"
873 select BR2_LEGACY
874 help
875 For consistency reasons, the jquery-ui-themes option for the
876 mint-choc theme has been renamed from
877 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
878 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
879
880config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
881 bool "jquery-ui-themes option overcast renamed"
882 select BR2_LEGACY
883 help
884 For consistency reasons, the jquery-ui-themes option for the
885 overcast theme has been renamed from
886 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
887 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
888
889config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
890 bool "jquery-ui-themes option pepper-grinder renamed"
891 select BR2_LEGACY
892 help
893 For consistency reasons, the jquery-ui-themes option for the
894 pepper-grinder theme has been renamed from
895 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
896 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
897
898config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
899 bool "jquery-ui-themes option redmond renamed"
900 select BR2_LEGACY
901 help
902 For consistency reasons, the jquery-ui-themes option for the
903 redmond theme has been renamed from
904 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
905 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
906
907config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
908 bool "jquery-ui-themes option smoothness renamed"
909 select BR2_LEGACY
910 help
911 For consistency reasons, the jquery-ui-themes option for the
912 smoothness theme has been renamed from
913 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
914 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
915
916config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
917 bool "jquery-ui-themes option south-street renamed"
918 select BR2_LEGACY
919 help
920 For consistency reasons, the jquery-ui-themes option for the
921 south-street theme has been renamed from
922 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
923 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
924
925config BR2_PACKAGE_JQUERY_UI_THEME_START
926 bool "jquery-ui-themes option start renamed"
927 select BR2_LEGACY
928 help
929 For consistency reasons, the jquery-ui-themes option for the
930 start theme has been renamed from
931 BR2_PACKAGE_JQUERY_UI_THEME_START to
932 BR2_PACKAGE_JQUERY_UI_THEMES_START.
933
934config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
935 bool "jquery-ui-themes option sunny renamed"
936 select BR2_LEGACY
937 help
938 For consistency reasons, the jquery-ui-themes option for the
939 sunny theme has been renamed from
940 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
941 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
942
943config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
944 bool "jquery-ui-themes option swanky-purse renamed"
945 select BR2_LEGACY
946 help
947 For consistency reasons, the jquery-ui-themes option for the
948 swanky-purse theme has been renamed from
949 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
950 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
951
952config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
953 bool "jquery-ui-themes option trontastic renamed"
954 select BR2_LEGACY
955 help
956 For consistency reasons, the jquery-ui-themes option for the
957 trontastic theme has been renamed from
958 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
959 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
960
961config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
962 bool "jquery-ui-themes option ui-darkness renamed"
963 select BR2_LEGACY
964 help
965 For consistency reasons, the jquery-ui-themes option for the
966 ui-darkness theme has been renamed from
967 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
968 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
969
970config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
971 bool "jquery-ui-themes option ui-lightness renamed"
972 select BR2_LEGACY
973 help
974 For consistency reasons, the jquery-ui-themes option for the
975 ui-lightness theme has been renamed from
976 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
977 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
978
979config BR2_PACKAGE_JQUERY_UI_THEME_VADER
980 bool "jquery-ui-themes option vader renamed"
981 select BR2_LEGACY
982 help
983 For consistency reasons, the jquery-ui-themes option for the
984 vader theme has been renamed from
985 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
986 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
987
Thomas Petazzonib2b874f2018-05-13 21:07:30 +0200988config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
989 bool "bluez5-utils health plugin option renamed"
990 select BR2_LEGACY
991 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
992 help
993 For consistency reasons, the option
994 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
995 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
996
997config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
998 bool "bluez5-utils midi plugin option renamed"
999 select BR2_LEGACY
1000 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
1001 help
1002 For consistency reasons, the option
1003 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
1004 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
1005
1006config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
1007 bool "bluez5-utils nfc plugin option renamed"
1008 select BR2_LEGACY
1009 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
1010 help
1011 For consistency reasons, the option
1012 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
1013 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
1014
1015config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
1016 bool "bluez5-utils sap plugin option renamed"
1017 select BR2_LEGACY
1018 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
1019 help
1020 For consistency reasons, the option
1021 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
1022 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
1023
1024config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
1025 bool "bluez5-utils sixaxis plugin option renamed"
1026 select BR2_LEGACY
1027 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
1028 help
1029 For consistency reasons, the option
1030 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
1031 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
1032
Bernd Kuhls79a678d2018-05-02 08:05:40 +02001033config BR2_PACKAGE_TRANSMISSION_REMOTE
1034 bool "transmission remote tool option removed"
1035 select BR2_LEGACY
1036 select BR2_PACKAGE_TRANSMISSION_DAEMON
1037 help
1038 Upstream does not provide a separate configure option for
1039 the tool transmission-remote, it is built when the
1040 transmission daemon has been enabled. Therefore, Buildroot
1041 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
1042 for you.
1043
Fabrice Fontainef6421152018-05-07 00:09:01 +02001044config BR2_PACKAGE_LIBKCAPI_APPS
1045 bool "libkcapi test applications removed"
1046 select BR2_LEGACY
1047 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
1048 select BR2_PACKAGE_LIBKCAPI_RNGAPP
1049 select BR2_PACKAGE_LIBKCAPI_SPEED
1050 select BR2_PACKAGE_LIBKCAPI_TEST
1051 help
1052 Test applications (hasher, rng read, speed-test, test) now
1053 have their own configuration options in the libkcapi menu.
1054
Bernd Kuhlsdacb1762018-05-01 09:10:17 +02001055config BR2_PACKAGE_MPLAYER
1056 bool "mplayer package removed"
1057 select BR2_LEGACY
1058 help
1059 The mplayer package was removed.
1060
1061config BR2_PACKAGE_MPLAYER_MPLAYER
1062 bool "mplayer package removed"
1063 select BR2_LEGACY
1064 help
1065 The mplayer package was removed.
1066
1067config BR2_PACKAGE_MPLAYER_MENCODER
1068 bool "mplayer package removed"
1069 select BR2_LEGACY
1070 help
1071 The mplayer package was removed.
1072
Bernd Kuhls3f449112018-05-01 09:10:14 +02001073config BR2_PACKAGE_LIBPLAYER_MPLAYER
1074 bool "mplayer support in libplayer removed"
1075 select BR2_LEGACY
1076 help
1077 The mplayer package was removed.
1078
Thomas Petazzoni46444ba2018-04-04 18:00:09 +02001079config BR2_PACKAGE_IQVLINUX
1080 bool "iqvlinux package removed"
1081 select BR2_LEGACY
1082 help
1083 This package contained a kernel module from Intel, which
1084 could only be used together with Intel userspace tools
1085 provided under NDA, which also come with the same kernel
1086 module. The copy of the kernel module available on
1087 SourceForge is provided only to comply with the GPLv2
1088 requirement. Intel engineers were even surprised it even
1089 built and were not willing to make any effort to fix their
1090 tarball naming to contain a version number. Therefore, it
1091 does not make sense for Buildroot to provide such a package.
1092
1093 See https://sourceforge.net/p/e1000/bugs/589/ for the
1094 discussion.
1095
Thomas Petazzonie2ea4152018-04-05 21:50:18 +02001096config BR2_BINFMT_FLAT_SEP_DATA
1097 bool "binfmt FLAT with separate code and data removed"
1098 select BR2_LEGACY
1099 help
1100 This FLAT binary format was only used on Blackfin, which has
1101 been removed.
1102
Thomas Petazzoni325bb372018-04-05 21:50:17 +02001103config BR2_bfin
1104 bool "Blackfin architecture support removed"
1105 select BR2_LEGACY
1106 help
1107 Following the removal of Blackfin support for the upstream
1108 Linux kernel, Buildroot has removed support for this CPU
1109 architecture.
1110
Bernd Kuhls9657e962018-04-01 15:58:08 +02001111config BR2_PACKAGE_KODI_ADSP_BASIC
1112 bool "kodi-adsp-basic package removed"
1113 select BR2_LEGACY
1114 help
1115 kodi-adsp-basic is unmaintained
1116
1117config BR2_PACKAGE_KODI_ADSP_FREESURROUND
1118 bool "kodi-adsp-freesurround package removed"
1119 select BR2_LEGACY
1120 help
1121 kodi-adsp-freesurround is unmaintained
1122
1123###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +02001124comment "Legacy options removed in 2018.02"
1125
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001126config BR2_KERNEL_HEADERS_3_4
1127 bool "kernel headers version 3.4.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001128 select BR2_LEGACY
1129 help
1130 Version 3.4.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001131 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001132
1133config BR2_KERNEL_HEADERS_3_10
1134 bool "kernel headers version 3.10.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001135 select BR2_LEGACY
1136 help
1137 Version 3.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001138 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001139
1140config BR2_KERNEL_HEADERS_3_12
1141 bool "kernel headers version 3.12.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001142 select BR2_LEGACY
1143 help
1144 Version 3.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001145 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001146
Romain Naour453d29f2018-01-29 23:39:41 +01001147config BR2_BINUTILS_VERSION_2_27_X
1148 bool "binutils version 2.27 support removed"
1149 select BR2_LEGACY
1150 help
1151 Support for binutils version 2.27 has been removed. The
1152 current default version (2.29 or later) has been selected
1153 instead.
1154
Baruch Siach55d79ed2018-01-02 08:16:01 +02001155config BR2_PACKAGE_EEPROG
1156 bool "eeprog package removed"
1157 select BR2_LEGACY
1158 select BR2_PACKAGE_I2C_TOOLS
1159 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
1160 help
1161 The eeprog program is now provided by the i2c-tools package.
1162
Baruch Siach86dfb422017-11-14 14:02:38 +02001163config BR2_PACKAGE_GNUPG2_GPGV2
1164 bool "gnupg2 gpgv2 option removed"
1165 select BR2_LEGACY
1166 select BR2_PACKAGE_GNUPG2_GPGV
1167 help
1168 The gpgv2 executable is now named gpgv. The config option
1169 has been renamed accordingly.
1170
Gary Bissonf7a7d942018-01-05 15:39:36 +01001171config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
1172 bool "Vivante apitrace tool option removed"
1173 select BR2_LEGACY
1174 help
1175 The apitrace tool for Vivante is not provided by the
1176 imx-gpu-viv package any longer.
1177
1178config BR2_PACKAGE_IMX_GPU_VIV_G2D
1179 bool "Vivante G2D libraries from imx-gpu-viv removed"
1180 select BR2_LEGACY
1181 select BR2_PACKAGE_IMX_GPU_G2D
1182 help
1183 The G2D libraries are now provided by the imx-gpu-g2d package.
1184
Baruch Siach86dfb422017-11-14 14:02:38 +02001185###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -03001186comment "Legacy options removed in 2017.11"
1187
Carlos Santos6c10e402017-10-21 20:30:18 -02001188config BR2_PACKAGE_RFKILL
1189 bool "rfkill package removed"
1190 select BR2_LEGACY
1191 select BR2_PACKAGE_UTIL_LINUX
1192 select BR2_PACKAGE_UTIL_LINUX_RFKILL
1193 help
1194 The rfkill program is now provided by the util-linux package.
1195
Carlos Santosd4382002017-10-31 08:47:51 -02001196config BR2_PACKAGE_UTIL_LINUX_RESET
1197 bool "util-linux reset option removed"
1198 select BR2_LEGACY
1199 help
1200 The util-linux package no longer offers a "reset" command. Use
1201 either the reset command provided by BusyBox or select ncurses
1202 programs, which will install a symlink from "tset" to reset.
1203
Adam Duskett9d6da7a2017-10-17 18:32:18 -04001204config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
1205 bool "policycoreutils audit2allow option removed"
1206 select BR2_LEGACY
1207 select BR2_PACKAGE_SELINUX_PYTHON
1208 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
1209 help
1210 The policycoreutils package no longer offers audit2allow
1211 as a option. This package has been moved into the
1212 selinux-python package by the SELinux maintainers.
1213
1214config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
1215 bool "policycoreutils restorecond option removed"
1216 select BR2_LEGACY
1217 select BR2_PACKAGE_RESTORECOND
1218 help
1219 The policycoreutils package no longer offers restorecond
1220 as a option. This package has been moved into a seperate
1221 package maintained by the SELinux maintainers.
1222
1223config BR2_PACKAGE_SEPOLGEN
1224 bool "sepolgen package has been removed"
1225 select BR2_LEGACY
1226 select BR2_PACKAGE_SELINUX_PYTHON
1227 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
1228 help
1229 Sepolgen is no longer a individual package, but instead has
1230 been moved into the selinux-python package by the SELinux
1231 maintainers.
1232
Bernd Kuhls49a9fb02017-09-16 17:15:35 +02001233config BR2_PACKAGE_OPENOBEX_BLUEZ
1234 bool "openobex bluez option removed"
1235 select BR2_LEGACY
1236 select BR2_PACKAGE_BLUEZ_UTILS
1237 help
1238 The OpenOBEX package no longer offers an option to enable or
1239 disable BlueZ support. Instead, BlueZ support is always
1240 included when the bluez5_utils or bluez_utils package is
1241 selected.
1242
1243config BR2_PACKAGE_OPENOBEX_LIBUSB
1244 bool "openobex libusb option removed"
1245 select BR2_LEGACY
1246 select BR2_PACKAGE_LIBUSB
1247 help
1248 The OpenOBEX package no longer offers an option to enable or
1249 disable libusb support. Instead, USB support is always
1250 included when the libusb package is selected.
1251
1252config BR2_PACKAGE_OPENOBEX_APPS
1253 bool "openobex apps option removed"
1254 select BR2_LEGACY
1255 help
1256 The OpenOBEX package no longer offers an option to enable or
1257 disable apps support.
1258
1259config BR2_PACKAGE_OPENOBEX_SYSLOG
1260 bool "openobex syslog option removed"
1261 select BR2_LEGACY
1262 help
1263 The OpenOBEX package no longer offers an option to enable or
1264 disable syslog support.
1265
1266config BR2_PACKAGE_OPENOBEX_DUMP
1267 bool "openobex dump option removed"
1268 select BR2_LEGACY
1269 help
1270 The OpenOBEX package no longer offers an option to enable or
1271 disable dump support.
1272
Alexander Mukhinfca70382017-09-10 13:21:34 +03001273config BR2_PACKAGE_AICCU
1274 bool "aiccu utility removed"
1275 select BR2_LEGACY
1276 help
1277 As the SixXS project has ceased its operation on 2017-06-06,
1278 the AICCU utility has no use anymore and has been removed.
1279
1280 https://www.sixxs.net/sunset/
1281
Carlos Santosf52af612017-09-01 21:41:38 -03001282config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
1283 bool "util-linux login utilities option removed"
1284 select BR2_LEGACY
1285 select BR2_PACKAGE_UTIL_LINUX_LAST
1286 select BR2_PACKAGE_UTIL_LINUX_LOGIN
1287 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
1288 select BR2_PACKAGE_UTIL_LINUX_SU
1289 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
1290 help
1291 Login utilities (last, login, runuser, su, sulogin) now have
1292 their own configuration options in the util-linux menu.
1293
1294###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +02001295comment "Legacy options removed in 2017.08"
1296
Yann E. MORIN144dc9c2017-08-11 18:05:08 +02001297config BR2_TARGET_GRUB
1298 bool "grub (aka grub-legacy) has been removed"
1299 select BR2_LEGACY
1300 help
1301 grub-legacy is no longer maintained, and no longer builds with
1302 recent binutils versions.
1303
1304 Use grub2 or syslinux instead.
1305
Bin Meng20db0982017-08-30 08:55:25 -07001306config BR2_PACKAGE_SIMICSFS
1307 bool "simicsfs support removed"
1308 select BR2_LEGACY
1309 help
1310 Support for simicsfs kernel driver that provides access to a
1311 host computer's local filesystem when the target is
1312 executing within a SIMICS simulation has been removed.
1313
1314 Simics is now moving away from the simicsfs kernel module,
1315 as the kernel module has required too much maintenance
1316 work. Users should move to the user mode Simics agent
1317 instead.
1318
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001319config BR2_BINUTILS_VERSION_2_26_X
1320 bool "binutils version 2.26 support removed"
1321 select BR2_LEGACY
1322 help
1323 Support for binutils version 2.26 has been removed. The
1324 current default version (2.28 or later) has been selected
1325 instead.
1326
Yann E. MORINb3b60702017-07-09 05:21:56 -07001327config BR2_XTENSA_OVERLAY_DIR
1328 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001329 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001330 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1331 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1332 path to the overlay file, not to the directory containing
1333 it.
1334
1335config BR2_XTENSA_OVERLAY_DIR_WRAP
1336 bool
1337 default y if BR2_XTENSA_OVERLAY_DIR != ""
1338 select BR2_LEGACY
1339
1340config BR2_XTENSA_CUSTOM_NAME
1341 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1342 help
1343 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001344
1345config BR2_XTENSA_CUSTOM_NAME_WRAP
1346 bool
1347 default y if BR2_XTENSA_CUSTOM_NAME != ""
1348 select BR2_LEGACY
1349
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001350config BR2_PACKAGE_HOST_MKE2IMG
1351 bool "host mke2img has been removed"
1352 select BR2_LEGACY
1353 help
1354 We now call mkfs directly to generate ext2/3/4 filesystem
1355 image, so mke2img is no longer necessary.
1356
Samuel Martinbee9e882017-07-09 07:00:38 +02001357config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1358 int "exact size in blocks has been removed"
1359 default 0
1360 help
1361 This option has been removed in favor of
1362 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1363 to the value you had before. Set to 0 here to remove the
1364 warning.
1365
1366config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1367 bool
1368 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1369 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1370 select BR2_LEGACY
1371
1372# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1373
Samuel Martin235b6f12017-07-04 16:47:25 +02001374config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1375 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1376 default 0
1377 help
1378 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1379 images. It now automatically selects the number of inodes
1380 based on the image size. The extra number of inodes can no
1381 longer be provided; instead, provide the total number of
1382 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1383
1384config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1385 bool
1386 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1387 select BR2_LEGACY
1388
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001389config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1390 bool "cdxaparse removed"
1391 select BR2_LEGACY
1392
1393config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1394 bool "dataurisrc moved to gstreamer1"
1395 select BR2_LEGACY
1396 help
1397 Dataurisrc has moved to gstreamer core and is always built.
1398
1399config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1400 bool "dccp removed"
1401 select BR2_LEGACY
1402
1403config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1404 bool "hdvparse removed"
1405 select BR2_LEGACY
1406
1407config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1408 bool "mve removed"
1409 select BR2_LEGACY
1410
1411config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1412 bool "nuvdemux removed"
1413 select BR2_LEGACY
1414
1415config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1416 bool "patchdetect removed"
1417 select BR2_LEGACY
1418
1419config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1420 bool "sdi removed"
1421 select BR2_LEGACY
1422
1423config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1424 bool "tta removed"
1425 select BR2_LEGACY
1426
1427config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1428 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001429 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001430 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001431 help
1432 videomeasure plugin has been removed and has been replaced by
1433 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001434
1435config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1436 bool "apexsink removed"
1437 select BR2_LEGACY
1438
1439config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1440 bool "sdl removed"
1441 select BR2_LEGACY
1442
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001443config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1444 bool "mad (*.mp3 audio) removed"
1445 select BR2_LEGACY
1446
Thomas Petazzoni4c06d242017-07-04 10:11:54 +02001447config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
1448 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
1449 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
1450 select BR2_LEGACY
1451 help
1452 The WebRTC plugin in GStreamer 1.x has always been named
1453 webrtcdsp, but was wrongly introduced in Buildroot under the
1454 name webrtc. Therefore, we have renamed the option to match
1455 the actual name of the GStreamer plugin.
1456
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001457config BR2_STRIP_none
1458 bool "Strip command 'none' has been removed"
1459 select BR2_LEGACY
1460 help
1461 The strip command choice has been changed into a single
1462 boolean option. Please check that the new setting is
1463 correct (in the "Build options" sub-menu)
1464
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001465config BR2_PACKAGE_BEECRYPT_CPP
1466 bool "C++ support removed in beecrypt"
1467 select BR2_LEGACY
1468 help
1469 Support for C++ depends on icu. The beecrypt package is
1470 incompatible with icu 59+.
1471
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001472config BR2_PACKAGE_SPICE_CLIENT
1473 bool "spice client support removed"
1474 select BR2_LEGACY
1475 help
1476 Spice client support has been removed upstream. The
1477 functionality now lives in the spice-gtk widget and
1478 virt-viewer.
1479
1480config BR2_PACKAGE_SPICE_GUI
1481 bool "spice gui support removed"
1482 select BR2_LEGACY
1483 help
1484 Spice gui support has been removed upstream. The
1485 functionality now lives in the spice-gtk widget and
1486 virt-viewer.
1487
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001488config BR2_PACKAGE_SPICE_TUNNEL
1489 bool "spice network redirection removed"
1490 select BR2_LEGACY
1491 help
1492 Spice network redirection, aka tunnelling has been removed
1493 upstream.
1494
Koen Martens438b2d12017-06-20 20:54:49 +02001495config BR2_PACKAGE_INPUT_TOOLS
1496 bool "input-tools removed"
1497 select BR2_LEGACY
1498 select BR2_PACKAGE_LINUXCONSOLETOOLS
1499 help
1500 input-tools has been removed, it is replaced by
1501 linuxconsoletools, which has automatically been enabled.
1502
1503config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1504 bool "inputattach moved to linuxconsoletools"
1505 select BR2_LEGACY
1506 select BR2_PACKAGE_LINUXCONSOLETOOLS
1507 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1508 help
1509 input-tools has been removed, inputattach is now part
1510 of linuxconsoletools, which has automatically been
1511 enabled.
1512
1513config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1514 bool "jscal moved to linuxconsoletools"
1515 select BR2_LEGACY
1516 select BR2_PACKAGE_LINUXCONSOLETOOLS
1517 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1518 help
1519 input-tools has been removed, jscal is now part
1520 of linuxconsoletools, which has automatically been
1521 enabled.
1522
1523config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1524 bool "jstest moved to linuxconsoletools"
1525 select BR2_LEGACY
1526 select BR2_PACKAGE_LINUXCONSOLETOOLS
1527 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1528 help
1529 input-tools has been removed, jstest is now part
1530 of linuxconsoletools, which has automatically been
1531 enabled.
1532
Baruch Siach6510a822017-06-16 06:32:48 +03001533config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1534 bool "SH Sourcery toolchain has been removed"
1535 select BR2_LEGACY
1536 help
1537 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001538 been removed, since it uses glibc older than 2.17 that
1539 requires -lrt to link executables using clock_* system calls.
1540 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001541
Baruch Siach06cac642017-06-16 06:32:47 +03001542config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1543 bool "x86 Sourcery toolchain has been removed"
1544 select BR2_LEGACY
1545 help
1546 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001547 been removed, since it uses glibc older than 2.17 that
1548 requires -lrt to link executables using clock_* system calls.
1549 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001550
Romain Naourf6695212017-05-23 22:24:40 +02001551config BR2_GCC_VERSION_4_8_X
1552 bool "gcc 4.8.x support removed"
1553 select BR2_LEGACY
1554 help
1555 Support for gcc version 4.8.x has been removed. The current
1556 default version (5.x or later) has been selected instead.
1557
1558###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001559comment "Legacy options removed in 2017.05"
1560
Romain Naour95426af2017-02-21 22:43:16 +01001561config BR2_PACKAGE_SUNXI_MALI_R2P4
1562 bool "sunxi-mali r2p4 removed"
1563 select BR2_LEGACY
1564 help
1565 sunxi-mali libMali for r2p4 Mali kernel module has been
1566 removed since the libump package only provides libUMP.so.3.
1567 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1568
Martin Barkd999a7f2017-05-06 14:19:13 +01001569config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1570 bool "CoffeeScript option has been removed"
1571 select BR2_LEGACY
1572 help
1573 The option to enable NodeJS CoffeeScript has been removed.
1574 To continue using it, add "coffee-script" to
1575 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1576
Martin Bark096f8b12017-05-06 14:19:12 +01001577config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1578 bool "Express web application framework option has been removed"
1579 select BR2_LEGACY
1580 help
1581 The option to enable the NodeJS Express web application
1582 framework has been removed. To continue using it, add
1583 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1584
Baruch Siach0364d442017-05-01 15:59:41 +03001585config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1586 bool "bluez5_utils gatttool install option removed"
1587 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1588 help
1589 The option to install gatttool specifically has been removed.
1590 Since version 5.44 gatttool is in the list of deprecated
1591 tools. The option to build and install deprecated tools has
1592 been automatically enabled.
1593
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001594config BR2_PACKAGE_OPENOCD_FT2XXX
1595 bool "openocd ft2232 support has been removed"
1596 select BR2_PACKAGE_OPENOCD_FTDI
1597 select BR2_LEGACY
1598 help
1599 FT2232 support in OpenOCD has been removed, it's replaced by
1600 FDTI support, which has automatically been enabled.
1601
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001602config BR2_PACKAGE_KODI_RTMPDUMP
1603 bool "kodi rtmp has been removed"
1604 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001605 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001606 help
1607 Internal rtmp support was removed from Kodi.
1608
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001609config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1610 bool "kodi-visualisation-fountain has been removed"
1611 select BR2_LEGACY
1612 help
1613 According to upstream 'the visualization is not currently
1614 in a working shape.'
1615
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001616config BR2_PACKAGE_PORTMAP
1617 bool "portmap has been removed"
1618 select BR2_LEGACY
1619 select BR2_PACKAGE_RPCBIND
1620 help
1621 The portmap upstream tarball is removed, no releases since
1622 ten years and latest change in upstream git in 2014.
1623 You should better use rpcbind as a RPC portmapper.
1624
Thomas Petazzoni58472912017-04-03 22:28:21 +02001625config BR2_BINUTILS_VERSION_2_25_X
1626 bool "binutils version 2.25 support removed"
1627 select BR2_LEGACY
1628 help
1629 Support for binutils version 2.25 has been removed. The
1630 current default version (2.27 or later) has been selected
1631 instead.
1632
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001633config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1634 bool "uclibc RPC support has been removed"
1635 select BR2_LEGACY
1636 help
1637 uClibc-ng removed internal RPC implementation in 1.0.23. You
1638 should use libtirpc instead.
1639
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001640config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1641 int "extra size in blocks has been removed"
1642 default 0
1643 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001644 Since the support for auto calculation of the filesystem size
1645 has been removed, this option is now useless and must be 0.
1646 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1647 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001648
1649config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1650 bool
1651 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1652 select BR2_LEGACY
1653
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001654config BR2_PACKAGE_SYSTEMD_KDBUS
1655 bool "systemd-kdbus has been removed"
1656 select BR2_LEGACY
1657 help
1658 --enable/disable-kdbus configure option has been removed since
1659 systemd-231.
1660
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001661config BR2_PACKAGE_POLARSSL
1662 bool "polarssl has been removed"
1663 select BR2_LEGACY
1664 help
1665 The polarssl crypto library has been removed since the 1.2.x
1666 release branch is no longer maintained. Newer upstream
1667 branches/releases (mbedtls) have API changes so they're not
1668 drop-in replacements.
1669
Yann E. MORIN61551182017-03-12 10:58:15 +01001670config BR2_NBD_CLIENT
1671 bool "nbd client option was renamed"
1672 select BR2_LEGACY
1673 select BR2_PACKAGE_NBD_CLIENT
1674 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001675 The nbd client option has been renamed to
1676 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001677
1678config BR2_NBD_SERVER
1679 bool "nbd server option was renamed"
1680 select BR2_LEGACY
1681 select BR2_PACKAGE_NBD_SERVER
1682 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001683 The nbd server option has been renamed to
1684 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001685
Carlos Santos6a9c6312017-02-14 09:05:16 -02001686config BR2_PACKAGE_GMOCK
1687 bool "gmock merged into gtest package"
1688 select BR2_LEGACY
1689 select BR2_PACKAGE_GTEST
1690 select BR2_PACKAGE_GTEST_GMOCK
1691 help
1692 GMock is now a suboption of the GTest package.
1693
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001694config BR2_KERNEL_HEADERS_4_8
1695 bool "kernel headers version 4.8.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001696 select BR2_LEGACY
1697 help
1698 Version 4.8.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001699 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001700
1701config BR2_KERNEL_HEADERS_3_18
1702 bool "kernel headers version 3.18.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001703 select BR2_LEGACY
1704 help
1705 Version 3.18.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001706 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001707
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001708config BR2_GLIBC_VERSION_2_22
1709 bool "glibc 2.22 removed"
1710 select BR2_LEGACY
1711 help
1712 Support for glibc version 2.22 has been removed. The current
1713 default version has been selected instead.
1714
1715###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001716comment "Legacy options removed in 2017.02"
1717
Francois Perrad8546ff32016-12-26 15:50:35 +01001718config BR2_PACKAGE_PERL_DB_FILE
1719 bool "perl-db-file removed"
1720 select BR2_LEGACY
1721 select BR2_PACKAGE_BERKELEYDB
1722 select BR2_PACKAGE_PERL
1723 help
1724 DB_File can be built as a core Perl module, so the separate
1725 perl-db-file package has been removed.
1726
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001727config BR2_KERNEL_HEADERS_4_7
1728 bool "kernel headers version 4.7.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001729 select BR2_LEGACY
1730 help
1731 Version 4.7.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001732 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001733
1734config BR2_KERNEL_HEADERS_4_6
1735 bool "kernel headers version 4.6.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001736 select BR2_LEGACY
1737 help
1738 Version 4.6.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001739 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001740
1741config BR2_KERNEL_HEADERS_4_5
1742 bool "kernel headers version 4.5.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001743 select BR2_LEGACY
1744 help
1745 Version 4.5.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001746 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001747
1748config BR2_KERNEL_HEADERS_3_14
1749 bool "kernel headers version 3.14.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001750 select BR2_LEGACY
1751 help
1752 Version 3.14.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001753 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001754
Romain Naour63abbcc2016-12-16 16:29:45 +01001755config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1756 bool "musl-cross 1.1.12 toolchain removed"
1757 select BR2_LEGACY
1758 help
1759 The support for the prebuilt toolchain based on the Musl C
1760 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001761 Upstream doesn't provide any prebuilt toolchain anymore, use
1762 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01001763
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01001764config BR2_UCLIBC_INSTALL_TEST_SUITE
1765 bool "uClibc tests now in uclibc-ng-test"
1766 select BR2_LEGACY
1767 select BR2_PACKAGE_UCLIBC_NG_TEST
1768 help
1769 The test suite of the uClibc C library has been moved into a
1770 separate package, uclibc-ng-test.
1771
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01001772config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1773 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1774 select BR2_LEGACY
1775 help
1776 The ADI Blackfin toolchain has many bugs which are fixed in
1777 more recent gcc and uClibc-ng releases. Use the Buildroot
1778 toolchain instead.
1779
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01001780config BR2_PACKAGE_MAKEDEVS
1781 bool "makedevs removed"
1782 select BR2_LEGACY
1783 help
1784 The makedevs tool is part of busybox. The Buildroot fork
1785 should not be used outside of the Buildroot infrastructure.
1786
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01001787config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1788 bool "Arago ARMv7 2011.09 removed"
1789 select BR2_LEGACY
1790 help
1791 The Arago toolchains are every old and not updated anymore.
1792
1793config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1794 bool "Arago ARMv5 2011.09 removed"
1795 select BR2_LEGACY
1796 help
1797 The Arago toolchains are every old and not updated anymore.
1798
Thomas Petazzonied364d12016-11-05 14:32:38 +01001799config BR2_PACKAGE_SNOWBALL_HDMISERVICE
1800 bool "snowball-hdmiservice removed"
1801 select BR2_LEGACY
1802 help
1803 We no longer have support for the Snowball platform in
1804 Buildroot, so this package was no longer useful.
1805
1806config BR2_PACKAGE_SNOWBALL_INIT
1807 bool "snowball-init removed"
1808 select BR2_LEGACY
1809 help
1810 We no longer have support for the Snowball platform in
1811 Buildroot, so this package was no longer useful.
1812
Jörg Krause69aa0572016-12-14 14:40:58 +01001813config BR2_GDB_VERSION_7_9
1814 bool "gdb 7.9 has been removed"
1815 select BR2_LEGACY
1816 help
1817 The 7.9 version of gdb has been removed. Use a newer version
1818 instead.
1819
Thomas Petazzonied364d12016-11-05 14:32:38 +01001820###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02001821comment "Legacy options removed in 2016.11"
1822
Fabrice Fontainec4572132016-09-12 23:31:07 +02001823config BR2_PACKAGE_PHP_SAPI_CLI_CGI
1824 bool "PHP CGI and CLI options are now seperate"
1825 select BR2_PACKAGE_PHP_SAPI_CLI
1826 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001827 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001828 help
1829 The PHP Interface options have been split up into a
1830 separate option for each interface.
1831
1832config BR2_PACKAGE_PHP_SAPI_CLI_FPM
1833 bool "PHP CLI and FPM options are now separate"
1834 select BR2_PACKAGE_PHP_SAPI_CLI
1835 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001836 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001837 help
1838 The PHP Interface options have been split up into a
1839 separate option for each interface.
1840
Arnout Vandecappelle35343992016-10-15 16:51:06 +02001841config BR2_PACKAGE_WVSTREAMS
1842 bool "wvstreams removed"
1843 select BR2_LEGACY
1844 help
1845 wvstreams is not maintained anymore since about 2009. It also
1846 doesn't build anymore with recent compilers (GCC 5+).
1847
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02001848config BR2_PACKAGE_WVDIAL
1849 bool "wvdial removed"
1850 select BR2_LEGACY
1851 help
1852 wvdial is not maintained anymore since about 2009. It also
1853 doesn't build anymore with recent compilers (GCC 5+).
1854
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02001855config BR2_PACKAGE_WEBKITGTK24
1856 bool "webkitgtk 2.4.x removed"
1857 select BR2_LEGACY
1858 help
1859 This legacy package only existed because some other packages
1860 depended on that specific version of webkitgtk. However, the
1861 other packages have been fixed. webkitgtk 2.4 is full of
1862 security issues so it needs to be removed.
1863
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02001864config BR2_PACKAGE_TORSMO
1865 bool "torsmo removed"
1866 select BR2_LEGACY
1867 help
1868 torsmo has been unmaintained for a long time, and nobody
1869 seems to be interested in it.
1870
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02001871config BR2_PACKAGE_SSTRIP
1872 bool "sstrip removed"
1873 select BR2_LEGACY
1874 help
1875 sstrip is unmaintained and potentially harmful. It doesn't
1876 save so much compared to normal binutils strip, and there is
1877 a big risk of binaries that don't work. Use normal strip
1878 instead.
1879
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001880config BR2_KERNEL_HEADERS_4_3
1881 bool "kernel headers version 4.3.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001882 select BR2_LEGACY
1883 help
1884 Version 4.3.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001885 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001886
1887config BR2_KERNEL_HEADERS_4_2
1888 bool "kernel headers version 4.2.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001889 select BR2_LEGACY
1890 help
1891 Version 4.2.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001892 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001893
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001894config BR2_PACKAGE_KODI_ADDON_XVDR
1895 bool "kodi-addon-xvdr removed"
1896 select BR2_LEGACY
1897 help
1898 According to the github project page:
1899 https://github.com/pipelka/xbmc-addon-xvdr
1900 this package is discontinued.
1901
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001902config BR2_PACKAGE_IPKG
1903 bool "ipkg removed"
1904 select BR2_LEGACY
1905 help
1906 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001907 handhelds.org project and it hasn't seen development since
1908 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001909
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02001910config BR2_GCC_VERSION_4_7_X
1911 bool "gcc 4.7.x support removed"
1912 select BR2_LEGACY
1913 help
1914 Support for gcc version 4.7.x has been removed. The current
1915 default version (4.9.x or later) has been selected instead.
1916
Arnout Vandecappelled8878112016-10-15 16:50:57 +02001917config BR2_BINUTILS_VERSION_2_24_X
1918 bool "binutils version 2.24 support removed"
1919 select BR2_LEGACY
1920 help
1921 Support for binutils version 2.24 has been removed. The
1922 current default version (2.26 or later) has been selected
1923 instead.
1924
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03001925config BR2_PACKAGE_WESTON_RPI
1926 bool "Weston propietary RPI support is gone"
1927 select BR2_LEGACY
1928 help
1929 Upstream decided the propietary (rpi-userland) weston composer
1930 support wasn't worth the effort so it was removed. Switch to
1931 the open VC4 support.
1932
Yann E. MORIN20b14462016-09-06 16:29:14 +02001933config BR2_LINUX_KERNEL_TOOL_CPUPOWER
1934 bool "linux-tool cpupower"
1935 depends on BR2_LINUX_KERNEL
1936 select BR2_LEGACY
1937 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
1938 help
1939 Linux tool cpupower option was renamed.
1940
1941config BR2_LINUX_KERNEL_TOOL_PERF
1942 bool "linux-tool perf"
1943 depends on BR2_LINUX_KERNEL
1944 select BR2_LEGACY
1945 select BR2_PACKAGE_LINUX_TOOLS_PERF
1946 help
1947 Linux tool perf option was renamed.
1948
1949config BR2_LINUX_KERNEL_TOOL_SELFTESTS
1950 bool "linux-tool selftests"
1951 depends on BR2_LINUX_KERNEL
1952 select BR2_LEGACY
1953 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
1954 help
1955 Linux tool selftests option was renamed.
1956
Thomas Petazzoni50332a52016-08-11 15:25:38 +02001957config BR2_GCC_VERSION_4_8_ARC
1958 bool "gcc arc option renamed"
1959 select BR2_LEGACY
1960 select BR2_GCC_VERSION_ARC
1961 help
1962 The option that selects the gcc version for the ARC
1963 architecture has been renamed to BR2_GCC_VERSION_ARC.
1964
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001965config BR2_KERNEL_HEADERS_4_0
1966 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001967 select BR2_LEGACY
1968 help
1969 Version 4.0.x of the Linux kernel headers have been deprecated
1970 for more than four buildroot releases and are now removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001971
1972config BR2_KERNEL_HEADERS_3_19
1973 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001974 select BR2_LEGACY
1975 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001976 Version 3.19.x of the Linux kernel headers have been
1977 deprecated for more than four buildroot releases and are now
1978 removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001979
Romain Naour0e517312016-09-02 22:31:32 +02001980config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
1981 bool "libevas-generic-loaders package removed"
1982 select BR2_LEGACY
1983 select BR2_PACKAGE_EFL
1984 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001985 With EFL 1.18, libevas-generic-loaders is now provided by the
1986 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02001987
Romain Naourc22b7582016-09-02 22:31:31 +02001988config BR2_PACKAGE_ELEMENTARY
1989 bool "elementary package removed"
1990 select BR2_LEGACY
1991 select BR2_PACKAGE_EFL
1992 help
1993 With EFL 1.18, elementary is now provided by the efl package.
1994
Yann E. MORINe782cd52016-08-28 01:03:04 +02001995config BR2_LINUX_KERNEL_CUSTOM_LOCAL
1996 bool "Linux kernel local directory option removed"
1997 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001998 The option to select a local directory as the source of the
1999 Linux kernel has been removed. It hurts reproducibility of
2000 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02002001
2002 In case you were using this option during development of your
2003 Linux kernel, use the override mechanism instead.
2004
2005###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002006comment "Legacy options removed in 2016.08"
2007
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002008config BR2_PACKAGE_EFL_JP2K
2009 bool "libevas jp2k loader has been removed"
2010 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01002011 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002012 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
2013 while Buildroot only packages openjpeg 2.x. Therefore, the
2014 JP2K loader has been removed from EFL.
2015
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002016config BR2_PACKAGE_SYSTEMD_COMPAT
2017 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02002018 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002019 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02002020 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002021 been removed. Theses libraries have been useless since a few
2022 version, and have been fully dropped from the source since
2023 v230.
2024
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02002025config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
2026 bool "gst1-plugins-bad liveadder plugin removed"
2027 select BR2_LEGACY
2028 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2029 help
2030 The functionality of the liveadder plugin of the
2031 gst1-plugins-bad package has been merged into audiomixer.
2032
Andrew Webster0f92b192016-06-10 14:13:29 -04002033config BR2_PACKAGE_LIBFSLVPUWRAP
2034 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
2035 select BR2_LEGACY
2036 select BR2_PACKAGE_IMX_VPUWRAP
2037 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002038 The libfslvpuwrap has been renamed to match the renamed
2039 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04002040
Andrew Webster64998902016-06-10 14:13:18 -04002041config BR2_PACKAGE_LIBFSLPARSER
2042 bool "libfslparser has been renamed to imx-parser"
2043 select BR2_LEGACY
2044 select BR2_PACKAGE_IMX_PARSER
2045 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002046 The libfslparser has been renamed to match the renamed
2047 package.
Andrew Webster64998902016-06-10 14:13:18 -04002048
Andrew Webster47e62032016-06-10 14:13:05 -04002049config BR2_PACKAGE_LIBFSLCODEC
2050 bool "libfslcodec has been renamed to imx-codec"
2051 select BR2_LEGACY
2052 select BR2_PACKAGE_IMX_CODEC
2053 help
2054 The libfslcodec has been renamed to match the renamed package.
2055
Carlos Santosb5d99002016-06-03 16:35:39 -03002056config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
2057 bool "FIT support in uboot-tools has been refactored"
2058 select BR2_LEGACY
2059 select BR2_PACKAGE_DTC
2060 select BR2_PACKAGE_DTC_PROGRAMS
2061 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
2062 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
2063 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
2064 help
2065 This option has been removed in favor of a more fine-grained
2066 configuration, which is recommended. Selecting this option
2067 enables FIT and FIT signature support for the target packages.
2068 It will also select the dtc and openssl packages.
2069
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02002070config BR2_PTHREADS_OLD
2071 bool "linuxthreads (stable/old)"
2072 select BR2_LEGACY
2073 help
2074 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
2075 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
2076
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002077config BR2_BINUTILS_VERSION_2_23_X
2078 bool "binutils 2.23 removed"
2079 select BR2_LEGACY
2080 help
2081 Binutils 2.23 has been removed, using a newer version is
2082 recommended.
2083
Thomas Petazzoni500de252016-05-17 00:13:00 +02002084config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
2085 bool "eglibc support has been removed"
2086 select BR2_LEGACY
2087 help
2088 The eglibc project no longer exists, as it has been merged
2089 back into the glibc project. Therefore, support for eglibc
2090 has been removed, and glibc should be used instead.
2091
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002092config BR2_GDB_VERSION_7_8
2093 bool "gdb 7.8 has been removed"
2094 select BR2_LEGACY
2095 help
2096 The 7.8 version of gdb has been removed. Use a newer version
2097 instead.
2098
2099###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002100comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01002101
Gustavo Zacarias3380da62016-05-14 10:33:47 -03002102config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
2103 bool "openvpn polarssl crypto backend removed"
2104 select BR2_LEGACY
2105 help
2106 The OpenVPN polarssl crypto backend option has been removed.
2107 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
2108 compatible with mbedtls (polarssl) series 2.x which is the
2109 version provided in buildroot. And both can't coexist.
2110 It now uses OpenSSL as the only option.
2111
Martin Bark4dfc2cb2016-05-03 10:36:54 +01002112config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
2113 bool "nginx http spdy module removed"
2114 select BR2_LEGACY
2115 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
2116 help
2117 The ngx_http_spdy_module has been superseded by the
2118 ngx_http_v2_module since nginx v1.9.5. The
2119 ngx_http_v2_module modules has been automatically selected
2120 in your configuration.
2121
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03002122config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
2123 bool "gst1-plugins-bad rtp plugin moved to good"
2124 select BR2_LEGACY
2125 help
2126 The rtp plugin has been moved from gst1-plugins-base to
2127 gst1-plugins-good.
2128
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03002129config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
2130 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
2131 select BR2_LEGACY
2132 help
2133 The mpg123 plugin has been moved from gst1-plugins-bad to
2134 gst1-plugins-ugly.
2135
Gustavo Zacarias8490e832016-04-29 10:18:56 -03002136config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
2137 bool "PowerPC Sourcery toolchain has been removed"
2138 select BR2_LEGACY
2139 help
2140 The Sourcery CodeBench toolchain for the PowerPC
2141 architecture has been removed, as it was very old, not
2142 maintained, and causing numerous build failures with modern
2143 userspace packages.
2144
2145config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
2146 bool "PowerPC Sourcery E500v2 toolchain has been removed"
2147 select BR2_LEGACY
2148 help
2149 The Sourcery CodeBench toolchain for the PowerPC E500v2
2150 architecture has been removed, as it was very old, not
2151 maintained, and causing numerous build failures with modern
2152 userspace packages.
2153
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002154config BR2_x86_i386
2155 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02002156 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002157 help
2158 The support for the i386 processors of the x86 architecture
2159 has been removed.
2160
Julien CORJONf75ee802016-03-17 10:42:25 +01002161config BR2_PACKAGE_QT5QUICK1
2162 bool "qt5quick1 package removed"
2163 select BR2_LEGACY
2164 help
2165 The qt5quick1 package has been removed, since it was removed
2166 from upstream starting from Qt 5.6.
2167
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002168config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05002169 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002170 help
2171 The uboot custom patch directory option has been removed. Use
2172 the improved BR2_TARGET_UBOOT_PATCH option instead.
2173
Danomi Manchegof61583f2016-12-19 22:10:12 -05002174config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
2175 bool
2176 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
2177 select BR2_LEGACY
2178
2179# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
2180# boot/uboot/Config.in
2181
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03002182config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
2183 bool "xf86-input-void removed"
2184 select BR2_LEGACY
2185 help
2186 The xf86-input-void package has been removed, there's no need
2187 for it in any modern (post-2007) xorg server.
2188
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002189config BR2_KERNEL_HEADERS_3_17
2190 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002191 select BR2_LEGACY
2192 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002193 Version 3.17.x of the Linux kernel headers have been
2194 deprecated for more than four buildroot releases and are now
2195 removed.
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002196
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03002197config BR2_GDB_VERSION_7_7
2198 bool "gdb 7.7 has been removed"
2199 select BR2_LEGACY
2200 help
2201 The 7.7 version of gdb has been removed. Use a newer version
2202 instead.
2203
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03002204config BR2_PACKAGE_FOOMATIC_FILTERS
2205 bool "foomatic-filters"
2206 select BR2_LEGACY
2207 help
2208 The foomatic-filters package was removed.
2209
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03002210config BR2_PACKAGE_SAMBA
2211 bool "samba"
2212 select BR2_LEGACY
2213 help
2214 The samba package was removed in favour of samba4 since the
2215 3.x series isn't supported by upstream any longer.
2216
Bernd Kuhls6922b412016-02-20 23:09:11 +01002217config BR2_PACKAGE_KODI_WAVPACK
2218 bool "wavpack"
2219 select BR2_LEGACY
2220 help
2221 wavpack support was removed in favour of ffmpeg:
2222 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
2223
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01002224config BR2_PACKAGE_KODI_RSXS
2225 bool "rsxs support in Kodi was moved to an addon"
2226 select BR2_LEGACY
2227 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
2228 help
2229 rsxs support in Kodi was moved to an addon
2230
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01002231config BR2_PACKAGE_KODI_GOOM
2232 bool "Goom support in Kodi was moved to an addon"
2233 select BR2_LEGACY
2234 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
2235 help
2236 Goom support in Kodi was moved to an addon
2237
Gabe Evanse5a073a2016-02-25 21:55:11 +00002238config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
2239 bool "systemd all extras option has been removed"
2240 select BR2_LEGACY
2241 select BR2_PACKAGE_XZ
2242 select BR2_PACKAGE_LIBGCRYPT
2243 help
2244 The systemd option to enable "all extras" has been
2245 removed. To get the same features, the libgcrypt and xz
2246 package should now be enabled.
2247
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03002248config BR2_GCC_VERSION_4_5_X
2249 bool "gcc 4.5.x has been removed"
2250 select BR2_LEGACY
2251 help
2252 The 4.5.x version of gcc has been removed. Use a newer
2253 version instead.
2254
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002255config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05002256 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002257 select BR2_PACKAGE_NCURSES
2258 select BR2_PACKAGE_READLINE
2259 select BR2_LEGACY
2260 help
2261 This option was removed in favour of the sqlite package
2262 deciding itself depending on the enabled packages whether
2263 command-line editing should be enabled, it also also takes
2264 libedit into account.
2265
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002266###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01002267comment "Legacy options removed in 2016.02"
2268
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01002269config BR2_PACKAGE_DOVECOT_BZIP2
2270 bool "bzip2 support option has been removed"
2271 select BR2_LEGACY
2272 select BR2_PACKAGE_BZIP2
2273 help
2274 Bzip2 support is built if the bzip2 package is selected.
2275
2276config BR2_PACKAGE_DOVECOT_ZLIB
2277 bool "zlib support option has been removed"
2278 select BR2_LEGACY
2279 select BR2_PACKAGE_ZLIB
2280 help
2281 Zlib support is built if the zlib package is selected.
2282
James Knightead1df42016-02-12 11:40:05 -05002283config BR2_PACKAGE_E2FSPROGS_FINDFS
2284 bool "e2fsprogs findfs option has been removed"
2285 select BR2_LEGACY
2286 help
2287 This option attempted to enable findfs capabilities from
2288 e2fsprogs but has not worked since July 2015 (due to
2289 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002290 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002291
Romain Naourb1063a02016-02-07 17:56:56 +01002292config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2293 bool "openpowerlink debug option has been removed"
2294 select BR2_LEGACY
2295 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002296 This option depends on BR2_ENABLE_DEBUG which should not be
2297 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002298
2299config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2300 bool "openpowerlink package has been updated"
2301 select BR2_LEGACY
2302 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2303 help
2304 openpowerlink kernel modules are built if the
2305 kernel stack library is selected.
2306
2307config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2308 bool "openpowerlink package has been updated"
2309 select BR2_LEGACY
2310 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2311 help
2312 The user space support has been split in two part:
2313 - a monolitic user space library
2314 - a user spae deamon driver
2315
Yann E. MORINe3e05832016-02-06 00:06:17 +01002316config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2317 bool "using the linux headers version for the kernel has been removed"
2318 select BR2_LEGACY
2319 help
2320 The option to use the version of the kernel headers for the
2321 kernel to build has been removed.
2322
2323 There is now the converse, better-suited and more versatile
2324 option to use the kernel version for the linux headers.
2325
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002326config BR2_PACKAGE_CUPS_PDFTOPS
2327 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002328 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002329 select BR2_LEGACY
2330 help
2331 Pdftops support has been removed from the cups package
2332 It is now part of the cups-filters package.
2333
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002334config BR2_KERNEL_HEADERS_3_16
2335 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002336 select BR2_LEGACY
2337 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002338 Version 3.16.x of the Linux kernel headers have been
2339 deprecated for more than four buildroot releases and are now
2340 removed.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002341
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002342config BR2_PACKAGE_PYTHON_PYXML
2343 bool "python-pyxml package has been removed"
2344 select BR2_LEGACY
2345 help
2346 PyXML is obsolete and its functionality is covered either via
2347 native Python XML support or python-lxml package.
2348
Steven Noonand29c7192015-12-27 12:07:31 +01002349# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2350config BR2_ENABLE_SSP
2351 bool "Stack Smashing protection now has different levels"
2352 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002353 The protection offered by SSP can now be selected from
2354 different protection levels. Be sure to review the SSP level
2355 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002356
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002357config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002358 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002359 select BR2_LEGACY
2360 help
2361 The cle266 directfb driver support has been removed.
2362 It doesn't build in the latest version and it's unlikely
2363 anyone has any use for it.
2364
2365config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002366 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002367 select BR2_LEGACY
2368 help
2369 The unichrome directfb driver support has been removed.
2370 It doesn't build in the latest version and it's unlikely
2371 anyone has any use for it.
2372
Romain Naour820e1682015-12-19 17:39:14 +01002373config BR2_PACKAGE_LIBELEMENTARY
2374 bool "libelementary has been renamed to elementary"
2375 select BR2_LEGACY
2376 select BR2_PACKAGE_ELEMENTARY
2377 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002378 The libelementary package has been renamed to match the
2379 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002380
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002381config BR2_PACKAGE_LIBEINA
2382 bool "libeina package has been removed"
2383 select BR2_LEGACY
2384 select BR2_PACKAGE_EFL
2385 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002386 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002387
Romain Naour49700f02015-12-15 23:40:37 +01002388config BR2_PACKAGE_LIBEET
2389 bool "libeet package has been removed"
2390 select BR2_LEGACY
2391 select BR2_PACKAGE_EFL
2392 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002393 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002394
Romain Naoure5989d62015-12-15 23:40:36 +01002395config BR2_PACKAGE_LIBEVAS
2396 bool "libevas package has been removed"
2397 select BR2_LEGACY
2398 select BR2_PACKAGE_EFL
2399 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002400 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002401
Romain Naour1fe1b602015-12-15 23:40:35 +01002402config BR2_PACKAGE_LIBECORE
2403 bool "libecore package has been removed"
2404 select BR2_LEGACY
2405 select BR2_PACKAGE_EFL
2406 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002407 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002408
Romain Naour8c05c382015-12-15 23:40:34 +01002409config BR2_PACKAGE_LIBEDBUS
2410 bool "libedbus package has been removed"
2411 select BR2_LEGACY
2412 select BR2_PACKAGE_EFL
2413 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002414 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002415
Romain Naourd2b042c2015-12-15 23:40:33 +01002416config BR2_PACKAGE_LIBEFREET
2417 bool "libefreet package has been removed"
2418 select BR2_LEGACY
2419 select BR2_PACKAGE_EFL
2420 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002421 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002422
Romain Naoure155c952015-12-15 23:40:32 +01002423config BR2_PACKAGE_LIBEIO
2424 bool "libeio package has been removed"
2425 select BR2_LEGACY
2426 select BR2_PACKAGE_EFL
2427 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002428 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002429
Romain Naourb728fb72015-12-15 23:40:31 +01002430config BR2_PACKAGE_LIBEMBRYO
2431 bool "libembryo package has been removed"
2432 select BR2_LEGACY
2433 select BR2_PACKAGE_EFL
2434 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002435 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002436
Romain Naour4c93c102015-12-15 23:40:30 +01002437config BR2_PACKAGE_LIBEDJE
2438 bool "libedje package has been removed"
2439 select BR2_LEGACY
2440 select BR2_PACKAGE_EFL
2441 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002442 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002443
Romain Naour905dba12015-12-15 23:40:29 +01002444config BR2_PACKAGE_LIBETHUMB
2445 bool "libethumb package has been removed"
2446 select BR2_LEGACY
2447 select BR2_PACKAGE_EFL
2448 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002449 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002450
Luca Ceresolif0c94702015-11-27 18:38:00 +01002451config BR2_PACKAGE_INFOZIP
2452 bool "infozip option has been renamed to zip"
2453 select BR2_LEGACY
2454 select BR2_PACKAGE_ZIP
2455 help
2456 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002457 to avoid ambiguities with Info-Zip's UnZip which has been
2458 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002459
Martin Barka2d16602015-12-23 12:16:04 +00002460config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002461 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002462 select BR2_LEGACY
2463 select BR2_PACKAGE_NODEJS
2464 help
Martin Bark75b70492016-01-30 14:51:00 +00002465 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002466 automatically chosen for ARMv5 architectures only and the
2467 latest nodejs for all other supported architectures. The
2468 correct nodejs version has been automatically selected in your
2469 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002470
Martin Barka314b872015-12-23 12:16:03 +00002471config BR2_BR2_PACKAGE_NODEJS_0_12_X
2472 bool "nodejs version 0.12.x has been removed"
2473 select BR2_LEGACY
2474 select BR2_PACKAGE_NODEJS
2475 help
2476 nodejs version 0.12.x has been removed. As an alternative,
2477 the latest nodejs version has been automatically selected in
2478 your configuration.
2479
Martin Bark90bf67c2015-12-23 12:16:02 +00002480config BR2_BR2_PACKAGE_NODEJS_4_X
2481 bool "nodejs version 4.x has been removed"
2482 select BR2_LEGACY
2483 select BR2_PACKAGE_NODEJS
2484 help
2485 nodejs version 4.x has been removed. As an alternative,
2486 the latest nodejs version has been automatically selected in
2487 your configuration.
2488
Luca Ceresolif0c94702015-11-27 18:38:00 +01002489###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002490comment "Legacy options removed in 2015.11"
2491
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002492config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2493 bool "gst1-plugins-bad real plugin has been removed"
2494 select BR2_LEGACY
2495 help
2496 The real plugin from GStreamer 1 bad plugins has been
2497 removed.
2498
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002499config BR2_PACKAGE_MEDIA_CTL
2500 bool "media-ctl package has been removed"
2501 select BR2_LEGACY
2502 select BR2_PACKAGE_LIBV4L
2503 select BR2_PACKAGE_LIBV4L_UTILS
2504 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002505 media-ctl source and developement have been moved to v4l-utils
2506 since June 2014. For an up-to-date media-ctl version select
2507 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002508
Romain Naourf8031332015-10-03 18:35:05 +02002509config BR2_PACKAGE_SCHIFRA
2510 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002511 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002512 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002513 Schifra package has been maked broken since 2014.11 release
2514 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002515
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002516config BR2_PACKAGE_ZXING
2517 bool "zxing option has been renamed"
2518 select BR2_LEGACY
2519 select BR2_PACKAGE_ZXING_CPP
2520 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002521 ZXing no longer provides the cpp bindings, it has been renamed
2522 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002523
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002524# Since FreeRDP has new dependencies, protect this legacy to avoid the
2525# infamous "unmet direct dependencies" kconfig error.
2526config BR2_PACKAGE_FREERDP_CLIENT
2527 bool "freerdp client option renamed"
2528 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002529 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002530 select BR2_PACKAGE_FREERDP_CLIENT_X11
2531
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002532config BR2_PACKAGE_BLACKBOX
2533 bool "blackbox package has been removed"
2534 select BR2_LEGACY
2535 help
2536 Upstream is dead and the package has been deprecated for
2537 some time. There are other alternative maintained WMs.
2538
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002539config BR2_KERNEL_HEADERS_3_0
2540 bool "kernel headers version 3.0.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002541 select BR2_LEGACY
2542 help
2543 Version 3.0.x of the Linux kernel headers have been deprecated
2544 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002545
2546config BR2_KERNEL_HEADERS_3_11
2547 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002548 select BR2_LEGACY
2549 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002550 Version 3.11.x of the Linux kernel headers have been
2551 deprecated for more than four buildroot releases and are now
2552 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002553
2554config BR2_KERNEL_HEADERS_3_13
2555 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002556 select BR2_LEGACY
2557 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002558 Version 3.13.x of the Linux kernel headers have been
2559 deprecated for more than four buildroot releases and are now
2560 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002561
2562config BR2_KERNEL_HEADERS_3_15
2563 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002564 select BR2_LEGACY
2565 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002566 Version 3.15.x of the Linux kernel headers have been
2567 deprecated for more than four buildroot releases and are now
2568 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002569
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002570config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2571 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002572 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002573 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2574 help
2575 The per-DirectFB example options have been removed. The
2576 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2577 examples.
2578
2579config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2580 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002581 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002582 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2583 help
2584 The per-DirectFB example options have been removed. The
2585 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2586 examples.
2587
2588config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2589 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002590 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002591 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2592 help
2593 The per-DirectFB example options have been removed. The
2594 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2595 examples.
2596
2597config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2598 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002599 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002600 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2601 help
2602 The per-DirectFB example options have been removed. The
2603 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2604 examples.
2605
2606config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2607 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002608 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002609 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2610 help
2611 The per-DirectFB example options have been removed. The
2612 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2613 examples.
2614
2615config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2616 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002617 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002618 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2619 help
2620 The per-DirectFB example options have been removed. The
2621 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2622 examples.
2623
2624config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2625 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002626 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002627 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2628 help
2629 The per-DirectFB example options have been removed. The
2630 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2631 examples.
2632
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002633config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2634 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002635 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002636 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2637 help
2638 The per-DirectFB example options have been removed. The
2639 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2640 examples.
2641
2642config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2643 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002644 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002645 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2646 help
2647 The per-DirectFB example options have been removed. The
2648 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2649 examples.
2650
2651config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2652 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002653 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002654 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2655 help
2656 The per-DirectFB example options have been removed. The
2657 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2658 examples.
2659
2660config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2661 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002662 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002663 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2664 help
2665 The per-DirectFB example options have been removed. The
2666 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2667 examples.
2668
2669config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2670 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002671 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002672 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2673 help
2674 The per-DirectFB example options have been removed. The
2675 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2676 examples.
2677
2678config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2679 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002680 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002681 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2682 help
2683 The per-DirectFB example options have been removed. The
2684 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2685 examples.
2686
2687config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2688 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002689 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002690 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2691 help
2692 The per-DirectFB example options have been removed. The
2693 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2694 examples.
2695
2696config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2697 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002698 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002699 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2700 help
2701 The per-DirectFB example options have been removed. The
2702 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2703 examples.
2704
2705config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2706 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002707 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002708 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2709 help
2710 The per-DirectFB example options have been removed. The
2711 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2712 examples.
2713
2714config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2715 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002716 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002717 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2718 help
2719 The per-DirectFB example options have been removed. The
2720 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2721 examples.
2722
2723config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2724 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002725 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002726 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2727 help
2728 The per-DirectFB example options have been removed. The
2729 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2730 examples.
2731
2732config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2733 bool "DirectFB example df_palette has been removed"
2734 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2735 help
2736 The per-DirectFB example options have been removed. The
2737 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2738 examples.
2739
2740config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2741 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002742 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002743 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2744 help
2745 The per-DirectFB example options have been removed. The
2746 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2747 examples.
2748
2749config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2750 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002751 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002752 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2753 help
2754 The per-DirectFB example options have been removed. The
2755 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2756 examples.
2757
2758config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2759 bool "DirectFB example df_stress has been removed"
2760 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2761 help
2762 The per-DirectFB example options have been removed. The
2763 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2764 examples.
2765
2766config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2767 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002768 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002769 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2770 help
2771 The per-DirectFB example options have been removed. The
2772 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2773 examples.
2774
2775config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2776 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002777 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002778 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2779 help
2780 The per-DirectFB example options have been removed. The
2781 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2782 examples.
2783
2784config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2785 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002786 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002787 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2788 help
2789 The per-DirectFB example options have been removed. The
2790 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2791 examples.
2792
2793config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2794 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002795 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002796 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2797 help
2798 The per-DirectFB example options have been removed. The
2799 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2800 examples.
2801
Gary Bisson2b78fb22015-09-23 15:39:27 +02002802config BR2_PACKAGE_KOBS_NG
2803 bool "kobs-ng was replaced by imx-kobs"
2804 select BR2_LEGACY
2805 select BR2_PACKAGE_IMX_KOBS
2806 help
2807 The outdated kobs-ng has been replaced by the Freescale-
2808 maintained imx-kobs package.
2809
Thomas Petazzoni11573f52015-09-02 00:01:11 +02002810config BR2_PACKAGE_SAWMAN
2811 bool "sawman package removed"
2812 select BR2_LEGACY
2813 select BR2_PACKAGE_DIRECTFB_SAWMAN
2814 help
2815 This option has been removed because the sawman package no
2816 longer exists: it was merged inside DirectFB itself. This
2817 feature can now be enabled using the
2818 BR2_PACKAGE_DIRECTFB_SAWMAN option.
2819
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002820config BR2_PACKAGE_DIVINE
2821 bool "divine package removed"
2822 select BR2_LEGACY
2823 select BR2_PACKAGE_DIRECTFB_DIVINE
2824 help
2825 This option has been removed because the divine package no
2826 longer exists: it was merged inside DirectFB itself. This
2827 feature can now be enabled using the
2828 BR2_PACKAGE_DIRECTFB_DIVINE option.
2829
2830###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002831comment "Legacy options removed in 2015.08"
2832
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002833config BR2_PACKAGE_KODI_PVR_ADDONS
2834 bool "Kodi PVR addon was split"
2835 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02002836 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02002837 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02002838 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02002839 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02002840 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02002841 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02002842 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02002843 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02002844 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02002845 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02002846 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02002847 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02002848 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02002849 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02002850 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02002851 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002852 help
2853 Kodi PVR addon was split into seperate modules
2854
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002855config BR2_BINUTILS_VERSION_2_23_2
2856 bool "binutils 2.23 option renamed"
2857 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002858 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002859 Binutils 2.23.2 has been removed, using a newer version is
2860 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002861
2862config BR2_BINUTILS_VERSION_2_24
2863 bool "binutils 2.24 option renamed"
2864 select BR2_LEGACY
2865 select BR2_BINUTILS_VERSION_2_24_X
2866 help
2867 The binutils version option has been renamed to match the
2868 same patchlevel logic used by gcc. The new option is now
2869 BR2_BINUTILS_VERSION_2_24_X.
2870
2871config BR2_BINUTILS_VERSION_2_25
2872 bool "binutils 2.25 option renamed"
2873 select BR2_LEGACY
2874 select BR2_BINUTILS_VERSION_2_25_X
2875 help
2876 The binutils version option has been renamed to match the
2877 same patchlevel logic used by gcc. The new option is now
2878 BR2_BINUTILS_VERSION_2_25_X.
2879
Romain Naour1326e762015-07-14 19:35:14 +02002880config BR2_PACKAGE_PERF
2881 bool "perf option has been renamed"
2882 select BR2_LEGACY
2883 select BR2_LINUX_KERNEL_TOOL_PERF
2884 help
2885 The perf package has been moved as a Linux tools package,
2886 and the option to enable it is now
2887 BR2_LINUX_KERNEL_TOOL_PERF.
2888
Thomas Petazzoni2f845952015-07-11 14:52:53 +02002889config BR2_BINUTILS_VERSION_2_22
2890 bool "binutils 2.22 removed"
2891 select BR2_LEGACY
2892 help
2893 Binutils 2.22 has been removed, using a newer version is
2894 recommended.
2895
Gary Bisson4c0613e2015-05-26 10:19:37 +02002896config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
2897 bool "gpu-viv-bin-mx6q"
2898 select BR2_LEGACY
2899 select BR2_PACKAGE_IMX_GPU_VIV
2900 help
2901 Vivante graphics libraries have been renamed to
2902 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
2903 name.
2904
Matt Weber7742abe2015-06-02 08:28:35 -05002905config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05002906 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03002907 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02002908 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05002909 help
2910 This option has been removed, since the libsemanage Python
2911 bindings on the target were not useful.
2912
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002913config BR2_TARGET_UBOOT_NETWORK
2914 bool "U-Boot custom network settings removed"
2915 select BR2_LEGACY
2916 help
2917 U-Boot's custom network settings options have been removed.
2918
2919###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002920comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002921
Michał Leśniewskie3904a82015-05-19 20:26:30 +02002922config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
2923 bool "jffs2 16kB erasesize NAND flash option renamed"
2924 select BR2_LEGACY
2925 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
2926 help
2927 The JFFS2 NAND flash options now longer include the page
2928 size.
2929
2930config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
2931 bool "jffs2 128kB erasesize NAND flash option renamed"
2932 select BR2_LEGACY
2933 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2934 help
2935 The JFFS2 NAND flash options now longer include the page
2936 size.
2937
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02002938config BR2_PACKAGE_MONO_20
2939 bool "2.0/3.5 .Net Runtime"
2940 select BR2_LEGACY
2941 help
2942 This option no longer exists, all versions of the .Net
2943 runtime are now installed.
2944
2945config BR2_PACKAGE_MONO_40
2946 bool "4.0 .Net Runtime"
2947 select BR2_LEGACY
2948 help
2949 This option no longer exists, all versions of the .Net
2950 runtime are now installed.
2951
2952config BR2_PACKAGE_MONO_45
2953 bool "4.5 .Net Runtime"
2954 select BR2_LEGACY
2955 help
2956 This option no longer exists, all versions of the .Net
2957 runtime are now installed.
2958
Peter Korsgaardefd49e32015-04-27 22:29:05 +02002959config BR2_CIVETWEB_WITH_LUA
2960 bool "civetweb lua option renamed"
2961 select BR2_LEGACY
2962 select BR2_PACKAGE_CIVETWEB_WITH_LUA
2963 help
2964 civetweb's lua option has been renamed to
2965 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2966 packages name options.
2967
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02002968config BR2_PACKAGE_TIFF_TIFF2PDF
2969 bool "tiff utility-specific option removed"
2970 select BR2_LEGACY
2971 select BR2_PACKAGE_TIFF_UTILITIES
2972 help
2973 utility-specific options have been removed in favour of
2974 the new option BR2_PACKAGE_TIFF_UTILITIES.
2975
2976config BR2_PACKAGE_TIFF_TIFFCP
2977 bool "tiff utility-specific option removed"
2978 select BR2_LEGACY
2979 select BR2_PACKAGE_TIFF_UTILITIES
2980 help
2981 utility-specific options have been removed in favour of
2982 the new option BR2_PACKAGE_TIFF_UTILITIES.
2983
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002984config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
2985 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002986 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02002987 help
2988 This option has never worked, so it has been removed.
2989
Yann E. MORIN02917962015-03-24 19:54:15 +01002990config BR2_TARGET_GENERIC_PASSWD_DES
2991 bool "Encoding passwords with DES has been removed"
2992 select BR2_LEGACY
2993 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002994 Paswords can now only be encoded with either of md5, sha256 or
2995 sha512. The default is md5, which is stronger that DES (but
2996 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01002997
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03002998config BR2_PACKAGE_GTK2_THEME_HICOLOR
2999 bool "hicolor (default theme) is a duplicate"
3000 select BR2_LEGACY
3001 select BR2_PACKAGE_HICOLOR_ICON_THEME
3002 help
3003 The option was just a duplicate of hicolor icon theme.
3004
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003005config BR2_PACKAGE_VALGRIND_PTRCHECK
3006 bool "valgrind's PTRCheck was renamed to SGCheck"
3007 select BR2_LEGACY
3008 select BR2_PACKAGE_VALGRIND_SGCHECK
3009 help
3010 PTRCheck was renamed to SGCheck in valgrind
3011
3012###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003013comment "Legacy options removed in 2015.02"
3014
Pedro Aguilar10900c02015-02-27 06:38:07 +02003015config BR2_PACKAGE_LIBGC
3016 bool "libgc package removed"
3017 select BR2_LEGACY
3018 select BR2_PACKAGE_BDWGC
3019 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003020 libgc has been removed because we have the same package under
3021 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02003022
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003023config BR2_PACKAGE_WDCTL
3024 bool "util-linux' wdctl option has been renamed"
3025 select BR2_LEGACY
3026 select BR2_PACKAGE_UTIL_LINUX_WDCTL
3027 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003028 util-linux' wdctl option has been renamed to
3029 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
3030 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003031
Danomi Manchegoe44edb82015-07-13 22:57:06 -04003032config BR2_PACKAGE_UTIL_LINUX_ARCH
3033 bool "util-linux' arch option has been removed"
3034 select BR2_LEGACY
3035 help
3036 util-linux' arch was dropped in util-linux 2.23, in favor of
3037 the coreutils version.
3038
3039config BR2_PACKAGE_UTIL_LINUX_DDATE
3040 bool "util-linux' ddate option has been removed"
3041 select BR2_LEGACY
3042 help
3043 util-linux' ddate was dropped in util-linux 2.23.
3044
Romain Naour3c476542015-01-18 20:53:08 +01003045config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
3046 bool "rpm's bzip2 payloads option has been removed"
3047 select BR2_LEGACY
3048 select BR2_PACKAGE_BZIP2
3049 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003050 The bzip2 payloads option rely entirely on the dependant
3051 package bzip2. So, you need to select it to enable this
3052 feature.
Romain Naour3c476542015-01-18 20:53:08 +01003053
3054config BR2_PACKAGE_RPM_XZ_PAYLOADS
3055 bool "rpm's xz payloads option has been removed"
3056 select BR2_LEGACY
3057 select BR2_PACKAGE_XZ
3058 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003059 The xz payloads option rely entirely on the dependant package
3060 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01003061
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03003062config BR2_PACKAGE_M4
3063 bool "m4 target package removed"
3064 select BR2_LEGACY
3065 help
3066 The m4 target package has been removed, it's been
3067 deprecated for some time now.
3068
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03003069config BR2_PACKAGE_FLEX_BINARY
3070 bool "flex binary in target option removed"
3071 select BR2_LEGACY
3072 help
3073 The flex binary in the target option has been removed.
3074 It's been deprecated for some time now and is essentially a
3075 development tool which isn't very useful in the target.
3076
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03003077config BR2_PACKAGE_BISON
3078 bool "bison target package removed"
3079 select BR2_LEGACY
3080 help
3081 The bison target package has been removed, it's been
3082 deprecated for some time now and is essentially a development
3083 tool which isn't very useful in the target.
3084
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03003085config BR2_PACKAGE_GOB2
3086 bool "gob2 target package removed"
3087 select BR2_LEGACY
3088 help
3089 The gob2 target package has been removed, it's been
3090 deprecated for some time now and was essentially useless
3091 without a target toolchain.
3092
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03003093config BR2_PACKAGE_DISTCC
3094 bool "distcc target package removed"
3095 select BR2_LEGACY
3096 help
3097 The distcc target package has been removed, it's been
3098 deprecated for some time now and was essentially useless
3099 without a target toolchain.
3100
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03003101config BR2_PACKAGE_HASERL_VERSION_0_8_X
3102 bool "haserl 0.8.x version removed"
3103 select BR2_LEGACY
3104 help
3105 The 0.8.x version option for haserl has been removed since it
3106 has been deprecated for some time now.
3107 You should be able to use the 0.9.x version without issues.
3108
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003109config BR2_PACKAGE_STRONGSWAN_TOOLS
3110 bool "strongswan option has been removed"
3111 select BR2_LEGACY
3112 select BR2_PACKAGE_STRONGSWAN_PKI
3113 select BR2_PACKAGE_STRONGSWAN_SCEP
3114 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003115 The tools option has been removed upstream and the different
3116 tools have been split between the pki and scep options, with
3117 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003118
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003119config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003120 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003121 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003122 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003123 According to the github project page:
3124 https://github.com/pipelka/xbmc-addon-xvdr
3125 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003126
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003127config BR2_PACKAGE_XBMC_PVR_ADDONS
3128 bool "xbmc options have been renamed"
3129 select BR2_LEGACY
3130 select BR2_PACKAGE_KODI_PVR_ADDONS
3131 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003132 The XBMC media center project was renamed to Kodi
3133 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003134
Bernd Kuhls35784592014-12-23 18:46:27 +01003135config BR2_PACKAGE_XBMC
3136 bool "xbmc options have been renamed"
3137 select BR2_LEGACY
3138 select BR2_PACKAGE_KODI
3139 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003140 The XBMC media center project was renamed to Kodi
3141 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003142
3143config BR2_PACKAGE_XBMC_ALSA_LIB
3144 bool "xbmc options have been renamed"
3145 select BR2_LEGACY
3146 select BR2_PACKAGE_KODI_ALSA_LIB
3147 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003148 The XBMC media center project was renamed to Kodi
3149 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003150
3151config BR2_PACKAGE_XBMC_AVAHI
3152 bool "xbmc options have been renamed"
3153 select BR2_LEGACY
3154 select BR2_PACKAGE_KODI_AVAHI
3155 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003156 The XBMC media center project was renamed to Kodi
3157 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003158
3159config BR2_PACKAGE_XBMC_DBUS
3160 bool "xbmc options have been renamed"
3161 select BR2_LEGACY
3162 select BR2_PACKAGE_KODI_DBUS
3163 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003164 The XBMC media center project was renamed to Kodi
3165 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003166
3167config BR2_PACKAGE_XBMC_LIBBLURAY
3168 bool "xbmc options have been renamed"
3169 select BR2_LEGACY
3170 select BR2_PACKAGE_KODI_LIBBLURAY
3171 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003172 The XBMC media center project was renamed to Kodi
3173 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003174
3175config BR2_PACKAGE_XBMC_GOOM
3176 bool "xbmc options have been renamed"
3177 select BR2_LEGACY
3178 select BR2_PACKAGE_KODI_GOOM
3179 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003180 The XBMC media center project was renamed to Kodi
3181 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003182
3183config BR2_PACKAGE_XBMC_RSXS
3184 bool "xbmc options have been renamed"
3185 select BR2_LEGACY
3186 select BR2_PACKAGE_KODI_RSXS
3187 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003188 The XBMC media center project was renamed to Kodi
3189 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003190
3191config BR2_PACKAGE_XBMC_LIBCEC
3192 bool "xbmc options have been renamed"
3193 select BR2_LEGACY
3194 select BR2_PACKAGE_KODI_LIBCEC
3195 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003196 The XBMC media center project was renamed to Kodi
3197 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003198
3199config BR2_PACKAGE_XBMC_LIBMICROHTTPD
3200 bool "xbmc options have been renamed"
3201 select BR2_LEGACY
3202 select BR2_PACKAGE_KODI_LIBMICROHTTPD
3203 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003204 The XBMC media center project was renamed to Kodi
3205 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003206
3207config BR2_PACKAGE_XBMC_LIBNFS
3208 bool "xbmc options have been renamed"
3209 select BR2_LEGACY
3210 select BR2_PACKAGE_KODI_LIBNFS
3211 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003212 The XBMC media center project was renamed to Kodi
3213 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003214
3215config BR2_PACKAGE_XBMC_RTMPDUMP
3216 bool "xbmc options have been renamed"
3217 select BR2_LEGACY
3218 select BR2_PACKAGE_KODI_RTMPDUMP
3219 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003220 The XBMC media center project was renamed to Kodi
3221 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003222
3223config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
3224 bool "xbmc options have been renamed"
3225 select BR2_LEGACY
3226 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
3227 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003228 The XBMC media center project was renamed to Kodi
3229 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003230
3231config BR2_PACKAGE_XBMC_LIBSMBCLIENT
3232 bool "xbmc options have been renamed"
3233 select BR2_LEGACY
3234 select BR2_PACKAGE_KODI_LIBSMBCLIENT
3235 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003236 The XBMC media center project was renamed to Kodi
3237 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003238
3239config BR2_PACKAGE_XBMC_LIBTHEORA
3240 bool "xbmc options have been renamed"
3241 select BR2_LEGACY
3242 select BR2_PACKAGE_KODI_LIBTHEORA
3243 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003244 The XBMC media center project was renamed to Kodi
3245 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003246
3247config BR2_PACKAGE_XBMC_LIBUSB
3248 bool "xbmc options have been renamed"
3249 select BR2_LEGACY
3250 select BR2_PACKAGE_KODI_LIBUSB
3251 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003252 The XBMC media center project was renamed to Kodi
3253 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003254
3255config BR2_PACKAGE_XBMC_LIBVA
3256 bool "xbmc options have been renamed"
3257 select BR2_LEGACY
3258 select BR2_PACKAGE_KODI_LIBVA
3259 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003260 The XBMC media center project was renamed to Kodi
3261 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003262
3263config BR2_PACKAGE_XBMC_WAVPACK
3264 bool "xbmc options have been renamed"
3265 select BR2_LEGACY
3266 select BR2_PACKAGE_KODI_WAVPACK
3267 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003268 The XBMC media center project was renamed to Kodi
3269 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003270
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003271config BR2_PREFER_STATIC_LIB
3272 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003273 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003274 help
3275 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3276 highlights the fact that the option no longer "prefers"
3277 static libraries, but "enforces" static libraries (i.e
3278 shared libraries are completely unused).
3279
Samuel Martina44b1c12014-12-14 17:24:24 +01003280 Take care of updating the type of libraries you want under the
3281 "Build options" menu.
3282
Bernd Kuhls35784592014-12-23 18:46:27 +01003283###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003284comment "Legacy options removed in 2014.11"
3285
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003286config BR2_x86_generic
3287 bool "x86 generic variant has been removed"
3288 select BR2_LEGACY
3289 help
3290 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003291 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003292
Andreas Larsson40e18f22014-10-30 09:29:36 +01003293config BR2_GCC_VERSION_4_4_X
3294 bool "gcc 4.4.x has been removed"
3295 select BR2_LEGACY
3296 help
3297 The 4.4.x version of gcc has been removed. Use a newer
3298 version instead.
3299
Andreas Larsson43b78e72014-10-30 09:29:35 +01003300config BR2_sparc_sparchfleon
3301 bool "sparchfleon CPU has been removed"
3302 select BR2_LEGACY
3303 help
3304 The sparchfleon CPU was only supported in a patched gcc 4.4
3305 version. Its support has been removed in favor of the leon3
3306 CPU starting from gcc 4.8.x.
3307
3308config BR2_sparc_sparchfleonv8
3309 bool "sparchfleonv8 CPU has been removed"
3310 select BR2_LEGACY
3311 help
3312 The sparchfleonv8 CPU was only supported in a patched gcc
3313 4.4 version. Its support has been removed in favor of the
3314 leon3 CPU starting from gcc 4.8.x.
3315
3316config BR2_sparc_sparcsfleon
3317 bool "sparcsfleon CPU has been removed"
3318 select BR2_LEGACY
3319 help
3320 The sparcsfleon CPU was only supported in a patched gcc 4.4
3321 version. Its support has been removed in favor of the leon3
3322 CPU starting from gcc 4.8.x.
3323
3324config BR2_sparc_sparcsfleonv8
3325 bool "sparcsfleonv8 CPU has been removed"
3326 select BR2_LEGACY
3327 help
3328 The sparcsfleonv8 CPU was only supported in a patched gcc
3329 4.4 version. Its support has been removed in favor of the
3330 leon3 CPU starting from gcc 4.8.x.
3331
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003332config BR2_PACKAGE_XLIB_LIBPCIACCESS
3333 bool "xlib-libpciaccess option has been renamed"
3334 depends on BR2_PACKAGE_XORG7
3335 select BR2_LEGACY
3336 select BR2_PACKAGE_LIBPCIACCESS
3337 help
3338 libpciaccess neither depends on X11 nor Xlib. Thus the
3339 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3340
Yann E. MORINb581bba2014-09-21 20:38:13 +02003341config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3342 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003343 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003344 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3345 help
3346 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003347 Xceive (the xc4000 series), as well as new firmwares (the
3348 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003349
Yann E. MORINdac546e2014-09-21 20:38:12 +02003350config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3351 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003352 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003353 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3354 help
3355 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3356 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3357 to better account for the fact that a T5 variant exists.
3358
Yann E. MORIN120136e2014-09-21 20:38:09 +02003359config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3360 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003361 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003362 help
3363 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3364 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3365 select it in:
3366 Target packages -> Hardware handling ->
3367 Firmware -> linux-firmware -> WiFi firmware ->
3368 iwlwifi 3160/726x revision to use (revision 7)
3369
3370config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3371 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003372 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003373 help
3374 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3375 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3376 select it in:
3377 Target packages -> Hardware handling ->
3378 Firmware -> linux-firmware -> WiFi firmware ->
3379 iwlwifi 3160/726x revision to use (revision 8)
3380
3381###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003382comment "Legacy options removed in 2014.08"
3383
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003384config BR2_PACKAGE_LIBELF
3385 bool "libelf has been removed"
3386 select BR2_PACKAGE_ELFUTILS
3387 select BR2_LEGACY
3388 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003389 The libelf package provided an old version of the libelf
3390 library and is deprecated. The libelf library is now provided
3391 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003392
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003393config BR2_KERNEL_HEADERS_3_8
3394 bool "kernel headers version 3.8.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003395 select BR2_LEGACY
3396 help
3397 Version 3.8.x of the Linux kernel headers have been deprecated
3398 for more than four buildroot releases and are now removed.
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003399
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003400config BR2_PACKAGE_GETTEXT_TOOLS
3401 bool "support for gettext-tools on target has been removed"
3402 select BR2_LEGACY
3403 help
3404 The option to install the gettext utilities on the target
3405 has been removed. This is not necessary as Buildroot is not
3406 designed to provide a full development environment on the
3407 target. gettext tools should be used on the build machine
3408 instead.
3409
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003410config BR2_PACKAGE_PROCPS
3411 bool "procps has been replaced by procps-ng"
3412 select BR2_PACKAGE_PROCPS_NG
3413 select BR2_LEGACY
3414 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003415 The procps package has been replaced by the equivalent
3416 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003417
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003418config BR2_BINUTILS_VERSION_2_20_1
3419 bool "binutils 2.20.1 has been removed"
3420 select BR2_LEGACY
3421 help
3422 The 2.20.1 version of binutils has been removed. Use a newer
3423 version instead.
3424
3425config BR2_BINUTILS_VERSION_2_21
3426 bool "binutils 2.21 has been removed"
3427 select BR2_LEGACY
3428 help
3429 The 2.21 version of binutils has been removed. Use a newer
3430 version instead.
3431
3432config BR2_BINUTILS_VERSION_2_23_1
3433 bool "binutils 2.23.1 has been removed"
3434 select BR2_LEGACY
3435 help
3436 The 2.23.1 version of binutils has been removed. Use a newer
3437 version instead.
3438
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003439config BR2_UCLIBC_VERSION_0_9_32
3440 bool "uclibc 0.9.32 has been removed"
3441 select BR2_LEGACY
3442 help
3443 The 0.9.32 version of uClibc has been removed. Use a newer
3444 version instead.
3445
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003446config BR2_GCC_VERSION_4_3_X
3447 bool "gcc 4.3.x has been removed"
3448 select BR2_LEGACY
3449 help
3450 The 4.3.x version of gcc has been removed. Use a newer
3451 version instead.
3452
3453config BR2_GCC_VERSION_4_6_X
3454 bool "gcc 4.6.x has been removed"
3455 select BR2_LEGACY
3456 help
3457 The 4.6.x version of gcc has been removed. Use a newer
3458 version instead.
3459
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003460config BR2_GDB_VERSION_7_4
3461 bool "gdb 7.4 has been removed"
3462 select BR2_LEGACY
3463 help
3464 The 7.4 version of gdb has been removed. Use a newer version
3465 instead.
3466
3467config BR2_GDB_VERSION_7_5
3468 bool "gdb 7.5 has been removed"
3469 select BR2_LEGACY
3470 help
3471 The 7.5 version of gdb has been removed. Use a newer version
3472 instead.
3473
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003474config BR2_BUSYBOX_VERSION_1_19_X
3475 bool "busybox version selection has been removed"
3476 select BR2_LEGACY
3477 help
3478 The possibility of selecting the Busybox version has been
3479 removed. Use the latest version provided by the Busybox
3480 package instead.
3481
3482config BR2_BUSYBOX_VERSION_1_20_X
3483 bool "busybox version selection has been removed"
3484 select BR2_LEGACY
3485 help
3486 The possibility of selecting the Busybox version has been
3487 removed. Use the latest version provided by the Busybox
3488 package instead.
3489
3490config BR2_BUSYBOX_VERSION_1_21_X
3491 bool "busybox version selection has been removed"
3492 select BR2_LEGACY
3493 help
3494 The possibility of selecting the Busybox version has been
3495 removed. Use the latest version provided by the Busybox
3496 package instead.
3497
Ezequiel García07ac0452014-07-05 18:07:40 -03003498config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3499 bool "decode_tm6000"
3500 select BR2_PACKAGE_LIBV4L_UTILS
3501 select BR2_LEGACY
3502 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003503 This libv4l option has been deprecated and replaced by a
3504 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003505
3506config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3507 bool "ir-keytable"
3508 select BR2_PACKAGE_LIBV4L_UTILS
3509 select BR2_LEGACY
3510 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003511 This libv4l option has been deprecated and replaced by a
3512 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003513
3514config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3515 bool "v4l2-compliance"
3516 select BR2_PACKAGE_LIBV4L_UTILS
3517 select BR2_LEGACY
3518 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003519 This libv4l option has been deprecated and replaced by a
3520 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003521
3522config BR2_PACKAGE_LIBV4L_V4L2_CTL
3523 bool "v4l2-ctl"
3524 select BR2_PACKAGE_LIBV4L_UTILS
3525 select BR2_LEGACY
3526 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003527 This libv4l option has been deprecated and replaced by a
3528 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003529
3530config BR2_PACKAGE_LIBV4L_V4L2_DBG
3531 bool "v4l2-dbg"
3532 select BR2_PACKAGE_LIBV4L_UTILS
3533 select BR2_LEGACY
3534 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003535 This libv4l option has been deprecated and replaced by a
3536 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003537
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003538###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003539comment "Legacy options removed in 2014.05"
3540
Peter Seiderer4990a382014-04-23 00:12:23 +02003541config BR2_PACKAGE_EVTEST_CAPTURE
3542 bool "evtest-capture support removed (dropped since evtest 1.31)"
3543 select BR2_LEGACY
3544 help
3545 Support for evtest-capture has been removed (dropped from
3546 evtest package since version 1.31), use evemu package
3547 instead.
3548
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003549config BR2_KERNEL_HEADERS_3_6
3550 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003551 select BR2_LEGACY
3552 help
3553 Version 3.6.x of the Linux kernel headers have been deprecated
3554 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003555
3556config BR2_KERNEL_HEADERS_3_7
3557 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003558 select BR2_LEGACY
3559 help
3560 Version 3.7.x of the Linux kernel headers have been deprecated
3561 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003562
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003563config BR2_PACKAGE_VALA
3564 bool "vala target package has been removed"
3565 select BR2_LEGACY
3566 help
3567 The 'vala' target package has been removed since it has been
3568 deprecated for more than four buildroot releases.
3569 Note: the host vala package still exists.
3570
Yann E. MORINd6a37912014-04-07 21:58:03 +02003571config BR2_TARGET_TZ_ZONELIST
3572 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3573
3574config BR2_PACKAGE_TZDATA_ZONELIST
3575 string "tzdata: the timezone list option has been renamed"
3576 help
3577 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003578 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3579 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003580
3581config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3582 bool
3583 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3584 select BR2_LEGACY
3585
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003586config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3587 bool "Lua command-line editing none has been renamed"
3588 select BR2_LEGACY
3589 help
3590 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003591 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3592 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003593
3594config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3595 bool "Lua command-line editing using readline has been renamed"
3596 select BR2_LEGACY
3597 help
3598 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3599 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3600 it in the corresponding choice.
3601
3602config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3603 bool "Lua command-line editing using linenoise has been renamed"
3604 select BR2_LEGACY
3605 help
3606 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3607 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3608 it in the corresponding choice.
3609
Yann E. MORIN365ae612014-03-28 01:00:24 +01003610config BR2_PACKAGE_DVB_APPS_UTILS
3611 bool "dvb-apps utilities now built by default"
3612 select BR2_LEGACY
3613 help
3614 The dvb-apps utilities are now always built when the dvb-apps
3615 package is selected.
3616
Yann E. MORIN971e3312014-03-01 15:52:56 +01003617config BR2_KERNEL_HEADERS_SNAP
3618 bool "Local Linux snapshot support removed"
3619 select BR2_LEGACY
3620 help
3621 Support for using a custom snapshot to install the Linux
3622 kernel headers has been removed.
3623
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003624config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3625 bool "/dev management by udev removed"
3626 select BR2_LEGACY
3627 help
3628 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003629 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003630
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003631 Therefore, if you are not using 'systemd' as init system, you
3632 must choose 'Dynamic using eudev' in the '/dev management'
3633 menu to get the same behaviour as in your old configuration.
3634
3635 If you are using 'systemd', its internal implementation of
3636 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003637
3638 You must also check the packages depending on 'udev' are still
3639 selected.
3640
3641config BR2_PACKAGE_UDEV
3642 bool "udev is now a virtual package"
3643 select BR2_LEGACY
3644 select BR2_PACKAGE_HAS_UDEV
3645 help
3646 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003647 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003648
3649 Your old configuration refers to packages depending on 'udev',
3650 either for build or at runtime.
3651
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003652 Check that a 'udev' provider is selected. If you are not using
3653 'systemd' as init system, 'eudev' should be selected, which is
3654 the case if '/dev management' is set to 'Dynamic using eudev'.
3655
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003656 If you are using 'systemd', its internal implementation of
3657 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003658
3659config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003660 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003661 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003662 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3663 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003664 help
3665 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003666 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003667
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003668 If you are not using 'systemd' as init system, udev rules
3669 generation will be handled by 'eudev'. Check that
3670 '/dev management' is set to 'Dynamic using eudev' to get
3671 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003672
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003673 If you are using 'systemd', it internal implementation of
3674 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003675
3676config BR2_PACKAGE_UDEV_ALL_EXTRAS
3677 bool "udev extras removed"
3678 select BR2_LEGACY
3679 help
3680 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003681 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003682
3683 The option to enable the extra features of 'udev' (gudev, ...)
3684 has been removed. These features are automatically enabled in
3685 the 'udev' providers if the dependencies are selected. For
3686 example, selecting 'libglib2' will trigger the build of gudev.
3687
Bernd Kuhls5562be12014-03-01 16:41:10 +01003688config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3689 bool "xlib-libpthread-stubs option has been renamed"
3690 depends on BR2_PACKAGE_XORG7
3691 select BR2_LEGACY
3692 select BR2_PACKAGE_LIBPTHREAD_STUBS
3693 help
3694 The pthread stubs neither depend on X11 nor Xlib. Thus the
3695 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3696
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003697###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003698comment "Legacy options removed in 2014.02"
3699
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003700config BR2_sh2
3701 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003702 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003703 help
3704 Due to an inexistent user base and generally poor Linux
3705 support, the support for the SH2 architecture was removed.
3706
3707config BR2_sh3
3708 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003709 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003710 help
3711 Due to an inexistent user base and generally poor Linux
3712 support, the support for the SH3 architecture was removed.
3713
3714config BR2_sh3eb
3715 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003716 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003717 help
3718 Due to an inexistent user base and generally poor Linux
3719 support, the support for the SH3eb architecture was removed.
3720
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003721config BR2_KERNEL_HEADERS_3_1
3722 bool "kernel headers version 3.1.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003723 select BR2_LEGACY
3724 help
3725 Version 3.1.x of the Linux kernel headers have been deprecated
3726 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003727
3728config BR2_KERNEL_HEADERS_3_3
3729 bool "kernel headers version 3.3.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003730 select BR2_LEGACY
3731 help
3732 Version 3.3.x of the Linux kernel headers have been deprecated
3733 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003734
3735config BR2_KERNEL_HEADERS_3_5
3736 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003737 select BR2_LEGACY
3738 help
3739 Version 3.5.x of the Linux kernel headers have been deprecated
3740 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003741
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003742config BR2_GDB_VERSION_7_2
3743 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003744 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003745 select BR2_LEGACY
3746 help
3747 Version 7.2.x of gdb has been deprecated for more than four
3748 buildroot releases and is now removed. As an alternative, gdb
3749 7.5.x has been automatically selected in your configuration.
3750
3751config BR2_GDB_VERSION_7_3
3752 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003753 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003754 select BR2_LEGACY
3755 help
3756 Version 7.3.x of gdb has been deprecated for more than four
3757 buildroot releases and is now removed. As an alternative, gdb
3758 7.5.x has been automatically selected in your configuration.
3759
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01003760config BR2_PACKAGE_CCACHE
3761 bool "ccache target package has been removed"
3762 select BR2_LEGACY
3763 help
3764 The 'ccache' target package has been removed since it has been
3765 deprecated for more than four buildroot releases.
3766 Note: using ccache for speeding up builds is still supported.
3767
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003768config BR2_HAVE_DOCUMENTATION
3769 bool "support for documentation on target has been removed"
3770 select BR2_LEGACY
3771 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003772 Support for documentation on target has been removed since it
3773 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003774
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003775config BR2_PACKAGE_AUTOMAKE
3776 bool "automake target package has been removed"
3777 select BR2_LEGACY
3778 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003779 The 'automake' target package has been removed since it has
3780 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003781 Note: the host automake still exists.
3782
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003783config BR2_PACKAGE_AUTOCONF
3784 bool "autoconf target package has been removed"
3785 select BR2_LEGACY
3786 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003787 The 'autoconf' target package has been removed since it has
3788 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003789 Note: the host autoconf still exists.
3790
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01003791config BR2_PACKAGE_XSTROKE
3792 bool "xstroke has been removed"
3793 select BR2_LEGACY
3794 help
3795 The 'xstroke' package has been removed since it has been
3796 deprecated for more than four buildroot releases.
3797
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003798config BR2_PACKAGE_LZMA
3799 bool "lzma target package has been removed"
3800 select BR2_LEGACY
3801 help
3802 The 'lzma' target package has been removed since it has been
3803 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003804 Note: generating lzma-compressed rootfs images is still
3805 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003806
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01003807config BR2_PACKAGE_TTCP
3808 bool "ttcp has been removed"
3809 select BR2_LEGACY
3810 help
3811 The 'ttcp' package has been removed since it has been
3812 deprecated for more than four buildroot releases.
3813
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003814config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003815 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003816 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003817 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003818 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003819 The 'libnfc-llcp' package has been removed since upstream
3820 renamed to 'libllcp'. We have added a new package for
3821 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003822
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00003823config BR2_PACKAGE_MYSQL_CLIENT
3824 bool "MySQL client renamed to MySQL"
3825 select BR2_LEGACY
3826 select BR2_PACKAGE_MYSQL
3827 help
3828 The option has been renamed BR2_PACKAGE_MYSQL
3829
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01003830config BR2_PACKAGE_SQUASHFS3
3831 bool "squashfs3 has been removed"
3832 select BR2_LEGACY
3833 select BR2_PACKAGE_SQUASHFS
3834 help
3835 The 'squashfs3' package has been removed since it has been
3836 deprecated for more than four buildroot releases. Package
3837 'squashfs' (4) has been selected automatically as replacement.
3838
3839config BR2_TARGET_ROOTFS_SQUASHFS3
3840 bool "squashfs3 rootfs support has been removed"
3841 select BR2_LEGACY
3842 help
3843 Together with the removal of the squashfs3 package, support
3844 for squashfs3 root filesystems has been removed too. Squashfs
3845 root filesystems will automatically use squashfs4 now.
3846
Arnaud Aujon560fe852013-12-15 20:23:12 +01003847config BR2_PACKAGE_NETKITBASE
3848 bool "netkitbase has been removed"
3849 select BR2_LEGACY
3850 help
3851 The 'netkitbase' package has been removed since it has been
3852 deprecated since 2012.11. This package provided 'inetd'
3853 which is replaced by 'xinet' and 'ping' which is replaced by
3854 'busybox' or 'fping'.
3855
3856config BR2_PACKAGE_NETKITTELNET
3857 bool "netkittelnet has been removed"
3858 select BR2_LEGACY
3859 help
3860 The 'netkittelnet' package has been removed since it has
3861 been deprecated since 2012.11. 'busybox' provides a telnet
3862 client and should be used instead.
3863
Francois Perrad63058f82014-01-11 16:42:09 +01003864config BR2_PACKAGE_LUASQL
3865 bool "luasql has been replaced by luasql-sqlite3"
3866 select BR2_PACKAGE_LUASQL_SQLITE3
3867 select BR2_LEGACY
3868 help
3869 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
3870
Francois Perrada6c53472014-01-11 16:42:08 +01003871config BR2_PACKAGE_LUACJSON
3872 bool "luacjson has been replaced by lua-cjson"
3873 select BR2_PACKAGE_LUA_CJSON
3874 select BR2_LEGACY
3875 help
3876 The option has been renamed BR2_PACKAGE_LUA_CJSON.
3877
Arnaud Aujon560fe852013-12-15 20:23:12 +01003878###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003879comment "Legacy options removed in 2013.11"
3880
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003881config BR2_PACKAGE_LVM2_DMSETUP_ONLY
3882 bool "lvm2's 'dmsetup only' option removed"
3883 select BR2_LEGACY
3884 help
3885 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
3886 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003887 suite. Therefore, the option has been replaced with the
3888 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003889
3890# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
3891# in order to automatically propagate old configs
3892
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01003893config BR2_PACKAGE_QT_JAVASCRIPTCORE
3894 bool "qt javascriptcore option removed"
3895 select BR2_LEGACY
3896 help
3897 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
3898 force the activation or disabling of the JIT compiler in the
3899 Qt Javascript interpreter. However, the JIT compiler is not
3900 available for all architectures, so forcing its activation
3901 does not always work. Moreover, Qt knows by itself for which
3902 architectures JIT support is possible, and will
3903 automatically enable it if possible.
3904
3905 Therefore, this option was in fact useless, and causing
3906 build problems when enabled on architectures for which the
3907 JIT support was not available. It has been removed, and
3908 there is no replacement: Qt will enable JIT at compile time
3909 when possible.
3910
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003911config BR2_PACKAGE_MODULE_INIT_TOOLS
3912 bool "module-init-tools replaced by kmod"
3913 select BR2_PACKAGE_KMOD
3914 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01003915 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003916 help
3917 The 'module-init-tools' package has been removed, since it
3918 has been depracated upstream and replaced by 'kmod'.
3919
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02003920config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
3921 string "u-boot: the git repository URL option has been renamed"
3922 help
3923 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
3924 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
3925
3926config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
3927 bool
3928 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
3929 select BR2_LEGACY
3930
3931# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
3932# boot/uboot/Config.in
3933
3934config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
3935 string "u-boot: the git repository version option has been renamed"
3936 help
3937 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3938 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3939
3940config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3941 bool
3942 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3943 select BR2_LEGACY
3944
3945# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3946# boot/uboot/Config.in
3947
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02003948config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3949 string "linux: the git repository URL option has been renamed"
3950 help
3951 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3952 been renamed to
3953 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3954
3955config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3956 bool
3957 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3958 select BR2_LEGACY
3959
3960# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3961# linux/Config.in
3962
3963config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3964 string "linux: the git repository version option has been renamed"
3965 help
3966 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3967 been renamed to
3968 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3969
3970config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3971 bool
3972 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3973 select BR2_LEGACY
3974
3975# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
3976# linux/Config.in
3977
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003978###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02003979comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003980
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02003981config BR2_ARM_OABI
3982 bool "ARM OABI support has been removed"
3983 select BR2_LEGACY
3984 help
3985 The support for the ARM OABI was deprecated since a while,
3986 and has been removed completely from Buildroot. It is also
3987 deprecated in upstream gcc, since gcc 4.7. People should
3988 switch to EABI instead, which should not be a problem as
3989 long as you don't have pre-built OABI binaries in your
3990 system that you can't recompile.
3991
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03003992config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
3993 bool "dosfstools dosfsck renamed to fsck.fat"
3994 select BR2_LEGACY
3995 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
3996 help
3997 dosfsck was renamed upstream to fsck.fat for consistency.
3998
3999config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
4000 bool "dosfstools dosfslabel renamed to fatlabel"
4001 select BR2_LEGACY
4002 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
4003 help
4004 doslabel was renamed upstream to fatlabel for consistency.
4005
4006config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
4007 bool "dosfstools mkdosfs renamed to mkfs.fat"
4008 select BR2_LEGACY
4009 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
4010 help
4011 mkdosfs was renamed upstream to mkfs.fat for consistency.
4012
Thomas Petazzonie21db002013-06-30 21:28:57 +02004013config BR2_ELF2FLT
4014 bool "the elf2flt option has been renamed"
4015 select BR2_LEGACY
4016 help
4017 The BR2_ELF2FLT option has been renamed to
4018 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
4019 the package infrastructure.
4020
Thomas Petazzonid8060052013-07-16 10:03:17 +02004021config BR2_VFP_FLOAT
4022 bool "the ARM VFP floating point option has been renamed"
4023 select BR2_LEGACY
4024 help
4025 Due to a major refactoring of the floating-point handling of
4026 the ARM architecture support, the BR2_VFP_FLOAT option has
4027 been replaced with a choice of options that allows to select
4028 between various VFP versions/capabilities.
4029
Samuel Martinba8f82b2013-08-30 06:08:59 +02004030config BR2_PACKAGE_GCC_TARGET
4031 bool "gcc on the target filesystem has been removed"
4032 select BR2_LEGACY
4033 help
4034 The support for gcc in the target filesystem was deprecated
4035 since a while, and has been removed completely from Buildroot.
4036 See Buildroot's documentation for more explanations.
4037
4038config BR2_HAVE_DEVFILES
4039 bool "development files in target filesystem has been removed"
4040 select BR2_LEGACY
4041 help
4042 The installation of the development files in the target
4043 filesystem was deprecated since a while, and has been removed
4044 completely from Buildroot.
4045 See Buildroot's documentation for more explanations.
4046
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00004047endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02004048
4049endif # !SKIP_LEGACY