blob: c3df37ddd9cb8a0abdc23ea12330067525fdc8d3 [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
Matt Weber070b1832018-09-20 16:54:24 -0500148config BR2_TARGET_XLOADER
149 bool "xloader has been removed"
150 select BR2_LEGACY
151 help
152 The package has been removed as u-boot SPL provides
153 similar functionality
154
Matt Weber5e8790d2018-10-15 11:46:44 -0500155config BR2_PACKAGE_TIDSP_BINARIES
156 bool "tidsp-binaries package removed"
157 select BR2_LEGACY
158 help
159 The tidsp-binaries package was removed.
160
Matt Webere8eb7f52018-10-15 11:46:43 -0500161config BR2_PACKAGE_DSP_TOOLS
162 bool "dsp-tools package removed"
163 select BR2_LEGACY
164 help
165 The dsp-tools package was removed.
166
Matt Weber91542902018-10-15 11:46:42 -0500167config BR2_PACKAGE_GST_DSP
168 bool "gst-dsp package removed"
169 select BR2_LEGACY
170 help
171 The gst-dsp package was removed.
172
Fabrice Fontaine2c3c7c42018-09-30 16:02:06 +0200173config BR2_PACKAGE_BOOTUTILS
174 bool "bootutils package removed"
175 select BR2_LEGACY
176 help
177 The bootutils package was removed.
178
Romain Naouraddcc392018-09-30 14:55:46 +0200179config BR2_PACKAGE_EXPEDITE
180 bool "expedite package has been removed"
181 select BR2_LEGACY
182 help
183 expedite is not actively maintained anymore.
184 https://sourceforge.net/p/enlightenment/mailman/message/36428571
185
Bernd Kuhls3d3235f2018-09-10 18:30:00 +0200186config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
187 bool "mesa3d opengl texture float option removed"
188 select BR2_LEGACY
189 help
190 mesa3d now unconditionally enables floating-point textures,
191 as the corresponding patent has expired.
192
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200193config BR2_KERNEL_HEADERS_4_10
194 bool "kernel headers version 4.10.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200195 select BR2_LEGACY
196 help
197 Version 4.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200198 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200199
200config BR2_KERNEL_HEADERS_4_11
201 bool "kernel headers version 4.11.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200202 select BR2_LEGACY
203 help
204 Version 4.11.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200205 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200206
207config BR2_KERNEL_HEADERS_4_12
208 bool "kernel headers version 4.12.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200209 select BR2_LEGACY
210 help
211 Version 4.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200212 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200213
214config BR2_KERNEL_HEADERS_4_13
215 bool "kernel headers version 4.13.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200216 select BR2_LEGACY
217 help
218 Version 4.13.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200219 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200220
221config BR2_KERNEL_HEADERS_4_15
222 bool "kernel headers version 4.15.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200223 select BR2_LEGACY
224 help
225 Version 4.15.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200226 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200227
Yann E. MORINd220ce62018-10-04 22:00:30 +0200228config BR2_KERNEL_HEADERS_4_17
229 bool "kernel headers version 4.17.x are no longer supported"
230 select BR2_LEGACY
231 help
232 Version 4.17.x of the Linux kernel headers are no longer
233 maintained upstream and are now removed.
234
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200235###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200236comment "Legacy options removed in 2018.08"
237
Bernd Kuhlsf9063022018-07-21 16:16:48 +0200238config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
239 bool "Modular X.org server was updated to version 1.20.0"
240 select BR2_LEGACY
241 select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
242 help
243 Modular X.org server was updated to version 1.20.0
244
Bernd Kuhls14c52532018-07-21 16:16:44 +0200245config BR2_PACKAGE_XPROTO_APPLEWMPROTO
246 bool "xproto-applewmproto package replaced by xorgproto"
247 select BR2_LEGACY
248 select BR2_PACKAGE_XORGPROTO
249 help
250 The xproto-applewmproto package has been replaced by the
251 xorgproto package, which combines all xproto_* packages.
252
253config BR2_PACKAGE_XPROTO_BIGREQSPROTO
254 bool "xproto-bigreqsproto package replaced by xorgproto"
255 select BR2_LEGACY
256 select BR2_PACKAGE_XORGPROTO
257 help
258 The xproto-bigreqsproto package has been replaced by the
259 xorgproto package, which combines all xproto_* packages.
260
261config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
262 bool "xproto-compositeproto package replaced by xorgproto"
263 select BR2_LEGACY
264 select BR2_PACKAGE_XORGPROTO
265 help
266 The xproto-compositeproto package has been replaced by the
267 xorgproto package, which combines all xproto_* packages.
268
269config BR2_PACKAGE_XPROTO_DAMAGEPROTO
270 bool "xproto-dameproto package replaced by xorgproto"
271 select BR2_LEGACY
272 select BR2_PACKAGE_XORGPROTO
273 help
274 The xproto-dameproto package has been replaced by the
275 xorgproto package, which combines all xproto_* packages.
276
277config BR2_PACKAGE_XPROTO_DMXPROTO
278 bool "xproto-dmxproto package replaced by xorgproto"
279 select BR2_LEGACY
280 select BR2_PACKAGE_XORGPROTO
281 help
282 The xproto-dmxproto package has been replaced by the
283 xorgproto package, which combines all xproto_* packages.
284
285config BR2_PACKAGE_XPROTO_DRI2PROTO
286 bool "xproto-dri2proto package replaced by xorgproto"
287 select BR2_LEGACY
288 select BR2_PACKAGE_XORGPROTO
289 help
290 The xproto-dri2proto package has been replaced by the
291 xorgproto package, which combines all xproto_* packages.
292
293config BR2_PACKAGE_XPROTO_DRI3PROTO
294 bool "xproto-dri3proto package replaced by xorgproto"
295 select BR2_LEGACY
296 select BR2_PACKAGE_XORGPROTO
297 help
298 The xproto-dri3proto package has been replaced by the
299 xorgproto package, which combines all xproto_* packages.
300
301config BR2_PACKAGE_XPROTO_FIXESPROTO
302 bool "xproto-fixesproto package replaced by xorgproto"
303 select BR2_LEGACY
304 select BR2_PACKAGE_XORGPROTO
305 help
306 The xproto-fixesproto package has been replaced by the
307 xorgproto package, which combines all xproto_* packages.
308
309config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
310 bool "xproto-fontcacheproto package replaced by xorgproto"
311 select BR2_LEGACY
312 select BR2_PACKAGE_XORGPROTO
313 help
314 The xproto-fontcacheproto package has been replaced by the
315 xorgproto package, which combines all xproto_* packages.
316
317config BR2_PACKAGE_XPROTO_FONTSPROTO
318 bool "xproto-fontsproto package replaced by xorgproto"
319 select BR2_LEGACY
320 select BR2_PACKAGE_XORGPROTO
321 help
322 The xproto-fontsproto package has been replaced by the
323 xorgproto package, which combines all xproto_* packages.
324
325config BR2_PACKAGE_XPROTO_GLPROTO
326 bool "xproto-glproto package replaced by xorgproto"
327 select BR2_LEGACY
328 select BR2_PACKAGE_XORGPROTO
329 help
330 The xproto-glproto package has been replaced by the
331 xorgproto package, which combines all xproto_* packages.
332
333config BR2_PACKAGE_XPROTO_INPUTPROTO
334 bool "xproto-inputproto package replaced by xorgproto"
335 select BR2_LEGACY
336 select BR2_PACKAGE_XORGPROTO
337 help
338 The xproto-inputproto package has been replaced by the
339 xorgproto package, which combines all xproto_* packages.
340
341config BR2_PACKAGE_XPROTO_KBPROTO
342 bool "xproto-kbproto package replaced by xorgproto"
343 select BR2_LEGACY
344 select BR2_PACKAGE_XORGPROTO
345 help
346 The xproto-kbproto package has been replaced by the
347 xorgproto package, which combines all xproto_* packages.
348
349config BR2_PACKAGE_XPROTO_PRESENTPROTO
350 bool "xproto-presentproto package replaced by xorgproto"
351 select BR2_LEGACY
352 select BR2_PACKAGE_XORGPROTO
353 help
354 The xproto-presentproto package has been replaced by the
355 xorgproto package, which combines all xproto_* packages.
356
357config BR2_PACKAGE_XPROTO_RANDRPROTO
358 bool "xproto-randrproto package replaced by xorgproto"
359 select BR2_LEGACY
360 select BR2_PACKAGE_XORGPROTO
361 help
362 The xproto-randrproto package has been replaced by the
363 xorgproto package, which combines all xproto_* packages.
364
365config BR2_PACKAGE_XPROTO_RECORDPROTO
366 bool "xproto-recordproto package replaced by xorgproto"
367 select BR2_LEGACY
368 select BR2_PACKAGE_XORGPROTO
369 help
370 The xproto-recordproto package has been replaced by the
371 xorgproto package, which combines all xproto_* packages.
372
373config BR2_PACKAGE_XPROTO_RENDERPROTO
374 bool "xproto-renderproto package replaced by xorgproto"
375 select BR2_LEGACY
376 select BR2_PACKAGE_XORGPROTO
377 help
378 The xproto-renderproto package has been replaced by the
379 xorgproto package, which combines all xproto_* packages.
380
381config BR2_PACKAGE_XPROTO_RESOURCEPROTO
382 bool "xproto-resourceproto package replaced by xorgproto"
383 select BR2_LEGACY
384 select BR2_PACKAGE_XORGPROTO
385 help
386 The xproto-resourceproto package has been replaced by the
387 xorgproto package, which combines all xproto_* packages.
388
389config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
390 bool "xproto-scrnsaverprot package replaced by xorgproto"
391 select BR2_LEGACY
392 select BR2_PACKAGE_XORGPROTO
393 help
394 The xproto-scrnsaverprot package has been replaced by the
395 xorgproto package, which combines all xproto_* packages.
396
397config BR2_PACKAGE_XPROTO_VIDEOPROTO
398 bool "xproto-videoproto package replaced by xorgproto"
399 select BR2_LEGACY
400 select BR2_PACKAGE_XORGPROTO
401 help
402 The xproto-videoproto package has been replaced by the
403 xorgproto package, which combines all xproto_* packages.
404
405config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
406 bool "xproto-windowswmproto package replaced by xorgproto"
407 select BR2_LEGACY
408 select BR2_PACKAGE_XORGPROTO
409 help
410 The xproto-windowswmproto package has been replaced by the
411 xorgproto package, which combines all xproto_* packages.
412
413config BR2_PACKAGE_XPROTO_XCMISCPROTO
414 bool "xproto-xcmiscproto package replaced by xorgproto"
415 select BR2_LEGACY
416 select BR2_PACKAGE_XORGPROTO
417 help
418 The xproto-xcmiscproto package has been replaced by the
419 xorgproto package, which combines all xproto_* packages.
420
421config BR2_PACKAGE_XPROTO_XEXTPROTO
422 bool "xproto-xextproto package replaced by xorgproto"
423 select BR2_LEGACY
424 select BR2_PACKAGE_XORGPROTO
425 help
426 The xproto-xextproto package has been replaced by the
427 xorgproto package, which combines all xproto_* packages.
428
429config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
430 bool "xproto-xf86bigfontproto package replaced by xorgproto"
431 select BR2_LEGACY
432 select BR2_PACKAGE_XORGPROTO
433 help
434 The xproto-xf86bigfontproto package has been replaced by the
435 xorgproto package, which combines all xproto_* packages.
436
437config BR2_PACKAGE_XPROTO_XF86DGAPROTO
438 bool "xproto-xf86dgaproto package replaced by xorgproto"
439 select BR2_LEGACY
440 select BR2_PACKAGE_XORGPROTO
441 help
442 The xproto-xf86dgaproto package has been replaced by the
443 xorgproto package, which combines all xproto_* packages.
444
445config BR2_PACKAGE_XPROTO_XF86DRIPROTO
446 bool "xproto-xf86driproto package replaced by xorgproto"
447 select BR2_LEGACY
448 select BR2_PACKAGE_XORGPROTO
449 help
450 The xproto-xf86driproto package has been replaced by the
451 xorgproto package, which combines all xproto_* packages.
452
453config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
454 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
455 select BR2_LEGACY
456 select BR2_PACKAGE_XORGPROTO
457 help
458 The xproto-xf86vidmodeproto package has been replaced by the
459 xorgproto package, which combines all xproto_* packages.
460
461config BR2_PACKAGE_XPROTO_XINERAMAPROTO
462 bool "xproto-xineramaproto package replaced by xorgproto"
463 select BR2_LEGACY
464 select BR2_PACKAGE_XORGPROTO
465 help
466 The xproto-xineramaproto package has been replaced by the
467 xorgproto package, which combines all xproto_* packages.
468
469config BR2_PACKAGE_XPROTO_XPROTO
470 bool "xproto-xproto package replaced by xorgproto"
471 select BR2_LEGACY
472 select BR2_PACKAGE_XORGPROTO
473 help
474 The xproto-xproto package has been replaced by the
475 xorgproto package, which combines all xproto_* packages.
476
477config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
478 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
479 select BR2_LEGACY
480 select BR2_PACKAGE_XORGPROTO
481 help
482 The xproto-xproxymanagementprotocol package has been
483 replaced by the xorgproto package, which combines all
484 xproto_* packages.
485
Adam Duskett3f2aef52018-06-24 00:35:22 +0200486config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
487 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
488 select BR2_LEGACY
489 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
490 help
491 The opengl option has been moved from gst1-plugins-bad to
492 gst1-plugins-base.
493
494config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
495 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
496 select BR2_LEGACY
497 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
498 help
499 The gles2 option has been moved from gst1-plugins-bad to
500 gst1-plugins-base.
501
502config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
503 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
504 select BR2_LEGACY
505 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
506 help
507 The glx option has been moved from gst1-plugins-bad to
508 gst1-plugins-base.
509
510config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
511 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
512 select BR2_LEGACY
513 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
514 help
515 The egl option has been moved from gst1-plugins-bad to
516 gst1-plugins-base.
517
518config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
519 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
520 select BR2_LEGACY
521 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
522 help
523 The x11 option has been moved from gst1-plugins-bad to
524 gst1-plugins-base.
525
526config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
527 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
528 select BR2_LEGACY
529 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
530 help
531 The wayland option has been moved from gst1-plugins-bad to
532 gst1-plugins-base.
533
534config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
535 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
536 select BR2_LEGACY
537 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
538 help
539 The dispmanx option has been moved from gst1-plugins-mad to
540 gst1-plugins-base.
541
542config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
543 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
544 select BR2_LEGACY
545 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
546 help
547 The audiomixer option has been moved from gst1-plugins-bad to
548 gst1-plugins-base.
549
550config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
551 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
552 select BR2_LEGACY
553 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
554 help
555 The lame option has been moved from gst1-plugins-ugly to
556 gst1-plugins-good.
557
558config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
559 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
560 select BR2_LEGACY
561 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
562 help
563 The mpg123 option has been moved from gst1-plugins-ugly to
564 gst1-plugins-good.
565
Romain Naourbae35c82018-06-24 15:53:10 +0200566config BR2_GDB_VERSION_7_11
567 bool "gdb 7.11 has been removed"
568 select BR2_LEGACY
569 help
570 The 7.11 version of gdb has been removed. Use a newer version
571 instead.
572
Romain Naour54a2e7a2018-06-24 15:53:09 +0200573config BR2_GDB_VERSION_7_10
574 bool "gdb 7.10 has been removed"
575 select BR2_LEGACY
576 help
577 The 7.10 version of gdb has been removed. Use a newer version
578 instead.
579
580###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200581comment "Legacy options removed in 2018.05"
582
Petr Vorel8553b392018-05-13 21:07:36 +0200583config BR2_PACKAGE_MEDIAART_BACKEND_NONE
584 bool "libmediaart none backend option renamed"
585 select BR2_LEGACY
586 help
587 For consistency reasons, the option
588 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
589 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
590
591config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
592 bool "libmediaart gdk-pixbuf backend option renamed"
593 select BR2_LEGACY
594 help
595 For consistency reasons, the option
596 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
597 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
598
599config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
600 bool "libmediaart qt backend option renamed"
601 select BR2_LEGACY
602 help
603 For consistency reasons, the option
604 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
605 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
606
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200607# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
608# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200609config BR2_PACKAGE_TI_SGX_AM335X
610 bool "ti-sgx-km AM335X option renamed"
611 select BR2_LEGACY
612 help
613 For consistency reasons, the option
614 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
615 BR2_PACKAGE_TI_SGX_KM_AM335X.
616
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200617# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
618# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200619config BR2_PACKAGE_TI_SGX_AM437X
620 bool "ti-sgx-km AM437X option renamed"
621 select BR2_LEGACY
622 help
623 For consistency reasons, the option
624 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
625 BR2_PACKAGE_TI_SGX_KM_AM437X.
626
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200627# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
628# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200629config BR2_PACKAGE_TI_SGX_AM4430
630 bool "ti-sgx-km AM4430 option renamed"
631 select BR2_LEGACY
632 help
633 For consistency reasons, the option
634 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
635 BR2_PACKAGE_TI_SGX_KM_AM4430.
636
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200637# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
638# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200639config BR2_PACKAGE_TI_SGX_AM5430
640 bool "ti-sgx-km AM5430 option renamed"
641 select BR2_LEGACY
642 help
643 For consistency reasons, the option
644 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
645 BR2_PACKAGE_TI_SGX_KM_AM5430.
646
Thomas Petazzonia79df202018-05-13 21:07:34 +0200647config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
648 bool "janus-gateway audio-bridge option renamed"
649 select BR2_LEGACY
650 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
651 help
652 For consistency reasons, the janus-gateway option
653 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
654 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
655
656config BR2_PACKAGE_JANUS_ECHO_TEST
657 bool "janus-gateway echo-test option renamed"
658 select BR2_LEGACY
659 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
660 help
661 For consistency reasons, the janus-gateway option
662 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
663 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
664
665config BR2_PACKAGE_JANUS_RECORDPLAY
666 bool "janus-gateway recordplay option renamed"
667 select BR2_LEGACY
668 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
669 help
670 For consistency reasons, the janus-gateway option
671 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
672 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
673
674config BR2_PACKAGE_JANUS_SIP_GATEWAY
675 bool "janus-gateway sip-gateway option renamed"
676 select BR2_LEGACY
677 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
678 help
679 For consistency reasons, the janus-gateway option
680 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
681 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
682
683config BR2_PACKAGE_JANUS_STREAMING
684 bool "janus-gateway streaming option renamed"
685 select BR2_LEGACY
686 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
687 help
688 For consistency reasons, the janus-gateway option
689 BR2_PACKAGE_JANUS_STREAMING has been renamed to
690 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
691
692config BR2_PACKAGE_JANUS_TEXT_ROOM
693 bool "janus-gateway text-room option renamed"
694 select BR2_LEGACY
695 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
696 help
697 For consistency reasons, the janus-gateway option
698 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
699 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
700
701config BR2_PACKAGE_JANUS_VIDEO_CALL
702 bool "janus-gateway video-call option renamed"
703 select BR2_LEGACY
704 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
705 help
706 For consistency reasons, the janus-gateway option
707 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
708 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
709
710config BR2_PACKAGE_JANUS_VIDEO_ROOM
711 bool "janus-gateway video-room option renamed"
712 select BR2_LEGACY
713 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
714 help
715 For consistency reasons, the janus-gateway option
716 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
717 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
718
719config BR2_PACKAGE_JANUS_MQTT
720 bool "janus-gateway mqtt option renamed"
721 select BR2_LEGACY
722 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
723 help
724 For consistency reasons, the janus-gateway option
725 BR2_PACKAGE_JANUS_MQTT has been renamed to
726 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
727
728config BR2_PACKAGE_JANUS_RABBITMQ
729 bool "janus-gateway rabbitmq option renamed"
730 select BR2_LEGACY
731 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
732 help
733 For consistency reasons, the janus-gateway option
734 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
735 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
736
737config BR2_PACKAGE_JANUS_REST
738 bool "janus-gateway rest option renamed"
739 select BR2_LEGACY
740 select BR2_PACKAGE_JANUS_GATEWAY_REST
741 help
742 For consistency reasons, the janus-gateway option
743 BR2_PACKAGE_JANUS_REST has been renamed to
744 BR2_PACKAGE_JANUS_GATEWAY_REST.
745
746config BR2_PACKAGE_JANUS_UNIX_SOCKETS
747 bool "janus-gateway unix-sockets option renamed"
748 select BR2_LEGACY
749 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
750 help
751 For consistency reasons, the janus-gateway option
752 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
753 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
754
755config BR2_PACKAGE_JANUS_WEBSOCKETS
756 bool "janus-gateway websockets option renamed"
757 select BR2_LEGACY
758 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
759 help
760 For consistency reasons, the janus-gateway option
761 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
762 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
763
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200764config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
765 bool "ipsec-tools security context disable option renamed"
766 select BR2_LEGACY
767 help
768 For consistency reasons, the option
769 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
770 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
771
772config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
773 bool "ipsec-tools SELinux security context enable option renamed"
774 select BR2_LEGACY
775 help
776 For consistency reasons, the option
777 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
778 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
779
780config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
781 bool "ipsec-tools kernel security context enable option renamed"
782 select BR2_LEGACY
783 help
784 For consistency reasons, the option
785 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
786 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
787
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +0200788config BR2_PACKAGE_LIBTFDI_CPP
789 bool "libftdi C++ bindings option renamed"
790 select BR2_LEGACY
791 select BR2_PACKAGE_LIBFTDI_CPP
792 help
793 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
794 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
795 name.
796
Thomas Petazzoni94c14622018-05-13 21:07:31 +0200797config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
798 bool "jquery-ui-themes option black-tie renamed"
799 select BR2_LEGACY
800 help
801 For consistency reasons, the jquery-ui-themes option for the
802 black-tie theme has been renamed from
803 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
804 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
805
806config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
807 bool "jquery-ui-themes option blitzer renamed"
808 select BR2_LEGACY
809 help
810 For consistency reasons, the jquery-ui-themes option for the
811 blitzer theme has been renamed from
812 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
813 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
814
815config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
816 bool "jquery-ui-themes option cupertino renamed"
817 select BR2_LEGACY
818 help
819 For consistency reasons, the jquery-ui-themes option for the
820 cupertino theme has been renamed from
821 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
822 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
823
824config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
825 bool "jquery-ui-themes option dark-hive renamed"
826 select BR2_LEGACY
827 help
828 For consistency reasons, the jquery-ui-themes option for the
829 dark-hive theme has been renamed from
830 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
831 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
832
833config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
834 bool "jquery-ui-themes option dot-luv renamed"
835 select BR2_LEGACY
836 help
837 For consistency reasons, the jquery-ui-themes option for the
838 dot-luv theme has been renamed from
839 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
840 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
841
842config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
843 bool "jquery-ui-themes option eggplant renamed"
844 select BR2_LEGACY
845 help
846 For consistency reasons, the jquery-ui-themes option for the
847 eggplant theme has been renamed from
848 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
849 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
850
851config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
852 bool "jquery-ui-themes option excite-bike renamed"
853 select BR2_LEGACY
854 help
855 For consistency reasons, the jquery-ui-themes option for the
856 excite-bike theme has been renamed from
857 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
858 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
859
860config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
861 bool "jquery-ui-themes option flick renamed"
862 select BR2_LEGACY
863 help
864 For consistency reasons, the jquery-ui-themes option for the
865 flick theme has been renamed from
866 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
867 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
868
869config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
870 bool "jquery-ui-themes option hot-sneaks renamed"
871 select BR2_LEGACY
872 help
873 For consistency reasons, the jquery-ui-themes option for the
874 hot-sneaks theme has been renamed from
875 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
876 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
877
878config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
879 bool "jquery-ui-themes option humanity renamed"
880 select BR2_LEGACY
881 help
882 For consistency reasons, the jquery-ui-themes option for the
883 humanity theme has been renamed from
884 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
885 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
886
887config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
888 bool "jquery-ui-themes option le-frog renamed"
889 select BR2_LEGACY
890 help
891 For consistency reasons, the jquery-ui-themes option for the
892 le-frog theme has been renamed from
893 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
894 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
895
896config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
897 bool "jquery-ui-themes option mint-choc renamed"
898 select BR2_LEGACY
899 help
900 For consistency reasons, the jquery-ui-themes option for the
901 mint-choc theme has been renamed from
902 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
903 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
904
905config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
906 bool "jquery-ui-themes option overcast renamed"
907 select BR2_LEGACY
908 help
909 For consistency reasons, the jquery-ui-themes option for the
910 overcast theme has been renamed from
911 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
912 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
913
914config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
915 bool "jquery-ui-themes option pepper-grinder renamed"
916 select BR2_LEGACY
917 help
918 For consistency reasons, the jquery-ui-themes option for the
919 pepper-grinder theme has been renamed from
920 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
921 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
922
923config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
924 bool "jquery-ui-themes option redmond renamed"
925 select BR2_LEGACY
926 help
927 For consistency reasons, the jquery-ui-themes option for the
928 redmond theme has been renamed from
929 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
930 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
931
932config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
933 bool "jquery-ui-themes option smoothness renamed"
934 select BR2_LEGACY
935 help
936 For consistency reasons, the jquery-ui-themes option for the
937 smoothness theme has been renamed from
938 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
939 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
940
941config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
942 bool "jquery-ui-themes option south-street renamed"
943 select BR2_LEGACY
944 help
945 For consistency reasons, the jquery-ui-themes option for the
946 south-street theme has been renamed from
947 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
948 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
949
950config BR2_PACKAGE_JQUERY_UI_THEME_START
951 bool "jquery-ui-themes option start renamed"
952 select BR2_LEGACY
953 help
954 For consistency reasons, the jquery-ui-themes option for the
955 start theme has been renamed from
956 BR2_PACKAGE_JQUERY_UI_THEME_START to
957 BR2_PACKAGE_JQUERY_UI_THEMES_START.
958
959config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
960 bool "jquery-ui-themes option sunny renamed"
961 select BR2_LEGACY
962 help
963 For consistency reasons, the jquery-ui-themes option for the
964 sunny theme has been renamed from
965 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
966 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
967
968config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
969 bool "jquery-ui-themes option swanky-purse renamed"
970 select BR2_LEGACY
971 help
972 For consistency reasons, the jquery-ui-themes option for the
973 swanky-purse theme has been renamed from
974 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
975 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
976
977config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
978 bool "jquery-ui-themes option trontastic renamed"
979 select BR2_LEGACY
980 help
981 For consistency reasons, the jquery-ui-themes option for the
982 trontastic theme has been renamed from
983 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
984 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
985
986config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
987 bool "jquery-ui-themes option ui-darkness renamed"
988 select BR2_LEGACY
989 help
990 For consistency reasons, the jquery-ui-themes option for the
991 ui-darkness theme has been renamed from
992 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
993 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
994
995config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
996 bool "jquery-ui-themes option ui-lightness renamed"
997 select BR2_LEGACY
998 help
999 For consistency reasons, the jquery-ui-themes option for the
1000 ui-lightness theme has been renamed from
1001 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
1002 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
1003
1004config BR2_PACKAGE_JQUERY_UI_THEME_VADER
1005 bool "jquery-ui-themes option vader renamed"
1006 select BR2_LEGACY
1007 help
1008 For consistency reasons, the jquery-ui-themes option for the
1009 vader theme has been renamed from
1010 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
1011 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
1012
Thomas Petazzonib2b874f2018-05-13 21:07:30 +02001013config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
1014 bool "bluez5-utils health plugin option renamed"
1015 select BR2_LEGACY
1016 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
1017 help
1018 For consistency reasons, the option
1019 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
1020 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
1021
1022config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
1023 bool "bluez5-utils midi plugin option renamed"
1024 select BR2_LEGACY
1025 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
1026 help
1027 For consistency reasons, the option
1028 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
1029 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
1030
1031config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
1032 bool "bluez5-utils nfc plugin option renamed"
1033 select BR2_LEGACY
1034 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
1035 help
1036 For consistency reasons, the option
1037 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
1038 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
1039
1040config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
1041 bool "bluez5-utils sap plugin option renamed"
1042 select BR2_LEGACY
1043 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
1044 help
1045 For consistency reasons, the option
1046 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
1047 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
1048
1049config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
1050 bool "bluez5-utils sixaxis plugin option renamed"
1051 select BR2_LEGACY
1052 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
1053 help
1054 For consistency reasons, the option
1055 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
1056 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
1057
Bernd Kuhls79a678d2018-05-02 08:05:40 +02001058config BR2_PACKAGE_TRANSMISSION_REMOTE
1059 bool "transmission remote tool option removed"
1060 select BR2_LEGACY
1061 select BR2_PACKAGE_TRANSMISSION_DAEMON
1062 help
1063 Upstream does not provide a separate configure option for
1064 the tool transmission-remote, it is built when the
1065 transmission daemon has been enabled. Therefore, Buildroot
1066 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
1067 for you.
1068
Fabrice Fontainef6421152018-05-07 00:09:01 +02001069config BR2_PACKAGE_LIBKCAPI_APPS
1070 bool "libkcapi test applications removed"
1071 select BR2_LEGACY
1072 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
1073 select BR2_PACKAGE_LIBKCAPI_RNGAPP
1074 select BR2_PACKAGE_LIBKCAPI_SPEED
1075 select BR2_PACKAGE_LIBKCAPI_TEST
1076 help
1077 Test applications (hasher, rng read, speed-test, test) now
1078 have their own configuration options in the libkcapi menu.
1079
Bernd Kuhlsdacb1762018-05-01 09:10:17 +02001080config BR2_PACKAGE_MPLAYER
1081 bool "mplayer package removed"
1082 select BR2_LEGACY
1083 help
1084 The mplayer package was removed.
1085
1086config BR2_PACKAGE_MPLAYER_MPLAYER
1087 bool "mplayer package removed"
1088 select BR2_LEGACY
1089 help
1090 The mplayer package was removed.
1091
1092config BR2_PACKAGE_MPLAYER_MENCODER
1093 bool "mplayer package removed"
1094 select BR2_LEGACY
1095 help
1096 The mplayer package was removed.
1097
Bernd Kuhls3f449112018-05-01 09:10:14 +02001098config BR2_PACKAGE_LIBPLAYER_MPLAYER
1099 bool "mplayer support in libplayer removed"
1100 select BR2_LEGACY
1101 help
1102 The mplayer package was removed.
1103
Thomas Petazzoni46444ba2018-04-04 18:00:09 +02001104config BR2_PACKAGE_IQVLINUX
1105 bool "iqvlinux package removed"
1106 select BR2_LEGACY
1107 help
1108 This package contained a kernel module from Intel, which
1109 could only be used together with Intel userspace tools
1110 provided under NDA, which also come with the same kernel
1111 module. The copy of the kernel module available on
1112 SourceForge is provided only to comply with the GPLv2
1113 requirement. Intel engineers were even surprised it even
1114 built and were not willing to make any effort to fix their
1115 tarball naming to contain a version number. Therefore, it
1116 does not make sense for Buildroot to provide such a package.
1117
1118 See https://sourceforge.net/p/e1000/bugs/589/ for the
1119 discussion.
1120
Thomas Petazzonie2ea4152018-04-05 21:50:18 +02001121config BR2_BINFMT_FLAT_SEP_DATA
1122 bool "binfmt FLAT with separate code and data removed"
1123 select BR2_LEGACY
1124 help
1125 This FLAT binary format was only used on Blackfin, which has
1126 been removed.
1127
Thomas Petazzoni325bb372018-04-05 21:50:17 +02001128config BR2_bfin
1129 bool "Blackfin architecture support removed"
1130 select BR2_LEGACY
1131 help
1132 Following the removal of Blackfin support for the upstream
1133 Linux kernel, Buildroot has removed support for this CPU
1134 architecture.
1135
Bernd Kuhls9657e962018-04-01 15:58:08 +02001136config BR2_PACKAGE_KODI_ADSP_BASIC
1137 bool "kodi-adsp-basic package removed"
1138 select BR2_LEGACY
1139 help
1140 kodi-adsp-basic is unmaintained
1141
1142config BR2_PACKAGE_KODI_ADSP_FREESURROUND
1143 bool "kodi-adsp-freesurround package removed"
1144 select BR2_LEGACY
1145 help
1146 kodi-adsp-freesurround is unmaintained
1147
1148###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +02001149comment "Legacy options removed in 2018.02"
1150
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001151config BR2_KERNEL_HEADERS_3_4
1152 bool "kernel headers version 3.4.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001153 select BR2_LEGACY
1154 help
1155 Version 3.4.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001156 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001157
1158config BR2_KERNEL_HEADERS_3_10
1159 bool "kernel headers version 3.10.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001160 select BR2_LEGACY
1161 help
1162 Version 3.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001163 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001164
1165config BR2_KERNEL_HEADERS_3_12
1166 bool "kernel headers version 3.12.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001167 select BR2_LEGACY
1168 help
1169 Version 3.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001170 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001171
Romain Naour453d29f2018-01-29 23:39:41 +01001172config BR2_BINUTILS_VERSION_2_27_X
1173 bool "binutils version 2.27 support removed"
1174 select BR2_LEGACY
1175 help
1176 Support for binutils version 2.27 has been removed. The
1177 current default version (2.29 or later) has been selected
1178 instead.
1179
Baruch Siach55d79ed2018-01-02 08:16:01 +02001180config BR2_PACKAGE_EEPROG
1181 bool "eeprog package removed"
1182 select BR2_LEGACY
1183 select BR2_PACKAGE_I2C_TOOLS
1184 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
1185 help
1186 The eeprog program is now provided by the i2c-tools package.
1187
Baruch Siach86dfb422017-11-14 14:02:38 +02001188config BR2_PACKAGE_GNUPG2_GPGV2
1189 bool "gnupg2 gpgv2 option removed"
1190 select BR2_LEGACY
1191 select BR2_PACKAGE_GNUPG2_GPGV
1192 help
1193 The gpgv2 executable is now named gpgv. The config option
1194 has been renamed accordingly.
1195
Gary Bissonf7a7d942018-01-05 15:39:36 +01001196config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
1197 bool "Vivante apitrace tool option removed"
1198 select BR2_LEGACY
1199 help
1200 The apitrace tool for Vivante is not provided by the
1201 imx-gpu-viv package any longer.
1202
1203config BR2_PACKAGE_IMX_GPU_VIV_G2D
1204 bool "Vivante G2D libraries from imx-gpu-viv removed"
1205 select BR2_LEGACY
1206 select BR2_PACKAGE_IMX_GPU_G2D
1207 help
1208 The G2D libraries are now provided by the imx-gpu-g2d package.
1209
Baruch Siach86dfb422017-11-14 14:02:38 +02001210###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -03001211comment "Legacy options removed in 2017.11"
1212
Carlos Santos6c10e402017-10-21 20:30:18 -02001213config BR2_PACKAGE_RFKILL
1214 bool "rfkill package removed"
1215 select BR2_LEGACY
1216 select BR2_PACKAGE_UTIL_LINUX
1217 select BR2_PACKAGE_UTIL_LINUX_RFKILL
1218 help
1219 The rfkill program is now provided by the util-linux package.
1220
Carlos Santosd4382002017-10-31 08:47:51 -02001221config BR2_PACKAGE_UTIL_LINUX_RESET
1222 bool "util-linux reset option removed"
1223 select BR2_LEGACY
1224 help
1225 The util-linux package no longer offers a "reset" command. Use
1226 either the reset command provided by BusyBox or select ncurses
1227 programs, which will install a symlink from "tset" to reset.
1228
Adam Duskett9d6da7a2017-10-17 18:32:18 -04001229config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
1230 bool "policycoreutils audit2allow option removed"
1231 select BR2_LEGACY
1232 select BR2_PACKAGE_SELINUX_PYTHON
1233 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
1234 help
1235 The policycoreutils package no longer offers audit2allow
1236 as a option. This package has been moved into the
1237 selinux-python package by the SELinux maintainers.
1238
1239config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
1240 bool "policycoreutils restorecond option removed"
1241 select BR2_LEGACY
1242 select BR2_PACKAGE_RESTORECOND
1243 help
1244 The policycoreutils package no longer offers restorecond
1245 as a option. This package has been moved into a seperate
1246 package maintained by the SELinux maintainers.
1247
1248config BR2_PACKAGE_SEPOLGEN
1249 bool "sepolgen package has been removed"
1250 select BR2_LEGACY
1251 select BR2_PACKAGE_SELINUX_PYTHON
1252 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
1253 help
1254 Sepolgen is no longer a individual package, but instead has
1255 been moved into the selinux-python package by the SELinux
1256 maintainers.
1257
Bernd Kuhls49a9fb02017-09-16 17:15:35 +02001258config BR2_PACKAGE_OPENOBEX_BLUEZ
1259 bool "openobex bluez option removed"
1260 select BR2_LEGACY
1261 select BR2_PACKAGE_BLUEZ_UTILS
1262 help
1263 The OpenOBEX package no longer offers an option to enable or
1264 disable BlueZ support. Instead, BlueZ support is always
1265 included when the bluez5_utils or bluez_utils package is
1266 selected.
1267
1268config BR2_PACKAGE_OPENOBEX_LIBUSB
1269 bool "openobex libusb option removed"
1270 select BR2_LEGACY
1271 select BR2_PACKAGE_LIBUSB
1272 help
1273 The OpenOBEX package no longer offers an option to enable or
1274 disable libusb support. Instead, USB support is always
1275 included when the libusb package is selected.
1276
1277config BR2_PACKAGE_OPENOBEX_APPS
1278 bool "openobex apps option removed"
1279 select BR2_LEGACY
1280 help
1281 The OpenOBEX package no longer offers an option to enable or
1282 disable apps support.
1283
1284config BR2_PACKAGE_OPENOBEX_SYSLOG
1285 bool "openobex syslog option removed"
1286 select BR2_LEGACY
1287 help
1288 The OpenOBEX package no longer offers an option to enable or
1289 disable syslog support.
1290
1291config BR2_PACKAGE_OPENOBEX_DUMP
1292 bool "openobex dump option removed"
1293 select BR2_LEGACY
1294 help
1295 The OpenOBEX package no longer offers an option to enable or
1296 disable dump support.
1297
Alexander Mukhinfca70382017-09-10 13:21:34 +03001298config BR2_PACKAGE_AICCU
1299 bool "aiccu utility removed"
1300 select BR2_LEGACY
1301 help
1302 As the SixXS project has ceased its operation on 2017-06-06,
1303 the AICCU utility has no use anymore and has been removed.
1304
1305 https://www.sixxs.net/sunset/
1306
Carlos Santosf52af612017-09-01 21:41:38 -03001307config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
1308 bool "util-linux login utilities option removed"
1309 select BR2_LEGACY
1310 select BR2_PACKAGE_UTIL_LINUX_LAST
1311 select BR2_PACKAGE_UTIL_LINUX_LOGIN
1312 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
1313 select BR2_PACKAGE_UTIL_LINUX_SU
1314 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
1315 help
1316 Login utilities (last, login, runuser, su, sulogin) now have
1317 their own configuration options in the util-linux menu.
1318
1319###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +02001320comment "Legacy options removed in 2017.08"
1321
Yann E. MORIN144dc9c2017-08-11 18:05:08 +02001322config BR2_TARGET_GRUB
1323 bool "grub (aka grub-legacy) has been removed"
1324 select BR2_LEGACY
1325 help
1326 grub-legacy is no longer maintained, and no longer builds with
1327 recent binutils versions.
1328
1329 Use grub2 or syslinux instead.
1330
Bin Meng20db0982017-08-30 08:55:25 -07001331config BR2_PACKAGE_SIMICSFS
1332 bool "simicsfs support removed"
1333 select BR2_LEGACY
1334 help
1335 Support for simicsfs kernel driver that provides access to a
1336 host computer's local filesystem when the target is
1337 executing within a SIMICS simulation has been removed.
1338
1339 Simics is now moving away from the simicsfs kernel module,
1340 as the kernel module has required too much maintenance
1341 work. Users should move to the user mode Simics agent
1342 instead.
1343
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001344config BR2_BINUTILS_VERSION_2_26_X
1345 bool "binutils version 2.26 support removed"
1346 select BR2_LEGACY
1347 help
1348 Support for binutils version 2.26 has been removed. The
1349 current default version (2.28 or later) has been selected
1350 instead.
1351
Yann E. MORINb3b60702017-07-09 05:21:56 -07001352config BR2_XTENSA_OVERLAY_DIR
1353 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001354 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001355 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1356 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1357 path to the overlay file, not to the directory containing
1358 it.
1359
1360config BR2_XTENSA_OVERLAY_DIR_WRAP
1361 bool
1362 default y if BR2_XTENSA_OVERLAY_DIR != ""
1363 select BR2_LEGACY
1364
1365config BR2_XTENSA_CUSTOM_NAME
1366 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1367 help
1368 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001369
1370config BR2_XTENSA_CUSTOM_NAME_WRAP
1371 bool
1372 default y if BR2_XTENSA_CUSTOM_NAME != ""
1373 select BR2_LEGACY
1374
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001375config BR2_PACKAGE_HOST_MKE2IMG
1376 bool "host mke2img has been removed"
1377 select BR2_LEGACY
1378 help
1379 We now call mkfs directly to generate ext2/3/4 filesystem
1380 image, so mke2img is no longer necessary.
1381
Samuel Martinbee9e882017-07-09 07:00:38 +02001382config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1383 int "exact size in blocks has been removed"
1384 default 0
1385 help
1386 This option has been removed in favor of
1387 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1388 to the value you had before. Set to 0 here to remove the
1389 warning.
1390
1391config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1392 bool
1393 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1394 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1395 select BR2_LEGACY
1396
1397# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1398
Samuel Martin235b6f12017-07-04 16:47:25 +02001399config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1400 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1401 default 0
1402 help
1403 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1404 images. It now automatically selects the number of inodes
1405 based on the image size. The extra number of inodes can no
1406 longer be provided; instead, provide the total number of
1407 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1408
1409config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1410 bool
1411 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1412 select BR2_LEGACY
1413
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001414config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1415 bool "cdxaparse removed"
1416 select BR2_LEGACY
1417
1418config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1419 bool "dataurisrc moved to gstreamer1"
1420 select BR2_LEGACY
1421 help
1422 Dataurisrc has moved to gstreamer core and is always built.
1423
1424config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1425 bool "dccp removed"
1426 select BR2_LEGACY
1427
1428config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1429 bool "hdvparse removed"
1430 select BR2_LEGACY
1431
1432config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1433 bool "mve removed"
1434 select BR2_LEGACY
1435
1436config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1437 bool "nuvdemux removed"
1438 select BR2_LEGACY
1439
1440config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1441 bool "patchdetect removed"
1442 select BR2_LEGACY
1443
1444config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1445 bool "sdi removed"
1446 select BR2_LEGACY
1447
1448config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1449 bool "tta removed"
1450 select BR2_LEGACY
1451
1452config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1453 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001454 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001455 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001456 help
1457 videomeasure plugin has been removed and has been replaced by
1458 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001459
1460config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1461 bool "apexsink removed"
1462 select BR2_LEGACY
1463
1464config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1465 bool "sdl removed"
1466 select BR2_LEGACY
1467
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001468config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1469 bool "mad (*.mp3 audio) removed"
1470 select BR2_LEGACY
1471
Thomas Petazzoni4c06d242017-07-04 10:11:54 +02001472config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
1473 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
1474 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
1475 select BR2_LEGACY
1476 help
1477 The WebRTC plugin in GStreamer 1.x has always been named
1478 webrtcdsp, but was wrongly introduced in Buildroot under the
1479 name webrtc. Therefore, we have renamed the option to match
1480 the actual name of the GStreamer plugin.
1481
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001482config BR2_STRIP_none
1483 bool "Strip command 'none' has been removed"
1484 select BR2_LEGACY
1485 help
1486 The strip command choice has been changed into a single
1487 boolean option. Please check that the new setting is
1488 correct (in the "Build options" sub-menu)
1489
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001490config BR2_PACKAGE_BEECRYPT_CPP
1491 bool "C++ support removed in beecrypt"
1492 select BR2_LEGACY
1493 help
1494 Support for C++ depends on icu. The beecrypt package is
1495 incompatible with icu 59+.
1496
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001497config BR2_PACKAGE_SPICE_CLIENT
1498 bool "spice client support removed"
1499 select BR2_LEGACY
1500 help
1501 Spice client support has been removed upstream. The
1502 functionality now lives in the spice-gtk widget and
1503 virt-viewer.
1504
1505config BR2_PACKAGE_SPICE_GUI
1506 bool "spice gui support removed"
1507 select BR2_LEGACY
1508 help
1509 Spice gui support has been removed upstream. The
1510 functionality now lives in the spice-gtk widget and
1511 virt-viewer.
1512
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001513config BR2_PACKAGE_SPICE_TUNNEL
1514 bool "spice network redirection removed"
1515 select BR2_LEGACY
1516 help
1517 Spice network redirection, aka tunnelling has been removed
1518 upstream.
1519
Koen Martens438b2d12017-06-20 20:54:49 +02001520config BR2_PACKAGE_INPUT_TOOLS
1521 bool "input-tools removed"
1522 select BR2_LEGACY
1523 select BR2_PACKAGE_LINUXCONSOLETOOLS
1524 help
1525 input-tools has been removed, it is replaced by
1526 linuxconsoletools, which has automatically been enabled.
1527
1528config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1529 bool "inputattach moved to linuxconsoletools"
1530 select BR2_LEGACY
1531 select BR2_PACKAGE_LINUXCONSOLETOOLS
1532 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1533 help
1534 input-tools has been removed, inputattach is now part
1535 of linuxconsoletools, which has automatically been
1536 enabled.
1537
1538config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1539 bool "jscal moved to linuxconsoletools"
1540 select BR2_LEGACY
1541 select BR2_PACKAGE_LINUXCONSOLETOOLS
1542 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1543 help
1544 input-tools has been removed, jscal is now part
1545 of linuxconsoletools, which has automatically been
1546 enabled.
1547
1548config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1549 bool "jstest moved to linuxconsoletools"
1550 select BR2_LEGACY
1551 select BR2_PACKAGE_LINUXCONSOLETOOLS
1552 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1553 help
1554 input-tools has been removed, jstest is now part
1555 of linuxconsoletools, which has automatically been
1556 enabled.
1557
Baruch Siach6510a822017-06-16 06:32:48 +03001558config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1559 bool "SH Sourcery toolchain has been removed"
1560 select BR2_LEGACY
1561 help
1562 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001563 been removed, since it uses glibc older than 2.17 that
1564 requires -lrt to link executables using clock_* system calls.
1565 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001566
Baruch Siach06cac642017-06-16 06:32:47 +03001567config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1568 bool "x86 Sourcery toolchain has been removed"
1569 select BR2_LEGACY
1570 help
1571 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001572 been removed, since it uses glibc older than 2.17 that
1573 requires -lrt to link executables using clock_* system calls.
1574 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001575
Romain Naourf6695212017-05-23 22:24:40 +02001576config BR2_GCC_VERSION_4_8_X
1577 bool "gcc 4.8.x support removed"
1578 select BR2_LEGACY
1579 help
1580 Support for gcc version 4.8.x has been removed. The current
1581 default version (5.x or later) has been selected instead.
1582
1583###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001584comment "Legacy options removed in 2017.05"
1585
Romain Naour95426af2017-02-21 22:43:16 +01001586config BR2_PACKAGE_SUNXI_MALI_R2P4
1587 bool "sunxi-mali r2p4 removed"
1588 select BR2_LEGACY
1589 help
1590 sunxi-mali libMali for r2p4 Mali kernel module has been
1591 removed since the libump package only provides libUMP.so.3.
1592 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1593
Martin Barkd999a7f2017-05-06 14:19:13 +01001594config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1595 bool "CoffeeScript option has been removed"
1596 select BR2_LEGACY
1597 help
1598 The option to enable NodeJS CoffeeScript has been removed.
1599 To continue using it, add "coffee-script" to
1600 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1601
Martin Bark096f8b12017-05-06 14:19:12 +01001602config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1603 bool "Express web application framework option has been removed"
1604 select BR2_LEGACY
1605 help
1606 The option to enable the NodeJS Express web application
1607 framework has been removed. To continue using it, add
1608 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1609
Baruch Siach0364d442017-05-01 15:59:41 +03001610config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1611 bool "bluez5_utils gatttool install option removed"
1612 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1613 help
1614 The option to install gatttool specifically has been removed.
1615 Since version 5.44 gatttool is in the list of deprecated
1616 tools. The option to build and install deprecated tools has
1617 been automatically enabled.
1618
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001619config BR2_PACKAGE_OPENOCD_FT2XXX
1620 bool "openocd ft2232 support has been removed"
1621 select BR2_PACKAGE_OPENOCD_FTDI
1622 select BR2_LEGACY
1623 help
1624 FT2232 support in OpenOCD has been removed, it's replaced by
1625 FDTI support, which has automatically been enabled.
1626
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001627config BR2_PACKAGE_KODI_RTMPDUMP
1628 bool "kodi rtmp has been removed"
1629 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001630 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001631 help
1632 Internal rtmp support was removed from Kodi.
1633
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001634config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1635 bool "kodi-visualisation-fountain has been removed"
1636 select BR2_LEGACY
1637 help
1638 According to upstream 'the visualization is not currently
1639 in a working shape.'
1640
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001641config BR2_PACKAGE_PORTMAP
1642 bool "portmap has been removed"
1643 select BR2_LEGACY
1644 select BR2_PACKAGE_RPCBIND
1645 help
1646 The portmap upstream tarball is removed, no releases since
1647 ten years and latest change in upstream git in 2014.
1648 You should better use rpcbind as a RPC portmapper.
1649
Thomas Petazzoni58472912017-04-03 22:28:21 +02001650config BR2_BINUTILS_VERSION_2_25_X
1651 bool "binutils version 2.25 support removed"
1652 select BR2_LEGACY
1653 help
1654 Support for binutils version 2.25 has been removed. The
1655 current default version (2.27 or later) has been selected
1656 instead.
1657
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001658config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1659 bool "uclibc RPC support has been removed"
1660 select BR2_LEGACY
1661 help
1662 uClibc-ng removed internal RPC implementation in 1.0.23. You
1663 should use libtirpc instead.
1664
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001665config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1666 int "extra size in blocks has been removed"
1667 default 0
1668 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001669 Since the support for auto calculation of the filesystem size
1670 has been removed, this option is now useless and must be 0.
1671 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1672 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001673
1674config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1675 bool
1676 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1677 select BR2_LEGACY
1678
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001679config BR2_PACKAGE_SYSTEMD_KDBUS
1680 bool "systemd-kdbus has been removed"
1681 select BR2_LEGACY
1682 help
1683 --enable/disable-kdbus configure option has been removed since
1684 systemd-231.
1685
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001686config BR2_PACKAGE_POLARSSL
1687 bool "polarssl has been removed"
1688 select BR2_LEGACY
1689 help
1690 The polarssl crypto library has been removed since the 1.2.x
1691 release branch is no longer maintained. Newer upstream
1692 branches/releases (mbedtls) have API changes so they're not
1693 drop-in replacements.
1694
Yann E. MORIN61551182017-03-12 10:58:15 +01001695config BR2_NBD_CLIENT
1696 bool "nbd client option was renamed"
1697 select BR2_LEGACY
1698 select BR2_PACKAGE_NBD_CLIENT
1699 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001700 The nbd client option has been renamed to
1701 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001702
1703config BR2_NBD_SERVER
1704 bool "nbd server option was renamed"
1705 select BR2_LEGACY
1706 select BR2_PACKAGE_NBD_SERVER
1707 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001708 The nbd server option has been renamed to
1709 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001710
Carlos Santos6a9c6312017-02-14 09:05:16 -02001711config BR2_PACKAGE_GMOCK
1712 bool "gmock merged into gtest package"
1713 select BR2_LEGACY
1714 select BR2_PACKAGE_GTEST
1715 select BR2_PACKAGE_GTEST_GMOCK
1716 help
1717 GMock is now a suboption of the GTest package.
1718
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001719config BR2_KERNEL_HEADERS_4_8
1720 bool "kernel headers version 4.8.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001721 select BR2_LEGACY
1722 help
1723 Version 4.8.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001724 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001725
1726config BR2_KERNEL_HEADERS_3_18
1727 bool "kernel headers version 3.18.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001728 select BR2_LEGACY
1729 help
1730 Version 3.18.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001731 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001732
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001733config BR2_GLIBC_VERSION_2_22
1734 bool "glibc 2.22 removed"
1735 select BR2_LEGACY
1736 help
1737 Support for glibc version 2.22 has been removed. The current
1738 default version has been selected instead.
1739
1740###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001741comment "Legacy options removed in 2017.02"
1742
Francois Perrad8546ff32016-12-26 15:50:35 +01001743config BR2_PACKAGE_PERL_DB_FILE
1744 bool "perl-db-file removed"
1745 select BR2_LEGACY
1746 select BR2_PACKAGE_BERKELEYDB
1747 select BR2_PACKAGE_PERL
1748 help
1749 DB_File can be built as a core Perl module, so the separate
1750 perl-db-file package has been removed.
1751
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001752config BR2_KERNEL_HEADERS_4_7
1753 bool "kernel headers version 4.7.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001754 select BR2_LEGACY
1755 help
1756 Version 4.7.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001757 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001758
1759config BR2_KERNEL_HEADERS_4_6
1760 bool "kernel headers version 4.6.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001761 select BR2_LEGACY
1762 help
1763 Version 4.6.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001764 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001765
1766config BR2_KERNEL_HEADERS_4_5
1767 bool "kernel headers version 4.5.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001768 select BR2_LEGACY
1769 help
1770 Version 4.5.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001771 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001772
1773config BR2_KERNEL_HEADERS_3_14
1774 bool "kernel headers version 3.14.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001775 select BR2_LEGACY
1776 help
1777 Version 3.14.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001778 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001779
Romain Naour63abbcc2016-12-16 16:29:45 +01001780config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1781 bool "musl-cross 1.1.12 toolchain removed"
1782 select BR2_LEGACY
1783 help
1784 The support for the prebuilt toolchain based on the Musl C
1785 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001786 Upstream doesn't provide any prebuilt toolchain anymore, use
1787 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01001788
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01001789config BR2_UCLIBC_INSTALL_TEST_SUITE
1790 bool "uClibc tests now in uclibc-ng-test"
1791 select BR2_LEGACY
1792 select BR2_PACKAGE_UCLIBC_NG_TEST
1793 help
1794 The test suite of the uClibc C library has been moved into a
1795 separate package, uclibc-ng-test.
1796
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01001797config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1798 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1799 select BR2_LEGACY
1800 help
1801 The ADI Blackfin toolchain has many bugs which are fixed in
1802 more recent gcc and uClibc-ng releases. Use the Buildroot
1803 toolchain instead.
1804
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01001805config BR2_PACKAGE_MAKEDEVS
1806 bool "makedevs removed"
1807 select BR2_LEGACY
1808 help
1809 The makedevs tool is part of busybox. The Buildroot fork
1810 should not be used outside of the Buildroot infrastructure.
1811
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01001812config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1813 bool "Arago ARMv7 2011.09 removed"
1814 select BR2_LEGACY
1815 help
1816 The Arago toolchains are every old and not updated anymore.
1817
1818config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1819 bool "Arago ARMv5 2011.09 removed"
1820 select BR2_LEGACY
1821 help
1822 The Arago toolchains are every old and not updated anymore.
1823
Thomas Petazzonied364d12016-11-05 14:32:38 +01001824config BR2_PACKAGE_SNOWBALL_HDMISERVICE
1825 bool "snowball-hdmiservice removed"
1826 select BR2_LEGACY
1827 help
1828 We no longer have support for the Snowball platform in
1829 Buildroot, so this package was no longer useful.
1830
1831config BR2_PACKAGE_SNOWBALL_INIT
1832 bool "snowball-init removed"
1833 select BR2_LEGACY
1834 help
1835 We no longer have support for the Snowball platform in
1836 Buildroot, so this package was no longer useful.
1837
Jörg Krause69aa0572016-12-14 14:40:58 +01001838config BR2_GDB_VERSION_7_9
1839 bool "gdb 7.9 has been removed"
1840 select BR2_LEGACY
1841 help
1842 The 7.9 version of gdb has been removed. Use a newer version
1843 instead.
1844
Thomas Petazzonied364d12016-11-05 14:32:38 +01001845###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02001846comment "Legacy options removed in 2016.11"
1847
Fabrice Fontainec4572132016-09-12 23:31:07 +02001848config BR2_PACKAGE_PHP_SAPI_CLI_CGI
1849 bool "PHP CGI and CLI options are now seperate"
1850 select BR2_PACKAGE_PHP_SAPI_CLI
1851 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001852 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001853 help
1854 The PHP Interface options have been split up into a
1855 separate option for each interface.
1856
1857config BR2_PACKAGE_PHP_SAPI_CLI_FPM
1858 bool "PHP CLI and FPM options are now separate"
1859 select BR2_PACKAGE_PHP_SAPI_CLI
1860 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001861 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001862 help
1863 The PHP Interface options have been split up into a
1864 separate option for each interface.
1865
Arnout Vandecappelle35343992016-10-15 16:51:06 +02001866config BR2_PACKAGE_WVSTREAMS
1867 bool "wvstreams removed"
1868 select BR2_LEGACY
1869 help
1870 wvstreams is not maintained anymore since about 2009. It also
1871 doesn't build anymore with recent compilers (GCC 5+).
1872
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02001873config BR2_PACKAGE_WVDIAL
1874 bool "wvdial removed"
1875 select BR2_LEGACY
1876 help
1877 wvdial is not maintained anymore since about 2009. It also
1878 doesn't build anymore with recent compilers (GCC 5+).
1879
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02001880config BR2_PACKAGE_WEBKITGTK24
1881 bool "webkitgtk 2.4.x removed"
1882 select BR2_LEGACY
1883 help
1884 This legacy package only existed because some other packages
1885 depended on that specific version of webkitgtk. However, the
1886 other packages have been fixed. webkitgtk 2.4 is full of
1887 security issues so it needs to be removed.
1888
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02001889config BR2_PACKAGE_TORSMO
1890 bool "torsmo removed"
1891 select BR2_LEGACY
1892 help
1893 torsmo has been unmaintained for a long time, and nobody
1894 seems to be interested in it.
1895
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02001896config BR2_PACKAGE_SSTRIP
1897 bool "sstrip removed"
1898 select BR2_LEGACY
1899 help
1900 sstrip is unmaintained and potentially harmful. It doesn't
1901 save so much compared to normal binutils strip, and there is
1902 a big risk of binaries that don't work. Use normal strip
1903 instead.
1904
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001905config BR2_KERNEL_HEADERS_4_3
1906 bool "kernel headers version 4.3.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001907 select BR2_LEGACY
1908 help
1909 Version 4.3.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001910 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001911
1912config BR2_KERNEL_HEADERS_4_2
1913 bool "kernel headers version 4.2.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001914 select BR2_LEGACY
1915 help
1916 Version 4.2.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001917 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001918
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001919config BR2_PACKAGE_KODI_ADDON_XVDR
1920 bool "kodi-addon-xvdr removed"
1921 select BR2_LEGACY
1922 help
1923 According to the github project page:
1924 https://github.com/pipelka/xbmc-addon-xvdr
1925 this package is discontinued.
1926
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001927config BR2_PACKAGE_IPKG
1928 bool "ipkg removed"
1929 select BR2_LEGACY
1930 help
1931 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001932 handhelds.org project and it hasn't seen development since
1933 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001934
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02001935config BR2_GCC_VERSION_4_7_X
1936 bool "gcc 4.7.x support removed"
1937 select BR2_LEGACY
1938 help
1939 Support for gcc version 4.7.x has been removed. The current
1940 default version (4.9.x or later) has been selected instead.
1941
Arnout Vandecappelled8878112016-10-15 16:50:57 +02001942config BR2_BINUTILS_VERSION_2_24_X
1943 bool "binutils version 2.24 support removed"
1944 select BR2_LEGACY
1945 help
1946 Support for binutils version 2.24 has been removed. The
1947 current default version (2.26 or later) has been selected
1948 instead.
1949
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03001950config BR2_PACKAGE_WESTON_RPI
1951 bool "Weston propietary RPI support is gone"
1952 select BR2_LEGACY
1953 help
1954 Upstream decided the propietary (rpi-userland) weston composer
1955 support wasn't worth the effort so it was removed. Switch to
1956 the open VC4 support.
1957
Yann E. MORIN20b14462016-09-06 16:29:14 +02001958config BR2_LINUX_KERNEL_TOOL_CPUPOWER
1959 bool "linux-tool cpupower"
1960 depends on BR2_LINUX_KERNEL
1961 select BR2_LEGACY
1962 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
1963 help
1964 Linux tool cpupower option was renamed.
1965
1966config BR2_LINUX_KERNEL_TOOL_PERF
1967 bool "linux-tool perf"
1968 depends on BR2_LINUX_KERNEL
1969 select BR2_LEGACY
1970 select BR2_PACKAGE_LINUX_TOOLS_PERF
1971 help
1972 Linux tool perf option was renamed.
1973
1974config BR2_LINUX_KERNEL_TOOL_SELFTESTS
1975 bool "linux-tool selftests"
1976 depends on BR2_LINUX_KERNEL
1977 select BR2_LEGACY
1978 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
1979 help
1980 Linux tool selftests option was renamed.
1981
Thomas Petazzoni50332a52016-08-11 15:25:38 +02001982config BR2_GCC_VERSION_4_8_ARC
1983 bool "gcc arc option renamed"
1984 select BR2_LEGACY
1985 select BR2_GCC_VERSION_ARC
1986 help
1987 The option that selects the gcc version for the ARC
1988 architecture has been renamed to BR2_GCC_VERSION_ARC.
1989
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001990config BR2_KERNEL_HEADERS_4_0
1991 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001992 select BR2_LEGACY
1993 help
1994 Version 4.0.x of the Linux kernel headers have been deprecated
1995 for more than four buildroot releases and are now removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001996
1997config BR2_KERNEL_HEADERS_3_19
1998 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03001999 select BR2_LEGACY
2000 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002001 Version 3.19.x of the Linux kernel headers have been
2002 deprecated for more than four buildroot releases and are now
2003 removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002004
Romain Naour0e517312016-09-02 22:31:32 +02002005config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
2006 bool "libevas-generic-loaders package removed"
2007 select BR2_LEGACY
2008 select BR2_PACKAGE_EFL
2009 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002010 With EFL 1.18, libevas-generic-loaders is now provided by the
2011 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02002012
Romain Naourc22b7582016-09-02 22:31:31 +02002013config BR2_PACKAGE_ELEMENTARY
2014 bool "elementary package removed"
2015 select BR2_LEGACY
2016 select BR2_PACKAGE_EFL
2017 help
2018 With EFL 1.18, elementary is now provided by the efl package.
2019
Yann E. MORINe782cd52016-08-28 01:03:04 +02002020config BR2_LINUX_KERNEL_CUSTOM_LOCAL
2021 bool "Linux kernel local directory option removed"
2022 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002023 The option to select a local directory as the source of the
2024 Linux kernel has been removed. It hurts reproducibility of
2025 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02002026
2027 In case you were using this option during development of your
2028 Linux kernel, use the override mechanism instead.
2029
2030###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002031comment "Legacy options removed in 2016.08"
2032
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002033config BR2_PACKAGE_EFL_JP2K
2034 bool "libevas jp2k loader has been removed"
2035 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01002036 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002037 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
2038 while Buildroot only packages openjpeg 2.x. Therefore, the
2039 JP2K loader has been removed from EFL.
2040
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002041config BR2_PACKAGE_SYSTEMD_COMPAT
2042 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02002043 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002044 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02002045 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002046 been removed. Theses libraries have been useless since a few
2047 version, and have been fully dropped from the source since
2048 v230.
2049
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02002050config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
2051 bool "gst1-plugins-bad liveadder plugin removed"
2052 select BR2_LEGACY
2053 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2054 help
2055 The functionality of the liveadder plugin of the
2056 gst1-plugins-bad package has been merged into audiomixer.
2057
Andrew Webster0f92b192016-06-10 14:13:29 -04002058config BR2_PACKAGE_LIBFSLVPUWRAP
2059 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
2060 select BR2_LEGACY
2061 select BR2_PACKAGE_IMX_VPUWRAP
2062 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002063 The libfslvpuwrap has been renamed to match the renamed
2064 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04002065
Andrew Webster64998902016-06-10 14:13:18 -04002066config BR2_PACKAGE_LIBFSLPARSER
2067 bool "libfslparser has been renamed to imx-parser"
2068 select BR2_LEGACY
2069 select BR2_PACKAGE_IMX_PARSER
2070 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002071 The libfslparser has been renamed to match the renamed
2072 package.
Andrew Webster64998902016-06-10 14:13:18 -04002073
Andrew Webster47e62032016-06-10 14:13:05 -04002074config BR2_PACKAGE_LIBFSLCODEC
2075 bool "libfslcodec has been renamed to imx-codec"
2076 select BR2_LEGACY
2077 select BR2_PACKAGE_IMX_CODEC
2078 help
2079 The libfslcodec has been renamed to match the renamed package.
2080
Carlos Santosb5d99002016-06-03 16:35:39 -03002081config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
2082 bool "FIT support in uboot-tools has been refactored"
2083 select BR2_LEGACY
2084 select BR2_PACKAGE_DTC
2085 select BR2_PACKAGE_DTC_PROGRAMS
2086 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
2087 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
2088 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
2089 help
2090 This option has been removed in favor of a more fine-grained
2091 configuration, which is recommended. Selecting this option
2092 enables FIT and FIT signature support for the target packages.
2093 It will also select the dtc and openssl packages.
2094
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02002095config BR2_PTHREADS_OLD
2096 bool "linuxthreads (stable/old)"
2097 select BR2_LEGACY
2098 help
2099 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
2100 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
2101
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002102config BR2_BINUTILS_VERSION_2_23_X
2103 bool "binutils 2.23 removed"
2104 select BR2_LEGACY
2105 help
2106 Binutils 2.23 has been removed, using a newer version is
2107 recommended.
2108
Thomas Petazzoni500de252016-05-17 00:13:00 +02002109config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
2110 bool "eglibc support has been removed"
2111 select BR2_LEGACY
2112 help
2113 The eglibc project no longer exists, as it has been merged
2114 back into the glibc project. Therefore, support for eglibc
2115 has been removed, and glibc should be used instead.
2116
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002117config BR2_GDB_VERSION_7_8
2118 bool "gdb 7.8 has been removed"
2119 select BR2_LEGACY
2120 help
2121 The 7.8 version of gdb has been removed. Use a newer version
2122 instead.
2123
2124###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002125comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01002126
Gustavo Zacarias3380da62016-05-14 10:33:47 -03002127config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
2128 bool "openvpn polarssl crypto backend removed"
2129 select BR2_LEGACY
2130 help
2131 The OpenVPN polarssl crypto backend option has been removed.
2132 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
2133 compatible with mbedtls (polarssl) series 2.x which is the
2134 version provided in buildroot. And both can't coexist.
2135 It now uses OpenSSL as the only option.
2136
Martin Bark4dfc2cb2016-05-03 10:36:54 +01002137config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
2138 bool "nginx http spdy module removed"
2139 select BR2_LEGACY
2140 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
2141 help
2142 The ngx_http_spdy_module has been superseded by the
2143 ngx_http_v2_module since nginx v1.9.5. The
2144 ngx_http_v2_module modules has been automatically selected
2145 in your configuration.
2146
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03002147config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
2148 bool "gst1-plugins-bad rtp plugin moved to good"
2149 select BR2_LEGACY
2150 help
2151 The rtp plugin has been moved from gst1-plugins-base to
2152 gst1-plugins-good.
2153
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03002154config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
2155 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
2156 select BR2_LEGACY
2157 help
2158 The mpg123 plugin has been moved from gst1-plugins-bad to
2159 gst1-plugins-ugly.
2160
Gustavo Zacarias8490e832016-04-29 10:18:56 -03002161config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
2162 bool "PowerPC Sourcery toolchain has been removed"
2163 select BR2_LEGACY
2164 help
2165 The Sourcery CodeBench toolchain for the PowerPC
2166 architecture has been removed, as it was very old, not
2167 maintained, and causing numerous build failures with modern
2168 userspace packages.
2169
2170config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
2171 bool "PowerPC Sourcery E500v2 toolchain has been removed"
2172 select BR2_LEGACY
2173 help
2174 The Sourcery CodeBench toolchain for the PowerPC E500v2
2175 architecture has been removed, as it was very old, not
2176 maintained, and causing numerous build failures with modern
2177 userspace packages.
2178
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002179config BR2_x86_i386
2180 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02002181 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002182 help
2183 The support for the i386 processors of the x86 architecture
2184 has been removed.
2185
Julien CORJONf75ee802016-03-17 10:42:25 +01002186config BR2_PACKAGE_QT5QUICK1
2187 bool "qt5quick1 package removed"
2188 select BR2_LEGACY
2189 help
2190 The qt5quick1 package has been removed, since it was removed
2191 from upstream starting from Qt 5.6.
2192
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002193config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05002194 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002195 help
2196 The uboot custom patch directory option has been removed. Use
2197 the improved BR2_TARGET_UBOOT_PATCH option instead.
2198
Danomi Manchegof61583f2016-12-19 22:10:12 -05002199config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
2200 bool
2201 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
2202 select BR2_LEGACY
2203
2204# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
2205# boot/uboot/Config.in
2206
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03002207config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
2208 bool "xf86-input-void removed"
2209 select BR2_LEGACY
2210 help
2211 The xf86-input-void package has been removed, there's no need
2212 for it in any modern (post-2007) xorg server.
2213
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002214config BR2_KERNEL_HEADERS_3_17
2215 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002216 select BR2_LEGACY
2217 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002218 Version 3.17.x of the Linux kernel headers have been
2219 deprecated for more than four buildroot releases and are now
2220 removed.
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002221
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03002222config BR2_GDB_VERSION_7_7
2223 bool "gdb 7.7 has been removed"
2224 select BR2_LEGACY
2225 help
2226 The 7.7 version of gdb has been removed. Use a newer version
2227 instead.
2228
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03002229config BR2_PACKAGE_FOOMATIC_FILTERS
2230 bool "foomatic-filters"
2231 select BR2_LEGACY
2232 help
2233 The foomatic-filters package was removed.
2234
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03002235config BR2_PACKAGE_SAMBA
2236 bool "samba"
2237 select BR2_LEGACY
2238 help
2239 The samba package was removed in favour of samba4 since the
2240 3.x series isn't supported by upstream any longer.
2241
Bernd Kuhls6922b412016-02-20 23:09:11 +01002242config BR2_PACKAGE_KODI_WAVPACK
2243 bool "wavpack"
2244 select BR2_LEGACY
2245 help
2246 wavpack support was removed in favour of ffmpeg:
2247 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
2248
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01002249config BR2_PACKAGE_KODI_RSXS
2250 bool "rsxs support in Kodi was moved to an addon"
2251 select BR2_LEGACY
2252 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
2253 help
2254 rsxs support in Kodi was moved to an addon
2255
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01002256config BR2_PACKAGE_KODI_GOOM
2257 bool "Goom support in Kodi was moved to an addon"
2258 select BR2_LEGACY
2259 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
2260 help
2261 Goom support in Kodi was moved to an addon
2262
Gabe Evanse5a073a2016-02-25 21:55:11 +00002263config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
2264 bool "systemd all extras option has been removed"
2265 select BR2_LEGACY
2266 select BR2_PACKAGE_XZ
2267 select BR2_PACKAGE_LIBGCRYPT
2268 help
2269 The systemd option to enable "all extras" has been
2270 removed. To get the same features, the libgcrypt and xz
2271 package should now be enabled.
2272
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03002273config BR2_GCC_VERSION_4_5_X
2274 bool "gcc 4.5.x has been removed"
2275 select BR2_LEGACY
2276 help
2277 The 4.5.x version of gcc has been removed. Use a newer
2278 version instead.
2279
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002280config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05002281 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002282 select BR2_PACKAGE_NCURSES
2283 select BR2_PACKAGE_READLINE
2284 select BR2_LEGACY
2285 help
2286 This option was removed in favour of the sqlite package
2287 deciding itself depending on the enabled packages whether
2288 command-line editing should be enabled, it also also takes
2289 libedit into account.
2290
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002291###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01002292comment "Legacy options removed in 2016.02"
2293
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01002294config BR2_PACKAGE_DOVECOT_BZIP2
2295 bool "bzip2 support option has been removed"
2296 select BR2_LEGACY
2297 select BR2_PACKAGE_BZIP2
2298 help
2299 Bzip2 support is built if the bzip2 package is selected.
2300
2301config BR2_PACKAGE_DOVECOT_ZLIB
2302 bool "zlib support option has been removed"
2303 select BR2_LEGACY
2304 select BR2_PACKAGE_ZLIB
2305 help
2306 Zlib support is built if the zlib package is selected.
2307
James Knightead1df42016-02-12 11:40:05 -05002308config BR2_PACKAGE_E2FSPROGS_FINDFS
2309 bool "e2fsprogs findfs option has been removed"
2310 select BR2_LEGACY
2311 help
2312 This option attempted to enable findfs capabilities from
2313 e2fsprogs but has not worked since July 2015 (due to
2314 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002315 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002316
Romain Naourb1063a02016-02-07 17:56:56 +01002317config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2318 bool "openpowerlink debug option has been removed"
2319 select BR2_LEGACY
2320 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002321 This option depends on BR2_ENABLE_DEBUG which should not be
2322 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002323
2324config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2325 bool "openpowerlink package has been updated"
2326 select BR2_LEGACY
2327 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2328 help
2329 openpowerlink kernel modules are built if the
2330 kernel stack library is selected.
2331
2332config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2333 bool "openpowerlink package has been updated"
2334 select BR2_LEGACY
2335 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2336 help
2337 The user space support has been split in two part:
2338 - a monolitic user space library
2339 - a user spae deamon driver
2340
Yann E. MORINe3e05832016-02-06 00:06:17 +01002341config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2342 bool "using the linux headers version for the kernel has been removed"
2343 select BR2_LEGACY
2344 help
2345 The option to use the version of the kernel headers for the
2346 kernel to build has been removed.
2347
2348 There is now the converse, better-suited and more versatile
2349 option to use the kernel version for the linux headers.
2350
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002351config BR2_PACKAGE_CUPS_PDFTOPS
2352 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002353 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002354 select BR2_LEGACY
2355 help
2356 Pdftops support has been removed from the cups package
2357 It is now part of the cups-filters package.
2358
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002359config BR2_KERNEL_HEADERS_3_16
2360 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002361 select BR2_LEGACY
2362 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002363 Version 3.16.x of the Linux kernel headers have been
2364 deprecated for more than four buildroot releases and are now
2365 removed.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002366
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002367config BR2_PACKAGE_PYTHON_PYXML
2368 bool "python-pyxml package has been removed"
2369 select BR2_LEGACY
2370 help
2371 PyXML is obsolete and its functionality is covered either via
2372 native Python XML support or python-lxml package.
2373
Steven Noonand29c7192015-12-27 12:07:31 +01002374# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2375config BR2_ENABLE_SSP
2376 bool "Stack Smashing protection now has different levels"
2377 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002378 The protection offered by SSP can now be selected from
2379 different protection levels. Be sure to review the SSP level
2380 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002381
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002382config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002383 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002384 select BR2_LEGACY
2385 help
2386 The cle266 directfb driver support has been removed.
2387 It doesn't build in the latest version and it's unlikely
2388 anyone has any use for it.
2389
2390config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002391 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002392 select BR2_LEGACY
2393 help
2394 The unichrome directfb driver support has been removed.
2395 It doesn't build in the latest version and it's unlikely
2396 anyone has any use for it.
2397
Romain Naour820e1682015-12-19 17:39:14 +01002398config BR2_PACKAGE_LIBELEMENTARY
2399 bool "libelementary has been renamed to elementary"
2400 select BR2_LEGACY
2401 select BR2_PACKAGE_ELEMENTARY
2402 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002403 The libelementary package has been renamed to match the
2404 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002405
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002406config BR2_PACKAGE_LIBEINA
2407 bool "libeina package has been removed"
2408 select BR2_LEGACY
2409 select BR2_PACKAGE_EFL
2410 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002411 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002412
Romain Naour49700f02015-12-15 23:40:37 +01002413config BR2_PACKAGE_LIBEET
2414 bool "libeet package has been removed"
2415 select BR2_LEGACY
2416 select BR2_PACKAGE_EFL
2417 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002418 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002419
Romain Naoure5989d62015-12-15 23:40:36 +01002420config BR2_PACKAGE_LIBEVAS
2421 bool "libevas package has been removed"
2422 select BR2_LEGACY
2423 select BR2_PACKAGE_EFL
2424 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002425 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002426
Romain Naour1fe1b602015-12-15 23:40:35 +01002427config BR2_PACKAGE_LIBECORE
2428 bool "libecore package has been removed"
2429 select BR2_LEGACY
2430 select BR2_PACKAGE_EFL
2431 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002432 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002433
Romain Naour8c05c382015-12-15 23:40:34 +01002434config BR2_PACKAGE_LIBEDBUS
2435 bool "libedbus package has been removed"
2436 select BR2_LEGACY
2437 select BR2_PACKAGE_EFL
2438 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002439 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002440
Romain Naourd2b042c2015-12-15 23:40:33 +01002441config BR2_PACKAGE_LIBEFREET
2442 bool "libefreet package has been removed"
2443 select BR2_LEGACY
2444 select BR2_PACKAGE_EFL
2445 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002446 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002447
Romain Naoure155c952015-12-15 23:40:32 +01002448config BR2_PACKAGE_LIBEIO
2449 bool "libeio package has been removed"
2450 select BR2_LEGACY
2451 select BR2_PACKAGE_EFL
2452 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002453 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002454
Romain Naourb728fb72015-12-15 23:40:31 +01002455config BR2_PACKAGE_LIBEMBRYO
2456 bool "libembryo package has been removed"
2457 select BR2_LEGACY
2458 select BR2_PACKAGE_EFL
2459 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002460 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002461
Romain Naour4c93c102015-12-15 23:40:30 +01002462config BR2_PACKAGE_LIBEDJE
2463 bool "libedje package has been removed"
2464 select BR2_LEGACY
2465 select BR2_PACKAGE_EFL
2466 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002467 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002468
Romain Naour905dba12015-12-15 23:40:29 +01002469config BR2_PACKAGE_LIBETHUMB
2470 bool "libethumb package has been removed"
2471 select BR2_LEGACY
2472 select BR2_PACKAGE_EFL
2473 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002474 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002475
Luca Ceresolif0c94702015-11-27 18:38:00 +01002476config BR2_PACKAGE_INFOZIP
2477 bool "infozip option has been renamed to zip"
2478 select BR2_LEGACY
2479 select BR2_PACKAGE_ZIP
2480 help
2481 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002482 to avoid ambiguities with Info-Zip's UnZip which has been
2483 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002484
Martin Barka2d16602015-12-23 12:16:04 +00002485config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002486 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002487 select BR2_LEGACY
2488 select BR2_PACKAGE_NODEJS
2489 help
Martin Bark75b70492016-01-30 14:51:00 +00002490 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002491 automatically chosen for ARMv5 architectures only and the
2492 latest nodejs for all other supported architectures. The
2493 correct nodejs version has been automatically selected in your
2494 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002495
Martin Barka314b872015-12-23 12:16:03 +00002496config BR2_BR2_PACKAGE_NODEJS_0_12_X
2497 bool "nodejs version 0.12.x has been removed"
2498 select BR2_LEGACY
2499 select BR2_PACKAGE_NODEJS
2500 help
2501 nodejs version 0.12.x has been removed. As an alternative,
2502 the latest nodejs version has been automatically selected in
2503 your configuration.
2504
Martin Bark90bf67c2015-12-23 12:16:02 +00002505config BR2_BR2_PACKAGE_NODEJS_4_X
2506 bool "nodejs version 4.x has been removed"
2507 select BR2_LEGACY
2508 select BR2_PACKAGE_NODEJS
2509 help
2510 nodejs version 4.x has been removed. As an alternative,
2511 the latest nodejs version has been automatically selected in
2512 your configuration.
2513
Luca Ceresolif0c94702015-11-27 18:38:00 +01002514###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002515comment "Legacy options removed in 2015.11"
2516
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002517config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2518 bool "gst1-plugins-bad real plugin has been removed"
2519 select BR2_LEGACY
2520 help
2521 The real plugin from GStreamer 1 bad plugins has been
2522 removed.
2523
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002524config BR2_PACKAGE_MEDIA_CTL
2525 bool "media-ctl package has been removed"
2526 select BR2_LEGACY
2527 select BR2_PACKAGE_LIBV4L
2528 select BR2_PACKAGE_LIBV4L_UTILS
2529 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002530 media-ctl source and developement have been moved to v4l-utils
2531 since June 2014. For an up-to-date media-ctl version select
2532 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002533
Romain Naourf8031332015-10-03 18:35:05 +02002534config BR2_PACKAGE_SCHIFRA
2535 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002536 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002537 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002538 Schifra package has been maked broken since 2014.11 release
2539 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002540
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002541config BR2_PACKAGE_ZXING
2542 bool "zxing option has been renamed"
2543 select BR2_LEGACY
2544 select BR2_PACKAGE_ZXING_CPP
2545 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002546 ZXing no longer provides the cpp bindings, it has been renamed
2547 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002548
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002549# Since FreeRDP has new dependencies, protect this legacy to avoid the
2550# infamous "unmet direct dependencies" kconfig error.
2551config BR2_PACKAGE_FREERDP_CLIENT
2552 bool "freerdp client option renamed"
2553 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002554 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002555 select BR2_PACKAGE_FREERDP_CLIENT_X11
2556
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002557config BR2_PACKAGE_BLACKBOX
2558 bool "blackbox package has been removed"
2559 select BR2_LEGACY
2560 help
2561 Upstream is dead and the package has been deprecated for
2562 some time. There are other alternative maintained WMs.
2563
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002564config BR2_KERNEL_HEADERS_3_0
2565 bool "kernel headers version 3.0.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002566 select BR2_LEGACY
2567 help
2568 Version 3.0.x of the Linux kernel headers have been deprecated
2569 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002570
2571config BR2_KERNEL_HEADERS_3_11
2572 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002573 select BR2_LEGACY
2574 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002575 Version 3.11.x of the Linux kernel headers have been
2576 deprecated for more than four buildroot releases and are now
2577 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002578
2579config BR2_KERNEL_HEADERS_3_13
2580 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002581 select BR2_LEGACY
2582 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002583 Version 3.13.x of the Linux kernel headers have been
2584 deprecated for more than four buildroot releases and are now
2585 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002586
2587config BR2_KERNEL_HEADERS_3_15
2588 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002589 select BR2_LEGACY
2590 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002591 Version 3.15.x of the Linux kernel headers have been
2592 deprecated for more than four buildroot releases and are now
2593 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002594
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002595config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2596 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002597 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002598 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2599 help
2600 The per-DirectFB example options have been removed. The
2601 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2602 examples.
2603
2604config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2605 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002606 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002607 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2608 help
2609 The per-DirectFB example options have been removed. The
2610 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2611 examples.
2612
2613config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2614 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002615 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002616 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2617 help
2618 The per-DirectFB example options have been removed. The
2619 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2620 examples.
2621
2622config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2623 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002624 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002625 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2626 help
2627 The per-DirectFB example options have been removed. The
2628 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2629 examples.
2630
2631config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2632 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002633 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002634 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2635 help
2636 The per-DirectFB example options have been removed. The
2637 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2638 examples.
2639
2640config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2641 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002642 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002643 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2644 help
2645 The per-DirectFB example options have been removed. The
2646 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2647 examples.
2648
2649config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2650 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002651 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002652 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2653 help
2654 The per-DirectFB example options have been removed. The
2655 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2656 examples.
2657
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002658config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2659 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002660 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002661 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2662 help
2663 The per-DirectFB example options have been removed. The
2664 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2665 examples.
2666
2667config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2668 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002669 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002670 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2671 help
2672 The per-DirectFB example options have been removed. The
2673 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2674 examples.
2675
2676config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2677 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002678 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002679 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2680 help
2681 The per-DirectFB example options have been removed. The
2682 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2683 examples.
2684
2685config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2686 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002687 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002688 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2689 help
2690 The per-DirectFB example options have been removed. The
2691 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2692 examples.
2693
2694config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2695 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002696 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002697 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2698 help
2699 The per-DirectFB example options have been removed. The
2700 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2701 examples.
2702
2703config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2704 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002705 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002706 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2707 help
2708 The per-DirectFB example options have been removed. The
2709 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2710 examples.
2711
2712config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2713 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002714 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002715 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2716 help
2717 The per-DirectFB example options have been removed. The
2718 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2719 examples.
2720
2721config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2722 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002723 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002724 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2725 help
2726 The per-DirectFB example options have been removed. The
2727 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2728 examples.
2729
2730config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2731 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002732 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002733 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2734 help
2735 The per-DirectFB example options have been removed. The
2736 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2737 examples.
2738
2739config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2740 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002741 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002742 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2743 help
2744 The per-DirectFB example options have been removed. The
2745 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2746 examples.
2747
2748config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2749 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002750 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002751 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2752 help
2753 The per-DirectFB example options have been removed. The
2754 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2755 examples.
2756
2757config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2758 bool "DirectFB example df_palette has been removed"
2759 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2760 help
2761 The per-DirectFB example options have been removed. The
2762 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2763 examples.
2764
2765config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2766 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002767 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002768 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2769 help
2770 The per-DirectFB example options have been removed. The
2771 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2772 examples.
2773
2774config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2775 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002776 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002777 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2778 help
2779 The per-DirectFB example options have been removed. The
2780 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2781 examples.
2782
2783config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2784 bool "DirectFB example df_stress has been removed"
2785 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2786 help
2787 The per-DirectFB example options have been removed. The
2788 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2789 examples.
2790
2791config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2792 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002793 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002794 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2795 help
2796 The per-DirectFB example options have been removed. The
2797 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2798 examples.
2799
2800config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2801 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002802 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002803 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2804 help
2805 The per-DirectFB example options have been removed. The
2806 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2807 examples.
2808
2809config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2810 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002811 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002812 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2813 help
2814 The per-DirectFB example options have been removed. The
2815 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2816 examples.
2817
2818config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2819 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002820 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002821 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2822 help
2823 The per-DirectFB example options have been removed. The
2824 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2825 examples.
2826
Gary Bisson2b78fb22015-09-23 15:39:27 +02002827config BR2_PACKAGE_KOBS_NG
2828 bool "kobs-ng was replaced by imx-kobs"
2829 select BR2_LEGACY
2830 select BR2_PACKAGE_IMX_KOBS
2831 help
2832 The outdated kobs-ng has been replaced by the Freescale-
2833 maintained imx-kobs package.
2834
Thomas Petazzoni11573f52015-09-02 00:01:11 +02002835config BR2_PACKAGE_SAWMAN
2836 bool "sawman package removed"
2837 select BR2_LEGACY
2838 select BR2_PACKAGE_DIRECTFB_SAWMAN
2839 help
2840 This option has been removed because the sawman package no
2841 longer exists: it was merged inside DirectFB itself. This
2842 feature can now be enabled using the
2843 BR2_PACKAGE_DIRECTFB_SAWMAN option.
2844
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002845config BR2_PACKAGE_DIVINE
2846 bool "divine package removed"
2847 select BR2_LEGACY
2848 select BR2_PACKAGE_DIRECTFB_DIVINE
2849 help
2850 This option has been removed because the divine package no
2851 longer exists: it was merged inside DirectFB itself. This
2852 feature can now be enabled using the
2853 BR2_PACKAGE_DIRECTFB_DIVINE option.
2854
2855###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002856comment "Legacy options removed in 2015.08"
2857
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002858config BR2_PACKAGE_KODI_PVR_ADDONS
2859 bool "Kodi PVR addon was split"
2860 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02002861 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02002862 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02002863 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02002864 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02002865 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02002866 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02002867 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02002868 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02002869 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02002870 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02002871 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02002872 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02002873 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02002874 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02002875 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02002876 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002877 help
2878 Kodi PVR addon was split into seperate modules
2879
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002880config BR2_BINUTILS_VERSION_2_23_2
2881 bool "binutils 2.23 option renamed"
2882 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002883 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002884 Binutils 2.23.2 has been removed, using a newer version is
2885 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002886
2887config BR2_BINUTILS_VERSION_2_24
2888 bool "binutils 2.24 option renamed"
2889 select BR2_LEGACY
2890 select BR2_BINUTILS_VERSION_2_24_X
2891 help
2892 The binutils version option has been renamed to match the
2893 same patchlevel logic used by gcc. The new option is now
2894 BR2_BINUTILS_VERSION_2_24_X.
2895
2896config BR2_BINUTILS_VERSION_2_25
2897 bool "binutils 2.25 option renamed"
2898 select BR2_LEGACY
2899 select BR2_BINUTILS_VERSION_2_25_X
2900 help
2901 The binutils version option has been renamed to match the
2902 same patchlevel logic used by gcc. The new option is now
2903 BR2_BINUTILS_VERSION_2_25_X.
2904
Romain Naour1326e762015-07-14 19:35:14 +02002905config BR2_PACKAGE_PERF
2906 bool "perf option has been renamed"
2907 select BR2_LEGACY
2908 select BR2_LINUX_KERNEL_TOOL_PERF
2909 help
2910 The perf package has been moved as a Linux tools package,
2911 and the option to enable it is now
2912 BR2_LINUX_KERNEL_TOOL_PERF.
2913
Thomas Petazzoni2f845952015-07-11 14:52:53 +02002914config BR2_BINUTILS_VERSION_2_22
2915 bool "binutils 2.22 removed"
2916 select BR2_LEGACY
2917 help
2918 Binutils 2.22 has been removed, using a newer version is
2919 recommended.
2920
Gary Bisson4c0613e2015-05-26 10:19:37 +02002921config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
2922 bool "gpu-viv-bin-mx6q"
2923 select BR2_LEGACY
2924 select BR2_PACKAGE_IMX_GPU_VIV
2925 help
2926 Vivante graphics libraries have been renamed to
2927 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
2928 name.
2929
Matt Weber7742abe2015-06-02 08:28:35 -05002930config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05002931 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03002932 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02002933 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05002934 help
2935 This option has been removed, since the libsemanage Python
2936 bindings on the target were not useful.
2937
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002938config BR2_TARGET_UBOOT_NETWORK
2939 bool "U-Boot custom network settings removed"
2940 select BR2_LEGACY
2941 help
2942 U-Boot's custom network settings options have been removed.
2943
2944###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002945comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002946
Michał Leśniewskie3904a82015-05-19 20:26:30 +02002947config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
2948 bool "jffs2 16kB erasesize NAND flash option renamed"
2949 select BR2_LEGACY
2950 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
2951 help
2952 The JFFS2 NAND flash options now longer include the page
2953 size.
2954
2955config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
2956 bool "jffs2 128kB erasesize NAND flash option renamed"
2957 select BR2_LEGACY
2958 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2959 help
2960 The JFFS2 NAND flash options now longer include the page
2961 size.
2962
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02002963config BR2_PACKAGE_MONO_20
2964 bool "2.0/3.5 .Net Runtime"
2965 select BR2_LEGACY
2966 help
2967 This option no longer exists, all versions of the .Net
2968 runtime are now installed.
2969
2970config BR2_PACKAGE_MONO_40
2971 bool "4.0 .Net Runtime"
2972 select BR2_LEGACY
2973 help
2974 This option no longer exists, all versions of the .Net
2975 runtime are now installed.
2976
2977config BR2_PACKAGE_MONO_45
2978 bool "4.5 .Net Runtime"
2979 select BR2_LEGACY
2980 help
2981 This option no longer exists, all versions of the .Net
2982 runtime are now installed.
2983
Peter Korsgaardefd49e32015-04-27 22:29:05 +02002984config BR2_CIVETWEB_WITH_LUA
2985 bool "civetweb lua option renamed"
2986 select BR2_LEGACY
2987 select BR2_PACKAGE_CIVETWEB_WITH_LUA
2988 help
2989 civetweb's lua option has been renamed to
2990 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
2991 packages name options.
2992
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02002993config BR2_PACKAGE_TIFF_TIFF2PDF
2994 bool "tiff utility-specific option removed"
2995 select BR2_LEGACY
2996 select BR2_PACKAGE_TIFF_UTILITIES
2997 help
2998 utility-specific options have been removed in favour of
2999 the new option BR2_PACKAGE_TIFF_UTILITIES.
3000
3001config BR2_PACKAGE_TIFF_TIFFCP
3002 bool "tiff utility-specific option removed"
3003 select BR2_LEGACY
3004 select BR2_PACKAGE_TIFF_UTILITIES
3005 help
3006 utility-specific options have been removed in favour of
3007 the new option BR2_PACKAGE_TIFF_UTILITIES.
3008
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003009config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
3010 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003011 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003012 help
3013 This option has never worked, so it has been removed.
3014
Yann E. MORIN02917962015-03-24 19:54:15 +01003015config BR2_TARGET_GENERIC_PASSWD_DES
3016 bool "Encoding passwords with DES has been removed"
3017 select BR2_LEGACY
3018 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003019 Paswords can now only be encoded with either of md5, sha256 or
3020 sha512. The default is md5, which is stronger that DES (but
3021 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01003022
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03003023config BR2_PACKAGE_GTK2_THEME_HICOLOR
3024 bool "hicolor (default theme) is a duplicate"
3025 select BR2_LEGACY
3026 select BR2_PACKAGE_HICOLOR_ICON_THEME
3027 help
3028 The option was just a duplicate of hicolor icon theme.
3029
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003030config BR2_PACKAGE_VALGRIND_PTRCHECK
3031 bool "valgrind's PTRCheck was renamed to SGCheck"
3032 select BR2_LEGACY
3033 select BR2_PACKAGE_VALGRIND_SGCHECK
3034 help
3035 PTRCheck was renamed to SGCheck in valgrind
3036
3037###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003038comment "Legacy options removed in 2015.02"
3039
Pedro Aguilar10900c02015-02-27 06:38:07 +02003040config BR2_PACKAGE_LIBGC
3041 bool "libgc package removed"
3042 select BR2_LEGACY
3043 select BR2_PACKAGE_BDWGC
3044 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003045 libgc has been removed because we have the same package under
3046 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02003047
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003048config BR2_PACKAGE_WDCTL
3049 bool "util-linux' wdctl option has been renamed"
3050 select BR2_LEGACY
3051 select BR2_PACKAGE_UTIL_LINUX_WDCTL
3052 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003053 util-linux' wdctl option has been renamed to
3054 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
3055 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003056
Danomi Manchegoe44edb82015-07-13 22:57:06 -04003057config BR2_PACKAGE_UTIL_LINUX_ARCH
3058 bool "util-linux' arch option has been removed"
3059 select BR2_LEGACY
3060 help
3061 util-linux' arch was dropped in util-linux 2.23, in favor of
3062 the coreutils version.
3063
3064config BR2_PACKAGE_UTIL_LINUX_DDATE
3065 bool "util-linux' ddate option has been removed"
3066 select BR2_LEGACY
3067 help
3068 util-linux' ddate was dropped in util-linux 2.23.
3069
Romain Naour3c476542015-01-18 20:53:08 +01003070config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
3071 bool "rpm's bzip2 payloads option has been removed"
3072 select BR2_LEGACY
3073 select BR2_PACKAGE_BZIP2
3074 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003075 The bzip2 payloads option rely entirely on the dependant
3076 package bzip2. So, you need to select it to enable this
3077 feature.
Romain Naour3c476542015-01-18 20:53:08 +01003078
3079config BR2_PACKAGE_RPM_XZ_PAYLOADS
3080 bool "rpm's xz payloads option has been removed"
3081 select BR2_LEGACY
3082 select BR2_PACKAGE_XZ
3083 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003084 The xz payloads option rely entirely on the dependant package
3085 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01003086
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03003087config BR2_PACKAGE_M4
3088 bool "m4 target package removed"
3089 select BR2_LEGACY
3090 help
3091 The m4 target package has been removed, it's been
3092 deprecated for some time now.
3093
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03003094config BR2_PACKAGE_FLEX_BINARY
3095 bool "flex binary in target option removed"
3096 select BR2_LEGACY
3097 help
3098 The flex binary in the target option has been removed.
3099 It's been deprecated for some time now and is essentially a
3100 development tool which isn't very useful in the target.
3101
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03003102config BR2_PACKAGE_BISON
3103 bool "bison target package removed"
3104 select BR2_LEGACY
3105 help
3106 The bison target package has been removed, it's been
3107 deprecated for some time now and is essentially a development
3108 tool which isn't very useful in the target.
3109
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03003110config BR2_PACKAGE_GOB2
3111 bool "gob2 target package removed"
3112 select BR2_LEGACY
3113 help
3114 The gob2 target package has been removed, it's been
3115 deprecated for some time now and was essentially useless
3116 without a target toolchain.
3117
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03003118config BR2_PACKAGE_DISTCC
3119 bool "distcc target package removed"
3120 select BR2_LEGACY
3121 help
3122 The distcc target package has been removed, it's been
3123 deprecated for some time now and was essentially useless
3124 without a target toolchain.
3125
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03003126config BR2_PACKAGE_HASERL_VERSION_0_8_X
3127 bool "haserl 0.8.x version removed"
3128 select BR2_LEGACY
3129 help
3130 The 0.8.x version option for haserl has been removed since it
3131 has been deprecated for some time now.
3132 You should be able to use the 0.9.x version without issues.
3133
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003134config BR2_PACKAGE_STRONGSWAN_TOOLS
3135 bool "strongswan option has been removed"
3136 select BR2_LEGACY
3137 select BR2_PACKAGE_STRONGSWAN_PKI
3138 select BR2_PACKAGE_STRONGSWAN_SCEP
3139 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003140 The tools option has been removed upstream and the different
3141 tools have been split between the pki and scep options, with
3142 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003143
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003144config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003145 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003146 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003147 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003148 According to the github project page:
3149 https://github.com/pipelka/xbmc-addon-xvdr
3150 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003151
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003152config BR2_PACKAGE_XBMC_PVR_ADDONS
3153 bool "xbmc options have been renamed"
3154 select BR2_LEGACY
3155 select BR2_PACKAGE_KODI_PVR_ADDONS
3156 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003157 The XBMC media center project was renamed to Kodi
3158 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003159
Bernd Kuhls35784592014-12-23 18:46:27 +01003160config BR2_PACKAGE_XBMC
3161 bool "xbmc options have been renamed"
3162 select BR2_LEGACY
3163 select BR2_PACKAGE_KODI
3164 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003165 The XBMC media center project was renamed to Kodi
3166 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003167
3168config BR2_PACKAGE_XBMC_ALSA_LIB
3169 bool "xbmc options have been renamed"
3170 select BR2_LEGACY
3171 select BR2_PACKAGE_KODI_ALSA_LIB
3172 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003173 The XBMC media center project was renamed to Kodi
3174 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003175
3176config BR2_PACKAGE_XBMC_AVAHI
3177 bool "xbmc options have been renamed"
3178 select BR2_LEGACY
3179 select BR2_PACKAGE_KODI_AVAHI
3180 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003181 The XBMC media center project was renamed to Kodi
3182 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003183
3184config BR2_PACKAGE_XBMC_DBUS
3185 bool "xbmc options have been renamed"
3186 select BR2_LEGACY
3187 select BR2_PACKAGE_KODI_DBUS
3188 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003189 The XBMC media center project was renamed to Kodi
3190 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003191
3192config BR2_PACKAGE_XBMC_LIBBLURAY
3193 bool "xbmc options have been renamed"
3194 select BR2_LEGACY
3195 select BR2_PACKAGE_KODI_LIBBLURAY
3196 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003197 The XBMC media center project was renamed to Kodi
3198 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003199
3200config BR2_PACKAGE_XBMC_GOOM
3201 bool "xbmc options have been renamed"
3202 select BR2_LEGACY
3203 select BR2_PACKAGE_KODI_GOOM
3204 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003205 The XBMC media center project was renamed to Kodi
3206 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003207
3208config BR2_PACKAGE_XBMC_RSXS
3209 bool "xbmc options have been renamed"
3210 select BR2_LEGACY
3211 select BR2_PACKAGE_KODI_RSXS
3212 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003213 The XBMC media center project was renamed to Kodi
3214 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003215
3216config BR2_PACKAGE_XBMC_LIBCEC
3217 bool "xbmc options have been renamed"
3218 select BR2_LEGACY
3219 select BR2_PACKAGE_KODI_LIBCEC
3220 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003221 The XBMC media center project was renamed to Kodi
3222 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003223
3224config BR2_PACKAGE_XBMC_LIBMICROHTTPD
3225 bool "xbmc options have been renamed"
3226 select BR2_LEGACY
3227 select BR2_PACKAGE_KODI_LIBMICROHTTPD
3228 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003229 The XBMC media center project was renamed to Kodi
3230 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003231
3232config BR2_PACKAGE_XBMC_LIBNFS
3233 bool "xbmc options have been renamed"
3234 select BR2_LEGACY
3235 select BR2_PACKAGE_KODI_LIBNFS
3236 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003237 The XBMC media center project was renamed to Kodi
3238 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003239
3240config BR2_PACKAGE_XBMC_RTMPDUMP
3241 bool "xbmc options have been renamed"
3242 select BR2_LEGACY
3243 select BR2_PACKAGE_KODI_RTMPDUMP
3244 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003245 The XBMC media center project was renamed to Kodi
3246 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003247
3248config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
3249 bool "xbmc options have been renamed"
3250 select BR2_LEGACY
3251 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
3252 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003253 The XBMC media center project was renamed to Kodi
3254 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003255
3256config BR2_PACKAGE_XBMC_LIBSMBCLIENT
3257 bool "xbmc options have been renamed"
3258 select BR2_LEGACY
3259 select BR2_PACKAGE_KODI_LIBSMBCLIENT
3260 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003261 The XBMC media center project was renamed to Kodi
3262 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003263
3264config BR2_PACKAGE_XBMC_LIBTHEORA
3265 bool "xbmc options have been renamed"
3266 select BR2_LEGACY
3267 select BR2_PACKAGE_KODI_LIBTHEORA
3268 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003269 The XBMC media center project was renamed to Kodi
3270 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003271
3272config BR2_PACKAGE_XBMC_LIBUSB
3273 bool "xbmc options have been renamed"
3274 select BR2_LEGACY
3275 select BR2_PACKAGE_KODI_LIBUSB
3276 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003277 The XBMC media center project was renamed to Kodi
3278 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003279
3280config BR2_PACKAGE_XBMC_LIBVA
3281 bool "xbmc options have been renamed"
3282 select BR2_LEGACY
3283 select BR2_PACKAGE_KODI_LIBVA
3284 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003285 The XBMC media center project was renamed to Kodi
3286 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003287
3288config BR2_PACKAGE_XBMC_WAVPACK
3289 bool "xbmc options have been renamed"
3290 select BR2_LEGACY
3291 select BR2_PACKAGE_KODI_WAVPACK
3292 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003293 The XBMC media center project was renamed to Kodi
3294 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003295
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003296config BR2_PREFER_STATIC_LIB
3297 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003298 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003299 help
3300 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3301 highlights the fact that the option no longer "prefers"
3302 static libraries, but "enforces" static libraries (i.e
3303 shared libraries are completely unused).
3304
Samuel Martina44b1c12014-12-14 17:24:24 +01003305 Take care of updating the type of libraries you want under the
3306 "Build options" menu.
3307
Bernd Kuhls35784592014-12-23 18:46:27 +01003308###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003309comment "Legacy options removed in 2014.11"
3310
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003311config BR2_x86_generic
3312 bool "x86 generic variant has been removed"
3313 select BR2_LEGACY
3314 help
3315 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003316 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003317
Andreas Larsson40e18f22014-10-30 09:29:36 +01003318config BR2_GCC_VERSION_4_4_X
3319 bool "gcc 4.4.x has been removed"
3320 select BR2_LEGACY
3321 help
3322 The 4.4.x version of gcc has been removed. Use a newer
3323 version instead.
3324
Andreas Larsson43b78e72014-10-30 09:29:35 +01003325config BR2_sparc_sparchfleon
3326 bool "sparchfleon CPU has been removed"
3327 select BR2_LEGACY
3328 help
3329 The sparchfleon CPU was only supported in a patched gcc 4.4
3330 version. Its support has been removed in favor of the leon3
3331 CPU starting from gcc 4.8.x.
3332
3333config BR2_sparc_sparchfleonv8
3334 bool "sparchfleonv8 CPU has been removed"
3335 select BR2_LEGACY
3336 help
3337 The sparchfleonv8 CPU was only supported in a patched gcc
3338 4.4 version. Its support has been removed in favor of the
3339 leon3 CPU starting from gcc 4.8.x.
3340
3341config BR2_sparc_sparcsfleon
3342 bool "sparcsfleon CPU has been removed"
3343 select BR2_LEGACY
3344 help
3345 The sparcsfleon CPU was only supported in a patched gcc 4.4
3346 version. Its support has been removed in favor of the leon3
3347 CPU starting from gcc 4.8.x.
3348
3349config BR2_sparc_sparcsfleonv8
3350 bool "sparcsfleonv8 CPU has been removed"
3351 select BR2_LEGACY
3352 help
3353 The sparcsfleonv8 CPU was only supported in a patched gcc
3354 4.4 version. Its support has been removed in favor of the
3355 leon3 CPU starting from gcc 4.8.x.
3356
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003357config BR2_PACKAGE_XLIB_LIBPCIACCESS
3358 bool "xlib-libpciaccess option has been renamed"
3359 depends on BR2_PACKAGE_XORG7
3360 select BR2_LEGACY
3361 select BR2_PACKAGE_LIBPCIACCESS
3362 help
3363 libpciaccess neither depends on X11 nor Xlib. Thus the
3364 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3365
Yann E. MORINb581bba2014-09-21 20:38:13 +02003366config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3367 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003368 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003369 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3370 help
3371 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003372 Xceive (the xc4000 series), as well as new firmwares (the
3373 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003374
Yann E. MORINdac546e2014-09-21 20:38:12 +02003375config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3376 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003377 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003378 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3379 help
3380 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3381 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3382 to better account for the fact that a T5 variant exists.
3383
Yann E. MORIN120136e2014-09-21 20:38:09 +02003384config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3385 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003386 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003387 help
3388 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3389 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3390 select it in:
3391 Target packages -> Hardware handling ->
3392 Firmware -> linux-firmware -> WiFi firmware ->
3393 iwlwifi 3160/726x revision to use (revision 7)
3394
3395config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3396 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003397 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003398 help
3399 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3400 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3401 select it in:
3402 Target packages -> Hardware handling ->
3403 Firmware -> linux-firmware -> WiFi firmware ->
3404 iwlwifi 3160/726x revision to use (revision 8)
3405
3406###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003407comment "Legacy options removed in 2014.08"
3408
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003409config BR2_PACKAGE_LIBELF
3410 bool "libelf has been removed"
3411 select BR2_PACKAGE_ELFUTILS
3412 select BR2_LEGACY
3413 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003414 The libelf package provided an old version of the libelf
3415 library and is deprecated. The libelf library is now provided
3416 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003417
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003418config BR2_KERNEL_HEADERS_3_8
3419 bool "kernel headers version 3.8.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003420 select BR2_LEGACY
3421 help
3422 Version 3.8.x of the Linux kernel headers have been deprecated
3423 for more than four buildroot releases and are now removed.
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003424
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003425config BR2_PACKAGE_GETTEXT_TOOLS
3426 bool "support for gettext-tools on target has been removed"
3427 select BR2_LEGACY
3428 help
3429 The option to install the gettext utilities on the target
3430 has been removed. This is not necessary as Buildroot is not
3431 designed to provide a full development environment on the
3432 target. gettext tools should be used on the build machine
3433 instead.
3434
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003435config BR2_PACKAGE_PROCPS
3436 bool "procps has been replaced by procps-ng"
3437 select BR2_PACKAGE_PROCPS_NG
3438 select BR2_LEGACY
3439 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003440 The procps package has been replaced by the equivalent
3441 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003442
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003443config BR2_BINUTILS_VERSION_2_20_1
3444 bool "binutils 2.20.1 has been removed"
3445 select BR2_LEGACY
3446 help
3447 The 2.20.1 version of binutils has been removed. Use a newer
3448 version instead.
3449
3450config BR2_BINUTILS_VERSION_2_21
3451 bool "binutils 2.21 has been removed"
3452 select BR2_LEGACY
3453 help
3454 The 2.21 version of binutils has been removed. Use a newer
3455 version instead.
3456
3457config BR2_BINUTILS_VERSION_2_23_1
3458 bool "binutils 2.23.1 has been removed"
3459 select BR2_LEGACY
3460 help
3461 The 2.23.1 version of binutils has been removed. Use a newer
3462 version instead.
3463
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003464config BR2_UCLIBC_VERSION_0_9_32
3465 bool "uclibc 0.9.32 has been removed"
3466 select BR2_LEGACY
3467 help
3468 The 0.9.32 version of uClibc has been removed. Use a newer
3469 version instead.
3470
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003471config BR2_GCC_VERSION_4_3_X
3472 bool "gcc 4.3.x has been removed"
3473 select BR2_LEGACY
3474 help
3475 The 4.3.x version of gcc has been removed. Use a newer
3476 version instead.
3477
3478config BR2_GCC_VERSION_4_6_X
3479 bool "gcc 4.6.x has been removed"
3480 select BR2_LEGACY
3481 help
3482 The 4.6.x version of gcc has been removed. Use a newer
3483 version instead.
3484
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003485config BR2_GDB_VERSION_7_4
3486 bool "gdb 7.4 has been removed"
3487 select BR2_LEGACY
3488 help
3489 The 7.4 version of gdb has been removed. Use a newer version
3490 instead.
3491
3492config BR2_GDB_VERSION_7_5
3493 bool "gdb 7.5 has been removed"
3494 select BR2_LEGACY
3495 help
3496 The 7.5 version of gdb has been removed. Use a newer version
3497 instead.
3498
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003499config BR2_BUSYBOX_VERSION_1_19_X
3500 bool "busybox version selection has been removed"
3501 select BR2_LEGACY
3502 help
3503 The possibility of selecting the Busybox version has been
3504 removed. Use the latest version provided by the Busybox
3505 package instead.
3506
3507config BR2_BUSYBOX_VERSION_1_20_X
3508 bool "busybox version selection has been removed"
3509 select BR2_LEGACY
3510 help
3511 The possibility of selecting the Busybox version has been
3512 removed. Use the latest version provided by the Busybox
3513 package instead.
3514
3515config BR2_BUSYBOX_VERSION_1_21_X
3516 bool "busybox version selection has been removed"
3517 select BR2_LEGACY
3518 help
3519 The possibility of selecting the Busybox version has been
3520 removed. Use the latest version provided by the Busybox
3521 package instead.
3522
Ezequiel García07ac0452014-07-05 18:07:40 -03003523config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3524 bool "decode_tm6000"
3525 select BR2_PACKAGE_LIBV4L_UTILS
3526 select BR2_LEGACY
3527 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003528 This libv4l option has been deprecated and replaced by a
3529 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003530
3531config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3532 bool "ir-keytable"
3533 select BR2_PACKAGE_LIBV4L_UTILS
3534 select BR2_LEGACY
3535 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003536 This libv4l option has been deprecated and replaced by a
3537 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003538
3539config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3540 bool "v4l2-compliance"
3541 select BR2_PACKAGE_LIBV4L_UTILS
3542 select BR2_LEGACY
3543 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003544 This libv4l option has been deprecated and replaced by a
3545 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003546
3547config BR2_PACKAGE_LIBV4L_V4L2_CTL
3548 bool "v4l2-ctl"
3549 select BR2_PACKAGE_LIBV4L_UTILS
3550 select BR2_LEGACY
3551 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003552 This libv4l option has been deprecated and replaced by a
3553 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003554
3555config BR2_PACKAGE_LIBV4L_V4L2_DBG
3556 bool "v4l2-dbg"
3557 select BR2_PACKAGE_LIBV4L_UTILS
3558 select BR2_LEGACY
3559 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003560 This libv4l option has been deprecated and replaced by a
3561 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003562
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003563###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003564comment "Legacy options removed in 2014.05"
3565
Peter Seiderer4990a382014-04-23 00:12:23 +02003566config BR2_PACKAGE_EVTEST_CAPTURE
3567 bool "evtest-capture support removed (dropped since evtest 1.31)"
3568 select BR2_LEGACY
3569 help
3570 Support for evtest-capture has been removed (dropped from
3571 evtest package since version 1.31), use evemu package
3572 instead.
3573
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003574config BR2_KERNEL_HEADERS_3_6
3575 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003576 select BR2_LEGACY
3577 help
3578 Version 3.6.x of the Linux kernel headers have been deprecated
3579 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003580
3581config BR2_KERNEL_HEADERS_3_7
3582 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003583 select BR2_LEGACY
3584 help
3585 Version 3.7.x of the Linux kernel headers have been deprecated
3586 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003587
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003588config BR2_PACKAGE_VALA
3589 bool "vala target package has been removed"
3590 select BR2_LEGACY
3591 help
3592 The 'vala' target package has been removed since it has been
3593 deprecated for more than four buildroot releases.
3594 Note: the host vala package still exists.
3595
Yann E. MORINd6a37912014-04-07 21:58:03 +02003596config BR2_TARGET_TZ_ZONELIST
3597 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3598
3599config BR2_PACKAGE_TZDATA_ZONELIST
3600 string "tzdata: the timezone list option has been renamed"
3601 help
3602 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003603 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3604 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003605
3606config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3607 bool
3608 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3609 select BR2_LEGACY
3610
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003611config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3612 bool "Lua command-line editing none has been renamed"
3613 select BR2_LEGACY
3614 help
3615 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003616 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3617 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003618
3619config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3620 bool "Lua command-line editing using readline has been renamed"
3621 select BR2_LEGACY
3622 help
3623 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3624 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3625 it in the corresponding choice.
3626
3627config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3628 bool "Lua command-line editing using linenoise has been renamed"
3629 select BR2_LEGACY
3630 help
3631 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3632 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3633 it in the corresponding choice.
3634
Yann E. MORIN365ae612014-03-28 01:00:24 +01003635config BR2_PACKAGE_DVB_APPS_UTILS
3636 bool "dvb-apps utilities now built by default"
3637 select BR2_LEGACY
3638 help
3639 The dvb-apps utilities are now always built when the dvb-apps
3640 package is selected.
3641
Yann E. MORIN971e3312014-03-01 15:52:56 +01003642config BR2_KERNEL_HEADERS_SNAP
3643 bool "Local Linux snapshot support removed"
3644 select BR2_LEGACY
3645 help
3646 Support for using a custom snapshot to install the Linux
3647 kernel headers has been removed.
3648
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003649config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3650 bool "/dev management by udev removed"
3651 select BR2_LEGACY
3652 help
3653 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003654 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003655
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003656 Therefore, if you are not using 'systemd' as init system, you
3657 must choose 'Dynamic using eudev' in the '/dev management'
3658 menu to get the same behaviour as in your old configuration.
3659
3660 If you are using 'systemd', its internal implementation of
3661 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003662
3663 You must also check the packages depending on 'udev' are still
3664 selected.
3665
3666config BR2_PACKAGE_UDEV
3667 bool "udev is now a virtual package"
3668 select BR2_LEGACY
3669 select BR2_PACKAGE_HAS_UDEV
3670 help
3671 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003672 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003673
3674 Your old configuration refers to packages depending on 'udev',
3675 either for build or at runtime.
3676
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003677 Check that a 'udev' provider is selected. If you are not using
3678 'systemd' as init system, 'eudev' should be selected, which is
3679 the case if '/dev management' is set to 'Dynamic using eudev'.
3680
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003681 If you are using 'systemd', its internal implementation of
3682 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003683
3684config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003685 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003686 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003687 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3688 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003689 help
3690 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003691 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003692
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003693 If you are not using 'systemd' as init system, udev rules
3694 generation will be handled by 'eudev'. Check that
3695 '/dev management' is set to 'Dynamic using eudev' to get
3696 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003697
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003698 If you are using 'systemd', it internal implementation of
3699 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003700
3701config BR2_PACKAGE_UDEV_ALL_EXTRAS
3702 bool "udev extras removed"
3703 select BR2_LEGACY
3704 help
3705 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003706 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003707
3708 The option to enable the extra features of 'udev' (gudev, ...)
3709 has been removed. These features are automatically enabled in
3710 the 'udev' providers if the dependencies are selected. For
3711 example, selecting 'libglib2' will trigger the build of gudev.
3712
Bernd Kuhls5562be12014-03-01 16:41:10 +01003713config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3714 bool "xlib-libpthread-stubs option has been renamed"
3715 depends on BR2_PACKAGE_XORG7
3716 select BR2_LEGACY
3717 select BR2_PACKAGE_LIBPTHREAD_STUBS
3718 help
3719 The pthread stubs neither depend on X11 nor Xlib. Thus the
3720 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3721
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003722###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003723comment "Legacy options removed in 2014.02"
3724
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003725config BR2_sh2
3726 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003727 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003728 help
3729 Due to an inexistent user base and generally poor Linux
3730 support, the support for the SH2 architecture was removed.
3731
3732config BR2_sh3
3733 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003734 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003735 help
3736 Due to an inexistent user base and generally poor Linux
3737 support, the support for the SH3 architecture was removed.
3738
3739config BR2_sh3eb
3740 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003741 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003742 help
3743 Due to an inexistent user base and generally poor Linux
3744 support, the support for the SH3eb architecture was removed.
3745
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003746config BR2_KERNEL_HEADERS_3_1
3747 bool "kernel headers version 3.1.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003748 select BR2_LEGACY
3749 help
3750 Version 3.1.x of the Linux kernel headers have been deprecated
3751 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003752
3753config BR2_KERNEL_HEADERS_3_3
3754 bool "kernel headers version 3.3.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003755 select BR2_LEGACY
3756 help
3757 Version 3.3.x of the Linux kernel headers have been deprecated
3758 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003759
3760config BR2_KERNEL_HEADERS_3_5
3761 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003762 select BR2_LEGACY
3763 help
3764 Version 3.5.x of the Linux kernel headers have been deprecated
3765 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003766
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003767config BR2_GDB_VERSION_7_2
3768 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003769 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003770 select BR2_LEGACY
3771 help
3772 Version 7.2.x of gdb has been deprecated for more than four
3773 buildroot releases and is now removed. As an alternative, gdb
3774 7.5.x has been automatically selected in your configuration.
3775
3776config BR2_GDB_VERSION_7_3
3777 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003778 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003779 select BR2_LEGACY
3780 help
3781 Version 7.3.x of gdb has been deprecated for more than four
3782 buildroot releases and is now removed. As an alternative, gdb
3783 7.5.x has been automatically selected in your configuration.
3784
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01003785config BR2_PACKAGE_CCACHE
3786 bool "ccache target package has been removed"
3787 select BR2_LEGACY
3788 help
3789 The 'ccache' target package has been removed since it has been
3790 deprecated for more than four buildroot releases.
3791 Note: using ccache for speeding up builds is still supported.
3792
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003793config BR2_HAVE_DOCUMENTATION
3794 bool "support for documentation on target has been removed"
3795 select BR2_LEGACY
3796 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003797 Support for documentation on target has been removed since it
3798 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003799
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003800config BR2_PACKAGE_AUTOMAKE
3801 bool "automake target package has been removed"
3802 select BR2_LEGACY
3803 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003804 The 'automake' target package has been removed since it has
3805 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003806 Note: the host automake still exists.
3807
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003808config BR2_PACKAGE_AUTOCONF
3809 bool "autoconf target package has been removed"
3810 select BR2_LEGACY
3811 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003812 The 'autoconf' target package has been removed since it has
3813 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003814 Note: the host autoconf still exists.
3815
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01003816config BR2_PACKAGE_XSTROKE
3817 bool "xstroke has been removed"
3818 select BR2_LEGACY
3819 help
3820 The 'xstroke' package has been removed since it has been
3821 deprecated for more than four buildroot releases.
3822
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003823config BR2_PACKAGE_LZMA
3824 bool "lzma target package has been removed"
3825 select BR2_LEGACY
3826 help
3827 The 'lzma' target package has been removed since it has been
3828 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003829 Note: generating lzma-compressed rootfs images is still
3830 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003831
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01003832config BR2_PACKAGE_TTCP
3833 bool "ttcp has been removed"
3834 select BR2_LEGACY
3835 help
3836 The 'ttcp' package has been removed since it has been
3837 deprecated for more than four buildroot releases.
3838
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003839config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003840 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003841 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003842 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003843 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003844 The 'libnfc-llcp' package has been removed since upstream
3845 renamed to 'libllcp'. We have added a new package for
3846 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003847
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00003848config BR2_PACKAGE_MYSQL_CLIENT
3849 bool "MySQL client renamed to MySQL"
3850 select BR2_LEGACY
3851 select BR2_PACKAGE_MYSQL
3852 help
3853 The option has been renamed BR2_PACKAGE_MYSQL
3854
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01003855config BR2_PACKAGE_SQUASHFS3
3856 bool "squashfs3 has been removed"
3857 select BR2_LEGACY
3858 select BR2_PACKAGE_SQUASHFS
3859 help
3860 The 'squashfs3' package has been removed since it has been
3861 deprecated for more than four buildroot releases. Package
3862 'squashfs' (4) has been selected automatically as replacement.
3863
3864config BR2_TARGET_ROOTFS_SQUASHFS3
3865 bool "squashfs3 rootfs support has been removed"
3866 select BR2_LEGACY
3867 help
3868 Together with the removal of the squashfs3 package, support
3869 for squashfs3 root filesystems has been removed too. Squashfs
3870 root filesystems will automatically use squashfs4 now.
3871
Arnaud Aujon560fe852013-12-15 20:23:12 +01003872config BR2_PACKAGE_NETKITBASE
3873 bool "netkitbase has been removed"
3874 select BR2_LEGACY
3875 help
3876 The 'netkitbase' package has been removed since it has been
3877 deprecated since 2012.11. This package provided 'inetd'
3878 which is replaced by 'xinet' and 'ping' which is replaced by
3879 'busybox' or 'fping'.
3880
3881config BR2_PACKAGE_NETKITTELNET
3882 bool "netkittelnet has been removed"
3883 select BR2_LEGACY
3884 help
3885 The 'netkittelnet' package has been removed since it has
3886 been deprecated since 2012.11. 'busybox' provides a telnet
3887 client and should be used instead.
3888
Francois Perrad63058f82014-01-11 16:42:09 +01003889config BR2_PACKAGE_LUASQL
3890 bool "luasql has been replaced by luasql-sqlite3"
3891 select BR2_PACKAGE_LUASQL_SQLITE3
3892 select BR2_LEGACY
3893 help
3894 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
3895
Francois Perrada6c53472014-01-11 16:42:08 +01003896config BR2_PACKAGE_LUACJSON
3897 bool "luacjson has been replaced by lua-cjson"
3898 select BR2_PACKAGE_LUA_CJSON
3899 select BR2_LEGACY
3900 help
3901 The option has been renamed BR2_PACKAGE_LUA_CJSON.
3902
Arnaud Aujon560fe852013-12-15 20:23:12 +01003903###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003904comment "Legacy options removed in 2013.11"
3905
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003906config BR2_PACKAGE_LVM2_DMSETUP_ONLY
3907 bool "lvm2's 'dmsetup only' option removed"
3908 select BR2_LEGACY
3909 help
3910 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
3911 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003912 suite. Therefore, the option has been replaced with the
3913 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003914
3915# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
3916# in order to automatically propagate old configs
3917
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01003918config BR2_PACKAGE_QT_JAVASCRIPTCORE
3919 bool "qt javascriptcore option removed"
3920 select BR2_LEGACY
3921 help
3922 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
3923 force the activation or disabling of the JIT compiler in the
3924 Qt Javascript interpreter. However, the JIT compiler is not
3925 available for all architectures, so forcing its activation
3926 does not always work. Moreover, Qt knows by itself for which
3927 architectures JIT support is possible, and will
3928 automatically enable it if possible.
3929
3930 Therefore, this option was in fact useless, and causing
3931 build problems when enabled on architectures for which the
3932 JIT support was not available. It has been removed, and
3933 there is no replacement: Qt will enable JIT at compile time
3934 when possible.
3935
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003936config BR2_PACKAGE_MODULE_INIT_TOOLS
3937 bool "module-init-tools replaced by kmod"
3938 select BR2_PACKAGE_KMOD
3939 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01003940 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003941 help
3942 The 'module-init-tools' package has been removed, since it
3943 has been depracated upstream and replaced by 'kmod'.
3944
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02003945config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
3946 string "u-boot: the git repository URL option has been renamed"
3947 help
3948 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
3949 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
3950
3951config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
3952 bool
3953 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
3954 select BR2_LEGACY
3955
3956# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
3957# boot/uboot/Config.in
3958
3959config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
3960 string "u-boot: the git repository version option has been renamed"
3961 help
3962 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3963 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3964
3965config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3966 bool
3967 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
3968 select BR2_LEGACY
3969
3970# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
3971# boot/uboot/Config.in
3972
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02003973config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
3974 string "linux: the git repository URL option has been renamed"
3975 help
3976 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
3977 been renamed to
3978 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
3979
3980config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
3981 bool
3982 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
3983 select BR2_LEGACY
3984
3985# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
3986# linux/Config.in
3987
3988config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
3989 string "linux: the git repository version option has been renamed"
3990 help
3991 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
3992 been renamed to
3993 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
3994
3995config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
3996 bool
3997 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
3998 select BR2_LEGACY
3999
4000# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
4001# linux/Config.in
4002
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004003###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02004004comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004005
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02004006config BR2_ARM_OABI
4007 bool "ARM OABI support has been removed"
4008 select BR2_LEGACY
4009 help
4010 The support for the ARM OABI was deprecated since a while,
4011 and has been removed completely from Buildroot. It is also
4012 deprecated in upstream gcc, since gcc 4.7. People should
4013 switch to EABI instead, which should not be a problem as
4014 long as you don't have pre-built OABI binaries in your
4015 system that you can't recompile.
4016
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004017config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
4018 bool "dosfstools dosfsck renamed to fsck.fat"
4019 select BR2_LEGACY
4020 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
4021 help
4022 dosfsck was renamed upstream to fsck.fat for consistency.
4023
4024config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
4025 bool "dosfstools dosfslabel renamed to fatlabel"
4026 select BR2_LEGACY
4027 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
4028 help
4029 doslabel was renamed upstream to fatlabel for consistency.
4030
4031config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
4032 bool "dosfstools mkdosfs renamed to mkfs.fat"
4033 select BR2_LEGACY
4034 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
4035 help
4036 mkdosfs was renamed upstream to mkfs.fat for consistency.
4037
Thomas Petazzonie21db002013-06-30 21:28:57 +02004038config BR2_ELF2FLT
4039 bool "the elf2flt option has been renamed"
4040 select BR2_LEGACY
4041 help
4042 The BR2_ELF2FLT option has been renamed to
4043 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
4044 the package infrastructure.
4045
Thomas Petazzonid8060052013-07-16 10:03:17 +02004046config BR2_VFP_FLOAT
4047 bool "the ARM VFP floating point option has been renamed"
4048 select BR2_LEGACY
4049 help
4050 Due to a major refactoring of the floating-point handling of
4051 the ARM architecture support, the BR2_VFP_FLOAT option has
4052 been replaced with a choice of options that allows to select
4053 between various VFP versions/capabilities.
4054
Samuel Martinba8f82b2013-08-30 06:08:59 +02004055config BR2_PACKAGE_GCC_TARGET
4056 bool "gcc on the target filesystem has been removed"
4057 select BR2_LEGACY
4058 help
4059 The support for gcc in the target filesystem was deprecated
4060 since a while, and has been removed completely from Buildroot.
4061 See Buildroot's documentation for more explanations.
4062
4063config BR2_HAVE_DEVFILES
4064 bool "development files in target filesystem has been removed"
4065 select BR2_LEGACY
4066 help
4067 The installation of the development files in the target
4068 filesystem was deprecated since a while, and has been removed
4069 completely from Buildroot.
4070 See Buildroot's documentation for more explanations.
4071
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00004072endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02004073
4074endif # !SKIP_LEGACY