blob: 8cab6a23afb3c74fb659e6731c4921f83608d76d [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###############################################################################
Matt Weberbf362602018-12-05 20:06:29 -0600146
Francois Perrad297613f2018-12-02 11:25:06 +0100147comment "Legacy options removed in 2019.02"
148
149config BR2_PACKAGE_LUA_5_2
150 bool "Lua 5.2.x version removed"
151 select BR2_LEGACY
152 select BR2_PACKAGE_LUA_5_3
153 help
154 The Lua 5.2.x version was removed.
155
Matt Weberbf362602018-12-05 20:06:29 -0600156config BR2_TARGET_GENERIC_PASSWD_MD5
157 bool "target passwd md5 format support has been removed"
158 select BR2_LEGACY
159 help
160 The default has been moved to SHA256 and all C libraries
161 now support that method by default
162
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200163comment "Legacy options removed in 2018.11"
164
Matt Weber070b1832018-09-20 16:54:24 -0500165config BR2_TARGET_XLOADER
166 bool "xloader has been removed"
167 select BR2_LEGACY
168 help
169 The package has been removed as u-boot SPL provides
170 similar functionality
171
Matt Weber5e8790d2018-10-15 11:46:44 -0500172config BR2_PACKAGE_TIDSP_BINARIES
173 bool "tidsp-binaries package removed"
174 select BR2_LEGACY
175 help
176 The tidsp-binaries package was removed.
177
Matt Webere8eb7f52018-10-15 11:46:43 -0500178config BR2_PACKAGE_DSP_TOOLS
179 bool "dsp-tools package removed"
180 select BR2_LEGACY
181 help
182 The dsp-tools package was removed.
183
Matt Weber91542902018-10-15 11:46:42 -0500184config BR2_PACKAGE_GST_DSP
185 bool "gst-dsp package removed"
186 select BR2_LEGACY
187 help
188 The gst-dsp package was removed.
189
Fabrice Fontaine2c3c7c42018-09-30 16:02:06 +0200190config BR2_PACKAGE_BOOTUTILS
191 bool "bootutils package removed"
192 select BR2_LEGACY
193 help
194 The bootutils package was removed.
195
Romain Naouraddcc392018-09-30 14:55:46 +0200196config BR2_PACKAGE_EXPEDITE
197 bool "expedite package has been removed"
198 select BR2_LEGACY
199 help
200 expedite is not actively maintained anymore.
201 https://sourceforge.net/p/enlightenment/mailman/message/36428571
202
Bernd Kuhls3d3235f2018-09-10 18:30:00 +0200203config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
204 bool "mesa3d opengl texture float option removed"
205 select BR2_LEGACY
206 help
207 mesa3d now unconditionally enables floating-point textures,
208 as the corresponding patent has expired.
209
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200210config BR2_KERNEL_HEADERS_4_10
211 bool "kernel headers version 4.10.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200212 select BR2_LEGACY
213 help
214 Version 4.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200215 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200216
217config BR2_KERNEL_HEADERS_4_11
218 bool "kernel headers version 4.11.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200219 select BR2_LEGACY
220 help
221 Version 4.11.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200222 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200223
224config BR2_KERNEL_HEADERS_4_12
225 bool "kernel headers version 4.12.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200226 select BR2_LEGACY
227 help
228 Version 4.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200229 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200230
231config BR2_KERNEL_HEADERS_4_13
232 bool "kernel headers version 4.13.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200233 select BR2_LEGACY
234 help
235 Version 4.13.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200236 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200237
238config BR2_KERNEL_HEADERS_4_15
239 bool "kernel headers version 4.15.x are no longer supported"
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200240 select BR2_LEGACY
241 help
242 Version 4.15.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +0200243 maintained upstream and are now removed.
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200244
Yann E. MORINd220ce62018-10-04 22:00:30 +0200245config BR2_KERNEL_HEADERS_4_17
246 bool "kernel headers version 4.17.x are no longer supported"
247 select BR2_LEGACY
248 help
249 Version 4.17.x of the Linux kernel headers are no longer
250 maintained upstream and are now removed.
251
Baruch Siach00d63a12018-11-16 08:40:43 +0200252config BR2_PACKAGE_LIBNFTNL_XML
253 bool "libnftl no longer supports XML output"
254 select BR2_LEGACY
255 help
256 libnftnl removed integration with libmxml.
257
Bernd Kuhlsa2d44ec2018-08-24 20:41:33 +0200258###############################################################################
Romain Naour54a2e7a2018-06-24 15:53:09 +0200259comment "Legacy options removed in 2018.08"
260
Christian Stewartde336582018-11-27 00:56:55 -0800261config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
262 bool "docker-engine static client option renamed"
263 select BR2_LEGACY
264 select BR2_PACKAGE_DOCKER_CLI_STATIC
265 help
266 BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
267 BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
268 docker-engine and docker-cli.
269
Bernd Kuhlsf9063022018-07-21 16:16:48 +0200270config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
271 bool "Modular X.org server was updated to version 1.20.0"
272 select BR2_LEGACY
273 select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
274 help
275 Modular X.org server was updated to version 1.20.0
276
Bernd Kuhls14c52532018-07-21 16:16:44 +0200277config BR2_PACKAGE_XPROTO_APPLEWMPROTO
278 bool "xproto-applewmproto package replaced by xorgproto"
279 select BR2_LEGACY
280 select BR2_PACKAGE_XORGPROTO
281 help
282 The xproto-applewmproto package has been replaced by the
283 xorgproto package, which combines all xproto_* packages.
284
285config BR2_PACKAGE_XPROTO_BIGREQSPROTO
286 bool "xproto-bigreqsproto package replaced by xorgproto"
287 select BR2_LEGACY
288 select BR2_PACKAGE_XORGPROTO
289 help
290 The xproto-bigreqsproto package has been replaced by the
291 xorgproto package, which combines all xproto_* packages.
292
293config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
294 bool "xproto-compositeproto package replaced by xorgproto"
295 select BR2_LEGACY
296 select BR2_PACKAGE_XORGPROTO
297 help
298 The xproto-compositeproto package has been replaced by the
299 xorgproto package, which combines all xproto_* packages.
300
301config BR2_PACKAGE_XPROTO_DAMAGEPROTO
302 bool "xproto-dameproto package replaced by xorgproto"
303 select BR2_LEGACY
304 select BR2_PACKAGE_XORGPROTO
305 help
306 The xproto-dameproto package has been replaced by the
307 xorgproto package, which combines all xproto_* packages.
308
309config BR2_PACKAGE_XPROTO_DMXPROTO
310 bool "xproto-dmxproto package replaced by xorgproto"
311 select BR2_LEGACY
312 select BR2_PACKAGE_XORGPROTO
313 help
314 The xproto-dmxproto package has been replaced by the
315 xorgproto package, which combines all xproto_* packages.
316
317config BR2_PACKAGE_XPROTO_DRI2PROTO
318 bool "xproto-dri2proto package replaced by xorgproto"
319 select BR2_LEGACY
320 select BR2_PACKAGE_XORGPROTO
321 help
322 The xproto-dri2proto package has been replaced by the
323 xorgproto package, which combines all xproto_* packages.
324
325config BR2_PACKAGE_XPROTO_DRI3PROTO
326 bool "xproto-dri3proto package replaced by xorgproto"
327 select BR2_LEGACY
328 select BR2_PACKAGE_XORGPROTO
329 help
330 The xproto-dri3proto package has been replaced by the
331 xorgproto package, which combines all xproto_* packages.
332
333config BR2_PACKAGE_XPROTO_FIXESPROTO
334 bool "xproto-fixesproto package replaced by xorgproto"
335 select BR2_LEGACY
336 select BR2_PACKAGE_XORGPROTO
337 help
338 The xproto-fixesproto package has been replaced by the
339 xorgproto package, which combines all xproto_* packages.
340
341config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
342 bool "xproto-fontcacheproto package replaced by xorgproto"
343 select BR2_LEGACY
344 select BR2_PACKAGE_XORGPROTO
345 help
346 The xproto-fontcacheproto package has been replaced by the
347 xorgproto package, which combines all xproto_* packages.
348
349config BR2_PACKAGE_XPROTO_FONTSPROTO
350 bool "xproto-fontsproto package replaced by xorgproto"
351 select BR2_LEGACY
352 select BR2_PACKAGE_XORGPROTO
353 help
354 The xproto-fontsproto package has been replaced by the
355 xorgproto package, which combines all xproto_* packages.
356
357config BR2_PACKAGE_XPROTO_GLPROTO
358 bool "xproto-glproto package replaced by xorgproto"
359 select BR2_LEGACY
360 select BR2_PACKAGE_XORGPROTO
361 help
362 The xproto-glproto package has been replaced by the
363 xorgproto package, which combines all xproto_* packages.
364
365config BR2_PACKAGE_XPROTO_INPUTPROTO
366 bool "xproto-inputproto package replaced by xorgproto"
367 select BR2_LEGACY
368 select BR2_PACKAGE_XORGPROTO
369 help
370 The xproto-inputproto package has been replaced by the
371 xorgproto package, which combines all xproto_* packages.
372
373config BR2_PACKAGE_XPROTO_KBPROTO
374 bool "xproto-kbproto package replaced by xorgproto"
375 select BR2_LEGACY
376 select BR2_PACKAGE_XORGPROTO
377 help
378 The xproto-kbproto package has been replaced by the
379 xorgproto package, which combines all xproto_* packages.
380
381config BR2_PACKAGE_XPROTO_PRESENTPROTO
382 bool "xproto-presentproto package replaced by xorgproto"
383 select BR2_LEGACY
384 select BR2_PACKAGE_XORGPROTO
385 help
386 The xproto-presentproto package has been replaced by the
387 xorgproto package, which combines all xproto_* packages.
388
389config BR2_PACKAGE_XPROTO_RANDRPROTO
390 bool "xproto-randrproto package replaced by xorgproto"
391 select BR2_LEGACY
392 select BR2_PACKAGE_XORGPROTO
393 help
394 The xproto-randrproto package has been replaced by the
395 xorgproto package, which combines all xproto_* packages.
396
397config BR2_PACKAGE_XPROTO_RECORDPROTO
398 bool "xproto-recordproto package replaced by xorgproto"
399 select BR2_LEGACY
400 select BR2_PACKAGE_XORGPROTO
401 help
402 The xproto-recordproto package has been replaced by the
403 xorgproto package, which combines all xproto_* packages.
404
405config BR2_PACKAGE_XPROTO_RENDERPROTO
406 bool "xproto-renderproto package replaced by xorgproto"
407 select BR2_LEGACY
408 select BR2_PACKAGE_XORGPROTO
409 help
410 The xproto-renderproto package has been replaced by the
411 xorgproto package, which combines all xproto_* packages.
412
413config BR2_PACKAGE_XPROTO_RESOURCEPROTO
414 bool "xproto-resourceproto package replaced by xorgproto"
415 select BR2_LEGACY
416 select BR2_PACKAGE_XORGPROTO
417 help
418 The xproto-resourceproto package has been replaced by the
419 xorgproto package, which combines all xproto_* packages.
420
421config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
422 bool "xproto-scrnsaverprot package replaced by xorgproto"
423 select BR2_LEGACY
424 select BR2_PACKAGE_XORGPROTO
425 help
426 The xproto-scrnsaverprot package has been replaced by the
427 xorgproto package, which combines all xproto_* packages.
428
429config BR2_PACKAGE_XPROTO_VIDEOPROTO
430 bool "xproto-videoproto package replaced by xorgproto"
431 select BR2_LEGACY
432 select BR2_PACKAGE_XORGPROTO
433 help
434 The xproto-videoproto package has been replaced by the
435 xorgproto package, which combines all xproto_* packages.
436
437config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
438 bool "xproto-windowswmproto package replaced by xorgproto"
439 select BR2_LEGACY
440 select BR2_PACKAGE_XORGPROTO
441 help
442 The xproto-windowswmproto package has been replaced by the
443 xorgproto package, which combines all xproto_* packages.
444
445config BR2_PACKAGE_XPROTO_XCMISCPROTO
446 bool "xproto-xcmiscproto package replaced by xorgproto"
447 select BR2_LEGACY
448 select BR2_PACKAGE_XORGPROTO
449 help
450 The xproto-xcmiscproto package has been replaced by the
451 xorgproto package, which combines all xproto_* packages.
452
453config BR2_PACKAGE_XPROTO_XEXTPROTO
454 bool "xproto-xextproto package replaced by xorgproto"
455 select BR2_LEGACY
456 select BR2_PACKAGE_XORGPROTO
457 help
458 The xproto-xextproto package has been replaced by the
459 xorgproto package, which combines all xproto_* packages.
460
461config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
462 bool "xproto-xf86bigfontproto package replaced by xorgproto"
463 select BR2_LEGACY
464 select BR2_PACKAGE_XORGPROTO
465 help
466 The xproto-xf86bigfontproto package has been replaced by the
467 xorgproto package, which combines all xproto_* packages.
468
469config BR2_PACKAGE_XPROTO_XF86DGAPROTO
470 bool "xproto-xf86dgaproto package replaced by xorgproto"
471 select BR2_LEGACY
472 select BR2_PACKAGE_XORGPROTO
473 help
474 The xproto-xf86dgaproto package has been replaced by the
475 xorgproto package, which combines all xproto_* packages.
476
477config BR2_PACKAGE_XPROTO_XF86DRIPROTO
478 bool "xproto-xf86driproto package replaced by xorgproto"
479 select BR2_LEGACY
480 select BR2_PACKAGE_XORGPROTO
481 help
482 The xproto-xf86driproto package has been replaced by the
483 xorgproto package, which combines all xproto_* packages.
484
485config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
486 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
487 select BR2_LEGACY
488 select BR2_PACKAGE_XORGPROTO
489 help
490 The xproto-xf86vidmodeproto package has been replaced by the
491 xorgproto package, which combines all xproto_* packages.
492
493config BR2_PACKAGE_XPROTO_XINERAMAPROTO
494 bool "xproto-xineramaproto package replaced by xorgproto"
495 select BR2_LEGACY
496 select BR2_PACKAGE_XORGPROTO
497 help
498 The xproto-xineramaproto package has been replaced by the
499 xorgproto package, which combines all xproto_* packages.
500
501config BR2_PACKAGE_XPROTO_XPROTO
502 bool "xproto-xproto package replaced by xorgproto"
503 select BR2_LEGACY
504 select BR2_PACKAGE_XORGPROTO
505 help
506 The xproto-xproto package has been replaced by the
507 xorgproto package, which combines all xproto_* packages.
508
509config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
510 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
511 select BR2_LEGACY
512 select BR2_PACKAGE_XORGPROTO
513 help
514 The xproto-xproxymanagementprotocol package has been
515 replaced by the xorgproto package, which combines all
516 xproto_* packages.
517
Adam Duskett3f2aef52018-06-24 00:35:22 +0200518config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
519 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
520 select BR2_LEGACY
521 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
522 help
523 The opengl option has been moved from gst1-plugins-bad to
524 gst1-plugins-base.
525
526config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
527 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
528 select BR2_LEGACY
529 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
530 help
531 The gles2 option has been moved from gst1-plugins-bad to
532 gst1-plugins-base.
533
534config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
535 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
536 select BR2_LEGACY
537 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
538 help
539 The glx option has been moved from gst1-plugins-bad to
540 gst1-plugins-base.
541
542config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
543 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
544 select BR2_LEGACY
545 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
546 help
547 The egl option has been moved from gst1-plugins-bad to
548 gst1-plugins-base.
549
550config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
551 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
552 select BR2_LEGACY
553 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
554 help
555 The x11 option has been moved from gst1-plugins-bad to
556 gst1-plugins-base.
557
558config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
559 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
560 select BR2_LEGACY
561 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
562 help
563 The wayland option has been moved from gst1-plugins-bad to
564 gst1-plugins-base.
565
566config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
567 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
568 select BR2_LEGACY
569 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
570 help
571 The dispmanx option has been moved from gst1-plugins-mad to
572 gst1-plugins-base.
573
574config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
575 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
576 select BR2_LEGACY
577 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
578 help
579 The audiomixer option has been moved from gst1-plugins-bad to
580 gst1-plugins-base.
581
582config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
583 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
584 select BR2_LEGACY
585 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
586 help
587 The lame option has been moved from gst1-plugins-ugly to
588 gst1-plugins-good.
589
590config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
591 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
592 select BR2_LEGACY
593 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
594 help
595 The mpg123 option has been moved from gst1-plugins-ugly to
596 gst1-plugins-good.
597
Romain Naourbae35c82018-06-24 15:53:10 +0200598config BR2_GDB_VERSION_7_11
599 bool "gdb 7.11 has been removed"
600 select BR2_LEGACY
601 help
602 The 7.11 version of gdb has been removed. Use a newer version
603 instead.
604
Romain Naour54a2e7a2018-06-24 15:53:09 +0200605config BR2_GDB_VERSION_7_10
606 bool "gdb 7.10 has been removed"
607 select BR2_LEGACY
608 help
609 The 7.10 version of gdb has been removed. Use a newer version
610 instead.
611
612###############################################################################
Bernd Kuhls9657e962018-04-01 15:58:08 +0200613comment "Legacy options removed in 2018.05"
614
Petr Vorel8553b392018-05-13 21:07:36 +0200615config BR2_PACKAGE_MEDIAART_BACKEND_NONE
616 bool "libmediaart none backend option renamed"
617 select BR2_LEGACY
618 help
619 For consistency reasons, the option
620 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
621 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
622
623config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
624 bool "libmediaart gdk-pixbuf backend option renamed"
625 select BR2_LEGACY
626 help
627 For consistency reasons, the option
628 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
629 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
630
631config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
632 bool "libmediaart qt backend option renamed"
633 select BR2_LEGACY
634 help
635 For consistency reasons, the option
636 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
637 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
638
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200639# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
640# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200641config BR2_PACKAGE_TI_SGX_AM335X
642 bool "ti-sgx-km AM335X option renamed"
643 select BR2_LEGACY
644 help
645 For consistency reasons, the option
646 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
647 BR2_PACKAGE_TI_SGX_KM_AM335X.
648
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200649# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
650# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200651config BR2_PACKAGE_TI_SGX_AM437X
652 bool "ti-sgx-km AM437X option renamed"
653 select BR2_LEGACY
654 help
655 For consistency reasons, the option
656 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
657 BR2_PACKAGE_TI_SGX_KM_AM437X.
658
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200659# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
660# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200661config BR2_PACKAGE_TI_SGX_AM4430
662 bool "ti-sgx-km AM4430 option renamed"
663 select BR2_LEGACY
664 help
665 For consistency reasons, the option
666 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
667 BR2_PACKAGE_TI_SGX_KM_AM4430.
668
Yann E. MORIN4a03a662018-05-29 19:31:46 +0200669# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
670# package/ti-sgx-km/Config.in
Thomas Petazzonib54c5462018-05-13 21:07:35 +0200671config BR2_PACKAGE_TI_SGX_AM5430
672 bool "ti-sgx-km AM5430 option renamed"
673 select BR2_LEGACY
674 help
675 For consistency reasons, the option
676 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
677 BR2_PACKAGE_TI_SGX_KM_AM5430.
678
Thomas Petazzonia79df202018-05-13 21:07:34 +0200679config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
680 bool "janus-gateway audio-bridge option renamed"
681 select BR2_LEGACY
682 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
683 help
684 For consistency reasons, the janus-gateway option
685 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
686 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
687
688config BR2_PACKAGE_JANUS_ECHO_TEST
689 bool "janus-gateway echo-test option renamed"
690 select BR2_LEGACY
691 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
692 help
693 For consistency reasons, the janus-gateway option
694 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
695 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
696
697config BR2_PACKAGE_JANUS_RECORDPLAY
698 bool "janus-gateway recordplay option renamed"
699 select BR2_LEGACY
700 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
701 help
702 For consistency reasons, the janus-gateway option
703 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
704 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
705
706config BR2_PACKAGE_JANUS_SIP_GATEWAY
707 bool "janus-gateway sip-gateway option renamed"
708 select BR2_LEGACY
709 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
710 help
711 For consistency reasons, the janus-gateway option
712 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
713 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
714
715config BR2_PACKAGE_JANUS_STREAMING
716 bool "janus-gateway streaming option renamed"
717 select BR2_LEGACY
718 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
719 help
720 For consistency reasons, the janus-gateway option
721 BR2_PACKAGE_JANUS_STREAMING has been renamed to
722 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
723
724config BR2_PACKAGE_JANUS_TEXT_ROOM
725 bool "janus-gateway text-room option renamed"
726 select BR2_LEGACY
727 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
728 help
729 For consistency reasons, the janus-gateway option
730 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
731 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
732
733config BR2_PACKAGE_JANUS_VIDEO_CALL
734 bool "janus-gateway video-call option renamed"
735 select BR2_LEGACY
736 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
737 help
738 For consistency reasons, the janus-gateway option
739 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
740 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
741
742config BR2_PACKAGE_JANUS_VIDEO_ROOM
743 bool "janus-gateway video-room option renamed"
744 select BR2_LEGACY
745 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
746 help
747 For consistency reasons, the janus-gateway option
748 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
749 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
750
751config BR2_PACKAGE_JANUS_MQTT
752 bool "janus-gateway mqtt option renamed"
753 select BR2_LEGACY
754 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
755 help
756 For consistency reasons, the janus-gateway option
757 BR2_PACKAGE_JANUS_MQTT has been renamed to
758 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
759
760config BR2_PACKAGE_JANUS_RABBITMQ
761 bool "janus-gateway rabbitmq option renamed"
762 select BR2_LEGACY
763 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
764 help
765 For consistency reasons, the janus-gateway option
766 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
767 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
768
769config BR2_PACKAGE_JANUS_REST
770 bool "janus-gateway rest option renamed"
771 select BR2_LEGACY
772 select BR2_PACKAGE_JANUS_GATEWAY_REST
773 help
774 For consistency reasons, the janus-gateway option
775 BR2_PACKAGE_JANUS_REST has been renamed to
776 BR2_PACKAGE_JANUS_GATEWAY_REST.
777
778config BR2_PACKAGE_JANUS_UNIX_SOCKETS
779 bool "janus-gateway unix-sockets option renamed"
780 select BR2_LEGACY
781 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
782 help
783 For consistency reasons, the janus-gateway option
784 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
785 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
786
787config BR2_PACKAGE_JANUS_WEBSOCKETS
788 bool "janus-gateway websockets option renamed"
789 select BR2_LEGACY
790 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
791 help
792 For consistency reasons, the janus-gateway option
793 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
794 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
795
Thomas Petazzoni9d2c5c22018-05-13 21:07:33 +0200796config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
797 bool "ipsec-tools security context disable option renamed"
798 select BR2_LEGACY
799 help
800 For consistency reasons, the option
801 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
802 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
803
804config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
805 bool "ipsec-tools SELinux security context enable option renamed"
806 select BR2_LEGACY
807 help
808 For consistency reasons, the option
809 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
810 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
811
812config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
813 bool "ipsec-tools kernel security context enable option renamed"
814 select BR2_LEGACY
815 help
816 For consistency reasons, the option
817 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
818 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
819
Thomas Petazzonidc4e4aa2018-05-13 21:07:32 +0200820config BR2_PACKAGE_LIBTFDI_CPP
821 bool "libftdi C++ bindings option renamed"
822 select BR2_LEGACY
823 select BR2_PACKAGE_LIBFTDI_CPP
824 help
825 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
826 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
827 name.
828
Thomas Petazzoni94c14622018-05-13 21:07:31 +0200829config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
830 bool "jquery-ui-themes option black-tie renamed"
831 select BR2_LEGACY
832 help
833 For consistency reasons, the jquery-ui-themes option for the
834 black-tie theme has been renamed from
835 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
836 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
837
838config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
839 bool "jquery-ui-themes option blitzer renamed"
840 select BR2_LEGACY
841 help
842 For consistency reasons, the jquery-ui-themes option for the
843 blitzer theme has been renamed from
844 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
845 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
846
847config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
848 bool "jquery-ui-themes option cupertino renamed"
849 select BR2_LEGACY
850 help
851 For consistency reasons, the jquery-ui-themes option for the
852 cupertino theme has been renamed from
853 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
854 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
855
856config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
857 bool "jquery-ui-themes option dark-hive renamed"
858 select BR2_LEGACY
859 help
860 For consistency reasons, the jquery-ui-themes option for the
861 dark-hive theme has been renamed from
862 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
863 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
864
865config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
866 bool "jquery-ui-themes option dot-luv renamed"
867 select BR2_LEGACY
868 help
869 For consistency reasons, the jquery-ui-themes option for the
870 dot-luv theme has been renamed from
871 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
872 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
873
874config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
875 bool "jquery-ui-themes option eggplant renamed"
876 select BR2_LEGACY
877 help
878 For consistency reasons, the jquery-ui-themes option for the
879 eggplant theme has been renamed from
880 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
881 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
882
883config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
884 bool "jquery-ui-themes option excite-bike renamed"
885 select BR2_LEGACY
886 help
887 For consistency reasons, the jquery-ui-themes option for the
888 excite-bike theme has been renamed from
889 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
890 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
891
892config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
893 bool "jquery-ui-themes option flick renamed"
894 select BR2_LEGACY
895 help
896 For consistency reasons, the jquery-ui-themes option for the
897 flick theme has been renamed from
898 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
899 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
900
901config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
902 bool "jquery-ui-themes option hot-sneaks renamed"
903 select BR2_LEGACY
904 help
905 For consistency reasons, the jquery-ui-themes option for the
906 hot-sneaks theme has been renamed from
907 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
908 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
909
910config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
911 bool "jquery-ui-themes option humanity renamed"
912 select BR2_LEGACY
913 help
914 For consistency reasons, the jquery-ui-themes option for the
915 humanity theme has been renamed from
916 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
917 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
918
919config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
920 bool "jquery-ui-themes option le-frog renamed"
921 select BR2_LEGACY
922 help
923 For consistency reasons, the jquery-ui-themes option for the
924 le-frog theme has been renamed from
925 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
926 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
927
928config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
929 bool "jquery-ui-themes option mint-choc renamed"
930 select BR2_LEGACY
931 help
932 For consistency reasons, the jquery-ui-themes option for the
933 mint-choc theme has been renamed from
934 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
935 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
936
937config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
938 bool "jquery-ui-themes option overcast renamed"
939 select BR2_LEGACY
940 help
941 For consistency reasons, the jquery-ui-themes option for the
942 overcast theme has been renamed from
943 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
944 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
945
946config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
947 bool "jquery-ui-themes option pepper-grinder renamed"
948 select BR2_LEGACY
949 help
950 For consistency reasons, the jquery-ui-themes option for the
951 pepper-grinder theme has been renamed from
952 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
953 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
954
955config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
956 bool "jquery-ui-themes option redmond renamed"
957 select BR2_LEGACY
958 help
959 For consistency reasons, the jquery-ui-themes option for the
960 redmond theme has been renamed from
961 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
962 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
963
964config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
965 bool "jquery-ui-themes option smoothness renamed"
966 select BR2_LEGACY
967 help
968 For consistency reasons, the jquery-ui-themes option for the
969 smoothness theme has been renamed from
970 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
971 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
972
973config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
974 bool "jquery-ui-themes option south-street renamed"
975 select BR2_LEGACY
976 help
977 For consistency reasons, the jquery-ui-themes option for the
978 south-street theme has been renamed from
979 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
980 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
981
982config BR2_PACKAGE_JQUERY_UI_THEME_START
983 bool "jquery-ui-themes option start renamed"
984 select BR2_LEGACY
985 help
986 For consistency reasons, the jquery-ui-themes option for the
987 start theme has been renamed from
988 BR2_PACKAGE_JQUERY_UI_THEME_START to
989 BR2_PACKAGE_JQUERY_UI_THEMES_START.
990
991config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
992 bool "jquery-ui-themes option sunny renamed"
993 select BR2_LEGACY
994 help
995 For consistency reasons, the jquery-ui-themes option for the
996 sunny theme has been renamed from
997 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
998 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
999
1000config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
1001 bool "jquery-ui-themes option swanky-purse renamed"
1002 select BR2_LEGACY
1003 help
1004 For consistency reasons, the jquery-ui-themes option for the
1005 swanky-purse theme has been renamed from
1006 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
1007 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
1008
1009config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
1010 bool "jquery-ui-themes option trontastic renamed"
1011 select BR2_LEGACY
1012 help
1013 For consistency reasons, the jquery-ui-themes option for the
1014 trontastic theme has been renamed from
1015 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
1016 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
1017
1018config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
1019 bool "jquery-ui-themes option ui-darkness renamed"
1020 select BR2_LEGACY
1021 help
1022 For consistency reasons, the jquery-ui-themes option for the
1023 ui-darkness theme has been renamed from
1024 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
1025 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
1026
1027config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
1028 bool "jquery-ui-themes option ui-lightness renamed"
1029 select BR2_LEGACY
1030 help
1031 For consistency reasons, the jquery-ui-themes option for the
1032 ui-lightness theme has been renamed from
1033 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
1034 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
1035
1036config BR2_PACKAGE_JQUERY_UI_THEME_VADER
1037 bool "jquery-ui-themes option vader renamed"
1038 select BR2_LEGACY
1039 help
1040 For consistency reasons, the jquery-ui-themes option for the
1041 vader theme has been renamed from
1042 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
1043 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
1044
Thomas Petazzonib2b874f2018-05-13 21:07:30 +02001045config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
1046 bool "bluez5-utils health plugin option renamed"
1047 select BR2_LEGACY
1048 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
1049 help
1050 For consistency reasons, the option
1051 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
1052 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
1053
1054config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
1055 bool "bluez5-utils midi plugin option renamed"
1056 select BR2_LEGACY
1057 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
1058 help
1059 For consistency reasons, the option
1060 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
1061 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
1062
1063config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
1064 bool "bluez5-utils nfc plugin option renamed"
1065 select BR2_LEGACY
1066 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
1067 help
1068 For consistency reasons, the option
1069 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
1070 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
1071
1072config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
1073 bool "bluez5-utils sap plugin option renamed"
1074 select BR2_LEGACY
1075 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
1076 help
1077 For consistency reasons, the option
1078 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
1079 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
1080
1081config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
1082 bool "bluez5-utils sixaxis plugin option renamed"
1083 select BR2_LEGACY
1084 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
1085 help
1086 For consistency reasons, the option
1087 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
1088 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
1089
Bernd Kuhls79a678d2018-05-02 08:05:40 +02001090config BR2_PACKAGE_TRANSMISSION_REMOTE
1091 bool "transmission remote tool option removed"
1092 select BR2_LEGACY
1093 select BR2_PACKAGE_TRANSMISSION_DAEMON
1094 help
1095 Upstream does not provide a separate configure option for
1096 the tool transmission-remote, it is built when the
1097 transmission daemon has been enabled. Therefore, Buildroot
1098 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
1099 for you.
1100
Fabrice Fontainef6421152018-05-07 00:09:01 +02001101config BR2_PACKAGE_LIBKCAPI_APPS
1102 bool "libkcapi test applications removed"
1103 select BR2_LEGACY
1104 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
1105 select BR2_PACKAGE_LIBKCAPI_RNGAPP
1106 select BR2_PACKAGE_LIBKCAPI_SPEED
1107 select BR2_PACKAGE_LIBKCAPI_TEST
1108 help
1109 Test applications (hasher, rng read, speed-test, test) now
1110 have their own configuration options in the libkcapi menu.
1111
Bernd Kuhlsdacb1762018-05-01 09:10:17 +02001112config BR2_PACKAGE_MPLAYER
1113 bool "mplayer package removed"
1114 select BR2_LEGACY
1115 help
1116 The mplayer package was removed.
1117
1118config BR2_PACKAGE_MPLAYER_MPLAYER
1119 bool "mplayer package removed"
1120 select BR2_LEGACY
1121 help
1122 The mplayer package was removed.
1123
1124config BR2_PACKAGE_MPLAYER_MENCODER
1125 bool "mplayer package removed"
1126 select BR2_LEGACY
1127 help
1128 The mplayer package was removed.
1129
Bernd Kuhls3f449112018-05-01 09:10:14 +02001130config BR2_PACKAGE_LIBPLAYER_MPLAYER
1131 bool "mplayer support in libplayer removed"
1132 select BR2_LEGACY
1133 help
1134 The mplayer package was removed.
1135
Thomas Petazzoni46444ba2018-04-04 18:00:09 +02001136config BR2_PACKAGE_IQVLINUX
1137 bool "iqvlinux package removed"
1138 select BR2_LEGACY
1139 help
1140 This package contained a kernel module from Intel, which
1141 could only be used together with Intel userspace tools
1142 provided under NDA, which also come with the same kernel
1143 module. The copy of the kernel module available on
1144 SourceForge is provided only to comply with the GPLv2
1145 requirement. Intel engineers were even surprised it even
1146 built and were not willing to make any effort to fix their
1147 tarball naming to contain a version number. Therefore, it
1148 does not make sense for Buildroot to provide such a package.
1149
1150 See https://sourceforge.net/p/e1000/bugs/589/ for the
1151 discussion.
1152
Thomas Petazzonie2ea4152018-04-05 21:50:18 +02001153config BR2_BINFMT_FLAT_SEP_DATA
1154 bool "binfmt FLAT with separate code and data removed"
1155 select BR2_LEGACY
1156 help
1157 This FLAT binary format was only used on Blackfin, which has
1158 been removed.
1159
Thomas Petazzoni325bb372018-04-05 21:50:17 +02001160config BR2_bfin
1161 bool "Blackfin architecture support removed"
1162 select BR2_LEGACY
1163 help
1164 Following the removal of Blackfin support for the upstream
1165 Linux kernel, Buildroot has removed support for this CPU
1166 architecture.
1167
Bernd Kuhls9657e962018-04-01 15:58:08 +02001168config BR2_PACKAGE_KODI_ADSP_BASIC
1169 bool "kodi-adsp-basic package removed"
1170 select BR2_LEGACY
1171 help
1172 kodi-adsp-basic is unmaintained
1173
1174config BR2_PACKAGE_KODI_ADSP_FREESURROUND
1175 bool "kodi-adsp-freesurround package removed"
1176 select BR2_LEGACY
1177 help
1178 kodi-adsp-freesurround is unmaintained
1179
1180###############################################################################
Baruch Siach86dfb422017-11-14 14:02:38 +02001181comment "Legacy options removed in 2018.02"
1182
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001183config BR2_KERNEL_HEADERS_3_4
1184 bool "kernel headers version 3.4.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001185 select BR2_LEGACY
1186 help
1187 Version 3.4.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001188 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001189
1190config BR2_KERNEL_HEADERS_3_10
1191 bool "kernel headers version 3.10.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001192 select BR2_LEGACY
1193 help
1194 Version 3.10.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001195 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001196
1197config BR2_KERNEL_HEADERS_3_12
1198 bool "kernel headers version 3.12.x are no longer supported"
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001199 select BR2_LEGACY
1200 help
1201 Version 3.12.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001202 maintained upstream and are now removed.
Peter Korsgaard2a9b7b82018-01-29 22:48:25 +01001203
Romain Naour453d29f2018-01-29 23:39:41 +01001204config BR2_BINUTILS_VERSION_2_27_X
1205 bool "binutils version 2.27 support removed"
1206 select BR2_LEGACY
1207 help
1208 Support for binutils version 2.27 has been removed. The
1209 current default version (2.29 or later) has been selected
1210 instead.
1211
Baruch Siach55d79ed2018-01-02 08:16:01 +02001212config BR2_PACKAGE_EEPROG
1213 bool "eeprog package removed"
1214 select BR2_LEGACY
1215 select BR2_PACKAGE_I2C_TOOLS
1216 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
1217 help
1218 The eeprog program is now provided by the i2c-tools package.
1219
Baruch Siach86dfb422017-11-14 14:02:38 +02001220config BR2_PACKAGE_GNUPG2_GPGV2
1221 bool "gnupg2 gpgv2 option removed"
1222 select BR2_LEGACY
1223 select BR2_PACKAGE_GNUPG2_GPGV
1224 help
1225 The gpgv2 executable is now named gpgv. The config option
1226 has been renamed accordingly.
1227
Gary Bissonf7a7d942018-01-05 15:39:36 +01001228config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
1229 bool "Vivante apitrace tool option removed"
1230 select BR2_LEGACY
1231 help
1232 The apitrace tool for Vivante is not provided by the
1233 imx-gpu-viv package any longer.
1234
1235config BR2_PACKAGE_IMX_GPU_VIV_G2D
1236 bool "Vivante G2D libraries from imx-gpu-viv removed"
1237 select BR2_LEGACY
1238 select BR2_PACKAGE_IMX_GPU_G2D
1239 help
1240 The G2D libraries are now provided by the imx-gpu-g2d package.
1241
Baruch Siach86dfb422017-11-14 14:02:38 +02001242###############################################################################
Carlos Santosf52af612017-09-01 21:41:38 -03001243comment "Legacy options removed in 2017.11"
1244
Carlos Santos6c10e402017-10-21 20:30:18 -02001245config BR2_PACKAGE_RFKILL
1246 bool "rfkill package removed"
1247 select BR2_LEGACY
1248 select BR2_PACKAGE_UTIL_LINUX
1249 select BR2_PACKAGE_UTIL_LINUX_RFKILL
1250 help
1251 The rfkill program is now provided by the util-linux package.
1252
Carlos Santosd4382002017-10-31 08:47:51 -02001253config BR2_PACKAGE_UTIL_LINUX_RESET
1254 bool "util-linux reset option removed"
1255 select BR2_LEGACY
1256 help
1257 The util-linux package no longer offers a "reset" command. Use
1258 either the reset command provided by BusyBox or select ncurses
1259 programs, which will install a symlink from "tset" to reset.
1260
Adam Duskett9d6da7a2017-10-17 18:32:18 -04001261config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
1262 bool "policycoreutils audit2allow option removed"
1263 select BR2_LEGACY
1264 select BR2_PACKAGE_SELINUX_PYTHON
1265 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
1266 help
1267 The policycoreutils package no longer offers audit2allow
1268 as a option. This package has been moved into the
1269 selinux-python package by the SELinux maintainers.
1270
1271config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
1272 bool "policycoreutils restorecond option removed"
1273 select BR2_LEGACY
1274 select BR2_PACKAGE_RESTORECOND
1275 help
1276 The policycoreutils package no longer offers restorecond
1277 as a option. This package has been moved into a seperate
1278 package maintained by the SELinux maintainers.
1279
1280config BR2_PACKAGE_SEPOLGEN
1281 bool "sepolgen package has been removed"
1282 select BR2_LEGACY
1283 select BR2_PACKAGE_SELINUX_PYTHON
1284 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
1285 help
1286 Sepolgen is no longer a individual package, but instead has
1287 been moved into the selinux-python package by the SELinux
1288 maintainers.
1289
Bernd Kuhls49a9fb02017-09-16 17:15:35 +02001290config BR2_PACKAGE_OPENOBEX_BLUEZ
1291 bool "openobex bluez option removed"
1292 select BR2_LEGACY
1293 select BR2_PACKAGE_BLUEZ_UTILS
1294 help
1295 The OpenOBEX package no longer offers an option to enable or
1296 disable BlueZ support. Instead, BlueZ support is always
1297 included when the bluez5_utils or bluez_utils package is
1298 selected.
1299
1300config BR2_PACKAGE_OPENOBEX_LIBUSB
1301 bool "openobex libusb option removed"
1302 select BR2_LEGACY
1303 select BR2_PACKAGE_LIBUSB
1304 help
1305 The OpenOBEX package no longer offers an option to enable or
1306 disable libusb support. Instead, USB support is always
1307 included when the libusb package is selected.
1308
1309config BR2_PACKAGE_OPENOBEX_APPS
1310 bool "openobex apps option removed"
1311 select BR2_LEGACY
1312 help
1313 The OpenOBEX package no longer offers an option to enable or
1314 disable apps support.
1315
1316config BR2_PACKAGE_OPENOBEX_SYSLOG
1317 bool "openobex syslog option removed"
1318 select BR2_LEGACY
1319 help
1320 The OpenOBEX package no longer offers an option to enable or
1321 disable syslog support.
1322
1323config BR2_PACKAGE_OPENOBEX_DUMP
1324 bool "openobex dump option removed"
1325 select BR2_LEGACY
1326 help
1327 The OpenOBEX package no longer offers an option to enable or
1328 disable dump support.
1329
Alexander Mukhinfca70382017-09-10 13:21:34 +03001330config BR2_PACKAGE_AICCU
1331 bool "aiccu utility removed"
1332 select BR2_LEGACY
1333 help
1334 As the SixXS project has ceased its operation on 2017-06-06,
1335 the AICCU utility has no use anymore and has been removed.
1336
1337 https://www.sixxs.net/sunset/
1338
Carlos Santosf52af612017-09-01 21:41:38 -03001339config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
1340 bool "util-linux login utilities option removed"
1341 select BR2_LEGACY
1342 select BR2_PACKAGE_UTIL_LINUX_LAST
1343 select BR2_PACKAGE_UTIL_LINUX_LOGIN
1344 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
1345 select BR2_PACKAGE_UTIL_LINUX_SU
1346 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
1347 help
1348 Login utilities (last, login, runuser, su, sulogin) now have
1349 their own configuration options in the util-linux menu.
1350
1351###############################################################################
Romain Naourf6695212017-05-23 22:24:40 +02001352comment "Legacy options removed in 2017.08"
1353
Yann E. MORIN144dc9c2017-08-11 18:05:08 +02001354config BR2_TARGET_GRUB
1355 bool "grub (aka grub-legacy) has been removed"
1356 select BR2_LEGACY
1357 help
1358 grub-legacy is no longer maintained, and no longer builds with
1359 recent binutils versions.
1360
1361 Use grub2 or syslinux instead.
1362
Bin Meng20db0982017-08-30 08:55:25 -07001363config BR2_PACKAGE_SIMICSFS
1364 bool "simicsfs support removed"
1365 select BR2_LEGACY
1366 help
1367 Support for simicsfs kernel driver that provides access to a
1368 host computer's local filesystem when the target is
1369 executing within a SIMICS simulation has been removed.
1370
1371 Simics is now moving away from the simicsfs kernel module,
1372 as the kernel module has required too much maintenance
1373 work. Users should move to the user mode Simics agent
1374 instead.
1375
Thomas Petazzoni0b5dc312017-07-29 15:09:06 +02001376config BR2_BINUTILS_VERSION_2_26_X
1377 bool "binutils version 2.26 support removed"
1378 select BR2_LEGACY
1379 help
1380 Support for binutils version 2.26 has been removed. The
1381 current default version (2.28 or later) has been selected
1382 instead.
1383
Yann E. MORINb3b60702017-07-09 05:21:56 -07001384config BR2_XTENSA_OVERLAY_DIR
1385 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001386 help
Yann E. MORINb3b60702017-07-09 05:21:56 -07001387 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
1388 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
1389 path to the overlay file, not to the directory containing
1390 it.
1391
1392config BR2_XTENSA_OVERLAY_DIR_WRAP
1393 bool
1394 default y if BR2_XTENSA_OVERLAY_DIR != ""
1395 select BR2_LEGACY
1396
1397config BR2_XTENSA_CUSTOM_NAME
1398 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
1399 help
1400 The BR2_XTENSA_CUSTOM_NAME option has been removed.
Yann E. MORIN15a96d12017-07-09 05:21:55 -07001401
1402config BR2_XTENSA_CUSTOM_NAME_WRAP
1403 bool
1404 default y if BR2_XTENSA_CUSTOM_NAME != ""
1405 select BR2_LEGACY
1406
Sébastien Szymanskif47fc952017-07-04 16:47:29 +02001407config BR2_PACKAGE_HOST_MKE2IMG
1408 bool "host mke2img has been removed"
1409 select BR2_LEGACY
1410 help
1411 We now call mkfs directly to generate ext2/3/4 filesystem
1412 image, so mke2img is no longer necessary.
1413
Samuel Martinbee9e882017-07-09 07:00:38 +02001414config BR2_TARGET_ROOTFS_EXT2_BLOCKS
1415 int "exact size in blocks has been removed"
1416 default 0
1417 help
1418 This option has been removed in favor of
1419 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
1420 to the value you had before. Set to 0 here to remove the
1421 warning.
1422
1423config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
1424 bool
1425 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
1426 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
1427 select BR2_LEGACY
1428
1429# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
1430
Samuel Martin235b6f12017-07-04 16:47:25 +02001431config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
1432 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
1433 default 0
1434 help
1435 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
1436 images. It now automatically selects the number of inodes
1437 based on the image size. The extra number of inodes can no
1438 longer be provided; instead, provide the total number of
1439 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
1440
1441config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
1442 bool
1443 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
1444 select BR2_LEGACY
1445
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001446config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
1447 bool "cdxaparse removed"
1448 select BR2_LEGACY
1449
1450config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
1451 bool "dataurisrc moved to gstreamer1"
1452 select BR2_LEGACY
1453 help
1454 Dataurisrc has moved to gstreamer core and is always built.
1455
1456config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
1457 bool "dccp removed"
1458 select BR2_LEGACY
1459
1460config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
1461 bool "hdvparse removed"
1462 select BR2_LEGACY
1463
1464config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
1465 bool "mve removed"
1466 select BR2_LEGACY
1467
1468config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
1469 bool "nuvdemux removed"
1470 select BR2_LEGACY
1471
1472config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
1473 bool "patchdetect removed"
1474 select BR2_LEGACY
1475
1476config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
1477 bool "sdi removed"
1478 select BR2_LEGACY
1479
1480config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
1481 bool "tta removed"
1482 select BR2_LEGACY
1483
1484config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
1485 bool "videomeasure removed"
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001486 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001487 select BR2_LEGACY
Vicente Olivert Riera6e3fa332017-05-12 11:18:02 +01001488 help
1489 videomeasure plugin has been removed and has been replaced by
1490 iqa, which has automatically been enabled.
Vicente Olivert Rierae278d852017-05-12 11:18:01 +01001491
1492config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
1493 bool "apexsink removed"
1494 select BR2_LEGACY
1495
1496config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
1497 bool "sdl removed"
1498 select BR2_LEGACY
1499
Vicente Olivert Rierab006fe12017-05-12 11:18:05 +01001500config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
1501 bool "mad (*.mp3 audio) removed"
1502 select BR2_LEGACY
1503
Thomas Petazzoni4c06d242017-07-04 10:11:54 +02001504config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
1505 bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
1506 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
1507 select BR2_LEGACY
1508 help
1509 The WebRTC plugin in GStreamer 1.x has always been named
1510 webrtcdsp, but was wrongly introduced in Buildroot under the
1511 name webrtc. Therefore, we have renamed the option to match
1512 the actual name of the GStreamer plugin.
1513
Yann E. MORIN0d643fd2017-07-01 14:51:21 +02001514config BR2_STRIP_none
1515 bool "Strip command 'none' has been removed"
1516 select BR2_LEGACY
1517 help
1518 The strip command choice has been changed into a single
1519 boolean option. Please check that the new setting is
1520 correct (in the "Build options" sub-menu)
1521
Bernd Kuhlsdd4d3c12017-06-11 14:48:51 +02001522config BR2_PACKAGE_BEECRYPT_CPP
1523 bool "C++ support removed in beecrypt"
1524 select BR2_LEGACY
1525 help
1526 Support for C++ depends on icu. The beecrypt package is
1527 incompatible with icu 59+.
1528
Peter Korsgaard622ff3d2017-06-22 00:07:42 +02001529config BR2_PACKAGE_SPICE_CLIENT
1530 bool "spice client support removed"
1531 select BR2_LEGACY
1532 help
1533 Spice client support has been removed upstream. The
1534 functionality now lives in the spice-gtk widget and
1535 virt-viewer.
1536
1537config BR2_PACKAGE_SPICE_GUI
1538 bool "spice gui support removed"
1539 select BR2_LEGACY
1540 help
1541 Spice gui support has been removed upstream. The
1542 functionality now lives in the spice-gtk widget and
1543 virt-viewer.
1544
Peter Korsgaard6f2c0222017-06-22 00:07:41 +02001545config BR2_PACKAGE_SPICE_TUNNEL
1546 bool "spice network redirection removed"
1547 select BR2_LEGACY
1548 help
1549 Spice network redirection, aka tunnelling has been removed
1550 upstream.
1551
Koen Martens438b2d12017-06-20 20:54:49 +02001552config BR2_PACKAGE_INPUT_TOOLS
1553 bool "input-tools removed"
1554 select BR2_LEGACY
1555 select BR2_PACKAGE_LINUXCONSOLETOOLS
1556 help
1557 input-tools has been removed, it is replaced by
1558 linuxconsoletools, which has automatically been enabled.
1559
1560config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
1561 bool "inputattach moved to linuxconsoletools"
1562 select BR2_LEGACY
1563 select BR2_PACKAGE_LINUXCONSOLETOOLS
1564 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
1565 help
1566 input-tools has been removed, inputattach is now part
1567 of linuxconsoletools, which has automatically been
1568 enabled.
1569
1570config BR2_PACKAGE_INPUT_TOOLS_JSCAL
1571 bool "jscal moved to linuxconsoletools"
1572 select BR2_LEGACY
1573 select BR2_PACKAGE_LINUXCONSOLETOOLS
1574 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1575 help
1576 input-tools has been removed, jscal is now part
1577 of linuxconsoletools, which has automatically been
1578 enabled.
1579
1580config BR2_PACKAGE_INPUT_TOOLS_JSTEST
1581 bool "jstest moved to linuxconsoletools"
1582 select BR2_LEGACY
1583 select BR2_PACKAGE_LINUXCONSOLETOOLS
1584 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
1585 help
1586 input-tools has been removed, jstest is now part
1587 of linuxconsoletools, which has automatically been
1588 enabled.
1589
Baruch Siach6510a822017-06-16 06:32:48 +03001590config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
1591 bool "SH Sourcery toolchain has been removed"
1592 select BR2_LEGACY
1593 help
1594 The Sourcery CodeBench toolchain for the sh architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001595 been removed, since it uses glibc older than 2.17 that
1596 requires -lrt to link executables using clock_* system calls.
1597 This makes this toolchain difficult to maintain over time.
Baruch Siach6510a822017-06-16 06:32:48 +03001598
Baruch Siach06cac642017-06-16 06:32:47 +03001599config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
1600 bool "x86 Sourcery toolchain has been removed"
1601 select BR2_LEGACY
1602 help
1603 The Sourcery CodeBench toolchain for the x86 architecture has
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001604 been removed, since it uses glibc older than 2.17 that
1605 requires -lrt to link executables using clock_* system calls.
1606 This makes this toolchain difficult to maintain over time.
Baruch Siach06cac642017-06-16 06:32:47 +03001607
Romain Naourf6695212017-05-23 22:24:40 +02001608config BR2_GCC_VERSION_4_8_X
1609 bool "gcc 4.8.x support removed"
1610 select BR2_LEGACY
1611 help
1612 Support for gcc version 4.8.x has been removed. The current
1613 default version (5.x or later) has been selected instead.
1614
1615###############################################################################
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001616comment "Legacy options removed in 2017.05"
1617
Romain Naour95426af2017-02-21 22:43:16 +01001618config BR2_PACKAGE_SUNXI_MALI_R2P4
1619 bool "sunxi-mali r2p4 removed"
1620 select BR2_LEGACY
1621 help
1622 sunxi-mali libMali for r2p4 Mali kernel module has been
1623 removed since the libump package only provides libUMP.so.3.
1624 libMali for r2p4 Mali kernel module requires libUMP.so.2.
1625
Martin Barkd999a7f2017-05-06 14:19:13 +01001626config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
1627 bool "CoffeeScript option has been removed"
1628 select BR2_LEGACY
1629 help
1630 The option to enable NodeJS CoffeeScript has been removed.
1631 To continue using it, add "coffee-script" to
1632 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1633
Martin Bark096f8b12017-05-06 14:19:12 +01001634config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
1635 bool "Express web application framework option has been removed"
1636 select BR2_LEGACY
1637 help
1638 The option to enable the NodeJS Express web application
1639 framework has been removed. To continue using it, add
1640 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
1641
Baruch Siach0364d442017-05-01 15:59:41 +03001642config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
1643 bool "bluez5_utils gatttool install option removed"
1644 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
1645 help
1646 The option to install gatttool specifically has been removed.
1647 Since version 5.44 gatttool is in the list of deprecated
1648 tools. The option to build and install deprecated tools has
1649 been automatically enabled.
1650
Christophe PRIOUZEAU3b6c74d2017-04-28 14:34:34 +00001651config BR2_PACKAGE_OPENOCD_FT2XXX
1652 bool "openocd ft2232 support has been removed"
1653 select BR2_PACKAGE_OPENOCD_FTDI
1654 select BR2_LEGACY
1655 help
1656 FT2232 support in OpenOCD has been removed, it's replaced by
1657 FDTI support, which has automatically been enabled.
1658
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001659config BR2_PACKAGE_KODI_RTMPDUMP
1660 bool "kodi rtmp has been removed"
1661 select BR2_LEGACY
Bernd Kuhlsc8942672017-07-16 16:35:17 +02001662 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
Bernd Kuhls24a07d52017-04-29 10:37:28 +02001663 help
1664 Internal rtmp support was removed from Kodi.
1665
Bernd Kuhlsd3936902017-04-29 10:37:21 +02001666config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
1667 bool "kodi-visualisation-fountain has been removed"
1668 select BR2_LEGACY
1669 help
1670 According to upstream 'the visualization is not currently
1671 in a working shape.'
1672
Waldemar Brodkorb1ba88a02017-04-02 05:37:08 +02001673config BR2_PACKAGE_PORTMAP
1674 bool "portmap has been removed"
1675 select BR2_LEGACY
1676 select BR2_PACKAGE_RPCBIND
1677 help
1678 The portmap upstream tarball is removed, no releases since
1679 ten years and latest change in upstream git in 2014.
1680 You should better use rpcbind as a RPC portmapper.
1681
Thomas Petazzoni58472912017-04-03 22:28:21 +02001682config BR2_BINUTILS_VERSION_2_25_X
1683 bool "binutils version 2.25 support removed"
1684 select BR2_LEGACY
1685 help
1686 Support for binutils version 2.25 has been removed. The
1687 current default version (2.27 or later) has been selected
1688 instead.
1689
Waldemar Brodkorb98f7de82017-04-03 20:18:02 +02001690config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
1691 bool "uclibc RPC support has been removed"
1692 select BR2_LEGACY
1693 help
1694 uClibc-ng removed internal RPC implementation in 1.0.23. You
1695 should use libtirpc instead.
1696
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001697config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
1698 int "extra size in blocks has been removed"
1699 default 0
1700 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001701 Since the support for auto calculation of the filesystem size
1702 has been removed, this option is now useless and must be 0.
1703 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
1704 matchs your needs.
Sébastien Szymanskic6bca8c2017-03-24 17:20:29 +01001705
1706config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
1707 bool
1708 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
1709 select BR2_LEGACY
1710
Vicente Olivert Riera815f7132017-03-22 11:39:13 +00001711config BR2_PACKAGE_SYSTEMD_KDBUS
1712 bool "systemd-kdbus has been removed"
1713 select BR2_LEGACY
1714 help
1715 --enable/disable-kdbus configure option has been removed since
1716 systemd-231.
1717
Gustavo Zacariasd10b4932017-03-16 10:04:34 -03001718config BR2_PACKAGE_POLARSSL
1719 bool "polarssl has been removed"
1720 select BR2_LEGACY
1721 help
1722 The polarssl crypto library has been removed since the 1.2.x
1723 release branch is no longer maintained. Newer upstream
1724 branches/releases (mbedtls) have API changes so they're not
1725 drop-in replacements.
1726
Yann E. MORIN61551182017-03-12 10:58:15 +01001727config BR2_NBD_CLIENT
1728 bool "nbd client option was renamed"
1729 select BR2_LEGACY
1730 select BR2_PACKAGE_NBD_CLIENT
1731 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001732 The nbd client option has been renamed to
1733 BR2_PACKAGE_NBD_CLIENT.
Yann E. MORIN61551182017-03-12 10:58:15 +01001734
1735config BR2_NBD_SERVER
1736 bool "nbd server option was renamed"
1737 select BR2_LEGACY
1738 select BR2_PACKAGE_NBD_SERVER
1739 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001740 The nbd server option has been renamed to
1741 BR2_PACKAGE_NBD_SERVER.
Yann E. MORIN61551182017-03-12 10:58:15 +01001742
Carlos Santos6a9c6312017-02-14 09:05:16 -02001743config BR2_PACKAGE_GMOCK
1744 bool "gmock merged into gtest package"
1745 select BR2_LEGACY
1746 select BR2_PACKAGE_GTEST
1747 select BR2_PACKAGE_GTEST_GMOCK
1748 help
1749 GMock is now a suboption of the GTest package.
1750
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001751config BR2_KERNEL_HEADERS_4_8
1752 bool "kernel headers version 4.8.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001753 select BR2_LEGACY
1754 help
1755 Version 4.8.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001756 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001757
1758config BR2_KERNEL_HEADERS_3_18
1759 bool "kernel headers version 3.18.x are no longer supported"
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001760 select BR2_LEGACY
1761 help
1762 Version 3.18.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001763 maintained upstream and are now removed.
Gustavo Zacarias5f73ff52017-03-02 17:18:29 -03001764
Gustavo Zacariasa75eedd2017-02-24 21:34:47 -03001765config BR2_GLIBC_VERSION_2_22
1766 bool "glibc 2.22 removed"
1767 select BR2_LEGACY
1768 help
1769 Support for glibc version 2.22 has been removed. The current
1770 default version has been selected instead.
1771
1772###############################################################################
Thomas Petazzonied364d12016-11-05 14:32:38 +01001773comment "Legacy options removed in 2017.02"
1774
Francois Perrad8546ff32016-12-26 15:50:35 +01001775config BR2_PACKAGE_PERL_DB_FILE
1776 bool "perl-db-file removed"
1777 select BR2_LEGACY
1778 select BR2_PACKAGE_BERKELEYDB
1779 select BR2_PACKAGE_PERL
1780 help
1781 DB_File can be built as a core Perl module, so the separate
1782 perl-db-file package has been removed.
1783
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001784config BR2_KERNEL_HEADERS_4_7
1785 bool "kernel headers version 4.7.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001786 select BR2_LEGACY
1787 help
1788 Version 4.7.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001789 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001790
1791config BR2_KERNEL_HEADERS_4_6
1792 bool "kernel headers version 4.6.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001793 select BR2_LEGACY
1794 help
1795 Version 4.6.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001796 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001797
1798config BR2_KERNEL_HEADERS_4_5
1799 bool "kernel headers version 4.5.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001800 select BR2_LEGACY
1801 help
1802 Version 4.5.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001803 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001804
1805config BR2_KERNEL_HEADERS_3_14
1806 bool "kernel headers version 3.14.x are no longer supported"
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001807 select BR2_LEGACY
1808 help
1809 Version 3.14.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001810 maintained upstream and are now removed.
Gustavo Zacarias6be22622016-12-20 11:48:26 -03001811
Romain Naour63abbcc2016-12-16 16:29:45 +01001812config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
1813 bool "musl-cross 1.1.12 toolchain removed"
1814 select BR2_LEGACY
1815 help
1816 The support for the prebuilt toolchain based on the Musl C
1817 library provided by the musl-cross project has been removed.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001818 Upstream doesn't provide any prebuilt toolchain anymore, use
1819 the Buildroot toolchain instead.
Romain Naour63abbcc2016-12-16 16:29:45 +01001820
Waldemar Brodkorba44d7f22016-12-04 12:20:27 +01001821config BR2_UCLIBC_INSTALL_TEST_SUITE
1822 bool "uClibc tests now in uclibc-ng-test"
1823 select BR2_LEGACY
1824 select BR2_PACKAGE_UCLIBC_NG_TEST
1825 help
1826 The test suite of the uClibc C library has been moved into a
1827 separate package, uclibc-ng-test.
1828
Arnout Vandecappelle311bc132016-11-24 00:40:35 +01001829config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
1830 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
1831 select BR2_LEGACY
1832 help
1833 The ADI Blackfin toolchain has many bugs which are fixed in
1834 more recent gcc and uClibc-ng releases. Use the Buildroot
1835 toolchain instead.
1836
Arnout Vandecappelle207294f2016-11-23 15:14:04 +01001837config BR2_PACKAGE_MAKEDEVS
1838 bool "makedevs removed"
1839 select BR2_LEGACY
1840 help
1841 The makedevs tool is part of busybox. The Buildroot fork
1842 should not be used outside of the Buildroot infrastructure.
1843
Arnout Vandecappelleb5c00f02016-11-07 02:20:17 +01001844config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
1845 bool "Arago ARMv7 2011.09 removed"
1846 select BR2_LEGACY
1847 help
1848 The Arago toolchains are every old and not updated anymore.
1849
1850config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
1851 bool "Arago ARMv5 2011.09 removed"
1852 select BR2_LEGACY
1853 help
1854 The Arago toolchains are every old and not updated anymore.
1855
Thomas Petazzonied364d12016-11-05 14:32:38 +01001856config BR2_PACKAGE_SNOWBALL_HDMISERVICE
1857 bool "snowball-hdmiservice removed"
1858 select BR2_LEGACY
1859 help
1860 We no longer have support for the Snowball platform in
1861 Buildroot, so this package was no longer useful.
1862
1863config BR2_PACKAGE_SNOWBALL_INIT
1864 bool "snowball-init removed"
1865 select BR2_LEGACY
1866 help
1867 We no longer have support for the Snowball platform in
1868 Buildroot, so this package was no longer useful.
1869
Jörg Krause69aa0572016-12-14 14:40:58 +01001870config BR2_GDB_VERSION_7_9
1871 bool "gdb 7.9 has been removed"
1872 select BR2_LEGACY
1873 help
1874 The 7.9 version of gdb has been removed. Use a newer version
1875 instead.
1876
Thomas Petazzonied364d12016-11-05 14:32:38 +01001877###############################################################################
Yann E. MORINe782cd52016-08-28 01:03:04 +02001878comment "Legacy options removed in 2016.11"
1879
Fabrice Fontainec4572132016-09-12 23:31:07 +02001880config BR2_PACKAGE_PHP_SAPI_CLI_CGI
1881 bool "PHP CGI and CLI options are now seperate"
1882 select BR2_PACKAGE_PHP_SAPI_CLI
1883 select BR2_PACKAGE_PHP_SAPI_CGI
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001884 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001885 help
1886 The PHP Interface options have been split up into a
1887 separate option for each interface.
1888
1889config BR2_PACKAGE_PHP_SAPI_CLI_FPM
1890 bool "PHP CLI and FPM options are now separate"
1891 select BR2_PACKAGE_PHP_SAPI_CLI
1892 select BR2_PACKAGE_PHP_SAPI_FPM
Yann E. MORINc087cbe2016-10-24 18:46:00 +02001893 select BR2_LEGACY
Fabrice Fontainec4572132016-09-12 23:31:07 +02001894 help
1895 The PHP Interface options have been split up into a
1896 separate option for each interface.
1897
Arnout Vandecappelle35343992016-10-15 16:51:06 +02001898config BR2_PACKAGE_WVSTREAMS
1899 bool "wvstreams removed"
1900 select BR2_LEGACY
1901 help
1902 wvstreams is not maintained anymore since about 2009. It also
1903 doesn't build anymore with recent compilers (GCC 5+).
1904
Arnout Vandecappelle152d4b62016-10-15 16:51:05 +02001905config BR2_PACKAGE_WVDIAL
1906 bool "wvdial removed"
1907 select BR2_LEGACY
1908 help
1909 wvdial is not maintained anymore since about 2009. It also
1910 doesn't build anymore with recent compilers (GCC 5+).
1911
Arnout Vandecappelle79c82a32016-10-15 16:51:04 +02001912config BR2_PACKAGE_WEBKITGTK24
1913 bool "webkitgtk 2.4.x removed"
1914 select BR2_LEGACY
1915 help
1916 This legacy package only existed because some other packages
1917 depended on that specific version of webkitgtk. However, the
1918 other packages have been fixed. webkitgtk 2.4 is full of
1919 security issues so it needs to be removed.
1920
Arnout Vandecappelleea3a7ee2016-10-15 16:51:03 +02001921config BR2_PACKAGE_TORSMO
1922 bool "torsmo removed"
1923 select BR2_LEGACY
1924 help
1925 torsmo has been unmaintained for a long time, and nobody
1926 seems to be interested in it.
1927
Arnout Vandecappelle290166f2016-10-15 16:51:02 +02001928config BR2_PACKAGE_SSTRIP
1929 bool "sstrip removed"
1930 select BR2_LEGACY
1931 help
1932 sstrip is unmaintained and potentially harmful. It doesn't
1933 save so much compared to normal binutils strip, and there is
1934 a big risk of binaries that don't work. Use normal strip
1935 instead.
1936
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001937config BR2_KERNEL_HEADERS_4_3
1938 bool "kernel headers version 4.3.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001939 select BR2_LEGACY
1940 help
1941 Version 4.3.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001942 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001943
1944config BR2_KERNEL_HEADERS_4_2
1945 bool "kernel headers version 4.2.x are no longer supported"
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001946 select BR2_LEGACY
1947 help
1948 Version 4.2.x of the Linux kernel headers are no longer
Yann E. MORIN1b3c43f2018-10-04 22:00:29 +02001949 maintained upstream and are now removed.
Arnout Vandecappelle133466f2016-10-15 16:51:01 +02001950
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02001951config BR2_PACKAGE_KODI_ADDON_XVDR
1952 bool "kodi-addon-xvdr removed"
1953 select BR2_LEGACY
1954 help
1955 According to the github project page:
1956 https://github.com/pipelka/xbmc-addon-xvdr
1957 this package is discontinued.
1958
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001959config BR2_PACKAGE_IPKG
1960 bool "ipkg removed"
1961 select BR2_LEGACY
1962 help
1963 ipkg dates back to the early 2000s when Compaq started the
Ricardo Martincoskid6109172018-04-01 02:08:39 -03001964 handhelds.org project and it hasn't seen development since
1965 2006. Use opkg as a replacement.
Arnout Vandecappelle3b80ca82016-10-15 16:50:59 +02001966
Arnout Vandecappellea7c13c12016-10-15 16:50:58 +02001967config BR2_GCC_VERSION_4_7_X
1968 bool "gcc 4.7.x support removed"
1969 select BR2_LEGACY
1970 help
1971 Support for gcc version 4.7.x has been removed. The current
1972 default version (4.9.x or later) has been selected instead.
1973
Arnout Vandecappelled8878112016-10-15 16:50:57 +02001974config BR2_BINUTILS_VERSION_2_24_X
1975 bool "binutils version 2.24 support removed"
1976 select BR2_LEGACY
1977 help
1978 Support for binutils version 2.24 has been removed. The
1979 current default version (2.26 or later) has been selected
1980 instead.
1981
Gustavo Zacarias8c85a5f2016-09-24 14:28:36 -03001982config BR2_PACKAGE_WESTON_RPI
1983 bool "Weston propietary RPI support is gone"
1984 select BR2_LEGACY
1985 help
1986 Upstream decided the propietary (rpi-userland) weston composer
1987 support wasn't worth the effort so it was removed. Switch to
1988 the open VC4 support.
1989
Yann E. MORIN20b14462016-09-06 16:29:14 +02001990config BR2_LINUX_KERNEL_TOOL_CPUPOWER
1991 bool "linux-tool cpupower"
1992 depends on BR2_LINUX_KERNEL
1993 select BR2_LEGACY
1994 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
1995 help
1996 Linux tool cpupower option was renamed.
1997
1998config BR2_LINUX_KERNEL_TOOL_PERF
1999 bool "linux-tool perf"
2000 depends on BR2_LINUX_KERNEL
2001 select BR2_LEGACY
2002 select BR2_PACKAGE_LINUX_TOOLS_PERF
2003 help
2004 Linux tool perf option was renamed.
2005
2006config BR2_LINUX_KERNEL_TOOL_SELFTESTS
2007 bool "linux-tool selftests"
2008 depends on BR2_LINUX_KERNEL
2009 select BR2_LEGACY
2010 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
2011 help
2012 Linux tool selftests option was renamed.
2013
Thomas Petazzoni50332a52016-08-11 15:25:38 +02002014config BR2_GCC_VERSION_4_8_ARC
2015 bool "gcc arc option renamed"
2016 select BR2_LEGACY
2017 select BR2_GCC_VERSION_ARC
2018 help
2019 The option that selects the gcc version for the ARC
2020 architecture has been renamed to BR2_GCC_VERSION_ARC.
2021
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002022config BR2_KERNEL_HEADERS_4_0
2023 bool "kernel headers version 4.0.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002024 select BR2_LEGACY
2025 help
2026 Version 4.0.x of the Linux kernel headers have been deprecated
2027 for more than four buildroot releases and are now removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002028
2029config BR2_KERNEL_HEADERS_3_19
2030 bool "kernel headers version 3.19.x are no longer supported"
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002031 select BR2_LEGACY
2032 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002033 Version 3.19.x of the Linux kernel headers have been
2034 deprecated for more than four buildroot releases and are now
2035 removed.
Gustavo Zacarias3c590a32016-09-09 12:20:54 -03002036
Romain Naour0e517312016-09-02 22:31:32 +02002037config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
2038 bool "libevas-generic-loaders package removed"
2039 select BR2_LEGACY
2040 select BR2_PACKAGE_EFL
2041 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002042 With EFL 1.18, libevas-generic-loaders is now provided by the
2043 efl package.
Romain Naour0e517312016-09-02 22:31:32 +02002044
Romain Naourc22b7582016-09-02 22:31:31 +02002045config BR2_PACKAGE_ELEMENTARY
2046 bool "elementary package removed"
2047 select BR2_LEGACY
2048 select BR2_PACKAGE_EFL
2049 help
2050 With EFL 1.18, elementary is now provided by the efl package.
2051
Yann E. MORINe782cd52016-08-28 01:03:04 +02002052config BR2_LINUX_KERNEL_CUSTOM_LOCAL
2053 bool "Linux kernel local directory option removed"
2054 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002055 The option to select a local directory as the source of the
2056 Linux kernel has been removed. It hurts reproducibility of
2057 builds.
Yann E. MORINe782cd52016-08-28 01:03:04 +02002058
2059 In case you were using this option during development of your
2060 Linux kernel, use the override mechanism instead.
2061
2062###############################################################################
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002063comment "Legacy options removed in 2016.08"
2064
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002065config BR2_PACKAGE_EFL_JP2K
2066 bool "libevas jp2k loader has been removed"
2067 select BR2_LEGACY
Peter Korsgaard5354a752017-03-09 22:52:47 +01002068 help
Arnout Vandecappelleac191072017-03-08 00:50:54 +01002069 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
2070 while Buildroot only packages openjpeg 2.x. Therefore, the
2071 JP2K loader has been removed from EFL.
2072
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002073config BR2_PACKAGE_SYSTEMD_COMPAT
2074 bool "systemd compatibility libraries have been removed"
Yann E. MORINd246b982016-07-08 23:00:20 +02002075 select BR2_LEGACY
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002076 help
Maxime Hadjinlian17bccf12016-07-06 10:50:47 +02002077 The systemd option to enable the compatibility libraries has
Maxime Hadjinlian638cfb52016-07-02 15:59:12 +02002078 been removed. Theses libraries have been useless since a few
2079 version, and have been fully dropped from the source since
2080 v230.
2081
Marcin Nowakowski5baa92b2016-06-24 08:12:21 +02002082config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
2083 bool "gst1-plugins-bad liveadder plugin removed"
2084 select BR2_LEGACY
2085 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2086 help
2087 The functionality of the liveadder plugin of the
2088 gst1-plugins-bad package has been merged into audiomixer.
2089
Andrew Webster0f92b192016-06-10 14:13:29 -04002090config BR2_PACKAGE_LIBFSLVPUWRAP
2091 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
2092 select BR2_LEGACY
2093 select BR2_PACKAGE_IMX_VPUWRAP
2094 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002095 The libfslvpuwrap has been renamed to match the renamed
2096 package.
Andrew Webster0f92b192016-06-10 14:13:29 -04002097
Andrew Webster64998902016-06-10 14:13:18 -04002098config BR2_PACKAGE_LIBFSLPARSER
2099 bool "libfslparser has been renamed to imx-parser"
2100 select BR2_LEGACY
2101 select BR2_PACKAGE_IMX_PARSER
2102 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002103 The libfslparser has been renamed to match the renamed
2104 package.
Andrew Webster64998902016-06-10 14:13:18 -04002105
Andrew Webster47e62032016-06-10 14:13:05 -04002106config BR2_PACKAGE_LIBFSLCODEC
2107 bool "libfslcodec has been renamed to imx-codec"
2108 select BR2_LEGACY
2109 select BR2_PACKAGE_IMX_CODEC
2110 help
2111 The libfslcodec has been renamed to match the renamed package.
2112
Carlos Santosb5d99002016-06-03 16:35:39 -03002113config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
2114 bool "FIT support in uboot-tools has been refactored"
2115 select BR2_LEGACY
2116 select BR2_PACKAGE_DTC
2117 select BR2_PACKAGE_DTC_PROGRAMS
2118 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
2119 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
2120 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
2121 help
2122 This option has been removed in favor of a more fine-grained
2123 configuration, which is recommended. Selecting this option
2124 enables FIT and FIT signature support for the target packages.
2125 It will also select the dtc and openssl packages.
2126
Waldemar Brodkorbf253c142016-06-01 20:40:25 +02002127config BR2_PTHREADS_OLD
2128 bool "linuxthreads (stable/old)"
2129 select BR2_LEGACY
2130 help
2131 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
2132 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
2133
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002134config BR2_BINUTILS_VERSION_2_23_X
2135 bool "binutils 2.23 removed"
2136 select BR2_LEGACY
2137 help
2138 Binutils 2.23 has been removed, using a newer version is
2139 recommended.
2140
Thomas Petazzoni500de252016-05-17 00:13:00 +02002141config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
2142 bool "eglibc support has been removed"
2143 select BR2_LEGACY
2144 help
2145 The eglibc project no longer exists, as it has been merged
2146 back into the glibc project. Therefore, support for eglibc
2147 has been removed, and glibc should be used instead.
2148
Thomas Petazzoni20ed8972016-05-17 00:12:58 +02002149config BR2_GDB_VERSION_7_8
2150 bool "gdb 7.8 has been removed"
2151 select BR2_LEGACY
2152 help
2153 The 7.8 version of gdb has been removed. Use a newer version
2154 instead.
2155
2156###############################################################################
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002157comment "Legacy options removed in 2016.05"
Luca Ceresolif0c94702015-11-27 18:38:00 +01002158
Gustavo Zacarias3380da62016-05-14 10:33:47 -03002159config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
2160 bool "openvpn polarssl crypto backend removed"
2161 select BR2_LEGACY
2162 help
2163 The OpenVPN polarssl crypto backend option has been removed.
2164 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
2165 compatible with mbedtls (polarssl) series 2.x which is the
2166 version provided in buildroot. And both can't coexist.
2167 It now uses OpenSSL as the only option.
2168
Martin Bark4dfc2cb2016-05-03 10:36:54 +01002169config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
2170 bool "nginx http spdy module removed"
2171 select BR2_LEGACY
2172 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
2173 help
2174 The ngx_http_spdy_module has been superseded by the
2175 ngx_http_v2_module since nginx v1.9.5. The
2176 ngx_http_v2_module modules has been automatically selected
2177 in your configuration.
2178
Gustavo Zacarias0c956f22016-05-03 16:44:15 -03002179config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
2180 bool "gst1-plugins-bad rtp plugin moved to good"
2181 select BR2_LEGACY
2182 help
2183 The rtp plugin has been moved from gst1-plugins-base to
2184 gst1-plugins-good.
2185
Gustavo Zacarias4196cf92016-05-03 16:44:14 -03002186config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
2187 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
2188 select BR2_LEGACY
2189 help
2190 The mpg123 plugin has been moved from gst1-plugins-bad to
2191 gst1-plugins-ugly.
2192
Gustavo Zacarias8490e832016-04-29 10:18:56 -03002193config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
2194 bool "PowerPC Sourcery toolchain has been removed"
2195 select BR2_LEGACY
2196 help
2197 The Sourcery CodeBench toolchain for the PowerPC
2198 architecture has been removed, as it was very old, not
2199 maintained, and causing numerous build failures with modern
2200 userspace packages.
2201
2202config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
2203 bool "PowerPC Sourcery E500v2 toolchain has been removed"
2204 select BR2_LEGACY
2205 help
2206 The Sourcery CodeBench toolchain for the PowerPC E500v2
2207 architecture has been removed, as it was very old, not
2208 maintained, and causing numerous build failures with modern
2209 userspace packages.
2210
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002211config BR2_x86_i386
2212 bool "x86 i386 support removed"
Yann E. MORIN7aaa7302016-05-08 17:41:49 +02002213 select BR2_LEGACY
Thomas Petazzoni6cb48142016-04-17 23:31:34 +02002214 help
2215 The support for the i386 processors of the x86 architecture
2216 has been removed.
2217
Julien CORJONf75ee802016-03-17 10:42:25 +01002218config BR2_PACKAGE_QT5QUICK1
2219 bool "qt5quick1 package removed"
2220 select BR2_LEGACY
2221 help
2222 The qt5quick1 package has been removed, since it was removed
2223 from upstream starting from Qt 5.6.
2224
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002225config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
Danomi Manchegof61583f2016-12-19 22:10:12 -05002226 string "uboot custom patch dir has been removed"
Gustavo Zacarias21b25d22016-03-11 11:32:24 -03002227 help
2228 The uboot custom patch directory option has been removed. Use
2229 the improved BR2_TARGET_UBOOT_PATCH option instead.
2230
Danomi Manchegof61583f2016-12-19 22:10:12 -05002231config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
2232 bool
2233 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
2234 select BR2_LEGACY
2235
2236# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
2237# boot/uboot/Config.in
2238
Gustavo Zacariasf80ad2f2016-03-11 11:32:23 -03002239config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
2240 bool "xf86-input-void removed"
2241 select BR2_LEGACY
2242 help
2243 The xf86-input-void package has been removed, there's no need
2244 for it in any modern (post-2007) xorg server.
2245
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002246config BR2_KERNEL_HEADERS_3_17
2247 bool "kernel headers version 3.17.x are no longer supported"
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002248 select BR2_LEGACY
2249 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002250 Version 3.17.x of the Linux kernel headers have been
2251 deprecated for more than four buildroot releases and are now
2252 removed.
Gustavo Zacariasb8de1782016-03-11 11:32:22 -03002253
Gustavo Zacariasffc324e2016-03-11 11:32:21 -03002254config BR2_GDB_VERSION_7_7
2255 bool "gdb 7.7 has been removed"
2256 select BR2_LEGACY
2257 help
2258 The 7.7 version of gdb has been removed. Use a newer version
2259 instead.
2260
Gustavo Zacarias75945dd2016-03-11 11:32:20 -03002261config BR2_PACKAGE_FOOMATIC_FILTERS
2262 bool "foomatic-filters"
2263 select BR2_LEGACY
2264 help
2265 The foomatic-filters package was removed.
2266
Gustavo Zacarias7bd9dbc2016-03-11 11:32:19 -03002267config BR2_PACKAGE_SAMBA
2268 bool "samba"
2269 select BR2_LEGACY
2270 help
2271 The samba package was removed in favour of samba4 since the
2272 3.x series isn't supported by upstream any longer.
2273
Bernd Kuhls6922b412016-02-20 23:09:11 +01002274config BR2_PACKAGE_KODI_WAVPACK
2275 bool "wavpack"
2276 select BR2_LEGACY
2277 help
2278 wavpack support was removed in favour of ffmpeg:
2279 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
2280
Bernd Kuhls75ce17d2016-02-20 23:09:07 +01002281config BR2_PACKAGE_KODI_RSXS
2282 bool "rsxs support in Kodi was moved to an addon"
2283 select BR2_LEGACY
2284 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
2285 help
2286 rsxs support in Kodi was moved to an addon
2287
Bernd Kuhls56b80ec2016-02-20 23:09:06 +01002288config BR2_PACKAGE_KODI_GOOM
2289 bool "Goom support in Kodi was moved to an addon"
2290 select BR2_LEGACY
2291 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
2292 help
2293 Goom support in Kodi was moved to an addon
2294
Gabe Evanse5a073a2016-02-25 21:55:11 +00002295config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
2296 bool "systemd all extras option has been removed"
2297 select BR2_LEGACY
2298 select BR2_PACKAGE_XZ
2299 select BR2_PACKAGE_LIBGCRYPT
2300 help
2301 The systemd option to enable "all extras" has been
2302 removed. To get the same features, the libgcrypt and xz
2303 package should now be enabled.
2304
Gustavo Zacarias8c0a3672016-02-24 17:25:50 -03002305config BR2_GCC_VERSION_4_5_X
2306 bool "gcc 4.5.x has been removed"
2307 select BR2_LEGACY
2308 help
2309 The 4.5.x version of gcc has been removed. Use a newer
2310 version instead.
2311
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002312config BR2_PACKAGE_SQLITE_READLINE
Danomi Manchego62da71c2016-12-19 22:12:32 -05002313 bool "sqlite command-line editing support was updated"
Bernd Kuhls007c2ce2016-02-08 20:56:41 +01002314 select BR2_PACKAGE_NCURSES
2315 select BR2_PACKAGE_READLINE
2316 select BR2_LEGACY
2317 help
2318 This option was removed in favour of the sqlite package
2319 deciding itself depending on the enabled packages whether
2320 command-line editing should be enabled, it also also takes
2321 libedit into account.
2322
Thomas Petazzoni2661c4f2016-02-29 23:11:38 +01002323###############################################################################
Luca Ceresolif0c94702015-11-27 18:38:00 +01002324comment "Legacy options removed in 2016.02"
2325
Bernd Kuhlsf39ac4d2016-02-10 21:58:17 +01002326config BR2_PACKAGE_DOVECOT_BZIP2
2327 bool "bzip2 support option has been removed"
2328 select BR2_LEGACY
2329 select BR2_PACKAGE_BZIP2
2330 help
2331 Bzip2 support is built if the bzip2 package is selected.
2332
2333config BR2_PACKAGE_DOVECOT_ZLIB
2334 bool "zlib support option has been removed"
2335 select BR2_LEGACY
2336 select BR2_PACKAGE_ZLIB
2337 help
2338 Zlib support is built if the zlib package is selected.
2339
James Knightead1df42016-02-12 11:40:05 -05002340config BR2_PACKAGE_E2FSPROGS_FINDFS
2341 bool "e2fsprogs findfs option has been removed"
2342 select BR2_LEGACY
2343 help
2344 This option attempted to enable findfs capabilities from
2345 e2fsprogs but has not worked since July 2015 (due to
2346 packaging changes). One can use BusyBox's findfs support or
Phil Eichinger860020f2016-12-01 15:45:33 +01002347 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
James Knightead1df42016-02-12 11:40:05 -05002348
Romain Naourb1063a02016-02-07 17:56:56 +01002349config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
2350 bool "openpowerlink debug option has been removed"
2351 select BR2_LEGACY
2352 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002353 This option depends on BR2_ENABLE_DEBUG which should not be
2354 used by packages anymore.
Romain Naourb1063a02016-02-07 17:56:56 +01002355
2356config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
2357 bool "openpowerlink package has been updated"
2358 select BR2_LEGACY
2359 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
2360 help
2361 openpowerlink kernel modules are built if the
2362 kernel stack library is selected.
2363
2364config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
2365 bool "openpowerlink package has been updated"
2366 select BR2_LEGACY
2367 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
2368 help
2369 The user space support has been split in two part:
2370 - a monolitic user space library
2371 - a user spae deamon driver
2372
Yann E. MORINe3e05832016-02-06 00:06:17 +01002373config BR2_LINUX_KERNEL_SAME_AS_HEADERS
2374 bool "using the linux headers version for the kernel has been removed"
2375 select BR2_LEGACY
2376 help
2377 The option to use the version of the kernel headers for the
2378 kernel to build has been removed.
2379
2380 There is now the converse, better-suited and more versatile
2381 option to use the kernel version for the linux headers.
2382
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002383config BR2_PACKAGE_CUPS_PDFTOPS
2384 bool "Pdftops support has been removed from Cups"
Olivier Schonken917de0f2017-10-23 15:26:11 +02002385 select BR2_PACKAGE_CUPS_FILTERS
Olivier Schonkend37ce8e2016-01-21 00:17:43 +02002386 select BR2_LEGACY
2387 help
2388 Pdftops support has been removed from the cups package
2389 It is now part of the cups-filters package.
2390
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002391config BR2_KERNEL_HEADERS_3_16
2392 bool "kernel headers version 3.16.x are no longer supported"
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002393 select BR2_LEGACY
2394 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002395 Version 3.16.x of the Linux kernel headers have been
2396 deprecated for more than four buildroot releases and are now
2397 removed.
Gustavo Zacariasd8da5f12016-01-20 13:53:39 -03002398
Yegor Yefremovaf45a4f2015-12-19 21:42:53 +01002399config BR2_PACKAGE_PYTHON_PYXML
2400 bool "python-pyxml package has been removed"
2401 select BR2_LEGACY
2402 help
2403 PyXML is obsolete and its functionality is covered either via
2404 native Python XML support or python-lxml package.
2405
Steven Noonand29c7192015-12-27 12:07:31 +01002406# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
2407config BR2_ENABLE_SSP
2408 bool "Stack Smashing protection now has different levels"
2409 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002410 The protection offered by SSP can now be selected from
2411 different protection levels. Be sure to review the SSP level
2412 in the build options menu.
Steven Noonand29c7192015-12-27 12:07:31 +01002413
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002414config BR2_PACKAGE_DIRECTFB_CLE266
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002415 bool "cle266 driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002416 select BR2_LEGACY
2417 help
2418 The cle266 directfb driver support has been removed.
2419 It doesn't build in the latest version and it's unlikely
2420 anyone has any use for it.
2421
2422config BR2_PACKAGE_DIRECTFB_UNICHROME
Gustavo Zacariase989ddb2015-12-21 19:11:08 -03002423 bool "unichrome driver for directfb removed"
Gustavo Zacarias1e3d2ca2015-12-20 09:44:37 -03002424 select BR2_LEGACY
2425 help
2426 The unichrome directfb driver support has been removed.
2427 It doesn't build in the latest version and it's unlikely
2428 anyone has any use for it.
2429
Romain Naour820e1682015-12-19 17:39:14 +01002430config BR2_PACKAGE_LIBELEMENTARY
2431 bool "libelementary has been renamed to elementary"
2432 select BR2_LEGACY
2433 select BR2_PACKAGE_ELEMENTARY
2434 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002435 The libelementary package has been renamed to match the
2436 upstream name.
Romain Naour820e1682015-12-19 17:39:14 +01002437
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002438config BR2_PACKAGE_LIBEINA
2439 bool "libeina package has been removed"
2440 select BR2_LEGACY
2441 select BR2_PACKAGE_EFL
2442 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002443 With EFL 1.15, libeina is now provided by the efl package.
Romain Naoura9d1f5f2015-12-15 23:40:38 +01002444
Romain Naour49700f02015-12-15 23:40:37 +01002445config BR2_PACKAGE_LIBEET
2446 bool "libeet package has been removed"
2447 select BR2_LEGACY
2448 select BR2_PACKAGE_EFL
2449 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002450 With EFL 1.15, libeet is now provided by the efl package.
Romain Naour49700f02015-12-15 23:40:37 +01002451
Romain Naoure5989d62015-12-15 23:40:36 +01002452config BR2_PACKAGE_LIBEVAS
2453 bool "libevas package has been removed"
2454 select BR2_LEGACY
2455 select BR2_PACKAGE_EFL
2456 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002457 With EFL 1.15, libevas is now provided by the efl package.
Romain Naoure5989d62015-12-15 23:40:36 +01002458
Romain Naour1fe1b602015-12-15 23:40:35 +01002459config BR2_PACKAGE_LIBECORE
2460 bool "libecore package has been removed"
2461 select BR2_LEGACY
2462 select BR2_PACKAGE_EFL
2463 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002464 With EFL 1.15, libecore is now provided by the efl package.
Romain Naour1fe1b602015-12-15 23:40:35 +01002465
Romain Naour8c05c382015-12-15 23:40:34 +01002466config BR2_PACKAGE_LIBEDBUS
2467 bool "libedbus package has been removed"
2468 select BR2_LEGACY
2469 select BR2_PACKAGE_EFL
2470 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002471 With EFL 1.15, libedbus is now provided by the efl package.
Romain Naour8c05c382015-12-15 23:40:34 +01002472
Romain Naourd2b042c2015-12-15 23:40:33 +01002473config BR2_PACKAGE_LIBEFREET
2474 bool "libefreet package has been removed"
2475 select BR2_LEGACY
2476 select BR2_PACKAGE_EFL
2477 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002478 With EFL 1.15, libefreet is now provided by the efl package.
Romain Naourd2b042c2015-12-15 23:40:33 +01002479
Romain Naoure155c952015-12-15 23:40:32 +01002480config BR2_PACKAGE_LIBEIO
2481 bool "libeio package has been removed"
2482 select BR2_LEGACY
2483 select BR2_PACKAGE_EFL
2484 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002485 With EFL 1.15, libeio is now provided by the efl package.
Romain Naoure155c952015-12-15 23:40:32 +01002486
Romain Naourb728fb72015-12-15 23:40:31 +01002487config BR2_PACKAGE_LIBEMBRYO
2488 bool "libembryo package has been removed"
2489 select BR2_LEGACY
2490 select BR2_PACKAGE_EFL
2491 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002492 With EFL 1.15, libembryo is now provided by the efl package.
Romain Naourb728fb72015-12-15 23:40:31 +01002493
Romain Naour4c93c102015-12-15 23:40:30 +01002494config BR2_PACKAGE_LIBEDJE
2495 bool "libedje package has been removed"
2496 select BR2_LEGACY
2497 select BR2_PACKAGE_EFL
2498 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002499 With EFL 1.15, libedje is now provided by the efl package.
Romain Naour4c93c102015-12-15 23:40:30 +01002500
Romain Naour905dba12015-12-15 23:40:29 +01002501config BR2_PACKAGE_LIBETHUMB
2502 bool "libethumb package has been removed"
2503 select BR2_LEGACY
2504 select BR2_PACKAGE_EFL
2505 help
Romain Naour1f83a7a2015-12-19 17:39:16 +01002506 With EFL 1.15, libethumb is now provided by the efl package.
Romain Naour905dba12015-12-15 23:40:29 +01002507
Luca Ceresolif0c94702015-11-27 18:38:00 +01002508config BR2_PACKAGE_INFOZIP
2509 bool "infozip option has been renamed to zip"
2510 select BR2_LEGACY
2511 select BR2_PACKAGE_ZIP
2512 help
2513 Info-Zip's Zip package has been renamed from infozip to zip,
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002514 to avoid ambiguities with Info-Zip's UnZip which has been
2515 added in the unzip package.
Luca Ceresolif0c94702015-11-27 18:38:00 +01002516
Martin Barka2d16602015-12-23 12:16:04 +00002517config BR2_BR2_PACKAGE_NODEJS_0_10_X
Martin Bark75b70492016-01-30 14:51:00 +00002518 bool "nodejs 0.10.x option removed"
Martin Barka2d16602015-12-23 12:16:04 +00002519 select BR2_LEGACY
2520 select BR2_PACKAGE_NODEJS
2521 help
Martin Bark75b70492016-01-30 14:51:00 +00002522 nodejs 0.10.x option has been removed. 0.10.x is now
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002523 automatically chosen for ARMv5 architectures only and the
2524 latest nodejs for all other supported architectures. The
2525 correct nodejs version has been automatically selected in your
2526 configuration.
Martin Barka2d16602015-12-23 12:16:04 +00002527
Martin Barka314b872015-12-23 12:16:03 +00002528config BR2_BR2_PACKAGE_NODEJS_0_12_X
2529 bool "nodejs version 0.12.x has been removed"
2530 select BR2_LEGACY
2531 select BR2_PACKAGE_NODEJS
2532 help
2533 nodejs version 0.12.x has been removed. As an alternative,
2534 the latest nodejs version has been automatically selected in
2535 your configuration.
2536
Martin Bark90bf67c2015-12-23 12:16:02 +00002537config BR2_BR2_PACKAGE_NODEJS_4_X
2538 bool "nodejs version 4.x has been removed"
2539 select BR2_LEGACY
2540 select BR2_PACKAGE_NODEJS
2541 help
2542 nodejs version 4.x has been removed. As an alternative,
2543 the latest nodejs version has been automatically selected in
2544 your configuration.
2545
Luca Ceresolif0c94702015-11-27 18:38:00 +01002546###############################################################################
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002547comment "Legacy options removed in 2015.11"
2548
Peter Seiderer301e8ff2015-10-15 21:42:43 +02002549config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
2550 bool "gst1-plugins-bad real plugin has been removed"
2551 select BR2_LEGACY
2552 help
2553 The real plugin from GStreamer 1 bad plugins has been
2554 removed.
2555
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002556config BR2_PACKAGE_MEDIA_CTL
2557 bool "media-ctl package has been removed"
2558 select BR2_LEGACY
2559 select BR2_PACKAGE_LIBV4L
2560 select BR2_PACKAGE_LIBV4L_UTILS
2561 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002562 media-ctl source and developement have been moved to v4l-utils
2563 since June 2014. For an up-to-date media-ctl version select
2564 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
Peter Seidererf7dd5cb2015-10-07 23:56:48 +02002565
Romain Naourf8031332015-10-03 18:35:05 +02002566config BR2_PACKAGE_SCHIFRA
2567 bool "schifra package has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002568 select BR2_LEGACY
Romain Naourf8031332015-10-03 18:35:05 +02002569 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002570 Schifra package has been maked broken since 2014.11 release
2571 and haven't been fixed since then.
Romain Naourf8031332015-10-03 18:35:05 +02002572
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002573config BR2_PACKAGE_ZXING
2574 bool "zxing option has been renamed"
2575 select BR2_LEGACY
2576 select BR2_PACKAGE_ZXING_CPP
2577 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002578 ZXing no longer provides the cpp bindings, it has been renamed
2579 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
Maxime Hadjinlian7e5ddbc2015-07-26 22:38:27 +02002580
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002581# Since FreeRDP has new dependencies, protect this legacy to avoid the
2582# infamous "unmet direct dependencies" kconfig error.
2583config BR2_PACKAGE_FREERDP_CLIENT
2584 bool "freerdp client option renamed"
2585 depends on BR2_PACKAGE_FREERDP
Peter Seiderer758c5c72015-10-07 23:56:49 +02002586 select BR2_LEGACY
Yann E. MORIN4d131b42015-09-06 21:54:21 +02002587 select BR2_PACKAGE_FREERDP_CLIENT_X11
2588
Gustavo Zacariasa658c4d2015-09-01 15:45:32 -03002589config BR2_PACKAGE_BLACKBOX
2590 bool "blackbox package has been removed"
2591 select BR2_LEGACY
2592 help
2593 Upstream is dead and the package has been deprecated for
2594 some time. There are other alternative maintained WMs.
2595
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002596config BR2_KERNEL_HEADERS_3_0
2597 bool "kernel headers version 3.0.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002598 select BR2_LEGACY
2599 help
2600 Version 3.0.x of the Linux kernel headers have been deprecated
2601 for more than four buildroot releases and are now removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002602
2603config BR2_KERNEL_HEADERS_3_11
2604 bool "kernel headers version 3.11.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002605 select BR2_LEGACY
2606 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002607 Version 3.11.x of the Linux kernel headers have been
2608 deprecated for more than four buildroot releases and are now
2609 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002610
2611config BR2_KERNEL_HEADERS_3_13
2612 bool "kernel headers version 3.13.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002613 select BR2_LEGACY
2614 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002615 Version 3.13.x of the Linux kernel headers have been
2616 deprecated for more than four buildroot releases and are now
2617 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002618
2619config BR2_KERNEL_HEADERS_3_15
2620 bool "kernel headers version 3.15.x are no longer supported"
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002621 select BR2_LEGACY
2622 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03002623 Version 3.15.x of the Linux kernel headers have been
2624 deprecated for more than four buildroot releases and are now
2625 removed.
Gustavo Zacarias4ac4bc32015-09-01 15:45:31 -03002626
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002627config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
2628 bool "DirectFB example df_andi has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002629 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002630 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2631 help
2632 The per-DirectFB example options have been removed. The
2633 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2634 examples.
2635
2636config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
2637 bool "DirectFB example df_bltload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002638 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002639 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2640 help
2641 The per-DirectFB example options have been removed. The
2642 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2643 examples.
2644
2645config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
2646 bool "DirectFB example df_cpuload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002647 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002648 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2649 help
2650 The per-DirectFB example options have been removed. The
2651 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2652 examples.
2653
2654config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
2655 bool "DirectFB example df_databuffer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002656 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002657 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2658 help
2659 The per-DirectFB example options have been removed. The
2660 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2661 examples.
2662
2663config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
2664 bool "DirectFB example df_dioload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002665 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002666 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2667 help
2668 The per-DirectFB example options have been removed. The
2669 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2670 examples.
2671
2672config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
2673 bool "DirectFB example df_dok has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002674 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002675 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2676 help
2677 The per-DirectFB example options have been removed. The
2678 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2679 examples.
2680
2681config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
2682 bool "DirectFB example df_drivertest has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002683 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002684 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2685 help
2686 The per-DirectFB example options have been removed. The
2687 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2688 examples.
2689
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002690config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
2691 bool "DirectFB example df_fire has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002692 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002693 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2694 help
2695 The per-DirectFB example options have been removed. The
2696 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2697 examples.
2698
2699config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
2700 bool "DirectFB example df_flip has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002701 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002702 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2703 help
2704 The per-DirectFB example options have been removed. The
2705 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2706 examples.
2707
2708config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
2709 bool "DirectFB example df_fonts has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002710 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002711 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2712 help
2713 The per-DirectFB example options have been removed. The
2714 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2715 examples.
2716
2717config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
2718 bool "DirectFB example df_input has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002719 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002720 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2721 help
2722 The per-DirectFB example options have been removed. The
2723 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2724 examples.
2725
2726config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
2727 bool "DirectFB example df_joystick has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002728 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002729 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2730 help
2731 The per-DirectFB example options have been removed. The
2732 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2733 examples.
2734
2735config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
2736 bool "DirectFB example df_knuckles has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002737 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002738 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2739 help
2740 The per-DirectFB example options have been removed. The
2741 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2742 examples.
2743
2744config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
2745 bool "DirectFB example df_layer has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002746 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002747 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2748 help
2749 The per-DirectFB example options have been removed. The
2750 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2751 examples.
2752
2753config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
2754 bool "DirectFB example df_matrix has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002755 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002756 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2757 help
2758 The per-DirectFB example options have been removed. The
2759 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2760 examples.
2761
2762config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
2763 bool "DirectFB example df_matrix_water has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002764 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002765 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2766 help
2767 The per-DirectFB example options have been removed. The
2768 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2769 examples.
2770
2771config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
2772 bool "DirectFB example df_neo has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002773 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002774 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2775 help
2776 The per-DirectFB example options have been removed. The
2777 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2778 examples.
2779
2780config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
2781 bool "DirectFB example df_netload has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002782 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002783 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2784 help
2785 The per-DirectFB example options have been removed. The
2786 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2787 examples.
2788
2789config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
2790 bool "DirectFB example df_palette has been removed"
2791 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2792 help
2793 The per-DirectFB example options have been removed. The
2794 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2795 examples.
2796
2797config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
2798 bool "DirectFB example df_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002799 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002800 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2801 help
2802 The per-DirectFB example options have been removed. The
2803 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2804 examples.
2805
2806config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
2807 bool "DirectFB example df_porter has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002808 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002809 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2810 help
2811 The per-DirectFB example options have been removed. The
2812 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2813 examples.
2814
2815config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
2816 bool "DirectFB example df_stress has been removed"
2817 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2818 help
2819 The per-DirectFB example options have been removed. The
2820 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2821 examples.
2822
2823config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
2824 bool "DirectFB example df_texture has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002825 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002826 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2827 help
2828 The per-DirectFB example options have been removed. The
2829 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2830 examples.
2831
2832config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
2833 bool "DirectFB example df_video has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002834 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002835 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2836 help
2837 The per-DirectFB example options have been removed. The
2838 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2839 examples.
2840
2841config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
2842 bool "DirectFB example df_video_particle has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002843 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002844 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2845 help
2846 The per-DirectFB example options have been removed. The
2847 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2848 examples.
2849
2850config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
2851 bool "DirectFB example df_window has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02002852 select BR2_LEGACY
Thomas Petazzoni80404e82015-09-02 00:01:14 +02002853 select BR2_PACKAGE_DIRECTFB_EXAMPLES
2854 help
2855 The per-DirectFB example options have been removed. The
2856 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
2857 examples.
2858
Gary Bisson2b78fb22015-09-23 15:39:27 +02002859config BR2_PACKAGE_KOBS_NG
2860 bool "kobs-ng was replaced by imx-kobs"
2861 select BR2_LEGACY
2862 select BR2_PACKAGE_IMX_KOBS
2863 help
2864 The outdated kobs-ng has been replaced by the Freescale-
2865 maintained imx-kobs package.
2866
Thomas Petazzoni11573f52015-09-02 00:01:11 +02002867config BR2_PACKAGE_SAWMAN
2868 bool "sawman package removed"
2869 select BR2_LEGACY
2870 select BR2_PACKAGE_DIRECTFB_SAWMAN
2871 help
2872 This option has been removed because the sawman package no
2873 longer exists: it was merged inside DirectFB itself. This
2874 feature can now be enabled using the
2875 BR2_PACKAGE_DIRECTFB_SAWMAN option.
2876
Thomas Petazzoniae46e8f2015-09-02 00:01:10 +02002877config BR2_PACKAGE_DIVINE
2878 bool "divine package removed"
2879 select BR2_LEGACY
2880 select BR2_PACKAGE_DIRECTFB_DIVINE
2881 help
2882 This option has been removed because the divine package no
2883 longer exists: it was merged inside DirectFB itself. This
2884 feature can now be enabled using the
2885 BR2_PACKAGE_DIRECTFB_DIVINE option.
2886
2887###############################################################################
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002888comment "Legacy options removed in 2015.08"
2889
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002890config BR2_PACKAGE_KODI_PVR_ADDONS
2891 bool "Kodi PVR addon was split"
2892 select BR2_LEGACY
Bernd Kuhls2579ec22015-07-22 22:30:36 +02002893 select BR2_PACKAGE_KODI_PVR_ARGUSTV
Bernd Kuhlsa69eca42015-07-22 22:30:37 +02002894 select BR2_PACKAGE_KODI_PVR_DVBLINK
Bernd Kuhls6894c6c2015-07-22 22:30:38 +02002895 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
Bernd Kuhls313e45c2015-07-22 22:30:39 +02002896 select BR2_PACKAGE_KODI_PVR_FILMON
Bernd Kuhls6940d662015-07-22 22:30:40 +02002897 select BR2_PACKAGE_KODI_PVR_HTS
Bernd Kuhls8c326ff2015-07-22 22:30:41 +02002898 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
Bernd Kuhlsa5712872015-07-22 22:30:42 +02002899 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
Bernd Kuhlsafb2f152015-07-22 22:30:43 +02002900 select BR2_PACKAGE_KODI_PVR_MYTHTV
Bernd Kuhls0757c7d2015-07-22 22:30:44 +02002901 select BR2_PACKAGE_KODI_PVR_NEXTPVR
Bernd Kuhls805e9c12015-07-22 22:30:45 +02002902 select BR2_PACKAGE_KODI_PVR_NJOY
Bernd Kuhls87760032015-07-22 22:30:46 +02002903 select BR2_PACKAGE_KODI_PVR_PCTV
Bernd Kuhls70cf9492015-07-22 22:30:47 +02002904 select BR2_PACKAGE_KODI_PVR_STALKER
Bernd Kuhls610a3702015-07-22 22:30:48 +02002905 select BR2_PACKAGE_KODI_PVR_VBOX
Bernd Kuhls7457d482015-07-22 22:30:49 +02002906 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
Bernd Kuhlseaf250c2015-07-22 22:30:50 +02002907 select BR2_PACKAGE_KODI_PVR_VUPLUS
Bernd Kuhls967a4e92015-07-22 22:30:51 +02002908 select BR2_PACKAGE_KODI_PVR_WMC
Bernd Kuhls9d9f1a92015-07-22 22:30:34 +02002909 help
2910 Kodi PVR addon was split into seperate modules
2911
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002912config BR2_BINUTILS_VERSION_2_23_2
2913 bool "binutils 2.23 option renamed"
2914 select BR2_LEGACY
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002915 help
Thomas Petazzoniae466a62016-05-17 00:13:01 +02002916 Binutils 2.23.2 has been removed, using a newer version is
2917 recommended.
Gustavo Zacariasf84cc202015-07-28 10:48:21 -03002918
2919config BR2_BINUTILS_VERSION_2_24
2920 bool "binutils 2.24 option renamed"
2921 select BR2_LEGACY
2922 select BR2_BINUTILS_VERSION_2_24_X
2923 help
2924 The binutils version option has been renamed to match the
2925 same patchlevel logic used by gcc. The new option is now
2926 BR2_BINUTILS_VERSION_2_24_X.
2927
2928config BR2_BINUTILS_VERSION_2_25
2929 bool "binutils 2.25 option renamed"
2930 select BR2_LEGACY
2931 select BR2_BINUTILS_VERSION_2_25_X
2932 help
2933 The binutils version option has been renamed to match the
2934 same patchlevel logic used by gcc. The new option is now
2935 BR2_BINUTILS_VERSION_2_25_X.
2936
Romain Naour1326e762015-07-14 19:35:14 +02002937config BR2_PACKAGE_PERF
2938 bool "perf option has been renamed"
2939 select BR2_LEGACY
2940 select BR2_LINUX_KERNEL_TOOL_PERF
2941 help
2942 The perf package has been moved as a Linux tools package,
2943 and the option to enable it is now
2944 BR2_LINUX_KERNEL_TOOL_PERF.
2945
Thomas Petazzoni2f845952015-07-11 14:52:53 +02002946config BR2_BINUTILS_VERSION_2_22
2947 bool "binutils 2.22 removed"
2948 select BR2_LEGACY
2949 help
2950 Binutils 2.22 has been removed, using a newer version is
2951 recommended.
2952
Gary Bisson4c0613e2015-05-26 10:19:37 +02002953config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
2954 bool "gpu-viv-bin-mx6q"
2955 select BR2_LEGACY
2956 select BR2_PACKAGE_IMX_GPU_VIV
2957 help
2958 Vivante graphics libraries have been renamed to
2959 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
2960 name.
2961
Matt Weber7742abe2015-06-02 08:28:35 -05002962config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
Matt Weber7742abe2015-06-02 08:28:35 -05002963 bool "libsemanage python bindings removed"
Ricardo Martincoskia1264442018-04-01 02:08:33 -03002964 depends on BR2_PACKAGE_PYTHON
Peter Seiderer758c5c72015-10-07 23:56:49 +02002965 select BR2_LEGACY
Matt Weber7742abe2015-06-02 08:28:35 -05002966 help
2967 This option has been removed, since the libsemanage Python
2968 bindings on the target were not useful.
2969
Gustavo Zacarias16b8e812015-06-02 14:52:12 -03002970config BR2_TARGET_UBOOT_NETWORK
2971 bool "U-Boot custom network settings removed"
2972 select BR2_LEGACY
2973 help
2974 U-Boot's custom network settings options have been removed.
2975
2976###############################################################################
Mike Williamsfd0e5f62015-03-06 12:17:45 -05002977comment "Legacy options removed in 2015.05"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01002978
Michał Leśniewskie3904a82015-05-19 20:26:30 +02002979config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
2980 bool "jffs2 16kB erasesize NAND flash option renamed"
2981 select BR2_LEGACY
2982 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
2983 help
2984 The JFFS2 NAND flash options now longer include the page
2985 size.
2986
2987config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
2988 bool "jffs2 128kB erasesize NAND flash option renamed"
2989 select BR2_LEGACY
2990 select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
2991 help
2992 The JFFS2 NAND flash options now longer include the page
2993 size.
2994
Angelo Compagnuccieff7c142015-04-30 16:03:15 +02002995config BR2_PACKAGE_MONO_20
2996 bool "2.0/3.5 .Net Runtime"
2997 select BR2_LEGACY
2998 help
2999 This option no longer exists, all versions of the .Net
3000 runtime are now installed.
3001
3002config BR2_PACKAGE_MONO_40
3003 bool "4.0 .Net Runtime"
3004 select BR2_LEGACY
3005 help
3006 This option no longer exists, all versions of the .Net
3007 runtime are now installed.
3008
3009config BR2_PACKAGE_MONO_45
3010 bool "4.5 .Net Runtime"
3011 select BR2_LEGACY
3012 help
3013 This option no longer exists, all versions of the .Net
3014 runtime are now installed.
3015
Peter Korsgaardefd49e32015-04-27 22:29:05 +02003016config BR2_CIVETWEB_WITH_LUA
3017 bool "civetweb lua option renamed"
3018 select BR2_LEGACY
3019 select BR2_PACKAGE_CIVETWEB_WITH_LUA
3020 help
3021 civetweb's lua option has been renamed to
3022 BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
3023 packages name options.
3024
Bernd Kuhlse6c7ad12015-04-23 23:18:16 +02003025config BR2_PACKAGE_TIFF_TIFF2PDF
3026 bool "tiff utility-specific option removed"
3027 select BR2_LEGACY
3028 select BR2_PACKAGE_TIFF_UTILITIES
3029 help
3030 utility-specific options have been removed in favour of
3031 the new option BR2_PACKAGE_TIFF_UTILITIES.
3032
3033config BR2_PACKAGE_TIFF_TIFFCP
3034 bool "tiff utility-specific option removed"
3035 select BR2_LEGACY
3036 select BR2_PACKAGE_TIFF_UTILITIES
3037 help
3038 utility-specific options have been removed in favour of
3039 the new option BR2_PACKAGE_TIFF_UTILITIES.
3040
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003041config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
3042 bool "RTAI patch file path has been removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003043 select BR2_LEGACY
Thomas Petazzonie7035d42015-04-21 23:36:28 +02003044 help
3045 This option has never worked, so it has been removed.
3046
Yann E. MORIN02917962015-03-24 19:54:15 +01003047config BR2_TARGET_GENERIC_PASSWD_DES
3048 bool "Encoding passwords with DES has been removed"
3049 select BR2_LEGACY
3050 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003051 Paswords can now only be encoded with either of md5, sha256 or
3052 sha512. The default is md5, which is stronger that DES (but
3053 still pretty weak).
Yann E. MORIN02917962015-03-24 19:54:15 +01003054
Gustavo Zacarias0d31b5e2015-04-01 05:56:24 -03003055config BR2_PACKAGE_GTK2_THEME_HICOLOR
3056 bool "hicolor (default theme) is a duplicate"
3057 select BR2_LEGACY
3058 select BR2_PACKAGE_HICOLOR_ICON_THEME
3059 help
3060 The option was just a duplicate of hicolor icon theme.
3061
Mike Williamsfd0e5f62015-03-06 12:17:45 -05003062config BR2_PACKAGE_VALGRIND_PTRCHECK
3063 bool "valgrind's PTRCheck was renamed to SGCheck"
3064 select BR2_LEGACY
3065 select BR2_PACKAGE_VALGRIND_SGCHECK
3066 help
3067 PTRCheck was renamed to SGCheck in valgrind
3068
3069###############################################################################
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003070comment "Legacy options removed in 2015.02"
3071
Pedro Aguilar10900c02015-02-27 06:38:07 +02003072config BR2_PACKAGE_LIBGC
3073 bool "libgc package removed"
3074 select BR2_LEGACY
3075 select BR2_PACKAGE_BDWGC
3076 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003077 libgc has been removed because we have the same package under
3078 a different name, bdwgc.
Pedro Aguilar10900c02015-02-27 06:38:07 +02003079
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003080config BR2_PACKAGE_WDCTL
3081 bool "util-linux' wdctl option has been renamed"
3082 select BR2_LEGACY
3083 select BR2_PACKAGE_UTIL_LINUX_WDCTL
3084 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003085 util-linux' wdctl option has been renamed to
3086 BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
3087 options are named.
Yann E. MORIN8d702ac2015-02-07 23:10:14 +01003088
Danomi Manchegoe44edb82015-07-13 22:57:06 -04003089config BR2_PACKAGE_UTIL_LINUX_ARCH
3090 bool "util-linux' arch option has been removed"
3091 select BR2_LEGACY
3092 help
3093 util-linux' arch was dropped in util-linux 2.23, in favor of
3094 the coreutils version.
3095
3096config BR2_PACKAGE_UTIL_LINUX_DDATE
3097 bool "util-linux' ddate option has been removed"
3098 select BR2_LEGACY
3099 help
3100 util-linux' ddate was dropped in util-linux 2.23.
3101
Romain Naour3c476542015-01-18 20:53:08 +01003102config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
3103 bool "rpm's bzip2 payloads option has been removed"
3104 select BR2_LEGACY
3105 select BR2_PACKAGE_BZIP2
3106 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003107 The bzip2 payloads option rely entirely on the dependant
3108 package bzip2. So, you need to select it to enable this
3109 feature.
Romain Naour3c476542015-01-18 20:53:08 +01003110
3111config BR2_PACKAGE_RPM_XZ_PAYLOADS
3112 bool "rpm's xz payloads option has been removed"
3113 select BR2_LEGACY
3114 select BR2_PACKAGE_XZ
3115 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003116 The xz payloads option rely entirely on the dependant package
3117 xz. So, you need to select it to enable this feature.
Romain Naour3c476542015-01-18 20:53:08 +01003118
Gustavo Zacarias6927bc92015-01-15 11:30:22 -03003119config BR2_PACKAGE_M4
3120 bool "m4 target package removed"
3121 select BR2_LEGACY
3122 help
3123 The m4 target package has been removed, it's been
3124 deprecated for some time now.
3125
Gustavo Zacariasaa6ea7a2015-01-15 11:30:21 -03003126config BR2_PACKAGE_FLEX_BINARY
3127 bool "flex binary in target option removed"
3128 select BR2_LEGACY
3129 help
3130 The flex binary in the target option has been removed.
3131 It's been deprecated for some time now and is essentially a
3132 development tool which isn't very useful in the target.
3133
Gustavo Zacarias38dabc62015-01-15 11:30:19 -03003134config BR2_PACKAGE_BISON
3135 bool "bison target package removed"
3136 select BR2_LEGACY
3137 help
3138 The bison target package has been removed, it's been
3139 deprecated for some time now and is essentially a development
3140 tool which isn't very useful in the target.
3141
Gustavo Zacarias7f9d4442015-01-15 11:30:18 -03003142config BR2_PACKAGE_GOB2
3143 bool "gob2 target package removed"
3144 select BR2_LEGACY
3145 help
3146 The gob2 target package has been removed, it's been
3147 deprecated for some time now and was essentially useless
3148 without a target toolchain.
3149
Gustavo Zacariasc2e3d0b2015-01-15 11:30:17 -03003150config BR2_PACKAGE_DISTCC
3151 bool "distcc target package removed"
3152 select BR2_LEGACY
3153 help
3154 The distcc target package has been removed, it's been
3155 deprecated for some time now and was essentially useless
3156 without a target toolchain.
3157
Gustavo Zacariasb64cde62015-01-15 11:30:16 -03003158config BR2_PACKAGE_HASERL_VERSION_0_8_X
3159 bool "haserl 0.8.x version removed"
3160 select BR2_LEGACY
3161 help
3162 The 0.8.x version option for haserl has been removed since it
3163 has been deprecated for some time now.
3164 You should be able to use the 0.9.x version without issues.
3165
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003166config BR2_PACKAGE_STRONGSWAN_TOOLS
3167 bool "strongswan option has been removed"
3168 select BR2_LEGACY
3169 select BR2_PACKAGE_STRONGSWAN_PKI
3170 select BR2_PACKAGE_STRONGSWAN_SCEP
3171 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003172 The tools option has been removed upstream and the different
3173 tools have been split between the pki and scep options, with
3174 others deprecated.
Gustavo Zacarias0120d9f2015-01-06 07:35:41 -03003175
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003176config BR2_PACKAGE_XBMC_ADDON_XVDR
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003177 bool "xbmc-addon-xvdr removed"
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003178 select BR2_LEGACY
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003179 help
Arnout Vandecappelle1c2a63a2016-10-15 16:51:00 +02003180 According to the github project page:
3181 https://github.com/pipelka/xbmc-addon-xvdr
3182 this package is discontinued.
Bernd Kuhlsdb78eb02014-12-23 18:46:33 +01003183
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003184config BR2_PACKAGE_XBMC_PVR_ADDONS
3185 bool "xbmc options have been renamed"
3186 select BR2_LEGACY
3187 select BR2_PACKAGE_KODI_PVR_ADDONS
3188 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003189 The XBMC media center project was renamed to Kodi
3190 entertainment center
Bernd Kuhlsb3df2a32014-12-23 18:46:30 +01003191
Bernd Kuhls35784592014-12-23 18:46:27 +01003192config BR2_PACKAGE_XBMC
3193 bool "xbmc options have been renamed"
3194 select BR2_LEGACY
3195 select BR2_PACKAGE_KODI
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_ALSA_LIB
3201 bool "xbmc options have been renamed"
3202 select BR2_LEGACY
3203 select BR2_PACKAGE_KODI_ALSA_LIB
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_AVAHI
3209 bool "xbmc options have been renamed"
3210 select BR2_LEGACY
3211 select BR2_PACKAGE_KODI_AVAHI
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_DBUS
3217 bool "xbmc options have been renamed"
3218 select BR2_LEGACY
3219 select BR2_PACKAGE_KODI_DBUS
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_LIBBLURAY
3225 bool "xbmc options have been renamed"
3226 select BR2_LEGACY
3227 select BR2_PACKAGE_KODI_LIBBLURAY
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_GOOM
3233 bool "xbmc options have been renamed"
3234 select BR2_LEGACY
3235 select BR2_PACKAGE_KODI_GOOM
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_RSXS
3241 bool "xbmc options have been renamed"
3242 select BR2_LEGACY
3243 select BR2_PACKAGE_KODI_RSXS
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_LIBCEC
3249 bool "xbmc options have been renamed"
3250 select BR2_LEGACY
3251 select BR2_PACKAGE_KODI_LIBCEC
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_LIBMICROHTTPD
3257 bool "xbmc options have been renamed"
3258 select BR2_LEGACY
3259 select BR2_PACKAGE_KODI_LIBMICROHTTPD
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_LIBNFS
3265 bool "xbmc options have been renamed"
3266 select BR2_LEGACY
3267 select BR2_PACKAGE_KODI_LIBNFS
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_RTMPDUMP
3273 bool "xbmc options have been renamed"
3274 select BR2_LEGACY
3275 select BR2_PACKAGE_KODI_RTMPDUMP
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_LIBSHAIRPLAY
3281 bool "xbmc options have been renamed"
3282 select BR2_LEGACY
3283 select BR2_PACKAGE_KODI_LIBSHAIRPLAY
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_LIBSMBCLIENT
3289 bool "xbmc options have been renamed"
3290 select BR2_LEGACY
3291 select BR2_PACKAGE_KODI_LIBSMBCLIENT
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
3296config BR2_PACKAGE_XBMC_LIBTHEORA
3297 bool "xbmc options have been renamed"
3298 select BR2_LEGACY
3299 select BR2_PACKAGE_KODI_LIBTHEORA
3300 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003301 The XBMC media center project was renamed to Kodi
3302 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003303
3304config BR2_PACKAGE_XBMC_LIBUSB
3305 bool "xbmc options have been renamed"
3306 select BR2_LEGACY
3307 select BR2_PACKAGE_KODI_LIBUSB
3308 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003309 The XBMC media center project was renamed to Kodi
3310 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003311
3312config BR2_PACKAGE_XBMC_LIBVA
3313 bool "xbmc options have been renamed"
3314 select BR2_LEGACY
3315 select BR2_PACKAGE_KODI_LIBVA
3316 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003317 The XBMC media center project was renamed to Kodi
3318 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003319
3320config BR2_PACKAGE_XBMC_WAVPACK
3321 bool "xbmc options have been renamed"
3322 select BR2_LEGACY
3323 select BR2_PACKAGE_KODI_WAVPACK
3324 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003325 The XBMC media center project was renamed to Kodi
3326 entertainment center
Bernd Kuhls35784592014-12-23 18:46:27 +01003327
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003328config BR2_PREFER_STATIC_LIB
3329 bool "static library option renamed"
Samuel Martina44b1c12014-12-14 17:24:24 +01003330 select BR2_LEGACY
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003331 help
3332 The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
3333 highlights the fact that the option no longer "prefers"
3334 static libraries, but "enforces" static libraries (i.e
3335 shared libraries are completely unused).
3336
Samuel Martina44b1c12014-12-14 17:24:24 +01003337 Take care of updating the type of libraries you want under the
3338 "Build options" menu.
3339
Bernd Kuhls35784592014-12-23 18:46:27 +01003340###############################################################################
Yann E. MORIN120136e2014-09-21 20:38:09 +02003341comment "Legacy options removed in 2014.11"
3342
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003343config BR2_x86_generic
3344 bool "x86 generic variant has been removed"
3345 select BR2_LEGACY
3346 help
3347 The generic x86 CPU variant has been removed. Use another
Baruch Siacha95e98c2014-11-09 07:50:01 +02003348 CPU variant instead.
Peter Korsgaarda52bad82014-11-09 00:15:24 +01003349
Andreas Larsson40e18f22014-10-30 09:29:36 +01003350config BR2_GCC_VERSION_4_4_X
3351 bool "gcc 4.4.x has been removed"
3352 select BR2_LEGACY
3353 help
3354 The 4.4.x version of gcc has been removed. Use a newer
3355 version instead.
3356
Andreas Larsson43b78e72014-10-30 09:29:35 +01003357config BR2_sparc_sparchfleon
3358 bool "sparchfleon CPU has been removed"
3359 select BR2_LEGACY
3360 help
3361 The sparchfleon CPU was only supported in a patched gcc 4.4
3362 version. Its support has been removed in favor of the leon3
3363 CPU starting from gcc 4.8.x.
3364
3365config BR2_sparc_sparchfleonv8
3366 bool "sparchfleonv8 CPU has been removed"
3367 select BR2_LEGACY
3368 help
3369 The sparchfleonv8 CPU was only supported in a patched gcc
3370 4.4 version. Its support has been removed in favor of the
3371 leon3 CPU starting from gcc 4.8.x.
3372
3373config BR2_sparc_sparcsfleon
3374 bool "sparcsfleon CPU has been removed"
3375 select BR2_LEGACY
3376 help
3377 The sparcsfleon CPU was only supported in a patched gcc 4.4
3378 version. Its support has been removed in favor of the leon3
3379 CPU starting from gcc 4.8.x.
3380
3381config BR2_sparc_sparcsfleonv8
3382 bool "sparcsfleonv8 CPU has been removed"
3383 select BR2_LEGACY
3384 help
3385 The sparcsfleonv8 CPU was only supported in a patched gcc
3386 4.4 version. Its support has been removed in favor of the
3387 leon3 CPU starting from gcc 4.8.x.
3388
Bernd Kuhlsbfd87872014-10-18 19:41:30 +02003389config BR2_PACKAGE_XLIB_LIBPCIACCESS
3390 bool "xlib-libpciaccess option has been renamed"
3391 depends on BR2_PACKAGE_XORG7
3392 select BR2_LEGACY
3393 select BR2_PACKAGE_LIBPCIACCESS
3394 help
3395 libpciaccess neither depends on X11 nor Xlib. Thus the
3396 package has been renamed BR2_PACKAGE_LIBPCIACCESS
3397
Yann E. MORINb581bba2014-09-21 20:38:13 +02003398config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
3399 bool "Xceive xc5000 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003400 select BR2_LEGACY
Yann E. MORINb581bba2014-09-21 20:38:13 +02003401 select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
3402 help
3403 The Xceive xc5000 option now also handles older firmwares from
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003404 Xceive (the xc4000 series), as well as new firmwares (the
3405 xc5000c) from Cresta, who bought Xceive.
Yann E. MORINb581bba2014-09-21 20:38:13 +02003406
Yann E. MORINdac546e2014-09-21 20:38:12 +02003407config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3408 bool "Chelsio T4 option has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003409 select BR2_LEGACY
Yann E. MORINdac546e2014-09-21 20:38:12 +02003410 select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3411 help
3412 The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
3413 has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
3414 to better account for the fact that a T5 variant exists.
3415
Yann E. MORIN120136e2014-09-21 20:38:09 +02003416config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
3417 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003418 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003419 help
3420 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
3421 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
3422 select it in:
3423 Target packages -> Hardware handling ->
3424 Firmware -> linux-firmware -> WiFi firmware ->
3425 iwlwifi 3160/726x revision to use (revision 7)
3426
3427config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
3428 bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003429 select BR2_LEGACY
Yann E. MORIN120136e2014-09-21 20:38:09 +02003430 help
3431 The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
3432 renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
3433 select it in:
3434 Target packages -> Hardware handling ->
3435 Firmware -> linux-firmware -> WiFi firmware ->
3436 iwlwifi 3160/726x revision to use (revision 8)
3437
3438###############################################################################
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003439comment "Legacy options removed in 2014.08"
3440
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003441config BR2_PACKAGE_LIBELF
3442 bool "libelf has been removed"
3443 select BR2_PACKAGE_ELFUTILS
3444 select BR2_LEGACY
3445 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003446 The libelf package provided an old version of the libelf
3447 library and is deprecated. The libelf library is now provided
3448 by the elfutils package.
Gregory CLEMENT52fac6a2014-08-28 14:21:34 +02003449
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003450config BR2_KERNEL_HEADERS_3_8
3451 bool "kernel headers version 3.8.x are no longer supported"
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003452 select BR2_LEGACY
3453 help
3454 Version 3.8.x of the Linux kernel headers have been deprecated
3455 for more than four buildroot releases and are now removed.
Thomas De Schampheleiredfae6f62014-06-13 21:21:45 +02003456
Thomas Petazzoni187b4d62014-06-01 22:23:30 +02003457config BR2_PACKAGE_GETTEXT_TOOLS
3458 bool "support for gettext-tools on target has been removed"
3459 select BR2_LEGACY
3460 help
3461 The option to install the gettext utilities on the target
3462 has been removed. This is not necessary as Buildroot is not
3463 designed to provide a full development environment on the
3464 target. gettext tools should be used on the build machine
3465 instead.
3466
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003467config BR2_PACKAGE_PROCPS
3468 bool "procps has been replaced by procps-ng"
3469 select BR2_PACKAGE_PROCPS_NG
3470 select BR2_LEGACY
3471 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003472 The procps package has been replaced by the equivalent
3473 procps-ng.
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003474
Thomas Petazzonid4839ff2014-07-01 20:03:02 +02003475config BR2_BINUTILS_VERSION_2_20_1
3476 bool "binutils 2.20.1 has been removed"
3477 select BR2_LEGACY
3478 help
3479 The 2.20.1 version of binutils has been removed. Use a newer
3480 version instead.
3481
3482config BR2_BINUTILS_VERSION_2_21
3483 bool "binutils 2.21 has been removed"
3484 select BR2_LEGACY
3485 help
3486 The 2.21 version of binutils has been removed. Use a newer
3487 version instead.
3488
3489config BR2_BINUTILS_VERSION_2_23_1
3490 bool "binutils 2.23.1 has been removed"
3491 select BR2_LEGACY
3492 help
3493 The 2.23.1 version of binutils has been removed. Use a newer
3494 version instead.
3495
Thomas Petazzoni506b9642014-07-01 20:03:03 +02003496config BR2_UCLIBC_VERSION_0_9_32
3497 bool "uclibc 0.9.32 has been removed"
3498 select BR2_LEGACY
3499 help
3500 The 0.9.32 version of uClibc has been removed. Use a newer
3501 version instead.
3502
Thomas Petazzonid10e0802014-07-01 20:03:06 +02003503config BR2_GCC_VERSION_4_3_X
3504 bool "gcc 4.3.x has been removed"
3505 select BR2_LEGACY
3506 help
3507 The 4.3.x version of gcc has been removed. Use a newer
3508 version instead.
3509
3510config BR2_GCC_VERSION_4_6_X
3511 bool "gcc 4.6.x has been removed"
3512 select BR2_LEGACY
3513 help
3514 The 4.6.x version of gcc has been removed. Use a newer
3515 version instead.
3516
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003517config BR2_GDB_VERSION_7_4
3518 bool "gdb 7.4 has been removed"
3519 select BR2_LEGACY
3520 help
3521 The 7.4 version of gdb has been removed. Use a newer version
3522 instead.
3523
3524config BR2_GDB_VERSION_7_5
3525 bool "gdb 7.5 has been removed"
3526 select BR2_LEGACY
3527 help
3528 The 7.5 version of gdb has been removed. Use a newer version
3529 instead.
3530
Thomas Petazzonib18dca02014-07-01 20:03:09 +02003531config BR2_BUSYBOX_VERSION_1_19_X
3532 bool "busybox version selection has been removed"
3533 select BR2_LEGACY
3534 help
3535 The possibility of selecting the Busybox version has been
3536 removed. Use the latest version provided by the Busybox
3537 package instead.
3538
3539config BR2_BUSYBOX_VERSION_1_20_X
3540 bool "busybox version selection has been removed"
3541 select BR2_LEGACY
3542 help
3543 The possibility of selecting the Busybox version has been
3544 removed. Use the latest version provided by the Busybox
3545 package instead.
3546
3547config BR2_BUSYBOX_VERSION_1_21_X
3548 bool "busybox version selection has been removed"
3549 select BR2_LEGACY
3550 help
3551 The possibility of selecting the Busybox version has been
3552 removed. Use the latest version provided by the Busybox
3553 package instead.
3554
Ezequiel García07ac0452014-07-05 18:07:40 -03003555config BR2_PACKAGE_LIBV4L_DECODE_TM6000
3556 bool "decode_tm6000"
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
3563config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
3564 bool "ir-keytable"
3565 select BR2_PACKAGE_LIBV4L_UTILS
3566 select BR2_LEGACY
3567 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003568 This libv4l option has been deprecated and replaced by a
3569 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003570
3571config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
3572 bool "v4l2-compliance"
3573 select BR2_PACKAGE_LIBV4L_UTILS
3574 select BR2_LEGACY
3575 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003576 This libv4l option has been deprecated and replaced by a
3577 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003578
3579config BR2_PACKAGE_LIBV4L_V4L2_CTL
3580 bool "v4l2-ctl"
3581 select BR2_PACKAGE_LIBV4L_UTILS
3582 select BR2_LEGACY
3583 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003584 This libv4l option has been deprecated and replaced by a
3585 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003586
3587config BR2_PACKAGE_LIBV4L_V4L2_DBG
3588 bool "v4l2-dbg"
3589 select BR2_PACKAGE_LIBV4L_UTILS
3590 select BR2_LEGACY
3591 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003592 This libv4l option has been deprecated and replaced by a
3593 single option to build all the libv4l utilities.
Ezequiel García07ac0452014-07-05 18:07:40 -03003594
Yann E. MORIN5cd1c4f2014-06-02 22:27:22 +02003595###############################################################################
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003596comment "Legacy options removed in 2014.05"
3597
Peter Seiderer4990a382014-04-23 00:12:23 +02003598config BR2_PACKAGE_EVTEST_CAPTURE
3599 bool "evtest-capture support removed (dropped since evtest 1.31)"
3600 select BR2_LEGACY
3601 help
3602 Support for evtest-capture has been removed (dropped from
3603 evtest package since version 1.31), use evemu package
3604 instead.
3605
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003606config BR2_KERNEL_HEADERS_3_6
3607 bool "kernel headers version 3.6.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003608 select BR2_LEGACY
3609 help
3610 Version 3.6.x of the Linux kernel headers have been deprecated
3611 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003612
3613config BR2_KERNEL_HEADERS_3_7
3614 bool "kernel headers version 3.7.x are no longer supported"
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003615 select BR2_LEGACY
3616 help
3617 Version 3.7.x of the Linux kernel headers have been deprecated
3618 for more than four buildroot releases and are now removed.
Thomas De Schampheleire47c2d1b2014-04-30 20:18:24 +02003619
Thomas De Schampheleire947ca9e2014-04-30 20:18:23 +02003620config BR2_PACKAGE_VALA
3621 bool "vala target package has been removed"
3622 select BR2_LEGACY
3623 help
3624 The 'vala' target package has been removed since it has been
3625 deprecated for more than four buildroot releases.
3626 Note: the host vala package still exists.
3627
Yann E. MORINd6a37912014-04-07 21:58:03 +02003628config BR2_TARGET_TZ_ZONELIST
3629 default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
3630
3631config BR2_PACKAGE_TZDATA_ZONELIST
3632 string "tzdata: the timezone list option has been renamed"
3633 help
3634 The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003635 BR2_TARGET_TZ_ZONELIST, and moved to the "System
3636 configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
Yann E. MORINd6a37912014-04-07 21:58:03 +02003637
3638config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
3639 bool
3640 default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
3641 select BR2_LEGACY
3642
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003643config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
3644 bool "Lua command-line editing none has been renamed"
3645 select BR2_LEGACY
3646 help
3647 The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003648 renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
3649 select it in the corresponding choice.
Yann E. MORINc97aeb72014-04-05 17:21:43 +02003650
3651config BR2_PACKAGE_LUA_INTERPRETER_READLINE
3652 bool "Lua command-line editing using readline has been renamed"
3653 select BR2_LEGACY
3654 help
3655 The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
3656 renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
3657 it in the corresponding choice.
3658
3659config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
3660 bool "Lua command-line editing using linenoise has been renamed"
3661 select BR2_LEGACY
3662 help
3663 The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
3664 renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
3665 it in the corresponding choice.
3666
Yann E. MORIN365ae612014-03-28 01:00:24 +01003667config BR2_PACKAGE_DVB_APPS_UTILS
3668 bool "dvb-apps utilities now built by default"
3669 select BR2_LEGACY
3670 help
3671 The dvb-apps utilities are now always built when the dvb-apps
3672 package is selected.
3673
Yann E. MORIN971e3312014-03-01 15:52:56 +01003674config BR2_KERNEL_HEADERS_SNAP
3675 bool "Local Linux snapshot support removed"
3676 select BR2_LEGACY
3677 help
3678 Support for using a custom snapshot to install the Linux
3679 kernel headers has been removed.
3680
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003681config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
3682 bool "/dev management by udev removed"
3683 select BR2_LEGACY
3684 help
3685 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003686 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003687
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003688 Therefore, if you are not using 'systemd' as init system, you
3689 must choose 'Dynamic using eudev' in the '/dev management'
3690 menu to get the same behaviour as in your old configuration.
3691
3692 If you are using 'systemd', its internal implementation of
3693 'udev' will be used automatically.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003694
3695 You must also check the packages depending on 'udev' are still
3696 selected.
3697
3698config BR2_PACKAGE_UDEV
3699 bool "udev is now a virtual package"
3700 select BR2_LEGACY
3701 select BR2_PACKAGE_HAS_UDEV
3702 help
3703 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003704 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003705
3706 Your old configuration refers to packages depending on 'udev',
3707 either for build or at runtime.
3708
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003709 Check that a 'udev' provider is selected. If you are not using
3710 'systemd' as init system, 'eudev' should be selected, which is
3711 the case if '/dev management' is set to 'Dynamic using eudev'.
3712
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003713 If you are using 'systemd', its internal implementation of
3714 'udev' is used.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003715
3716config BR2_PACKAGE_UDEV_RULES_GEN
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003717 bool "udev rules generation handled by provider"
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003718 select BR2_LEGACY
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003719 select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
3720 select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003721 help
3722 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003723 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003724
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003725 If you are not using 'systemd' as init system, udev rules
3726 generation will be handled by 'eudev'. Check that
3727 '/dev management' is set to 'Dynamic using eudev' to get
3728 the same behaviour as in your old configuration.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003729
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003730 If you are using 'systemd', it internal implementation of
3731 'udev' will generate the rules.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003732
3733config BR2_PACKAGE_UDEV_ALL_EXTRAS
3734 bool "udev extras removed"
3735 select BR2_LEGACY
3736 help
3737 The 'udev' package has been converted to a virtual package.
eric.le.bihan.dev@free.fr2c66e442014-02-07 14:21:34 +01003738 The providers for this feature are: 'eudev', 'systemd'.
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003739
3740 The option to enable the extra features of 'udev' (gudev, ...)
3741 has been removed. These features are automatically enabled in
3742 the 'udev' providers if the dependencies are selected. For
3743 example, selecting 'libglib2' will trigger the build of gudev.
3744
Bernd Kuhls5562be12014-03-01 16:41:10 +01003745config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
3746 bool "xlib-libpthread-stubs option has been renamed"
3747 depends on BR2_PACKAGE_XORG7
3748 select BR2_LEGACY
3749 select BR2_PACKAGE_LIBPTHREAD_STUBS
3750 help
3751 The pthread stubs neither depend on X11 nor Xlib. Thus the
3752 package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
3753
eric.le.bihan.dev@free.frfabcb112014-02-07 14:21:33 +01003754###############################################################################
Yann E. MORINf169e5e2014-01-19 23:30:42 +01003755comment "Legacy options removed in 2014.02"
3756
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003757config BR2_sh2
3758 bool "sh2 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003759 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003760 help
3761 Due to an inexistent user base and generally poor Linux
3762 support, the support for the SH2 architecture was removed.
3763
3764config BR2_sh3
3765 bool "sh3 support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003766 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003767 help
3768 Due to an inexistent user base and generally poor Linux
3769 support, the support for the SH3 architecture was removed.
3770
3771config BR2_sh3eb
3772 bool "sh3eb support removed"
Peter Seiderer758c5c72015-10-07 23:56:49 +02003773 select BR2_LEGACY
Thomas Petazzonie543f5a2014-02-04 15:25:34 +01003774 help
3775 Due to an inexistent user base and generally poor Linux
3776 support, the support for the SH3eb architecture was removed.
3777
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003778config BR2_KERNEL_HEADERS_3_1
3779 bool "kernel headers version 3.1.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003780 select BR2_LEGACY
3781 help
3782 Version 3.1.x of the Linux kernel headers have been deprecated
3783 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003784
3785config BR2_KERNEL_HEADERS_3_3
3786 bool "kernel headers version 3.3.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003787 select BR2_LEGACY
3788 help
3789 Version 3.3.x of the Linux kernel headers have been deprecated
3790 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003791
3792config BR2_KERNEL_HEADERS_3_5
3793 bool "kernel headers version 3.5.x are no longer supported"
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003794 select BR2_LEGACY
3795 help
3796 Version 3.5.x of the Linux kernel headers have been deprecated
3797 for more than four buildroot releases and are now removed.
Thomas De Schampheleire334dca62014-02-05 14:50:59 +01003798
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003799config BR2_GDB_VERSION_7_2
3800 bool "gdb 7.2.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003801 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003802 select BR2_LEGACY
3803 help
3804 Version 7.2.x of gdb has been deprecated for more than four
3805 buildroot releases and is now removed. As an alternative, gdb
3806 7.5.x has been automatically selected in your configuration.
3807
3808config BR2_GDB_VERSION_7_3
3809 bool "gdb 7.3.x is no longer supported"
Thomas Petazzoni02d85f62014-07-01 20:03:08 +02003810 select BR2_GDB_VERSION_7_6
Thomas De Schampheleire348060f2014-02-05 14:50:58 +01003811 select BR2_LEGACY
3812 help
3813 Version 7.3.x of gdb has been deprecated for more than four
3814 buildroot releases and is now removed. As an alternative, gdb
3815 7.5.x has been automatically selected in your configuration.
3816
Thomas De Schampheleire831624c2014-02-05 14:50:57 +01003817config BR2_PACKAGE_CCACHE
3818 bool "ccache target package has been removed"
3819 select BR2_LEGACY
3820 help
3821 The 'ccache' target package has been removed since it has been
3822 deprecated for more than four buildroot releases.
3823 Note: using ccache for speeding up builds is still supported.
3824
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003825config BR2_HAVE_DOCUMENTATION
3826 bool "support for documentation on target has been removed"
3827 select BR2_LEGACY
3828 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003829 Support for documentation on target has been removed since it
3830 has been deprecated for more than four buildroot releases.
Thomas De Schampheleire7164a322014-02-05 14:50:56 +01003831
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003832config BR2_PACKAGE_AUTOMAKE
3833 bool "automake target package has been removed"
3834 select BR2_LEGACY
3835 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003836 The 'automake' target package has been removed since it has
3837 been deprecated for more than four buildroot releases.
Thomas De Schampheleiref75245d2014-02-05 14:50:55 +01003838 Note: the host automake still exists.
3839
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003840config BR2_PACKAGE_AUTOCONF
3841 bool "autoconf target package has been removed"
3842 select BR2_LEGACY
3843 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003844 The 'autoconf' target package has been removed since it has
3845 been deprecated for more than four buildroot releases.
Thomas De Schampheleiree7af2ac2014-02-05 14:50:54 +01003846 Note: the host autoconf still exists.
3847
Thomas De Schampheleireddf54242014-02-05 14:50:53 +01003848config BR2_PACKAGE_XSTROKE
3849 bool "xstroke has been removed"
3850 select BR2_LEGACY
3851 help
3852 The 'xstroke' package has been removed since it has been
3853 deprecated for more than four buildroot releases.
3854
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003855config BR2_PACKAGE_LZMA
3856 bool "lzma target package has been removed"
3857 select BR2_LEGACY
3858 help
3859 The 'lzma' target package has been removed since it has been
3860 deprecated for more than four buildroot releases.
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003861 Note: generating lzma-compressed rootfs images is still
3862 supported.
Thomas De Schampheleire0a077312014-01-21 08:54:12 +01003863
Thomas De Schampheleire7ef5c3a2014-01-21 08:54:10 +01003864config BR2_PACKAGE_TTCP
3865 bool "ttcp has been removed"
3866 select BR2_LEGACY
3867 help
3868 The 'ttcp' package has been removed since it has been
3869 deprecated for more than four buildroot releases.
3870
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003871config BR2_PACKAGE_LIBNFC_LLCP
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003872 bool "libnfc-llcp has been replaced by libllcp"
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003873 select BR2_LEGACY
Thomas De Schampheleire93341042014-01-21 08:54:13 +01003874 select BR2_PACKAGE_LIBLLCP
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003875 help
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003876 The 'libnfc-llcp' package has been removed since upstream
3877 renamed to 'libllcp'. We have added a new package for
3878 'libllcp' and bumped the version at the same time.
Vicente Olivert Riera8b2e2352014-01-10 10:06:19 +00003879
Marcelo Gutiérrez(UTN/FRH)06c82122014-01-21 14:08:28 +00003880config BR2_PACKAGE_MYSQL_CLIENT
3881 bool "MySQL client renamed to MySQL"
3882 select BR2_LEGACY
3883 select BR2_PACKAGE_MYSQL
3884 help
3885 The option has been renamed BR2_PACKAGE_MYSQL
3886
Thomas De Schampheleire2f7a53e2014-01-03 17:02:53 +01003887config BR2_PACKAGE_SQUASHFS3
3888 bool "squashfs3 has been removed"
3889 select BR2_LEGACY
3890 select BR2_PACKAGE_SQUASHFS
3891 help
3892 The 'squashfs3' package has been removed since it has been
3893 deprecated for more than four buildroot releases. Package
3894 'squashfs' (4) has been selected automatically as replacement.
3895
3896config BR2_TARGET_ROOTFS_SQUASHFS3
3897 bool "squashfs3 rootfs support has been removed"
3898 select BR2_LEGACY
3899 help
3900 Together with the removal of the squashfs3 package, support
3901 for squashfs3 root filesystems has been removed too. Squashfs
3902 root filesystems will automatically use squashfs4 now.
3903
Arnaud Aujon560fe852013-12-15 20:23:12 +01003904config BR2_PACKAGE_NETKITBASE
3905 bool "netkitbase has been removed"
3906 select BR2_LEGACY
3907 help
3908 The 'netkitbase' package has been removed since it has been
3909 deprecated since 2012.11. This package provided 'inetd'
3910 which is replaced by 'xinet' and 'ping' which is replaced by
3911 'busybox' or 'fping'.
3912
3913config BR2_PACKAGE_NETKITTELNET
3914 bool "netkittelnet has been removed"
3915 select BR2_LEGACY
3916 help
3917 The 'netkittelnet' package has been removed since it has
3918 been deprecated since 2012.11. 'busybox' provides a telnet
3919 client and should be used instead.
3920
Francois Perrad63058f82014-01-11 16:42:09 +01003921config BR2_PACKAGE_LUASQL
3922 bool "luasql has been replaced by luasql-sqlite3"
3923 select BR2_PACKAGE_LUASQL_SQLITE3
3924 select BR2_LEGACY
3925 help
3926 The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
3927
Francois Perrada6c53472014-01-11 16:42:08 +01003928config BR2_PACKAGE_LUACJSON
3929 bool "luacjson has been replaced by lua-cjson"
3930 select BR2_PACKAGE_LUA_CJSON
3931 select BR2_LEGACY
3932 help
3933 The option has been renamed BR2_PACKAGE_LUA_CJSON.
3934
Arnaud Aujon560fe852013-12-15 20:23:12 +01003935###############################################################################
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003936comment "Legacy options removed in 2013.11"
3937
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003938config BR2_PACKAGE_LVM2_DMSETUP_ONLY
3939 bool "lvm2's 'dmsetup only' option removed"
3940 select BR2_LEGACY
3941 help
3942 The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
3943 led to problems with other packages that need the full lvm2
Ricardo Martincoskid6109172018-04-01 02:08:39 -03003944 suite. Therefore, the option has been replaced with the
3945 positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
Arnout Vandecappelleff0f55e2013-11-28 09:29:28 +01003946
3947# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
3948# in order to automatically propagate old configs
3949
Thomas Petazzoni1f9c04f2013-11-07 20:07:21 +01003950config BR2_PACKAGE_QT_JAVASCRIPTCORE
3951 bool "qt javascriptcore option removed"
3952 select BR2_LEGACY
3953 help
3954 The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
3955 force the activation or disabling of the JIT compiler in the
3956 Qt Javascript interpreter. However, the JIT compiler is not
3957 available for all architectures, so forcing its activation
3958 does not always work. Moreover, Qt knows by itself for which
3959 architectures JIT support is possible, and will
3960 automatically enable it if possible.
3961
3962 Therefore, this option was in fact useless, and causing
3963 build problems when enabled on architectures for which the
3964 JIT support was not available. It has been removed, and
3965 there is no replacement: Qt will enable JIT at compile time
3966 when possible.
3967
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003968config BR2_PACKAGE_MODULE_INIT_TOOLS
3969 bool "module-init-tools replaced by kmod"
3970 select BR2_PACKAGE_KMOD
3971 select BR2_PACKAGE_KMOD_TOOLS
Thomas Petazzoni0f401f92013-11-07 20:09:48 +01003972 select BR2_LEGACY
Thomas Petazzoni94c72082013-08-27 19:28:34 +02003973 help
3974 The 'module-init-tools' package has been removed, since it
3975 has been depracated upstream and replaced by 'kmod'.
3976
Thomas De Schampheleiref2c21932013-09-02 22:07:55 +02003977config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
3978 string "u-boot: the git repository URL option has been renamed"
3979 help
3980 The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
3981 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
3982
3983config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
3984 bool
3985 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
3986 select BR2_LEGACY
3987
3988# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
3989# boot/uboot/Config.in
3990
3991config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
3992 string "u-boot: the git repository version option has been renamed"
3993 help
3994 The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
3995 been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
3996
3997config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
3998 bool
3999 default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
4000 select BR2_LEGACY
4001
4002# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
4003# boot/uboot/Config.in
4004
Thomas De Schampheleire63ecded2013-09-02 22:07:54 +02004005config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
4006 string "linux: the git repository URL option has been renamed"
4007 help
4008 The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
4009 been renamed to
4010 BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
4011
4012config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
4013 bool
4014 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
4015 select BR2_LEGACY
4016
4017# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
4018# linux/Config.in
4019
4020config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
4021 string "linux: the git repository version option has been renamed"
4022 help
4023 The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
4024 been renamed to
4025 BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
4026
4027config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
4028 bool
4029 default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
4030 select BR2_LEGACY
4031
4032# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
4033# linux/Config.in
4034
Thomas Petazzoni94c72082013-08-27 19:28:34 +02004035###############################################################################
Yann E. MORIN67eaf702013-06-30 00:38:12 +02004036comment "Legacy options removed in 2013.08"
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004037
Thomas Petazzoni1f3078b2013-08-10 19:20:01 +02004038config BR2_ARM_OABI
4039 bool "ARM OABI support has been removed"
4040 select BR2_LEGACY
4041 help
4042 The support for the ARM OABI was deprecated since a while,
4043 and has been removed completely from Buildroot. It is also
4044 deprecated in upstream gcc, since gcc 4.7. People should
4045 switch to EABI instead, which should not be a problem as
4046 long as you don't have pre-built OABI binaries in your
4047 system that you can't recompile.
4048
Gustavo Zacariasc6e4fcb2013-06-10 11:14:31 -03004049config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
4050 bool "dosfstools dosfsck renamed to fsck.fat"
4051 select BR2_LEGACY
4052 select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
4053 help
4054 dosfsck was renamed upstream to fsck.fat for consistency.
4055
4056config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
4057 bool "dosfstools dosfslabel renamed to fatlabel"
4058 select BR2_LEGACY
4059 select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
4060 help
4061 doslabel was renamed upstream to fatlabel for consistency.
4062
4063config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
4064 bool "dosfstools mkdosfs renamed to mkfs.fat"
4065 select BR2_LEGACY
4066 select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
4067 help
4068 mkdosfs was renamed upstream to mkfs.fat for consistency.
4069
Thomas Petazzonie21db002013-06-30 21:28:57 +02004070config BR2_ELF2FLT
4071 bool "the elf2flt option has been renamed"
4072 select BR2_LEGACY
4073 help
4074 The BR2_ELF2FLT option has been renamed to
4075 BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
4076 the package infrastructure.
4077
Thomas Petazzonid8060052013-07-16 10:03:17 +02004078config BR2_VFP_FLOAT
4079 bool "the ARM VFP floating point option has been renamed"
4080 select BR2_LEGACY
4081 help
4082 Due to a major refactoring of the floating-point handling of
4083 the ARM architecture support, the BR2_VFP_FLOAT option has
4084 been replaced with a choice of options that allows to select
4085 between various VFP versions/capabilities.
4086
Samuel Martinba8f82b2013-08-30 06:08:59 +02004087config BR2_PACKAGE_GCC_TARGET
4088 bool "gcc on the target filesystem has been removed"
4089 select BR2_LEGACY
4090 help
4091 The support for gcc in the target filesystem was deprecated
4092 since a while, and has been removed completely from Buildroot.
4093 See Buildroot's documentation for more explanations.
4094
4095config BR2_HAVE_DEVFILES
4096 bool "development files in target filesystem has been removed"
4097 select BR2_LEGACY
4098 help
4099 The installation of the development files in the target
4100 filesystem was deprecated since a while, and has been removed
4101 completely from Buildroot.
4102 See Buildroot's documentation for more explanations.
4103
Arnout Vandecappelle (Essensium/Mind)a91a5c12013-02-05 05:34:32 +00004104endmenu
Arnout Vandecappelle53903a12015-04-11 01:49:02 +02004105
4106endif # !SKIP_LEGACY