microwatt: Build kernel and ssh, iperf3
[buildroot.git] / Config.in.legacy
1 #
2 # Config.in.legacy - support for backward compatibility
3 #
4 # 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.
7 #
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.
14 #
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.
19 # 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]
59 #
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
65 # 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.
67 #
68 # [Example: renaming a string option from FOO to BAR]
69 # original symbol:
70 # config BR2_FOO_STRING
71 # string "Some foo string"
72 #
73 # becomes:
74 # config BR2_BAR_STRING
75 # string "Some bar string"
76 # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
77 #
78 # and in Config.in.legacy:
79 # config BR2_FOO_STRING
80 # string "The foo string has been renamed"
81 # help
82 # <suitable help text>
83 #
84 # config BR2_FOO_STRING_WRAP
85 # bool
86 # default y if BR2_FOO_STRING != ""
87 # select BR2_LEGACY
88 #
89 # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
90 #
91 # [End of example]
92
93 config BR2_SKIP_LEGACY
94 bool
95 option env="SKIP_LEGACY"
96
97 if !BR2_SKIP_LEGACY
98
99 config BR2_LEGACY
100 bool
101 help
102 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.
107
108 # This comment fits exactly in a 80-column display
109 comment "Legacy detected: check the content of the menu below"
110 depends on BR2_LEGACY
111
112 menu "Legacy config options"
113
114 if BR2_LEGACY
115 comment "----------------------------------------------------"
116 comment "Your old configuration uses legacy options that no "
117 comment "longer exist in buildroot, as indicated in the menu "
118 comment "below. As long as these options stay selected, or in"
119 comment "case of string options are non-empty, the build "
120 comment "will fail. "
121 comment "* "
122 comment "Where possible, an automatic conversion from old to "
123 comment "new symbols has been performed. Before making any "
124 comment "change in this legacy menu, make sure to exit the "
125 comment "configuration editor a first time and save the "
126 comment "configuration. Otherwise, the automatic conversion "
127 comment "of symbols will be lost. "
128 comment "* "
129 comment "After this initial save, reopen the configuration "
130 comment "editor, inspect the options selected below, read "
131 comment "their help texts, and verify/update the new "
132 comment "configuration in the corresponding configuration "
133 comment "menus. When everything is ok, you can disable the "
134 comment "legacy options in the menu below. Once you have "
135 comment "disabled all legacy options, this text will "
136 comment "disappear and you will be able to start the build. "
137 comment "* "
138 comment "Note: legacy options older than 5 years have been "
139 comment "removed, and configuration files that still have "
140 comment "those options set, will fail to build, or run in "
141 comment "unpredictable ways. "
142 comment "----------------------------------------------------"
143 endif
144
145 ###############################################################################
146
147 comment "Legacy options removed in 2021.11"
148
149 config BR2_PACKAGE_GNURADIO_PAGER
150 bool "gnuradio gr-flex support removed"
151 select BR2_LEGACY
152 help
153 gr-flex has been removed from gnuradio since version 3.8.0.0.
154
155 config BR2_KERNEL_HEADERS_5_11
156 bool "kernel headers version 5.11.x are no longer supported"
157 select BR2_LEGACY
158 help
159 Version 5.11.x of the Linux kernel headers are no longer
160 maintained upstream and are now removed.
161
162 config BR2_KERNEL_HEADERS_5_12
163 bool "kernel headers version 5.12.x are no longer supported"
164 select BR2_LEGACY
165 help
166 Version 5.12.x of the Linux kernel headers are no longer
167 maintained upstream and are now removed.
168
169 comment "Legacy options removed in 2021.08"
170
171 config BR2_PACKAGE_LIBMCRYPT
172 bool "libmcrypt package was removed"
173 select BR2_LEGACY
174 help
175 This package has been removed as "the last update to libmcrypt
176 was in 2007, despite years of unmerged patches. These facts
177 have led security experts to declare mcrypt abandonware and
178 discourage its use in new development" (extract from
179 https://en.wikipedia.org/wiki/Mcrypt).
180
181 config BR2_PACKAGE_MCRYPT
182 bool "mcrypt package was removed"
183 select BR2_LEGACY
184 help
185 This package has been removed as "the last update to libmcrypt
186 was in 2007, despite years of unmerged patches. These facts
187 have led security experts to declare mcrypt abandonware and
188 discourage its use in new development" (extract from
189 https://en.wikipedia.org/wiki/Mcrypt).
190
191 config BR2_PACKAGE_PHP_EXT_MCRYPT
192 bool "PHP mcrypt extension removed"
193 select BR2_LEGACY
194 help
195 mcrypt has been removed from php since version 7.2.0.
196
197 config BR2_BINUTILS_VERSION_2_34_X
198 bool "binutils 2.34 has been removed"
199 select BR2_LEGACY
200 help
201 binutils 2.34 has been removed, use a newer version.
202
203 config BR2_PACKAGE_LIBSOIL
204 bool "libsoil package removed"
205 select BR2_LEGACY
206 help
207 The libsoil package was removed. All packages needing
208 libsoil removed the dependency.
209
210 config BR2_PACKAGE_CLAPACK
211 bool "cblas/clapack package removed"
212 select BR2_LEGACY
213 select BR2_PACKAGE_LAPACK if BR2_PACKAGE_LAPACK_ARCH_SUPPORTS && BR2_TOOLCHAIN_HAS_FORTRAN
214 help
215 The clapack package was removed. LAPACK no longer generates a
216 C version. Use lapack instead. This does require a Fortran
217 compiler however.
218
219 config BR2_PACKAGE_SPIDERMONKEY
220 bool "spidermonkey package removed"
221 select BR2_LEGACY
222 help
223 The spidermonkey package was removed. The only package that
224 depended on spidermonkey was polkit. The spidermonkey
225 dependency is replaced with duktape.
226
227 config BR2_PACKAGE_KODI_LIBVA
228 bool "kodi option to add libva support removed"
229 select BR2_LEGACY
230 help
231 Kodi still has support for libva if the package is enabled but
232 the kodi-specific dependencies limiting libva support to non-
233 OPENGLES platforms were removed including this option.
234
235 config BR2_PACKAGE_PYTHON_COHERENCE
236 bool "python-coherence package removed"
237 select BR2_LEGACY
238 help
239 This package has been removed as it can't be built anymore due
240 to python-twisted being now incompatible with python 2.
241
242 config BR2_PACKAGE_PHP_EXT_XMLRPC
243 bool "PHP XMLRPC extension removed"
244 select BR2_LEGACY
245 help
246 The XMLRPC php extension was removed.
247 See: https://wiki.php.net/rfc/unbundle_xmlprc
248
249 config BR2_GCC_VERSION_8_X
250 bool "gcc 8.x support removed"
251 select BR2_LEGACY
252 help
253 Support for gcc version 8.x has been removed. The current
254 default version (10.x or later) has been selected instead.
255
256 comment "Legacy options removed in 2021.05"
257
258 config BR2_PACKAGE_UDISKS_LVM2
259 bool "udisks lvm2 support removed"
260 select BR2_LEGACY
261 help
262 The lvm2 support was removed because udisks < 2.7.0 still
263 depends on lvm2 application library, which was removed
264 in lvm2.
265
266 config BR2_PACKAGE_LVM2_APP_LIBRARY
267 bool "lvm2 application library removed"
268 select BR2_LEGACY
269 help
270 The lvm2 application library was removed upstream.
271
272 config BR2_PACKAGE_LVM2_LVMETAD
273 bool "lvm2 lvmetad removed"
274 select BR2_LEGACY
275 help
276 The lvm2 lvmetad was removed upstream.
277
278 config BR2_PACKAGE_MONKEY
279 bool "monkey package removed"
280 select BR2_LEGACY
281 help
282 This package has been removed as it has not seen any release
283 since 2016 and because TLS is broken on master.
284
285 config BR2_PACKAGE_DOCKER_CONTAINERD
286 bool "docker-containerd package was renamed to containerd"
287 select BR2_LEGACY
288 select BR2_PACKAGE_CONTAINERD
289 help
290 The containerd project is now independent from Docker.
291 The package was renamed to containerd accordingly.
292
293 config BR2_PACKAGE_IOSTAT
294 bool "iostat package removed"
295 select BR2_LEGACY
296 help
297 This package has been removed, use sysstat instead.
298
299 config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE
300 bool "sconeserver http::sconesite::image removed"
301 select BR2_LEGACY
302 help
303 Sconeserver cannot be built with ImageMagick - it uses the
304 "transofrm" function which is removed from public API.
305
306 config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV
307 bool "KDrive/TinyX evdev input driver removed"
308 select BR2_LEGACY
309 help
310 The evdev input driver in KDrive was removed.
311
312 config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD
313 bool "KDrive/TinyX kbd input driver removed"
314 select BR2_LEGACY
315 help
316 The kbd input driver in KDrive was removed.
317
318 config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE
319 bool "KDrive/TinyX mouse input driver removed"
320 select BR2_LEGACY
321 help
322 The mouse input driver in KDrive was removed.
323
324 config BR2_PACKAGE_MESA3D_OSMESA_CLASSIC
325 bool "mesa OSMesa (classic) option removed"
326 select BR2_LEGACY
327 select BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
328 help
329 The OSMesa "classic" library option was removed upstream.
330 Only the Gallium-based implementation remains.
331
332 config BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST
333 bool "mesa DRI swrast driver removed"
334 select BR2_LEGACY
335 select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST
336 help
337 The DRI swrast driver was removed upstream.
338 Only the Gallium-based implementation remains.
339
340 config BR2_PACKAGE_KODI_SCREENSAVER_CRYSTALMORPH
341 bool "kodi-screensaver-crystalmorph removed"
342 select BR2_LEGACY
343 help
344 The package received its last updates in 2017, is not part
345 of the official Kodi github repo and its build is broken
346 with Kodi 19.x, so it was removed.
347
348 comment "Legacy options removed in 2021.02"
349
350 config BR2_PACKAGE_MPD_AUDIOFILE
351 bool "mpd audiofile support removed"
352 select BR2_LEGACY
353 help
354 The audiofile support was removed from mpd as audiofile is
355 affected by multiple CVEs and is not maintained anymore (no
356 release since 2013).
357
358 config BR2_PACKAGE_AUDIOFILE
359 bool "audiofile package removed"
360 select BR2_LEGACY
361 help
362 The audiofile package was removed as it is affected by
363 multiple CVEs and is not maintained anymore (no release since
364 2013).
365
366 config BR2_BINUTILS_VERSION_2_33_X
367 bool "binutils 2.33.x has been removed"
368 select BR2_LEGACY
369 help
370 binutils 2.33.x has been removed, use a newer version.
371
372 config BR2_PACKAGE_LIBUPNP18
373 bool "libupnp18 package removed"
374 select BR2_LEGACY
375 select BR2_PACKAGE_LIBUPNP
376 help
377 Version 1.8.x of libupnp (i.e. libupnp18) has been removed
378 because it will never be fixed against CallStranger a.k.a.
379 CVE-2020-12695. The libupnp package (which has been updated to
380 version 1.14.x) has been selected instead.
381
382 config BR2_PACKAGE_BOA
383 bool "boa package removed"
384 select BR2_LEGACY
385 help
386 The boa package was removed as it is affected by multiple
387 CVEs and is not maintained anymore (no release since 2005).
388
389 config BR2_PACKAGE_LINUX_FIRMWARE_IMX_SDMA
390 bool "imx sdma firmware is provided by firmware-imx"
391 select BR2_LEGACY
392 select BR2_PACKAGE_FREESCALE_IMX
393 select BR2_PACKAGE_FIRMWARE_IMX
394 help
395 linux-firmware provide the same firmware as firmware-imx.
396 We prefer using firmware-imx as the only provider.
397
398 config BR2_GDB_VERSION_8_2
399 bool "gdb 8.2.x has been removed"
400 select BR2_LEGACY
401 help
402 gdb 8.2 support has been removed, you can use a newer
403 version such as 8.3 or more recent.
404
405 config BR2_PACKAGE_HOST_RCW
406 bool "rcw package was renamed to qoriq-rcw"
407 select BR2_PACKAGE_HOST_QORIQ_RCW
408 select BR2_LEGACY
409 help
410 The rcw package was specific to the QorIQ platform, so it has
411 been renamed to qoriq-rcw, to leave room for other *-rcw
412 packages for other platforms.
413
414 config BR2_KERNEL_HEADERS_5_9
415 bool "kernel headers version 5.9.x are no longer supported"
416 select BR2_LEGACY
417 help
418 Version 5.9.x of the Linux kernel headers are no longer
419 maintained upstream and are now removed.
420
421 config BR2_KERNEL_HEADERS_5_8
422 bool "kernel headers version 5.8.x are no longer supported"
423 select BR2_LEGACY
424 help
425 Version 5.8.x of the Linux kernel headers are no longer
426 maintained upstream and are now removed.
427
428 config BR2_powerpc_601
429 bool "PowerPC 601 support removed"
430 select BR2_LEGACY
431 help
432 The support for the PowerPC 601 processors has been removed.
433
434 config BR2_PACKAGE_TI_SGX_LIBGBM
435 bool "ti-sgx-libgbm support removed"
436 select BR2_LEGACY
437 help
438 TI has merged the ti-sgx-libgbm package with the ti-sgx-um
439 package
440
441 config BR2_PACKAGE_IPSEC_TOOLS
442 bool "ipsec-tools package was removed"
443 select BR2_LEGACY
444 help
445 This package has been removed as it has security issues and
446 has been abandoned since 2014.
447
448 comment "Legacy options removed in 2020.11"
449
450 config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED
451 bool "compile with fixed serial port speed"
452 select BR2_LEGACY
453 help
454 Since gpsd 3.20, GPSD_FIXED_PORT_SPEED is replaced
455 by runtime option --speed.
456
457 config BR2_PACKAGE_GPSD_RECONFIGURE
458 bool "allow gpsd to change device settings"
459 select BR2_LEGACY
460 help
461 Since gpsd 3.21, GPSD_RECONFIGURE is replaced
462 by runtime option --passive.
463
464 config BR2_PACKAGE_GPSD_CONTROLSEND
465 bool "allow gpsctl/gpsmon to change device settings"
466 select BR2_LEGACY
467 help
468 Option removed in gpsd 3.21
469
470 config BR2_PACKAGE_OPENCV
471 bool "opencv package was removed"
472 select BR2_LEGACY
473 help
474 This package has been removed, use opencv3 instead.
475
476 config BR2_PACKAGE_LIBCROCO
477 bool "libcroco package was removed"
478 select BR2_LEGACY
479 help
480 This package has been removed as it is affected by several
481 security issues such as CVE-2020-12825 which will never be
482 fixed as libcroco has been archived.
483
484 config BR2_PACKAGE_BELLAGIO
485 bool "bellagio package was removed"
486 select BR2_LEGACY
487 help
488 This package has been removed as it is not maintained anymore
489 (no release since 2011).
490
491 config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
492 bool "systemd-journal-gatewayd now in systemd-journal-remote"
493 select BR2_LEGACY
494 select BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE
495 help
496 All system journal remote programs are now enabled using
497 BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE.
498
499 config BR2_TARGET_UBOOT_BOOT_SCRIPT
500 bool "u-boot script generation was moved"
501 select BR2_LEGACY
502 select BR2_PACKAGE_HOST_UBOOT_TOOLS
503 select BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT
504 help
505 Migrated U-Boot script generation to uboot-tools
506
507 # Note: BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE is still referenced from
508 # package/uboot-tools/Config.in
509 config BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE
510 string "The uboot script source string has been renamed"
511 depends on BR2_TARGET_UBOOT_BOOT_SCRIPT
512 help
513 Migrated U-Boot script generation to uboot-tools.
514 New option is named
515 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE
516
517 config BR2_TARGET_UBOOT_ENVIMAGE
518 bool "u-boot env generation was moved"
519 select BR2_LEGACY
520 select BR2_PACKAGE_HOST_UBOOT_TOOLS
521 select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE
522 help
523 Migrated U-Boot env generation to uboot-tools
524
525 # Note: BR2_TARGET_UBOOT_ENVIMAGE_SOURCE is still referenced from
526 # package/uboot-tools/Config.in
527 config BR2_TARGET_UBOOT_ENVIMAGE_SOURCE
528 string "The uboot env image source string has been renamed"
529 depends on BR2_TARGET_UBOOT_ENVIMAGE
530 help
531 Migrated U-Boot env generation to uboot-tools.
532 New option is named
533 BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE
534
535 # Note: BR2_TARGET_UBOOT_ENVIMAGE_SIZE is still referenced from
536 # package/uboot-tools/Config.in
537 config BR2_TARGET_UBOOT_ENVIMAGE_SIZE
538 string "The uboot env image size string has been renamed"
539 depends on BR2_TARGET_UBOOT_ENVIMAGE
540 help
541 Migrated U-Boot env generation to uboot-tools.
542 New option is named BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SIZE
543
544 config BR2_TARGET_UBOOT_ENVIMAGE_REDUNDANT
545 bool "u-boot env generation was moved"
546 depends on BR2_TARGET_UBOOT_ENVIMAGE
547 select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_REDUNDANT
548 help
549 Migrated U-Boot env generation to uboot-tools
550
551 config BR2_PACKAGE_KISMET_CLIENT
552 bool "kismet client support was removed"
553 select BR2_LEGACY
554 help
555 Kismet client support was removed since version 2019-04-R1.
556
557 config BR2_PACKAGE_KISMET_DRONE
558 bool "kismet drone support was removed"
559 select BR2_LEGACY
560 help
561 Kismet drone support was removed since version 2019-04-R1.
562
563 config BR2_GCC_VERSION_7_X
564 bool "gcc 7.x support removed"
565 select BR2_LEGACY
566 help
567 Support for gcc version 7.x has been removed. The current
568 default version (9.x or later) has been selected instead.
569
570 config BR2_PACKAGE_GST1_VALIDATE
571 bool "gst1-validate was moved to gst1-devtools"
572 select BR2_PACKAGE_GST1_DEVTOOLS
573 select BR2_LEGACY
574 help
575 This package has been removed, use gst1-devtools instead.
576
577 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF
578 bool "gst1-plugins-bad yadif plugin was removed"
579 select BR2_LEGACY
580 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEINTERLACE
581 help
582 This plugin was removed with gst1-plugins-bad-1.18.0, the
583 same functionality has moved to gst1-plugins-good
584 deinterlace plugin (method=yadif).
585
586 config BR2_PACKAGE_GQVIEW
587 bool "gqview package was removed"
588 select BR2_LEGACY
589 help
590 This package has been removed as it is not maintained anymore
591 (no release since 2006).
592
593 config BR2_PACKAGE_WESTON_IMX
594 bool "weston-imx package was removed"
595 select BR2_LEGACY
596 help
597 This package has been removed, use weston instead.
598
599 config BR2_KERNEL_HEADERS_5_7
600 bool "kernel headers version 5.7.x are no longer supported"
601 select BR2_LEGACY
602 help
603 Version 5.7.x of the Linux kernel headers are no longer
604 maintained upstream and are now removed.
605
606 config BR2_PACKAGE_TINYHTTPD
607 bool "tinyhttpd package removed"
608 select BR2_LEGACY
609 help
610 The tinyhttpd package was removed as it is affected by
611 CVE-2002-1819 and is not maintained anymore (no release since
612 2001).
613
614 config BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX
615 bool "X.org Enable AIGLX Extension"
616 select BR2_LEGACY
617 help
618 AIGLX Extension was removed in X.org X server version 1.19.0
619
620 config BR2_PACKAGE_AMD_CATALYST
621 bool "amd-catalyst"
622 select BR2_LEGACY
623 help
624 Current X.org server is incompatible with this driver.
625
626 config BR2_PACKAGE_NVIDIA_TEGRA23
627 bool "nvidia-tegra23 package removed"
628 select BR2_LEGACY
629 help
630 Current X.org server is incompatible with this driver.
631
632 config BR2_GDB_VERSION_8_1
633 bool "gdb 8.1.x has been removed"
634 select BR2_LEGACY
635 help
636 The 8.1.x version of gdb has been removed. Use a newer
637 version instead.
638
639 comment "Legacy options removed in 2020.08"
640
641 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64
642 bool "toolchain-external-codesourcery-amd64 removed"
643 select BR2_LEGACY
644 help
645 The CodeSourcery toolchain for AMD64, in version 2016.11 was
646 dropped, due to it using a too old gcc 6.2.0 compiler which
647 caused issues compiling a number of recent packages
648 (e.g. Boost). CodeSourcery has stopped making newer versions
649 of this toolchain publicly available, so it was not possible
650 to update it.
651
652 config BR2_KERNEL_HEADERS_5_6
653 bool "kernel headers version 5.6.x are no longer supported"
654 select BR2_LEGACY
655 help
656 Version 5.6.x of the Linux kernel headers are no longer
657 maintained upstream and are now removed.
658
659 config BR2_KERNEL_HEADERS_5_5
660 bool "kernel headers version 5.5.x are no longer supported"
661 select BR2_LEGACY
662 help
663 Version 5.5.x of the Linux kernel headers are no longer
664 maintained upstream and are now removed.
665
666 config BR2_BINUTILS_VERSION_2_31_X
667 bool "binutils version 2.31.1 support removed"
668 select BR2_LEGACY
669 help
670 Support for binutils version 2.31.1 has been removed. The
671 current default version (2.33.1 or later) has been selected
672 instead.
673
674 config BR2_PACKAGE_KODI_PERIPHERAL_STEAMCONTROLLER
675 bool "kodi-peripheral-steamcontroller package was removed"
676 select BR2_LEGACY
677 help
678 This package is broken.
679
680 comment "Legacy options removed in 2020.05"
681
682 config BR2_PACKAGE_WIRINGPI
683 bool "wiringpi package removed"
684 select BR2_LEGACY
685 help
686 The author of wiringpi has deprecated the package, and
687 completely removed the git tree that was serving the
688 sources, with this message:
689 Please look for alternatives for wiringPi
690
691 config BR2_PACKAGE_PYTHON_PYCRYPTO
692 bool "python-pycrypto package removed"
693 select BR2_LEGACY
694 help
695 This package has been removed, use python-pycryptodomex
696 instead.
697
698 config BR2_PACKAGE_MTDEV2TUIO
699 bool "mtdev2tuio package removed"
700 select BR2_LEGACY
701 help
702 The mtdev2tuio package was removed as it breaks the builds
703 every now and then and is not maintained upstream.
704
705 config BR2_PACKAGE_EZXML
706 bool "ezxml package removed"
707 select BR2_LEGACY
708 help
709 The ezXML package was removed as it is affected by several
710 CVEs and is not maintained anymore (no release since 2006).
711
712 config BR2_PACKAGE_COLLECTD_LVM
713 bool "lvm support in collectd was removed"
714 select BR2_LEGACY
715 help
716 collectd removed LVM plugin, liblvm2app has been deprecated
717
718 config BR2_PACKAGE_PYTHON_PYASN
719 bool "duplicate python-pyasn1 package removed"
720 select BR2_LEGACY
721 select BR2_PACKAGE_PYTHON_PYASN1
722 help
723 This package was a duplicate of python-pyasn1.
724
725 config BR2_PACKAGE_PYTHON_PYASN_MODULES
726 bool "duplicate python-pyasn1-modules package removed"
727 select BR2_LEGACY
728 select BR2_PACKAGE_PYTHON_PYASN1_MODULES
729 help
730 This package was a duplicate of python-pyasn1-modules.
731
732 config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_10K_QCA6174
733 bool "duplicate QCA6174 firmware symbol removed"
734 select BR2_LEGACY
735 select BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174
736 help
737 This config symbol duplicates existing symbol for QCA6174
738 firmware.
739
740 config BR2_PACKAGE_QT5CANVAS3D
741 bool "qt5canvas3d was removed"
742 select BR2_LEGACY
743 help
744 This Qt5 module was removed by the upstream Qt project since
745 Qt 5.13, so the corresponding Buildroot package was removed
746 as well.
747
748 config BR2_PACKAGE_KODI_LIBTHEORA
749 bool "libtheora support in Kodi was removed"
750 select BR2_LEGACY
751 help
752 Kodi does not need libtheora
753
754 config BR2_PACKAGE_CEGUI06
755 bool "BR2_PACKAGE_CEGUI06 was renamed"
756 select BR2_PACKAGE_CEGUI
757 select BR2_LEGACY
758 help
759 The BR2_PACKAGE_CEGUI06 config symbol was renamed to
760 BR2_PACKAGE_CEGUI.
761
762 config BR2_GCC_VERSION_5_X
763 bool "gcc 5.x support removed"
764 select BR2_LEGACY
765 help
766 Support for gcc version 5.x has been removed. The current
767 default version (8.x or later) has been selected instead.
768
769 comment "Legacy options removed in 2020.02"
770
771 config BR2_PACKAGE_JAMVM
772 bool "jamvm removed"
773 select BR2_LEGACY
774 help
775 JamVM has not had a release since 2014 and is unmaintained.
776
777 config BR2_PACKAGE_CLASSPATH
778 bool "classpath removed"
779 select BR2_LEGACY
780 help
781 GNU Classpath package was removed. The last upstream
782 release was in 2012 and there hasn't been a commit
783 since 2016.
784
785 config BR2_PACKAGE_QT5_VERSION_5_6
786 bool "qt 5.6 support removed"
787 select BR2_LEGACY
788 help
789 Support for Qt 5.6 is EOL and has been removed. The current
790 version (5.12 or later) has been selected instead.
791
792 config BR2_PACKAGE_CURL
793 bool "BR2_PACKAGE_CURL was renamed"
794 select BR2_PACKAGE_LIBCURL_CURL
795 select BR2_LEGACY
796 help
797 The BR2_PACKAGE_CURL config symbol was renamed to
798 BR2_PACKAGE_LIBCURL_CURL.
799
800 config BR2_PACKAGE_GSTREAMER
801 bool "gstreamer-0.10 removed"
802 select BR2_LEGACY
803 help
804 Gstreamer-0.10 package was removed. It has been deprecated
805 upstream since 2012, and is missing a lot of features and
806 fixes compared to gstreamer-1.x.
807
808 config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_GSTREAMER_PLUGINS
809 bool "nvidia-tegra23 binaries gstreamer 0.10.x support removed"
810 select BR2_LEGACY
811 help
812 Gstreamer 0.10.x is no longer available in Buildroot, so
813 neither is the support in nvidia-tegra23 binaries.
814
815 config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_NV_SAMPLE_APPS
816 bool "nvidia-tegra23 binaries sample apps removed"
817 select BR2_LEGACY
818 help
819 Gstreamer 0.10.x is no longer available in Buildroot, so
820 neither is the support in nvidia-tegra23 binaries.
821
822 config BR2_PACKAGE_FREERDP_GSTREAMER
823 bool "freerdp gstreamer 0.10.x support removed"
824 select BR2_LEGACY
825 help
826 Gstreamer 0.10.x is no longer available in Buildroot, so
827 neither is the support in freerdp.
828
829 config BR2_PACKAGE_OPENCV3_WITH_GSTREAMER
830 bool "opencv3 gstreamer 0.10.x support removed"
831 select BR2_LEGACY
832 help
833 Gstreamer 0.10.x is no longer available in Buildroot, so
834 neither is the support in opencv3.
835
836 config BR2_PACKAGE_OPENCV_WITH_GSTREAMER
837 bool "opencv gstreamer 0.10.x support removed"
838 select BR2_LEGACY
839 help
840 Gstreamer 0.10.x is no longer available in Buildroot, so
841 neither is the support in opencv.
842
843 config BR2_PACKAGE_LIBPLAYER
844 bool "libplayer package was removed"
845 select BR2_LEGACY
846 help
847 The libplayer package was removed. The latest release is
848 from 2010 and none of the backends are available in
849 Buildroot any more.
850
851 config BR2_GCC_VERSION_OR1K
852 bool "gcc 5.x fork for or1k has been removed"
853 select BR2_LEGACY
854 help
855 Support for gcc 5.x for or1k has been removed. The current
856 default version (9.x or later) has been selected instead.
857
858 config BR2_PACKAGE_BLUEZ_UTILS
859 bool "bluez-utils was removed"
860 select BR2_LEGACY
861 select BR2_PACKAGE_BLUEZ5_UTILS if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 \
862 && BR2_TOOLCHAIN_HAS_SYNC_4
863 help
864 The bluez-utils (BlueZ 4.x) package was removed as it is
865 deprecated since a long time. As an alternative, the
866 bluez5-utils (BlueZ 5.x) has been automatically selected in
867 your configuration.
868
869 config BR2_PACKAGE_GADGETFS_TEST
870 bool "gadgetfs-test was removed"
871 select BR2_LEGACY
872 help
873 The gadgetfs-test package was removed. Gadgetfs has been
874 deprecated in favour of functionfs. Consider using
875 gadget-tool (gt) instead.
876
877 config BR2_PACKAGE_FIS
878 bool "fis was removed"
879 select BR2_LEGACY
880 help
881 The fis package was removed.
882
883 config BR2_PACKAGE_REFPOLICY_POLICY_VERSION
884 string "refpolicy policy version"
885 help
886 The refpolicy policy version option has been moved to the
887 libsepol package.
888
889 config BR2_PACKAGE_REFPOLICY_POLICY_VERSION_WRAP
890 bool
891 default y if BR2_PACKAGE_REFPOLICY_POLICY_VERSION != ""
892 select BR2_LEGACY
893
894 config BR2_PACKAGE_CELT051
895 bool "celt051 package was removed"
896 select BR2_LEGACY
897 select BR2_PACKAGE_OPUS
898 help
899 The celt051 package was removed as it is now obsolete since
900 the CELT codec has been merged into the IETF Opus codec. As
901 a result, the opus package has been automatically selected
902 in your configuration.
903
904 config BR2_PACKAGE_WIREGUARD
905 bool "wireguard package renamed"
906 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
907 select BR2_LEGACY
908 select BR2_PACKAGE_WIREGUARD_LINUX_COMPAT if BR2_LINUX_KERNEL
909 select BR2_PACKAGE_WIREGUARD_TOOLS
910 help
911 The wireguard package has been renamed to wireguard-tools
912 for the userspace tooling and wireguard-linux-compat for the
913 kernel side for legacy (<5.6) kernels to match upstream.
914
915 config BR2_PACKAGE_PERL_NET_PING
916 bool "perl-net-ping was removed"
917 select BR2_LEGACY
918 help
919 Net::Ping is a Perl core module (ie. bundled with perl).
920
921 config BR2_PACKAGE_PERL_MIME_BASE64
922 bool "perl-mime-base64 was removed"
923 select BR2_LEGACY
924 help
925 MIME::Base64 is a Perl core module (ie. bundled with perl).
926
927 config BR2_PACKAGE_PERL_DIGEST_MD5
928 bool "perl-digest-md5 was removed"
929 select BR2_LEGACY
930 help
931 Digest::MD5 is a Perl core module (ie. bundled with perl).
932
933 config BR2_PACKAGE_ERLANG_P1_ICONV
934 bool "erlang-p1-iconv has been removed"
935 select BR2_LEGACY
936 help
937 The erlang-p1-iconv package was no longer used by ejabberd,
938 and was no longer maintained upstream, so it was removed.
939
940 config BR2_KERNEL_HEADERS_5_3
941 bool "kernel headers version 5.3.x are no longer supported"
942 select BR2_LEGACY
943 help
944 Version 5.3.x of the Linux kernel headers are no longer
945 maintained upstream and are now removed.
946
947 config BR2_PACKAGE_PYTHON_SCAPY3K
948 bool "python-scapy3k is replaced by python-scapy"
949 select BR2_LEGACY
950 select BR2_PACKAGE_PYTHON_SCAPY
951 help
952 python-scapy3k has been deprecated, since python-scapy has
953 gained Python 3 support. Use BR2_PACKAGE_PYTHON_SCAPY
954 instead.
955
956 config BR2_BINUTILS_VERSION_2_30_X
957 bool "binutils version 2.30 support removed"
958 select BR2_LEGACY
959 help
960 Support for binutils version 2.30 has been removed. The
961 current default version (2.31 or later) has been selected
962 instead.
963
964 config BR2_PACKAGE_RPI_USERLAND_START_VCFILED
965 bool "rpi-userland start vcfiled was removed"
966 select BR2_LEGACY
967 help
968 The vcfiled support was removed upstream.
969
970 comment "Legacy options removed in 2019.11"
971
972 config BR2_PACKAGE_OPENVMTOOLS_PROCPS
973 bool "openvmtools' procps support was removed"
974 select BR2_LEGACY
975 help
976 Upstream stopped supporting this option a while ago.
977
978 config BR2_PACKAGE_ALLJOYN
979 bool "alljoyn was removed"
980 select BR2_LEGACY
981 help
982 The alljoyn framework is dead
983
984 config BR2_PACKAGE_ALLJOYN_BASE
985 bool "alljoyn-base was removed"
986 select BR2_LEGACY
987 help
988 The alljoyn framework is dead
989
990 config BR2_PACKAGE_ALLJOYN_BASE_CONTROLPANEL
991 bool "alljoyn-base control panel was removed"
992 select BR2_LEGACY
993 help
994 The alljoyn framework is dead
995
996 config BR2_PACKAGE_ALLJOYN_BASE_NOTIFICATION
997 bool "alljoyn-base notification was removed"
998 select BR2_LEGACY
999 help
1000 The alljoyn framework is dead
1001
1002 config BR2_PACKAGE_ALLJOYN_BASE_ONBOARDING
1003 bool "alljoyn-base onboarding was removed"
1004 select BR2_LEGACY
1005 help
1006 The alljoyn framework is dead
1007
1008 config BR2_PACKAGE_ALLJOYN_TCL_BASE
1009 bool "alljoyn-tcl-base was removed"
1010 select BR2_LEGACY
1011 help
1012 The alljoyn framework is dead
1013
1014 config BR2_PACKAGE_ALLJOYN_TCL
1015 bool "alljoyn-tcl was removed"
1016 select BR2_LEGACY
1017 help
1018 The alljoyn framework is dead
1019
1020 config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS
1021 string "toolchain-external extra libs option has been renamed"
1022 help
1023 The option BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS has
1024 been renamed to BR2_TOOLCHAIN_EXTRA_LIBS.
1025
1026 config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS_WRAP
1027 bool
1028 default y if BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS != ""
1029 select BR2_LEGACY
1030
1031 config BR2_PACKAGE_PYTHON_PYSNMP_APPS
1032 bool "python-pysnmp-apps was removed"
1033 select BR2_LEGACY
1034 select BR2_PACKAGE_SNMPCLITOOLS
1035 help
1036 Following upstream changes, the python-pysnmp-apps package
1037 has been removed, and snmpclitools should be used as a
1038 replacement.
1039
1040 config BR2_KERNEL_HEADERS_5_2
1041 bool "kernel headers version 5.2.x are no longer supported"
1042 select BR2_LEGACY
1043 help
1044 Version 5.2.x of the Linux kernel headers are no longer
1045 maintained upstream and are now removed.
1046
1047 config BR2_TARGET_RISCV_PK
1048 bool "riscv-pk was removed"
1049 select BR2_LEGACY
1050 help
1051 The RISC-V Proxy Kernel (pk) and Berkley Boot Loader (BBL)
1052 have been replaced with OpenSBI.
1053
1054 config BR2_PACKAGE_SQLITE_STAT3
1055 bool "sqlite stat3 support was removed"
1056 select BR2_LEGACY
1057 help
1058 Upstream removed the support for stat3.
1059
1060 config BR2_KERNEL_HEADERS_5_1
1061 bool "kernel headers version 5.1.x are no longer supported"
1062 select BR2_LEGACY
1063 help
1064 Version 5.1.x of the Linux kernel headers are no longer
1065 maintained upstream and are now removed.
1066
1067 config BR2_PACKAGE_DEVMEM2
1068 bool "devmem2 package was removed"
1069 select BR2_LEGACY
1070 help
1071 Use the the Busybox devmem utility, instead, which provides
1072 the same functionality.
1073
1074 config BR2_PACKAGE_USTR
1075 bool "ustr package removed"
1076 select BR2_LEGACY
1077 help
1078 The 'ustr' package was only used by SELinux libsemanage, but
1079 since SELinux 2.7, ustr is no longer used. Therefore, we
1080 removed this package from Buildroot.
1081
1082 config BR2_PACKAGE_KODI_SCREENSAVER_PLANESTATE
1083 bool "kodi-screensaver-planestate package was removed"
1084 select BR2_LEGACY
1085 help
1086 This package is incompatible with Kodi 18.x.
1087
1088 config BR2_PACKAGE_KODI_VISUALISATION_WAVEFORHUE
1089 bool "kodi-visualisation-waveforhue package was removed"
1090 select BR2_LEGACY
1091 help
1092 This package is incompatible with Kodi 18.x.
1093
1094 config BR2_PACKAGE_KODI_AUDIODECODER_OPUS
1095 bool "kodi-audiodecoder-opus package was removed"
1096 select BR2_LEGACY
1097 help
1098 This package is incompatible with Kodi 18.x.
1099
1100 config BR2_PACKAGE_MESA3D_OSMESA
1101 bool "mesa OSMesa option renamed"
1102 select BR2_PACKAGE_MESA3D_OSMESA_CLASSIC if BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST
1103 select BR2_LEGACY
1104 help
1105 The option was renamed in order to match the naming used
1106 by the meson buildsystem.
1107
1108 config BR2_PACKAGE_HOSTAPD_DRIVER_RTW
1109 bool "hostapd rtl871xdrv driver removed"
1110 select BR2_LEGACY
1111 help
1112 Since the update of hostapd to 2.9, the patch provided for
1113 the rtl871xdrv no longer works, although it
1114 applies. Moreover, AP support for Realtek chips is broken
1115 anyway in kernels > 4.9. Therefore, this option has been
1116 removed.
1117
1118 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
1119 bool "new dbus support option in wpa_supplicant was renamed"
1120 select BR2_PACKAGE_WPA_SUPPLICANT_DBUS if BR2_TOOLCHAIN_HAS_THREADS
1121 select BR2_LEGACY
1122 help
1123 The new dbus support option was renamed.
1124
1125 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD
1126 bool "old dbus support in wpa_supplicant was removed"
1127 select BR2_LEGACY
1128 help
1129 The old dbus support was removed.
1130
1131 comment "Legacy options removed in 2019.08"
1132
1133 config BR2_TARGET_TS4800_MBRBOOT
1134 bool "ts4800-mbrboot package was removed"
1135 select BR2_LEGACY
1136 help
1137 The defconfig for the TS4800 platform has been removed, so
1138 the ts4800-mbrboot package, containing the boot code for
1139 this specific platform has been removed as welL.
1140
1141 config BR2_PACKAGE_LIBAMCODEC
1142 bool "liamcodec package was removed"
1143 select BR2_LEGACY
1144 help
1145 Support for odroidc2 based systems was removed, making the
1146 libamcodec package useless.
1147
1148 config BR2_PACKAGE_ODROID_SCRIPTS
1149 bool "odroid-scripts package was removed"
1150 select BR2_LEGACY
1151 help
1152 Support for odroidc2 based systems was removed, making the
1153 odroid-scripts package useless.
1154
1155 config BR2_PACKAGE_ODROID_MALI
1156 bool "odroid-mali package was removed"
1157 select BR2_LEGACY
1158 help
1159 Support for odroidc2 based systems was removed, making the
1160 odroid-mali package useless.
1161
1162 config BR2_PACKAGE_KODI_PLATFORM_AML
1163 bool "Kodi AMLogic support was removed"
1164 select BR2_LEGACY
1165 help
1166 Support for AMLogic was removed due to the removal of the
1167 odroidc2 defconfig.
1168
1169 config BR2_GCC_VERSION_6_X
1170 bool "gcc 6.x support removed"
1171 select BR2_LEGACY
1172 help
1173 Support for gcc version 6.x has been removed. The current
1174 default version (8.x or later) has been selected instead.
1175
1176 config BR2_GCC_VERSION_4_9_X
1177 bool "gcc 4.9.x support removed"
1178 select BR2_LEGACY
1179 help
1180 Support for gcc version 4.9.x has been removed. The current
1181 default version (8.x or later) has been selected instead.
1182
1183 config BR2_GDB_VERSION_7_12
1184 bool "gdb 7.12.x has been removed"
1185 select BR2_LEGACY
1186 help
1187 The 7.12.x version of gdb has been removed. Use a newer
1188 version instead.
1189
1190 config BR2_PACKAGE_XAPP_MKFONTDIR
1191 bool "mkfontdir is now included in xapp_mkfontscale"
1192 select BR2_PACKAGE_XAPP_MKFONTSCALE
1193 select BR2_LEGACY
1194 help
1195 xapp_mkfontscale now includes the mkfontdir script previously
1196 distributed separately for compatibility with older X11
1197 versions.
1198
1199 config BR2_GDB_VERSION_8_0
1200 bool "gdb 8.0.x has been removed"
1201 select BR2_LEGACY
1202 help
1203 The 8.0.x version of gdb has been removed. Use a newer
1204 version instead.
1205
1206 config BR2_KERNEL_HEADERS_4_20
1207 bool "kernel headers version 4.20.x are no longer supported"
1208 select BR2_LEGACY
1209 help
1210 Version 4.20.x of the Linux kernel headers are no longer
1211 maintained upstream and are now removed.
1212
1213 config BR2_KERNEL_HEADERS_5_0
1214 bool "kernel headers version 5.0.x are no longer supported"
1215 select BR2_LEGACY
1216 help
1217 Version 5.0.x of the Linux kernel headers are no longer
1218 maintained upstream and are now removed.
1219
1220 comment "Legacy options removed in 2019.05"
1221
1222 config BR2_CSKY_DSP
1223 bool "C-SKY DSP support removed"
1224 select BR2_LEGACY
1225 help
1226 C-SKY DSP instruction support for ck810 / ck807 was removed,
1227 as it was no longer supported in C-SKY gcc. Perhaps the VDSP
1228 instructions should be used instead, using the BR2_CSKY_VDSP
1229 option.
1230
1231 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COMPOSITOR
1232 bool "compositor moved to gst1-plugins-base"
1233 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR
1234 select BR2_LEGACY
1235 help
1236 The gst1-plugins-bad compositor plugin has moved
1237 to gst1-plugins-base.
1238
1239 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
1240 bool "gst-plugins-bad IQA option was removed"
1241 select BR2_LEGACY
1242 help
1243 The gst1-plugins-bad IQA option was removed.
1244
1245 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV
1246 bool "gst-plugins-bad opencv option was removed"
1247 select BR2_LEGACY
1248 help
1249 The gst1-plugins-bad opencv option was removed because
1250 buildroot does not have the opencv_contrib package which
1251 is required for the bgsegm module which gst1-plugins-bad
1252 now requires along with opencv3.
1253
1254 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_STEREO
1255 bool "stereo was merged into audiofx in gst1-plugins-good"
1256 select BR2_LEGACY
1257 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX
1258 help
1259 The gst1-plugins-bad stereo plugin has merged with the
1260 gst1-plugins-base audiofx plugin.
1261
1262 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD
1263 bool "gst-plugins-bad vcd plugin was removed."
1264 select BR2_LEGACY
1265 help
1266 The gst1-plugins-bad vcd plugin was removed.
1267
1268 config BR2_PACKAGE_LUNIT
1269 bool "lunit package removed"
1270 select BR2_LEGACY
1271 select BR2_PACKAGE_LUA_LUNITX
1272 help
1273 The lunit package was removed in favor of its fork lunitx,
1274 which supports all versions of Lua.
1275
1276 config BR2_PACKAGE_FFMPEG_FFSERVER
1277 bool "ffmpeg ffserver removed"
1278 select BR2_LEGACY
1279 help
1280 On July 10th, 2016, ffserver program has been dropped.
1281
1282 config BR2_PACKAGE_LIBUMP
1283 bool "libump package removed"
1284 select BR2_LEGACY
1285 help
1286 The libump package was removed, it was only used as a
1287 dependency of sunxi-mali, which itself was removed.
1288
1289 config BR2_PACKAGE_SUNXI_MALI
1290 bool "sunxi-mali package removed"
1291 select BR2_LEGACY
1292 select BR2_PACKAGE_SUNXI_MALI_MAINLINE
1293 help
1294 The sunxi-mali package was removed, as the
1295 sunxi-mali-mainline package replaces it for mainline
1296 kernels on Allwinner platforms.
1297
1298 config BR2_BINUTILS_VERSION_2_29_X
1299 bool "binutils version 2.29 support removed"
1300 select BR2_LEGACY
1301 help
1302 Support for binutils version 2.29 has been removed. The
1303 current default version (2.31 or later) has been selected
1304 instead.
1305
1306 config BR2_BINUTILS_VERSION_2_28_X
1307 bool "binutils version 2.28 support removed"
1308 select BR2_LEGACY
1309 help
1310 Support for binutils version 2.28 has been removed. The
1311 current default version (2.31 or later) has been selected
1312 instead.
1313
1314 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
1315 bool "gst-plugins-bad apexsink option removed"
1316 select BR2_LEGACY
1317 help
1318 The gst-plugins-bad apexsink option was removed.
1319
1320 comment "Legacy options removed in 2019.02"
1321
1322 config BR2_PACKAGE_QT
1323 bool "qt package removed"
1324 select BR2_LEGACY
1325 help
1326 The qt package was removed.
1327
1328 config BR2_PACKAGE_QTUIO
1329 bool "qtuio package removed"
1330 select BR2_LEGACY
1331 help
1332 The qtuio package was removed.
1333
1334 config BR2_PACKAGE_PINENTRY_QT4
1335 bool "pinentry-qt4 option removed"
1336 select BR2_LEGACY
1337 help
1338 The pinentry-qt4 option was removed.
1339
1340 config BR2_PACKAGE_POPPLER_QT
1341 bool "poppler qt option removed"
1342 select BR2_LEGACY
1343 help
1344 The poppler qt option was removed.
1345
1346 config BR2_PACKAGE_OPENCV3_WITH_QT
1347 bool "opencv3 qt backend option removed"
1348 select BR2_LEGACY
1349 help
1350 The opencv3 qt backend option was removed.
1351
1352 config BR2_PACKAGE_OPENCV_WITH_QT
1353 bool "opencv qt backend option removed"
1354 select BR2_LEGACY
1355 help
1356 The opencv qt backend option was removed.
1357
1358 config BR2_PACKAGE_AMD_CATALYST_CCCLE
1359 bool "catalyst control center option removed"
1360 select BR2_LEGACY
1361 help
1362 The AMD Catalyst Control Center option was removed.
1363
1364 config BR2_PACKAGE_SDL_QTOPIA
1365 bool "sdl qtopia video driver option removed"
1366 select BR2_LEGACY
1367 help
1368 The SDL QTopia video driver option was removed.
1369
1370 config BR2_PACKAGE_PYTHON_PYQT
1371 bool "python-pyqt package removed"
1372 select BR2_LEGACY
1373 help
1374 The python-pyqt package was removed. Consider python-pyqt5
1375 instead.
1376
1377 config BR2_PACKAGE_LUACRYPTO
1378 bool "luacrypto package removed"
1379 select BR2_LEGACY
1380 help
1381 The luacrypto package was removed. Consider luaossl instead.
1382
1383 config BR2_PACKAGE_TN5250
1384 bool "tn5250 package removed"
1385 select BR2_LEGACY
1386 help
1387 The tn5250 package was removed.
1388
1389 config BR2_PACKAGE_BOOST_SIGNALS
1390 bool "Boost signals removed"
1391 select BR2_LEGACY
1392 help
1393 Its removal was announced in boost 1.68 and its deprecation
1394 was announced in 1.54. Users are encouraged to use Signals2
1395 instead.
1396
1397 config BR2_PACKAGE_FFTW_PRECISION_SINGLE
1398 bool "single"
1399 select BR2_LEGACY
1400 select BR2_PACKAGE_FFTW_SINGLE
1401 help
1402 This option has been removed in favor of
1403 BR2_PACKAGE_FFTW_SINGLE.
1404
1405 config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
1406 bool "double"
1407 select BR2_LEGACY
1408 select BR2_PACKAGE_FFTW_DOUBLE
1409 help
1410 This option has been removed in favor of
1411 BR2_PACKAGE_FFTW_DOUBLE.
1412
1413 config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
1414 bool "long double"
1415 depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
1416 (BR2_arm || BR2_mips || BR2_mipsel))
1417 select BR2_LEGACY
1418 select BR2_PACKAGE_FFTW_LONG_DOUBLE
1419 help
1420 This option has been removed in favor of
1421 BR2_PACKAGE_FFTW_LONG_DOUBLE.
1422
1423 config BR2_PACKAGE_FFTW_PRECISION_QUAD
1424 bool "quad"
1425 depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
1426 select BR2_LEGACY
1427 select BR2_PACKAGE_FFTW_QUAD
1428 help
1429 This option has been removed in favor of
1430 BR2_PACKAGE_FFTW_QUAD.
1431
1432 config BR2_PACKAGE_LUA_5_2
1433 bool "Lua 5.2.x version removed"
1434 select BR2_LEGACY
1435 select BR2_PACKAGE_LUA_5_3
1436 help
1437 The Lua 5.2.x version was removed.
1438
1439 config BR2_TARGET_GENERIC_PASSWD_MD5
1440 bool "target passwd md5 format support has been removed"
1441 select BR2_LEGACY
1442 help
1443 The default has been moved to SHA256 and all C libraries
1444 now support that method by default
1445
1446 comment "Legacy options removed in 2018.11"
1447
1448 config BR2_TARGET_XLOADER
1449 bool "xloader has been removed"
1450 select BR2_LEGACY
1451 help
1452 The package has been removed as u-boot SPL provides
1453 similar functionality
1454
1455 config BR2_PACKAGE_TIDSP_BINARIES
1456 bool "tidsp-binaries package removed"
1457 select BR2_LEGACY
1458 help
1459 The tidsp-binaries package was removed.
1460
1461 config BR2_PACKAGE_DSP_TOOLS
1462 bool "dsp-tools package removed"
1463 select BR2_LEGACY
1464 help
1465 The dsp-tools package was removed.
1466
1467 config BR2_PACKAGE_GST_DSP
1468 bool "gst-dsp package removed"
1469 select BR2_LEGACY
1470 help
1471 The gst-dsp package was removed.
1472
1473 config BR2_PACKAGE_BOOTUTILS
1474 bool "bootutils package removed"
1475 select BR2_LEGACY
1476 help
1477 The bootutils package was removed.
1478
1479 config BR2_PACKAGE_EXPEDITE
1480 bool "expedite package has been removed"
1481 select BR2_LEGACY
1482 help
1483 expedite is not actively maintained anymore.
1484 https://sourceforge.net/p/enlightenment/mailman/message/36428571
1485
1486 config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
1487 bool "mesa3d opengl texture float option removed"
1488 select BR2_LEGACY
1489 help
1490 mesa3d now unconditionally enables floating-point textures,
1491 as the corresponding patent has expired.
1492
1493 config BR2_KERNEL_HEADERS_4_10
1494 bool "kernel headers version 4.10.x are no longer supported"
1495 select BR2_LEGACY
1496 help
1497 Version 4.10.x of the Linux kernel headers are no longer
1498 maintained upstream and are now removed.
1499
1500 config BR2_KERNEL_HEADERS_4_11
1501 bool "kernel headers version 4.11.x are no longer supported"
1502 select BR2_LEGACY
1503 help
1504 Version 4.11.x of the Linux kernel headers are no longer
1505 maintained upstream and are now removed.
1506
1507 config BR2_KERNEL_HEADERS_4_12
1508 bool "kernel headers version 4.12.x are no longer supported"
1509 select BR2_LEGACY
1510 help
1511 Version 4.12.x of the Linux kernel headers are no longer
1512 maintained upstream and are now removed.
1513
1514 config BR2_KERNEL_HEADERS_4_13
1515 bool "kernel headers version 4.13.x are no longer supported"
1516 select BR2_LEGACY
1517 help
1518 Version 4.13.x of the Linux kernel headers are no longer
1519 maintained upstream and are now removed.
1520
1521 config BR2_KERNEL_HEADERS_4_15
1522 bool "kernel headers version 4.15.x are no longer supported"
1523 select BR2_LEGACY
1524 help
1525 Version 4.15.x of the Linux kernel headers are no longer
1526 maintained upstream and are now removed.
1527
1528 config BR2_KERNEL_HEADERS_4_17
1529 bool "kernel headers version 4.17.x are no longer supported"
1530 select BR2_LEGACY
1531 help
1532 Version 4.17.x of the Linux kernel headers are no longer
1533 maintained upstream and are now removed.
1534
1535 config BR2_PACKAGE_LIBNFTNL_XML
1536 bool "libnftl no longer supports XML output"
1537 select BR2_LEGACY
1538 help
1539 libnftnl removed integration with libmxml.
1540
1541 config BR2_KERNEL_HEADERS_3_2
1542 bool "kernel headers version 3.2.x are no longer supported"
1543 select BR2_LEGACY
1544 help
1545 Version 3.2.x of the Linux kernel headers are no longer
1546 maintained upstream and are now removed.
1547
1548 config BR2_KERNEL_HEADERS_4_1
1549 bool "kernel headers version 4.1.x are no longer supported"
1550 select BR2_LEGACY
1551 help
1552 Version 4.1.x of the Linux kernel headers are no longer
1553 maintained upstream and are now removed.
1554
1555 config BR2_KERNEL_HEADERS_4_16
1556 bool "kernel headers version 4.16.x are no longer supported"
1557 select BR2_LEGACY
1558 help
1559 Version 4.16.x of the Linux kernel headers are no longer
1560 maintained upstream and are now removed.
1561
1562 config BR2_KERNEL_HEADERS_4_18
1563 bool "kernel headers version 4.18.x are no longer supported"
1564 select BR2_LEGACY
1565 help
1566 Version 4.18.x of the Linux kernel headers are no longer
1567 maintained upstream and are now removed.
1568
1569 ###############################################################################
1570 comment "Legacy options removed in 2018.08"
1571
1572 config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
1573 bool "docker-engine static client option renamed"
1574 select BR2_LEGACY
1575 select BR2_PACKAGE_DOCKER_CLI_STATIC
1576 help
1577 BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
1578 BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
1579 docker-engine and docker-cli.
1580
1581 config BR2_PACKAGE_XPROTO_APPLEWMPROTO
1582 bool "xproto-applewmproto package replaced by xorgproto"
1583 select BR2_LEGACY
1584 select BR2_PACKAGE_XORGPROTO
1585 help
1586 The xproto-applewmproto package has been replaced by the
1587 xorgproto package, which combines all xproto_* packages.
1588
1589 config BR2_PACKAGE_XPROTO_BIGREQSPROTO
1590 bool "xproto-bigreqsproto package replaced by xorgproto"
1591 select BR2_LEGACY
1592 select BR2_PACKAGE_XORGPROTO
1593 help
1594 The xproto-bigreqsproto package has been replaced by the
1595 xorgproto package, which combines all xproto_* packages.
1596
1597 config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
1598 bool "xproto-compositeproto package replaced by xorgproto"
1599 select BR2_LEGACY
1600 select BR2_PACKAGE_XORGPROTO
1601 help
1602 The xproto-compositeproto package has been replaced by the
1603 xorgproto package, which combines all xproto_* packages.
1604
1605 config BR2_PACKAGE_XPROTO_DAMAGEPROTO
1606 bool "xproto-dameproto package replaced by xorgproto"
1607 select BR2_LEGACY
1608 select BR2_PACKAGE_XORGPROTO
1609 help
1610 The xproto-dameproto package has been replaced by the
1611 xorgproto package, which combines all xproto_* packages.
1612
1613 config BR2_PACKAGE_XPROTO_DMXPROTO
1614 bool "xproto-dmxproto package replaced by xorgproto"
1615 select BR2_LEGACY
1616 select BR2_PACKAGE_XORGPROTO
1617 help
1618 The xproto-dmxproto package has been replaced by the
1619 xorgproto package, which combines all xproto_* packages.
1620
1621 config BR2_PACKAGE_XPROTO_DRI2PROTO
1622 bool "xproto-dri2proto package replaced by xorgproto"
1623 select BR2_LEGACY
1624 select BR2_PACKAGE_XORGPROTO
1625 help
1626 The xproto-dri2proto package has been replaced by the
1627 xorgproto package, which combines all xproto_* packages.
1628
1629 config BR2_PACKAGE_XPROTO_DRI3PROTO
1630 bool "xproto-dri3proto package replaced by xorgproto"
1631 select BR2_LEGACY
1632 select BR2_PACKAGE_XORGPROTO
1633 help
1634 The xproto-dri3proto package has been replaced by the
1635 xorgproto package, which combines all xproto_* packages.
1636
1637 config BR2_PACKAGE_XPROTO_FIXESPROTO
1638 bool "xproto-fixesproto package replaced by xorgproto"
1639 select BR2_LEGACY
1640 select BR2_PACKAGE_XORGPROTO
1641 help
1642 The xproto-fixesproto package has been replaced by the
1643 xorgproto package, which combines all xproto_* packages.
1644
1645 config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
1646 bool "xproto-fontcacheproto package replaced by xorgproto"
1647 select BR2_LEGACY
1648 select BR2_PACKAGE_XORGPROTO
1649 help
1650 The xproto-fontcacheproto package has been replaced by the
1651 xorgproto package, which combines all xproto_* packages.
1652
1653 config BR2_PACKAGE_XPROTO_FONTSPROTO
1654 bool "xproto-fontsproto package replaced by xorgproto"
1655 select BR2_LEGACY
1656 select BR2_PACKAGE_XORGPROTO
1657 help
1658 The xproto-fontsproto package has been replaced by the
1659 xorgproto package, which combines all xproto_* packages.
1660
1661 config BR2_PACKAGE_XPROTO_GLPROTO
1662 bool "xproto-glproto package replaced by xorgproto"
1663 select BR2_LEGACY
1664 select BR2_PACKAGE_XORGPROTO
1665 help
1666 The xproto-glproto package has been replaced by the
1667 xorgproto package, which combines all xproto_* packages.
1668
1669 config BR2_PACKAGE_XPROTO_INPUTPROTO
1670 bool "xproto-inputproto package replaced by xorgproto"
1671 select BR2_LEGACY
1672 select BR2_PACKAGE_XORGPROTO
1673 help
1674 The xproto-inputproto package has been replaced by the
1675 xorgproto package, which combines all xproto_* packages.
1676
1677 config BR2_PACKAGE_XPROTO_KBPROTO
1678 bool "xproto-kbproto package replaced by xorgproto"
1679 select BR2_LEGACY
1680 select BR2_PACKAGE_XORGPROTO
1681 help
1682 The xproto-kbproto package has been replaced by the
1683 xorgproto package, which combines all xproto_* packages.
1684
1685 config BR2_PACKAGE_XPROTO_PRESENTPROTO
1686 bool "xproto-presentproto package replaced by xorgproto"
1687 select BR2_LEGACY
1688 select BR2_PACKAGE_XORGPROTO
1689 help
1690 The xproto-presentproto package has been replaced by the
1691 xorgproto package, which combines all xproto_* packages.
1692
1693 config BR2_PACKAGE_XPROTO_RANDRPROTO
1694 bool "xproto-randrproto package replaced by xorgproto"
1695 select BR2_LEGACY
1696 select BR2_PACKAGE_XORGPROTO
1697 help
1698 The xproto-randrproto package has been replaced by the
1699 xorgproto package, which combines all xproto_* packages.
1700
1701 config BR2_PACKAGE_XPROTO_RECORDPROTO
1702 bool "xproto-recordproto package replaced by xorgproto"
1703 select BR2_LEGACY
1704 select BR2_PACKAGE_XORGPROTO
1705 help
1706 The xproto-recordproto package has been replaced by the
1707 xorgproto package, which combines all xproto_* packages.
1708
1709 config BR2_PACKAGE_XPROTO_RENDERPROTO
1710 bool "xproto-renderproto package replaced by xorgproto"
1711 select BR2_LEGACY
1712 select BR2_PACKAGE_XORGPROTO
1713 help
1714 The xproto-renderproto package has been replaced by the
1715 xorgproto package, which combines all xproto_* packages.
1716
1717 config BR2_PACKAGE_XPROTO_RESOURCEPROTO
1718 bool "xproto-resourceproto package replaced by xorgproto"
1719 select BR2_LEGACY
1720 select BR2_PACKAGE_XORGPROTO
1721 help
1722 The xproto-resourceproto package has been replaced by the
1723 xorgproto package, which combines all xproto_* packages.
1724
1725 config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
1726 bool "xproto-scrnsaverprot package replaced by xorgproto"
1727 select BR2_LEGACY
1728 select BR2_PACKAGE_XORGPROTO
1729 help
1730 The xproto-scrnsaverprot package has been replaced by the
1731 xorgproto package, which combines all xproto_* packages.
1732
1733 config BR2_PACKAGE_XPROTO_VIDEOPROTO
1734 bool "xproto-videoproto package replaced by xorgproto"
1735 select BR2_LEGACY
1736 select BR2_PACKAGE_XORGPROTO
1737 help
1738 The xproto-videoproto package has been replaced by the
1739 xorgproto package, which combines all xproto_* packages.
1740
1741 config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
1742 bool "xproto-windowswmproto package replaced by xorgproto"
1743 select BR2_LEGACY
1744 select BR2_PACKAGE_XORGPROTO
1745 help
1746 The xproto-windowswmproto package has been replaced by the
1747 xorgproto package, which combines all xproto_* packages.
1748
1749 config BR2_PACKAGE_XPROTO_XCMISCPROTO
1750 bool "xproto-xcmiscproto package replaced by xorgproto"
1751 select BR2_LEGACY
1752 select BR2_PACKAGE_XORGPROTO
1753 help
1754 The xproto-xcmiscproto package has been replaced by the
1755 xorgproto package, which combines all xproto_* packages.
1756
1757 config BR2_PACKAGE_XPROTO_XEXTPROTO
1758 bool "xproto-xextproto package replaced by xorgproto"
1759 select BR2_LEGACY
1760 select BR2_PACKAGE_XORGPROTO
1761 help
1762 The xproto-xextproto package has been replaced by the
1763 xorgproto package, which combines all xproto_* packages.
1764
1765 config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
1766 bool "xproto-xf86bigfontproto package replaced by xorgproto"
1767 select BR2_LEGACY
1768 select BR2_PACKAGE_XORGPROTO
1769 help
1770 The xproto-xf86bigfontproto package has been replaced by the
1771 xorgproto package, which combines all xproto_* packages.
1772
1773 config BR2_PACKAGE_XPROTO_XF86DGAPROTO
1774 bool "xproto-xf86dgaproto package replaced by xorgproto"
1775 select BR2_LEGACY
1776 select BR2_PACKAGE_XORGPROTO
1777 help
1778 The xproto-xf86dgaproto package has been replaced by the
1779 xorgproto package, which combines all xproto_* packages.
1780
1781 config BR2_PACKAGE_XPROTO_XF86DRIPROTO
1782 bool "xproto-xf86driproto package replaced by xorgproto"
1783 select BR2_LEGACY
1784 select BR2_PACKAGE_XORGPROTO
1785 help
1786 The xproto-xf86driproto package has been replaced by the
1787 xorgproto package, which combines all xproto_* packages.
1788
1789 config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
1790 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
1791 select BR2_LEGACY
1792 select BR2_PACKAGE_XORGPROTO
1793 help
1794 The xproto-xf86vidmodeproto package has been replaced by the
1795 xorgproto package, which combines all xproto_* packages.
1796
1797 config BR2_PACKAGE_XPROTO_XINERAMAPROTO
1798 bool "xproto-xineramaproto package replaced by xorgproto"
1799 select BR2_LEGACY
1800 select BR2_PACKAGE_XORGPROTO
1801 help
1802 The xproto-xineramaproto package has been replaced by the
1803 xorgproto package, which combines all xproto_* packages.
1804
1805 config BR2_PACKAGE_XPROTO_XPROTO
1806 bool "xproto-xproto package replaced by xorgproto"
1807 select BR2_LEGACY
1808 select BR2_PACKAGE_XORGPROTO
1809 help
1810 The xproto-xproto package has been replaced by the
1811 xorgproto package, which combines all xproto_* packages.
1812
1813 config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
1814 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
1815 select BR2_LEGACY
1816 select BR2_PACKAGE_XORGPROTO
1817 help
1818 The xproto-xproxymanagementprotocol package has been
1819 replaced by the xorgproto package, which combines all
1820 xproto_* packages.
1821
1822 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
1823 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
1824 select BR2_LEGACY
1825 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
1826 help
1827 The opengl option has been moved from gst1-plugins-bad to
1828 gst1-plugins-base.
1829
1830 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
1831 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
1832 select BR2_LEGACY
1833 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
1834 help
1835 The gles2 option has been moved from gst1-plugins-bad to
1836 gst1-plugins-base.
1837
1838 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
1839 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
1840 select BR2_LEGACY
1841 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
1842 help
1843 The glx option has been moved from gst1-plugins-bad to
1844 gst1-plugins-base.
1845
1846 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
1847 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
1848 select BR2_LEGACY
1849 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
1850 help
1851 The egl option has been moved from gst1-plugins-bad to
1852 gst1-plugins-base.
1853
1854 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
1855 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
1856 select BR2_LEGACY
1857 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
1858 help
1859 The x11 option has been moved from gst1-plugins-bad to
1860 gst1-plugins-base.
1861
1862 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
1863 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
1864 select BR2_LEGACY
1865 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
1866 help
1867 The wayland option has been moved from gst1-plugins-bad to
1868 gst1-plugins-base.
1869
1870 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
1871 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
1872 select BR2_LEGACY
1873 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
1874 help
1875 The dispmanx option has been moved from gst1-plugins-mad to
1876 gst1-plugins-base.
1877
1878 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
1879 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
1880 select BR2_LEGACY
1881 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
1882 help
1883 The audiomixer option has been moved from gst1-plugins-bad to
1884 gst1-plugins-base.
1885
1886 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
1887 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
1888 select BR2_LEGACY
1889 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
1890 help
1891 The lame option has been moved from gst1-plugins-ugly to
1892 gst1-plugins-good.
1893
1894 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
1895 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
1896 select BR2_LEGACY
1897 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
1898 help
1899 The mpg123 option has been moved from gst1-plugins-ugly to
1900 gst1-plugins-good.
1901
1902 config BR2_GDB_VERSION_7_11
1903 bool "gdb 7.11 has been removed"
1904 select BR2_LEGACY
1905 help
1906 The 7.11 version of gdb has been removed. Use a newer version
1907 instead.
1908
1909 config BR2_GDB_VERSION_7_10
1910 bool "gdb 7.10 has been removed"
1911 select BR2_LEGACY
1912 help
1913 The 7.10 version of gdb has been removed. Use a newer version
1914 instead.
1915
1916 ###############################################################################
1917 comment "Legacy options removed in 2018.05"
1918
1919 config BR2_PACKAGE_MEDIAART_BACKEND_NONE
1920 bool "libmediaart none backend option renamed"
1921 select BR2_LEGACY
1922 help
1923 For consistency reasons, the option
1924 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
1925 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
1926
1927 config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
1928 bool "libmediaart gdk-pixbuf backend option renamed"
1929 select BR2_LEGACY
1930 help
1931 For consistency reasons, the option
1932 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
1933 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
1934
1935 config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
1936 bool "libmediaart qt backend option renamed"
1937 select BR2_LEGACY
1938 help
1939 For consistency reasons, the option
1940 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
1941 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
1942
1943 # Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
1944 # package/ti-sgx-km/Config.in
1945 config BR2_PACKAGE_TI_SGX_AM335X
1946 bool "ti-sgx-km AM335X option renamed"
1947 select BR2_LEGACY
1948 help
1949 For consistency reasons, the option
1950 BR2_PACKAGE_TI_SGX_AM335X has been renamed to
1951 BR2_PACKAGE_TI_SGX_KM_AM335X.
1952
1953 # Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
1954 # package/ti-sgx-km/Config.in
1955 config BR2_PACKAGE_TI_SGX_AM437X
1956 bool "ti-sgx-km AM437X option renamed"
1957 select BR2_LEGACY
1958 help
1959 For consistency reasons, the option
1960 BR2_PACKAGE_TI_SGX_AM437X has been renamed to
1961 BR2_PACKAGE_TI_SGX_KM_AM437X.
1962
1963 # Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
1964 # package/ti-sgx-km/Config.in
1965 config BR2_PACKAGE_TI_SGX_AM4430
1966 bool "ti-sgx-km AM4430 option renamed"
1967 select BR2_LEGACY
1968 help
1969 For consistency reasons, the option
1970 BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
1971 BR2_PACKAGE_TI_SGX_KM_AM4430.
1972
1973 # Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
1974 # package/ti-sgx-km/Config.in
1975 config BR2_PACKAGE_TI_SGX_AM5430
1976 bool "ti-sgx-km AM5430 option renamed"
1977 select BR2_LEGACY
1978 help
1979 For consistency reasons, the option
1980 BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
1981 BR2_PACKAGE_TI_SGX_KM_AM5430.
1982
1983 config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
1984 bool "janus-gateway audio-bridge option renamed"
1985 select BR2_LEGACY
1986 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
1987 help
1988 For consistency reasons, the janus-gateway option
1989 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
1990 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
1991
1992 config BR2_PACKAGE_JANUS_ECHO_TEST
1993 bool "janus-gateway echo-test option renamed"
1994 select BR2_LEGACY
1995 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
1996 help
1997 For consistency reasons, the janus-gateway option
1998 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
1999 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
2000
2001 config BR2_PACKAGE_JANUS_RECORDPLAY
2002 bool "janus-gateway recordplay option renamed"
2003 select BR2_LEGACY
2004 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
2005 help
2006 For consistency reasons, the janus-gateway option
2007 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
2008 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
2009
2010 config BR2_PACKAGE_JANUS_SIP_GATEWAY
2011 bool "janus-gateway sip-gateway option renamed"
2012 select BR2_LEGACY
2013 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
2014 help
2015 For consistency reasons, the janus-gateway option
2016 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
2017 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
2018
2019 config BR2_PACKAGE_JANUS_STREAMING
2020 bool "janus-gateway streaming option renamed"
2021 select BR2_LEGACY
2022 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
2023 help
2024 For consistency reasons, the janus-gateway option
2025 BR2_PACKAGE_JANUS_STREAMING has been renamed to
2026 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
2027
2028 config BR2_PACKAGE_JANUS_TEXT_ROOM
2029 bool "janus-gateway text-room option renamed"
2030 select BR2_LEGACY
2031 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
2032 help
2033 For consistency reasons, the janus-gateway option
2034 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
2035 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
2036
2037 config BR2_PACKAGE_JANUS_VIDEO_CALL
2038 bool "janus-gateway video-call option renamed"
2039 select BR2_LEGACY
2040 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
2041 help
2042 For consistency reasons, the janus-gateway option
2043 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
2044 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
2045
2046 config BR2_PACKAGE_JANUS_VIDEO_ROOM
2047 bool "janus-gateway video-room option renamed"
2048 select BR2_LEGACY
2049 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
2050 help
2051 For consistency reasons, the janus-gateway option
2052 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
2053 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
2054
2055 config BR2_PACKAGE_JANUS_MQTT
2056 bool "janus-gateway mqtt option renamed"
2057 select BR2_LEGACY
2058 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
2059 help
2060 For consistency reasons, the janus-gateway option
2061 BR2_PACKAGE_JANUS_MQTT has been renamed to
2062 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
2063
2064 config BR2_PACKAGE_JANUS_RABBITMQ
2065 bool "janus-gateway rabbitmq option renamed"
2066 select BR2_LEGACY
2067 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
2068 help
2069 For consistency reasons, the janus-gateway option
2070 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
2071 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
2072
2073 config BR2_PACKAGE_JANUS_REST
2074 bool "janus-gateway rest option renamed"
2075 select BR2_LEGACY
2076 select BR2_PACKAGE_JANUS_GATEWAY_REST
2077 help
2078 For consistency reasons, the janus-gateway option
2079 BR2_PACKAGE_JANUS_REST has been renamed to
2080 BR2_PACKAGE_JANUS_GATEWAY_REST.
2081
2082 config BR2_PACKAGE_JANUS_UNIX_SOCKETS
2083 bool "janus-gateway unix-sockets option renamed"
2084 select BR2_LEGACY
2085 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
2086 help
2087 For consistency reasons, the janus-gateway option
2088 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
2089 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
2090
2091 config BR2_PACKAGE_JANUS_WEBSOCKETS
2092 bool "janus-gateway websockets option renamed"
2093 select BR2_LEGACY
2094 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
2095 help
2096 For consistency reasons, the janus-gateway option
2097 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
2098 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
2099
2100 config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
2101 bool "ipsec-tools security context disable option renamed"
2102 select BR2_LEGACY
2103 help
2104 For consistency reasons, the option
2105 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
2106 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
2107
2108 config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
2109 bool "ipsec-tools SELinux security context enable option renamed"
2110 select BR2_LEGACY
2111 help
2112 For consistency reasons, the option
2113 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
2114 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
2115
2116 config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
2117 bool "ipsec-tools kernel security context enable option renamed"
2118 select BR2_LEGACY
2119 help
2120 For consistency reasons, the option
2121 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
2122 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
2123
2124 config BR2_PACKAGE_LIBTFDI_CPP
2125 bool "libftdi C++ bindings option renamed"
2126 select BR2_LEGACY
2127 select BR2_PACKAGE_LIBFTDI_CPP
2128 help
2129 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
2130 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
2131 name.
2132
2133 config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
2134 bool "jquery-ui-themes option black-tie renamed"
2135 select BR2_LEGACY
2136 help
2137 For consistency reasons, the jquery-ui-themes option for the
2138 black-tie theme has been renamed from
2139 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
2140 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
2141
2142 config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
2143 bool "jquery-ui-themes option blitzer renamed"
2144 select BR2_LEGACY
2145 help
2146 For consistency reasons, the jquery-ui-themes option for the
2147 blitzer theme has been renamed from
2148 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
2149 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
2150
2151 config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
2152 bool "jquery-ui-themes option cupertino renamed"
2153 select BR2_LEGACY
2154 help
2155 For consistency reasons, the jquery-ui-themes option for the
2156 cupertino theme has been renamed from
2157 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
2158 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
2159
2160 config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
2161 bool "jquery-ui-themes option dark-hive renamed"
2162 select BR2_LEGACY
2163 help
2164 For consistency reasons, the jquery-ui-themes option for the
2165 dark-hive theme has been renamed from
2166 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
2167 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
2168
2169 config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
2170 bool "jquery-ui-themes option dot-luv renamed"
2171 select BR2_LEGACY
2172 help
2173 For consistency reasons, the jquery-ui-themes option for the
2174 dot-luv theme has been renamed from
2175 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
2176 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
2177
2178 config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
2179 bool "jquery-ui-themes option eggplant renamed"
2180 select BR2_LEGACY
2181 help
2182 For consistency reasons, the jquery-ui-themes option for the
2183 eggplant theme has been renamed from
2184 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
2185 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
2186
2187 config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
2188 bool "jquery-ui-themes option excite-bike renamed"
2189 select BR2_LEGACY
2190 help
2191 For consistency reasons, the jquery-ui-themes option for the
2192 excite-bike theme has been renamed from
2193 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
2194 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
2195
2196 config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
2197 bool "jquery-ui-themes option flick renamed"
2198 select BR2_LEGACY
2199 help
2200 For consistency reasons, the jquery-ui-themes option for the
2201 flick theme has been renamed from
2202 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
2203 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
2204
2205 config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
2206 bool "jquery-ui-themes option hot-sneaks renamed"
2207 select BR2_LEGACY
2208 help
2209 For consistency reasons, the jquery-ui-themes option for the
2210 hot-sneaks theme has been renamed from
2211 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
2212 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
2213
2214 config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
2215 bool "jquery-ui-themes option humanity renamed"
2216 select BR2_LEGACY
2217 help
2218 For consistency reasons, the jquery-ui-themes option for the
2219 humanity theme has been renamed from
2220 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
2221 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
2222
2223 config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
2224 bool "jquery-ui-themes option le-frog renamed"
2225 select BR2_LEGACY
2226 help
2227 For consistency reasons, the jquery-ui-themes option for the
2228 le-frog theme has been renamed from
2229 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
2230 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
2231
2232 config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
2233 bool "jquery-ui-themes option mint-choc renamed"
2234 select BR2_LEGACY
2235 help
2236 For consistency reasons, the jquery-ui-themes option for the
2237 mint-choc theme has been renamed from
2238 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
2239 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
2240
2241 config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
2242 bool "jquery-ui-themes option overcast renamed"
2243 select BR2_LEGACY
2244 help
2245 For consistency reasons, the jquery-ui-themes option for the
2246 overcast theme has been renamed from
2247 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
2248 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
2249
2250 config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
2251 bool "jquery-ui-themes option pepper-grinder renamed"
2252 select BR2_LEGACY
2253 help
2254 For consistency reasons, the jquery-ui-themes option for the
2255 pepper-grinder theme has been renamed from
2256 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
2257 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
2258
2259 config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
2260 bool "jquery-ui-themes option redmond renamed"
2261 select BR2_LEGACY
2262 help
2263 For consistency reasons, the jquery-ui-themes option for the
2264 redmond theme has been renamed from
2265 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
2266 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
2267
2268 config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
2269 bool "jquery-ui-themes option smoothness renamed"
2270 select BR2_LEGACY
2271 help
2272 For consistency reasons, the jquery-ui-themes option for the
2273 smoothness theme has been renamed from
2274 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
2275 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
2276
2277 config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
2278 bool "jquery-ui-themes option south-street renamed"
2279 select BR2_LEGACY
2280 help
2281 For consistency reasons, the jquery-ui-themes option for the
2282 south-street theme has been renamed from
2283 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
2284 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
2285
2286 config BR2_PACKAGE_JQUERY_UI_THEME_START
2287 bool "jquery-ui-themes option start renamed"
2288 select BR2_LEGACY
2289 help
2290 For consistency reasons, the jquery-ui-themes option for the
2291 start theme has been renamed from
2292 BR2_PACKAGE_JQUERY_UI_THEME_START to
2293 BR2_PACKAGE_JQUERY_UI_THEMES_START.
2294
2295 config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
2296 bool "jquery-ui-themes option sunny renamed"
2297 select BR2_LEGACY
2298 help
2299 For consistency reasons, the jquery-ui-themes option for the
2300 sunny theme has been renamed from
2301 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
2302 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
2303
2304 config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
2305 bool "jquery-ui-themes option swanky-purse renamed"
2306 select BR2_LEGACY
2307 help
2308 For consistency reasons, the jquery-ui-themes option for the
2309 swanky-purse theme has been renamed from
2310 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
2311 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
2312
2313 config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
2314 bool "jquery-ui-themes option trontastic renamed"
2315 select BR2_LEGACY
2316 help
2317 For consistency reasons, the jquery-ui-themes option for the
2318 trontastic theme has been renamed from
2319 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
2320 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
2321
2322 config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
2323 bool "jquery-ui-themes option ui-darkness renamed"
2324 select BR2_LEGACY
2325 help
2326 For consistency reasons, the jquery-ui-themes option for the
2327 ui-darkness theme has been renamed from
2328 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
2329 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
2330
2331 config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
2332 bool "jquery-ui-themes option ui-lightness renamed"
2333 select BR2_LEGACY
2334 help
2335 For consistency reasons, the jquery-ui-themes option for the
2336 ui-lightness theme has been renamed from
2337 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
2338 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
2339
2340 config BR2_PACKAGE_JQUERY_UI_THEME_VADER
2341 bool "jquery-ui-themes option vader renamed"
2342 select BR2_LEGACY
2343 help
2344 For consistency reasons, the jquery-ui-themes option for the
2345 vader theme has been renamed from
2346 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
2347 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
2348
2349 config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
2350 bool "bluez5-utils health plugin option renamed"
2351 select BR2_LEGACY
2352 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
2353 help
2354 For consistency reasons, the option
2355 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
2356 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
2357
2358 config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
2359 bool "bluez5-utils midi plugin option renamed"
2360 select BR2_LEGACY
2361 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
2362 help
2363 For consistency reasons, the option
2364 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
2365 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
2366
2367 config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
2368 bool "bluez5-utils nfc plugin option renamed"
2369 select BR2_LEGACY
2370 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
2371 help
2372 For consistency reasons, the option
2373 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
2374 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
2375
2376 config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
2377 bool "bluez5-utils sap plugin option renamed"
2378 select BR2_LEGACY
2379 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
2380 help
2381 For consistency reasons, the option
2382 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
2383 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
2384
2385 config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
2386 bool "bluez5-utils sixaxis plugin option renamed"
2387 select BR2_LEGACY
2388 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
2389 help
2390 For consistency reasons, the option
2391 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
2392 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
2393
2394 config BR2_PACKAGE_TRANSMISSION_REMOTE
2395 bool "transmission remote tool option removed"
2396 select BR2_LEGACY
2397 select BR2_PACKAGE_TRANSMISSION_DAEMON
2398 help
2399 Upstream does not provide a separate configure option for
2400 the tool transmission-remote, it is built when the
2401 transmission daemon has been enabled. Therefore, Buildroot
2402 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
2403 for you.
2404
2405 config BR2_PACKAGE_LIBKCAPI_APPS
2406 bool "libkcapi test applications removed"
2407 select BR2_LEGACY
2408 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
2409 select BR2_PACKAGE_LIBKCAPI_RNGAPP
2410 select BR2_PACKAGE_LIBKCAPI_SPEED
2411 select BR2_PACKAGE_LIBKCAPI_TEST
2412 help
2413 Test applications (hasher, rng read, speed-test, test) now
2414 have their own configuration options in the libkcapi menu.
2415
2416 config BR2_PACKAGE_MPLAYER
2417 bool "mplayer package removed"
2418 select BR2_LEGACY
2419 help
2420 The mplayer package was removed.
2421
2422 config BR2_PACKAGE_MPLAYER_MPLAYER
2423 bool "mplayer package removed"
2424 select BR2_LEGACY
2425 help
2426 The mplayer package was removed.
2427
2428 config BR2_PACKAGE_MPLAYER_MENCODER
2429 bool "mplayer package removed"
2430 select BR2_LEGACY
2431 help
2432 The mplayer package was removed.
2433
2434 config BR2_PACKAGE_LIBPLAYER_MPLAYER
2435 bool "mplayer support in libplayer removed"
2436 select BR2_LEGACY
2437 help
2438 The mplayer package was removed.
2439
2440 config BR2_PACKAGE_IQVLINUX
2441 bool "iqvlinux package removed"
2442 select BR2_LEGACY
2443 help
2444 This package contained a kernel module from Intel, which
2445 could only be used together with Intel userspace tools
2446 provided under NDA, which also come with the same kernel
2447 module. The copy of the kernel module available on
2448 SourceForge is provided only to comply with the GPLv2
2449 requirement. Intel engineers were even surprised it even
2450 built and were not willing to make any effort to fix their
2451 tarball naming to contain a version number. Therefore, it
2452 does not make sense for Buildroot to provide such a package.
2453
2454 See https://sourceforge.net/p/e1000/bugs/589/ for the
2455 discussion.
2456
2457 config BR2_BINFMT_FLAT_SEP_DATA
2458 bool "binfmt FLAT with separate code and data removed"
2459 select BR2_LEGACY
2460 help
2461 This FLAT binary format was only used on Blackfin, which has
2462 been removed.
2463
2464 config BR2_bfin
2465 bool "Blackfin architecture support removed"
2466 select BR2_LEGACY
2467 help
2468 Following the removal of Blackfin support for the upstream
2469 Linux kernel, Buildroot has removed support for this CPU
2470 architecture.
2471
2472 config BR2_PACKAGE_KODI_ADSP_BASIC
2473 bool "kodi-adsp-basic package removed"
2474 select BR2_LEGACY
2475 help
2476 kodi-adsp-basic is unmaintained
2477
2478 config BR2_PACKAGE_KODI_ADSP_FREESURROUND
2479 bool "kodi-adsp-freesurround package removed"
2480 select BR2_LEGACY
2481 help
2482 kodi-adsp-freesurround is unmaintained
2483
2484 ###############################################################################
2485 comment "Legacy options removed in 2018.02"
2486
2487 config BR2_KERNEL_HEADERS_3_4
2488 bool "kernel headers version 3.4.x are no longer supported"
2489 select BR2_LEGACY
2490 help
2491 Version 3.4.x of the Linux kernel headers are no longer
2492 maintained upstream and are now removed.
2493
2494 config BR2_KERNEL_HEADERS_3_10
2495 bool "kernel headers version 3.10.x are no longer supported"
2496 select BR2_LEGACY
2497 help
2498 Version 3.10.x of the Linux kernel headers are no longer
2499 maintained upstream and are now removed.
2500
2501 config BR2_KERNEL_HEADERS_3_12
2502 bool "kernel headers version 3.12.x are no longer supported"
2503 select BR2_LEGACY
2504 help
2505 Version 3.12.x of the Linux kernel headers are no longer
2506 maintained upstream and are now removed.
2507
2508 config BR2_BINUTILS_VERSION_2_27_X
2509 bool "binutils version 2.27 support removed"
2510 select BR2_LEGACY
2511 help
2512 Support for binutils version 2.27 has been removed. The
2513 current default version (2.29 or later) has been selected
2514 instead.
2515
2516 config BR2_PACKAGE_EEPROG
2517 bool "eeprog package removed"
2518 select BR2_LEGACY
2519 select BR2_PACKAGE_I2C_TOOLS
2520 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
2521 help
2522 The eeprog program is now provided by the i2c-tools package.
2523
2524 config BR2_PACKAGE_GNUPG2_GPGV2
2525 bool "gnupg2 gpgv2 option removed"
2526 select BR2_LEGACY
2527 select BR2_PACKAGE_GNUPG2_GPGV
2528 help
2529 The gpgv2 executable is now named gpgv. The config option
2530 has been renamed accordingly.
2531
2532 config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
2533 bool "Vivante apitrace tool option removed"
2534 select BR2_LEGACY
2535 help
2536 The apitrace tool for Vivante is not provided by the
2537 imx-gpu-viv package any longer.
2538
2539 config BR2_PACKAGE_IMX_GPU_VIV_G2D
2540 bool "Vivante G2D libraries from imx-gpu-viv removed"
2541 select BR2_LEGACY
2542 select BR2_PACKAGE_IMX_GPU_G2D
2543 help
2544 The G2D libraries are now provided by the imx-gpu-g2d package.
2545
2546 ###############################################################################
2547 comment "Legacy options removed in 2017.11"
2548
2549 config BR2_PACKAGE_RFKILL
2550 bool "rfkill package removed"
2551 select BR2_LEGACY
2552 select BR2_PACKAGE_UTIL_LINUX
2553 select BR2_PACKAGE_UTIL_LINUX_RFKILL
2554 help
2555 The rfkill program is now provided by the util-linux package.
2556
2557 config BR2_PACKAGE_UTIL_LINUX_RESET
2558 bool "util-linux reset option removed"
2559 select BR2_LEGACY
2560 help
2561 The util-linux package no longer offers a "reset" command. Use
2562 either the reset command provided by BusyBox or select ncurses
2563 programs, which will install a symlink from "tset" to reset.
2564
2565 config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
2566 bool "policycoreutils audit2allow option removed"
2567 select BR2_LEGACY
2568 select BR2_PACKAGE_SELINUX_PYTHON
2569 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
2570 help
2571 The policycoreutils package no longer offers audit2allow
2572 as a option. This package has been moved into the
2573 selinux-python package by the SELinux maintainers.
2574
2575 config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
2576 bool "policycoreutils restorecond option removed"
2577 select BR2_LEGACY
2578 select BR2_PACKAGE_RESTORECOND
2579 help
2580 The policycoreutils package no longer offers restorecond
2581 as a option. This package has been moved into a seperate
2582 package maintained by the SELinux maintainers.
2583
2584 config BR2_PACKAGE_SEPOLGEN
2585 bool "sepolgen package has been removed"
2586 select BR2_LEGACY
2587 select BR2_PACKAGE_SELINUX_PYTHON
2588 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
2589 help
2590 Sepolgen is no longer a individual package, but instead has
2591 been moved into the selinux-python package by the SELinux
2592 maintainers.
2593
2594 config BR2_PACKAGE_OPENOBEX_BLUEZ
2595 bool "openobex bluez option removed"
2596 select BR2_LEGACY
2597 select BR2_PACKAGE_BLUEZ_UTILS
2598 help
2599 The OpenOBEX package no longer offers an option to enable or
2600 disable BlueZ support. Instead, BlueZ support is always
2601 included when the bluez5_utils or bluez_utils package is
2602 selected.
2603
2604 config BR2_PACKAGE_OPENOBEX_LIBUSB
2605 bool "openobex libusb option removed"
2606 select BR2_LEGACY
2607 select BR2_PACKAGE_LIBUSB
2608 help
2609 The OpenOBEX package no longer offers an option to enable or
2610 disable libusb support. Instead, USB support is always
2611 included when the libusb package is selected.
2612
2613 config BR2_PACKAGE_OPENOBEX_APPS
2614 bool "openobex apps option removed"
2615 select BR2_LEGACY
2616 help
2617 The OpenOBEX package no longer offers an option to enable or
2618 disable apps support.
2619
2620 config BR2_PACKAGE_OPENOBEX_SYSLOG
2621 bool "openobex syslog option removed"
2622 select BR2_LEGACY
2623 help
2624 The OpenOBEX package no longer offers an option to enable or
2625 disable syslog support.
2626
2627 config BR2_PACKAGE_OPENOBEX_DUMP
2628 bool "openobex dump option removed"
2629 select BR2_LEGACY
2630 help
2631 The OpenOBEX package no longer offers an option to enable or
2632 disable dump support.
2633
2634 config BR2_PACKAGE_AICCU
2635 bool "aiccu utility removed"
2636 select BR2_LEGACY
2637 help
2638 As the SixXS project has ceased its operation on 2017-06-06,
2639 the AICCU utility has no use anymore and has been removed.
2640
2641 https://www.sixxs.net/sunset/
2642
2643 config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
2644 bool "util-linux login utilities option removed"
2645 select BR2_LEGACY
2646 select BR2_PACKAGE_UTIL_LINUX_LAST
2647 select BR2_PACKAGE_UTIL_LINUX_LOGIN
2648 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
2649 select BR2_PACKAGE_UTIL_LINUX_SU
2650 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
2651 help
2652 Login utilities (last, login, runuser, su, sulogin) now have
2653 their own configuration options in the util-linux menu.
2654
2655 ###############################################################################
2656 comment "Legacy options removed in 2017.08"
2657
2658 config BR2_TARGET_GRUB
2659 bool "grub (aka grub-legacy) has been removed"
2660 select BR2_LEGACY
2661 help
2662 grub-legacy is no longer maintained, and no longer builds with
2663 recent binutils versions.
2664
2665 Use grub2 or syslinux instead.
2666
2667 config BR2_PACKAGE_SIMICSFS
2668 bool "simicsfs support removed"
2669 select BR2_LEGACY
2670 help
2671 Support for simicsfs kernel driver that provides access to a
2672 host computer's local filesystem when the target is
2673 executing within a SIMICS simulation has been removed.
2674
2675 Simics is now moving away from the simicsfs kernel module,
2676 as the kernel module has required too much maintenance
2677 work. Users should move to the user mode Simics agent
2678 instead.
2679
2680 config BR2_BINUTILS_VERSION_2_26_X
2681 bool "binutils version 2.26 support removed"
2682 select BR2_LEGACY
2683 help
2684 Support for binutils version 2.26 has been removed. The
2685 current default version (2.28 or later) has been selected
2686 instead.
2687
2688 config BR2_XTENSA_OVERLAY_DIR
2689 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
2690 help
2691 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
2692 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
2693 path to the overlay file, not to the directory containing
2694 it.
2695
2696 config BR2_XTENSA_OVERLAY_DIR_WRAP
2697 bool
2698 default y if BR2_XTENSA_OVERLAY_DIR != ""
2699 select BR2_LEGACY
2700
2701 config BR2_XTENSA_CUSTOM_NAME
2702 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
2703 help
2704 The BR2_XTENSA_CUSTOM_NAME option has been removed.
2705
2706 config BR2_XTENSA_CUSTOM_NAME_WRAP
2707 bool
2708 default y if BR2_XTENSA_CUSTOM_NAME != ""
2709 select BR2_LEGACY
2710
2711 config BR2_PACKAGE_HOST_MKE2IMG
2712 bool "host mke2img has been removed"
2713 select BR2_LEGACY
2714 help
2715 We now call mkfs directly to generate ext2/3/4 filesystem
2716 image, so mke2img is no longer necessary.
2717
2718 config BR2_TARGET_ROOTFS_EXT2_BLOCKS
2719 int "exact size in blocks has been removed"
2720 default 0
2721 help
2722 This option has been removed in favor of
2723 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
2724 to the value you had before. Set to 0 here to remove the
2725 warning.
2726
2727 config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
2728 bool
2729 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
2730 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
2731 select BR2_LEGACY
2732
2733 # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
2734
2735 config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
2736 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
2737 default 0
2738 help
2739 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
2740 images. It now automatically selects the number of inodes
2741 based on the image size. The extra number of inodes can no
2742 longer be provided; instead, provide the total number of
2743 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
2744
2745 config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
2746 bool
2747 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
2748 select BR2_LEGACY
2749
2750 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
2751 bool "cdxaparse removed"
2752 select BR2_LEGACY
2753
2754 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
2755 bool "dataurisrc moved to gstreamer1"
2756 select BR2_LEGACY
2757 help
2758 Dataurisrc has moved to gstreamer core and is always built.
2759
2760 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
2761 bool "dccp removed"
2762 select BR2_LEGACY
2763
2764 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
2765 bool "hdvparse removed"
2766 select BR2_LEGACY
2767
2768 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
2769 bool "mve removed"
2770 select BR2_LEGACY
2771
2772 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
2773 bool "nuvdemux removed"
2774 select BR2_LEGACY
2775
2776 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
2777 bool "patchdetect removed"
2778 select BR2_LEGACY
2779
2780 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
2781 bool "sdi removed"
2782 select BR2_LEGACY
2783
2784 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
2785 bool "tta removed"
2786 select BR2_LEGACY
2787
2788 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
2789 bool "videomeasure removed"
2790 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
2791 select BR2_LEGACY
2792 help
2793 videomeasure plugin has been removed and has been replaced by
2794 iqa, which has automatically been enabled.
2795
2796 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
2797 bool "apexsink removed"
2798 select BR2_LEGACY
2799
2800 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
2801 bool "sdl removed"
2802 select BR2_LEGACY
2803
2804 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
2805 bool "mad (*.mp3 audio) removed"
2806 select BR2_LEGACY
2807
2808 config BR2_STRIP_none
2809 bool "Strip command 'none' has been removed"
2810 select BR2_LEGACY
2811 help
2812 The strip command choice has been changed into a single
2813 boolean option. Please check that the new setting is
2814 correct (in the "Build options" sub-menu)
2815
2816 config BR2_PACKAGE_BEECRYPT_CPP
2817 bool "C++ support removed in beecrypt"
2818 select BR2_LEGACY
2819 help
2820 Support for C++ depends on icu. The beecrypt package is
2821 incompatible with icu 59+.
2822
2823 config BR2_PACKAGE_SPICE_CLIENT
2824 bool "spice client support removed"
2825 select BR2_LEGACY
2826 help
2827 Spice client support has been removed upstream. The
2828 functionality now lives in the spice-gtk widget and
2829 virt-viewer.
2830
2831 config BR2_PACKAGE_SPICE_GUI
2832 bool "spice gui support removed"
2833 select BR2_LEGACY
2834 help
2835 Spice gui support has been removed upstream. The
2836 functionality now lives in the spice-gtk widget and
2837 virt-viewer.
2838
2839 config BR2_PACKAGE_SPICE_TUNNEL
2840 bool "spice network redirection removed"
2841 select BR2_LEGACY
2842 help
2843 Spice network redirection, aka tunnelling has been removed
2844 upstream.
2845
2846 config BR2_PACKAGE_INPUT_TOOLS
2847 bool "input-tools removed"
2848 select BR2_LEGACY
2849 select BR2_PACKAGE_LINUXCONSOLETOOLS
2850 help
2851 input-tools has been removed, it is replaced by
2852 linuxconsoletools, which has automatically been enabled.
2853
2854 config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
2855 bool "inputattach moved to linuxconsoletools"
2856 select BR2_LEGACY
2857 select BR2_PACKAGE_LINUXCONSOLETOOLS
2858 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
2859 help
2860 input-tools has been removed, inputattach is now part
2861 of linuxconsoletools, which has automatically been
2862 enabled.
2863
2864 config BR2_PACKAGE_INPUT_TOOLS_JSCAL
2865 bool "jscal moved to linuxconsoletools"
2866 select BR2_LEGACY
2867 select BR2_PACKAGE_LINUXCONSOLETOOLS
2868 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
2869 help
2870 input-tools has been removed, jscal is now part
2871 of linuxconsoletools, which has automatically been
2872 enabled.
2873
2874 config BR2_PACKAGE_INPUT_TOOLS_JSTEST
2875 bool "jstest moved to linuxconsoletools"
2876 select BR2_LEGACY
2877 select BR2_PACKAGE_LINUXCONSOLETOOLS
2878 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
2879 help
2880 input-tools has been removed, jstest is now part
2881 of linuxconsoletools, which has automatically been
2882 enabled.
2883
2884 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
2885 bool "SH Sourcery toolchain has been removed"
2886 select BR2_LEGACY
2887 help
2888 The Sourcery CodeBench toolchain for the sh architecture has
2889 been removed, since it uses glibc older than 2.17 that
2890 requires -lrt to link executables using clock_* system calls.
2891 This makes this toolchain difficult to maintain over time.
2892
2893 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
2894 bool "x86 Sourcery toolchain has been removed"
2895 select BR2_LEGACY
2896 help
2897 The Sourcery CodeBench toolchain for the x86 architecture has
2898 been removed, since it uses glibc older than 2.17 that
2899 requires -lrt to link executables using clock_* system calls.
2900 This makes this toolchain difficult to maintain over time.
2901
2902 config BR2_GCC_VERSION_4_8_X
2903 bool "gcc 4.8.x support removed"
2904 select BR2_LEGACY
2905 help
2906 Support for gcc version 4.8.x has been removed. The current
2907 default version (5.x or later) has been selected instead.
2908
2909 ###############################################################################
2910 comment "Legacy options removed in 2017.05"
2911
2912 config BR2_PACKAGE_SUNXI_MALI_R2P4
2913 bool "sunxi-mali r2p4 removed"
2914 select BR2_LEGACY
2915 help
2916 sunxi-mali libMali for r2p4 Mali kernel module has been
2917 removed since the libump package only provides libUMP.so.3.
2918 libMali for r2p4 Mali kernel module requires libUMP.so.2.
2919
2920 config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
2921 bool "CoffeeScript option has been removed"
2922 select BR2_LEGACY
2923 help
2924 The option to enable NodeJS CoffeeScript has been removed.
2925 To continue using it, add "coffee-script" to
2926 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
2927
2928 config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
2929 bool "Express web application framework option has been removed"
2930 select BR2_LEGACY
2931 help
2932 The option to enable the NodeJS Express web application
2933 framework has been removed. To continue using it, add
2934 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
2935
2936 config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
2937 bool "bluez5_utils gatttool install option removed"
2938 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
2939 help
2940 The option to install gatttool specifically has been removed.
2941 Since version 5.44 gatttool is in the list of deprecated
2942 tools. The option to build and install deprecated tools has
2943 been automatically enabled.
2944
2945 config BR2_PACKAGE_OPENOCD_FT2XXX
2946 bool "openocd ft2232 support has been removed"
2947 select BR2_PACKAGE_OPENOCD_FTDI
2948 select BR2_LEGACY
2949 help
2950 FT2232 support in OpenOCD has been removed, it's replaced by
2951 FDTI support, which has automatically been enabled.
2952
2953 config BR2_PACKAGE_KODI_RTMPDUMP
2954 bool "kodi rtmp has been removed"
2955 select BR2_LEGACY
2956 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
2957 help
2958 Internal rtmp support was removed from Kodi.
2959
2960 config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
2961 bool "kodi-visualisation-fountain has been removed"
2962 select BR2_LEGACY
2963 help
2964 According to upstream 'the visualization is not currently
2965 in a working shape.'
2966
2967 config BR2_PACKAGE_PORTMAP
2968 bool "portmap has been removed"
2969 select BR2_LEGACY
2970 select BR2_PACKAGE_RPCBIND
2971 help
2972 The portmap upstream tarball is removed, no releases since
2973 ten years and latest change in upstream git in 2014.
2974 You should better use rpcbind as a RPC portmapper.
2975
2976 config BR2_BINUTILS_VERSION_2_25_X
2977 bool "binutils version 2.25 support removed"
2978 select BR2_LEGACY
2979 help
2980 Support for binutils version 2.25 has been removed. The
2981 current default version (2.27 or later) has been selected
2982 instead.
2983
2984 config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
2985 bool "uclibc RPC support has been removed"
2986 select BR2_LEGACY
2987 help
2988 uClibc-ng removed internal RPC implementation in 1.0.23. You
2989 should use libtirpc instead.
2990
2991 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
2992 int "extra size in blocks has been removed"
2993 default 0
2994 help
2995 Since the support for auto calculation of the filesystem size
2996 has been removed, this option is now useless and must be 0.
2997 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
2998 matchs your needs.
2999
3000 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
3001 bool
3002 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
3003 select BR2_LEGACY
3004
3005 config BR2_PACKAGE_SYSTEMD_KDBUS
3006 bool "systemd-kdbus has been removed"
3007 select BR2_LEGACY
3008 help
3009 --enable/disable-kdbus configure option has been removed since
3010 systemd-231.
3011
3012 config BR2_PACKAGE_POLARSSL
3013 bool "polarssl has been removed"
3014 select BR2_LEGACY
3015 help
3016 The polarssl crypto library has been removed since the 1.2.x
3017 release branch is no longer maintained. Newer upstream
3018 branches/releases (mbedtls) have API changes so they're not
3019 drop-in replacements.
3020
3021 config BR2_NBD_CLIENT
3022 bool "nbd client option was renamed"
3023 select BR2_LEGACY
3024 select BR2_PACKAGE_NBD_CLIENT
3025 help
3026 The nbd client option has been renamed to
3027 BR2_PACKAGE_NBD_CLIENT.
3028
3029 config BR2_NBD_SERVER
3030 bool "nbd server option was renamed"
3031 select BR2_LEGACY
3032 select BR2_PACKAGE_NBD_SERVER
3033 help
3034 The nbd server option has been renamed to
3035 BR2_PACKAGE_NBD_SERVER.
3036
3037 config BR2_PACKAGE_GMOCK
3038 bool "gmock merged into gtest package"
3039 select BR2_LEGACY
3040 select BR2_PACKAGE_GTEST
3041 select BR2_PACKAGE_GTEST_GMOCK
3042 help
3043 GMock is now a suboption of the GTest package.
3044
3045 config BR2_KERNEL_HEADERS_4_8
3046 bool "kernel headers version 4.8.x are no longer supported"
3047 select BR2_LEGACY
3048 help
3049 Version 4.8.x of the Linux kernel headers are no longer
3050 maintained upstream and are now removed.
3051
3052 config BR2_KERNEL_HEADERS_3_18
3053 bool "kernel headers version 3.18.x are no longer supported"
3054 select BR2_LEGACY
3055 help
3056 Version 3.18.x of the Linux kernel headers are no longer
3057 maintained upstream and are now removed.
3058
3059 config BR2_GLIBC_VERSION_2_22
3060 bool "glibc 2.22 removed"
3061 select BR2_LEGACY
3062 help
3063 Support for glibc version 2.22 has been removed. The current
3064 default version has been selected instead.
3065
3066 ###############################################################################
3067 comment "Legacy options removed in 2017.02"
3068
3069 config BR2_PACKAGE_PERL_DB_FILE
3070 bool "perl-db-file removed"
3071 select BR2_LEGACY
3072 select BR2_PACKAGE_BERKELEYDB
3073 select BR2_PACKAGE_PERL
3074 help
3075 DB_File can be built as a core Perl module, so the separate
3076 perl-db-file package has been removed.
3077
3078 config BR2_KERNEL_HEADERS_4_7
3079 bool "kernel headers version 4.7.x are no longer supported"
3080 select BR2_LEGACY
3081 help
3082 Version 4.7.x of the Linux kernel headers are no longer
3083 maintained upstream and are now removed.
3084
3085 config BR2_KERNEL_HEADERS_4_6
3086 bool "kernel headers version 4.6.x are no longer supported"
3087 select BR2_LEGACY
3088 help
3089 Version 4.6.x of the Linux kernel headers are no longer
3090 maintained upstream and are now removed.
3091
3092 config BR2_KERNEL_HEADERS_4_5
3093 bool "kernel headers version 4.5.x are no longer supported"
3094 select BR2_LEGACY
3095 help
3096 Version 4.5.x of the Linux kernel headers are no longer
3097 maintained upstream and are now removed.
3098
3099 config BR2_KERNEL_HEADERS_3_14
3100 bool "kernel headers version 3.14.x are no longer supported"
3101 select BR2_LEGACY
3102 help
3103 Version 3.14.x of the Linux kernel headers are no longer
3104 maintained upstream and are now removed.
3105
3106 config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
3107 bool "musl-cross 1.1.12 toolchain removed"
3108 select BR2_LEGACY
3109 help
3110 The support for the prebuilt toolchain based on the Musl C
3111 library provided by the musl-cross project has been removed.
3112 Upstream doesn't provide any prebuilt toolchain anymore, use
3113 the Buildroot toolchain instead.
3114
3115 config BR2_UCLIBC_INSTALL_TEST_SUITE
3116 bool "uClibc tests now in uclibc-ng-test"
3117 select BR2_LEGACY
3118 select BR2_PACKAGE_UCLIBC_NG_TEST
3119 help
3120 The test suite of the uClibc C library has been moved into a
3121 separate package, uclibc-ng-test.
3122
3123 config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
3124 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
3125 select BR2_LEGACY
3126 help
3127 The ADI Blackfin toolchain has many bugs which are fixed in
3128 more recent gcc and uClibc-ng releases. Use the Buildroot
3129 toolchain instead.
3130
3131 config BR2_PACKAGE_MAKEDEVS
3132 bool "makedevs removed"
3133 select BR2_LEGACY
3134 help
3135 The makedevs tool is part of busybox. The Buildroot fork
3136 should not be used outside of the Buildroot infrastructure.
3137
3138 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
3139 bool "Arago ARMv7 2011.09 removed"
3140 select BR2_LEGACY
3141 help
3142 The Arago toolchains are every old and not updated anymore.
3143
3144 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
3145 bool "Arago ARMv5 2011.09 removed"
3146 select BR2_LEGACY
3147 help
3148 The Arago toolchains are every old and not updated anymore.
3149
3150 config BR2_PACKAGE_SNOWBALL_HDMISERVICE
3151 bool "snowball-hdmiservice removed"
3152 select BR2_LEGACY
3153 help
3154 We no longer have support for the Snowball platform in
3155 Buildroot, so this package was no longer useful.
3156
3157 config BR2_PACKAGE_SNOWBALL_INIT
3158 bool "snowball-init removed"
3159 select BR2_LEGACY
3160 help
3161 We no longer have support for the Snowball platform in
3162 Buildroot, so this package was no longer useful.
3163
3164 config BR2_GDB_VERSION_7_9
3165 bool "gdb 7.9 has been removed"
3166 select BR2_LEGACY
3167 help
3168 The 7.9 version of gdb has been removed. Use a newer version
3169 instead.
3170
3171 ###############################################################################
3172 comment "Legacy options removed in 2016.11"
3173
3174 config BR2_PACKAGE_PHP_SAPI_CLI_CGI
3175 bool "PHP CGI and CLI options are now seperate"
3176 select BR2_PACKAGE_PHP_SAPI_CLI
3177 select BR2_PACKAGE_PHP_SAPI_CGI
3178 select BR2_LEGACY
3179 help
3180 The PHP Interface options have been split up into a
3181 separate option for each interface.
3182
3183 config BR2_PACKAGE_PHP_SAPI_CLI_FPM
3184 bool "PHP CLI and FPM options are now separate"
3185 select BR2_PACKAGE_PHP_SAPI_CLI
3186 select BR2_PACKAGE_PHP_SAPI_FPM
3187 select BR2_LEGACY
3188 help
3189 The PHP Interface options have been split up into a
3190 separate option for each interface.
3191
3192 config BR2_PACKAGE_WVSTREAMS
3193 bool "wvstreams removed"
3194 select BR2_LEGACY
3195 help
3196 wvstreams is not maintained anymore since about 2009. It also
3197 doesn't build anymore with recent compilers (GCC 5+).
3198
3199 config BR2_PACKAGE_WVDIAL
3200 bool "wvdial removed"
3201 select BR2_LEGACY
3202 help
3203 wvdial is not maintained anymore since about 2009. It also
3204 doesn't build anymore with recent compilers (GCC 5+).
3205
3206 config BR2_PACKAGE_WEBKITGTK24
3207 bool "webkitgtk 2.4.x removed"
3208 select BR2_LEGACY
3209 help
3210 This legacy package only existed because some other packages
3211 depended on that specific version of webkitgtk. However, the
3212 other packages have been fixed. webkitgtk 2.4 is full of
3213 security issues so it needs to be removed.
3214
3215 config BR2_PACKAGE_TORSMO
3216 bool "torsmo removed"
3217 select BR2_LEGACY
3218 help
3219 torsmo has been unmaintained for a long time, and nobody
3220 seems to be interested in it.
3221
3222 config BR2_PACKAGE_SSTRIP
3223 bool "sstrip removed"
3224 select BR2_LEGACY
3225 help
3226 sstrip is unmaintained and potentially harmful. It doesn't
3227 save so much compared to normal binutils strip, and there is
3228 a big risk of binaries that don't work. Use normal strip
3229 instead.
3230
3231 config BR2_KERNEL_HEADERS_4_3
3232 bool "kernel headers version 4.3.x are no longer supported"
3233 select BR2_LEGACY
3234 help
3235 Version 4.3.x of the Linux kernel headers are no longer
3236 maintained upstream and are now removed.
3237
3238 config BR2_KERNEL_HEADERS_4_2
3239 bool "kernel headers version 4.2.x are no longer supported"
3240 select BR2_LEGACY
3241 help
3242 Version 4.2.x of the Linux kernel headers are no longer
3243 maintained upstream and are now removed.
3244
3245 config BR2_PACKAGE_KODI_ADDON_XVDR
3246 bool "kodi-addon-xvdr removed"
3247 select BR2_LEGACY
3248 help
3249 According to the github project page:
3250 https://github.com/pipelka/xbmc-addon-xvdr
3251 this package is discontinued.
3252
3253 config BR2_PACKAGE_IPKG
3254 bool "ipkg removed"
3255 select BR2_LEGACY
3256 help
3257 ipkg dates back to the early 2000s when Compaq started the
3258 handhelds.org project and it hasn't seen development since
3259 2006. Use opkg as a replacement.
3260
3261 config BR2_GCC_VERSION_4_7_X
3262 bool "gcc 4.7.x support removed"
3263 select BR2_LEGACY
3264 help
3265 Support for gcc version 4.7.x has been removed. The current
3266 default version (4.9.x or later) has been selected instead.
3267
3268 config BR2_BINUTILS_VERSION_2_24_X
3269 bool "binutils version 2.24 support removed"
3270 select BR2_LEGACY
3271 help
3272 Support for binutils version 2.24 has been removed. The
3273 current default version (2.26 or later) has been selected
3274 instead.
3275
3276 config BR2_PACKAGE_WESTON_RPI
3277 bool "Weston propietary RPI support is gone"
3278 select BR2_LEGACY
3279 help
3280 Upstream decided the propietary (rpi-userland) weston composer
3281 support wasn't worth the effort so it was removed. Switch to
3282 the open VC4 support.
3283
3284 config BR2_LINUX_KERNEL_TOOL_CPUPOWER
3285 bool "linux-tool cpupower"
3286 depends on BR2_LINUX_KERNEL
3287 select BR2_LEGACY
3288 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
3289 help
3290 Linux tool cpupower option was renamed.
3291
3292 config BR2_LINUX_KERNEL_TOOL_PERF
3293 bool "linux-tool perf"
3294 depends on BR2_LINUX_KERNEL
3295 select BR2_LEGACY
3296 select BR2_PACKAGE_LINUX_TOOLS_PERF
3297 help
3298 Linux tool perf option was renamed.
3299
3300 config BR2_LINUX_KERNEL_TOOL_SELFTESTS
3301 bool "linux-tool selftests"
3302 depends on BR2_LINUX_KERNEL
3303 select BR2_LEGACY
3304 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
3305 help
3306 Linux tool selftests option was renamed.
3307
3308 config BR2_GCC_VERSION_4_8_ARC
3309 bool "gcc arc option renamed"
3310 select BR2_LEGACY
3311 select BR2_GCC_VERSION_ARC
3312 help
3313 The option that selects the gcc version for the ARC
3314 architecture has been renamed to BR2_GCC_VERSION_ARC.
3315
3316 config BR2_KERNEL_HEADERS_4_0
3317 bool "kernel headers version 4.0.x are no longer supported"
3318 select BR2_LEGACY
3319 help
3320 Version 4.0.x of the Linux kernel headers have been deprecated
3321 for more than four buildroot releases and are now removed.
3322
3323 config BR2_KERNEL_HEADERS_3_19
3324 bool "kernel headers version 3.19.x are no longer supported"
3325 select BR2_LEGACY
3326 help
3327 Version 3.19.x of the Linux kernel headers have been
3328 deprecated for more than four buildroot releases and are now
3329 removed.
3330
3331 config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
3332 bool "libevas-generic-loaders package removed"
3333 select BR2_LEGACY
3334 select BR2_PACKAGE_EFL
3335 help
3336 With EFL 1.18, libevas-generic-loaders is now provided by the
3337 efl package.
3338
3339 config BR2_PACKAGE_ELEMENTARY
3340 bool "elementary package removed"
3341 select BR2_LEGACY
3342 select BR2_PACKAGE_EFL
3343 help
3344 With EFL 1.18, elementary is now provided by the efl package.
3345
3346 config BR2_LINUX_KERNEL_CUSTOM_LOCAL
3347 bool "Linux kernel local directory option removed"
3348 help
3349 The option to select a local directory as the source of the
3350 Linux kernel has been removed. It hurts reproducibility of
3351 builds.
3352
3353 In case you were using this option during development of your
3354 Linux kernel, use the override mechanism instead.
3355
3356 ###############################################################################
3357 comment "Legacy options removed in 2016.08"
3358
3359 config BR2_PACKAGE_EFL_JP2K
3360 bool "libevas jp2k loader has been removed"
3361 select BR2_LEGACY
3362 help
3363 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
3364 while Buildroot only packages openjpeg 2.x. Therefore, the
3365 JP2K loader has been removed from EFL.
3366
3367 config BR2_PACKAGE_SYSTEMD_COMPAT
3368 bool "systemd compatibility libraries have been removed"
3369 select BR2_LEGACY
3370 help
3371 The systemd option to enable the compatibility libraries has
3372 been removed. Theses libraries have been useless since a few
3373 version, and have been fully dropped from the source since
3374 v230.
3375
3376 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
3377 bool "gst1-plugins-bad liveadder plugin removed"
3378 select BR2_LEGACY
3379 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
3380 help
3381 The functionality of the liveadder plugin of the
3382 gst1-plugins-bad package has been merged into audiomixer.
3383
3384 config BR2_PACKAGE_LIBFSLVPUWRAP
3385 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
3386 select BR2_LEGACY
3387 select BR2_PACKAGE_IMX_VPUWRAP
3388 help
3389 The libfslvpuwrap has been renamed to match the renamed
3390 package.
3391
3392 config BR2_PACKAGE_LIBFSLPARSER
3393 bool "libfslparser has been renamed to imx-parser"
3394 select BR2_LEGACY
3395 select BR2_PACKAGE_IMX_PARSER
3396 help
3397 The libfslparser has been renamed to match the renamed
3398 package.
3399
3400 config BR2_PACKAGE_LIBFSLCODEC
3401 bool "libfslcodec has been renamed to imx-codec"
3402 select BR2_LEGACY
3403 select BR2_PACKAGE_IMX_CODEC
3404 help
3405 The libfslcodec has been renamed to match the renamed package.
3406
3407 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
3408 bool "FIT support in uboot-tools has been refactored"
3409 select BR2_LEGACY
3410 select BR2_PACKAGE_DTC
3411 select BR2_PACKAGE_DTC_PROGRAMS
3412 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
3413 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
3414 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
3415 help
3416 This option has been removed in favor of a more fine-grained
3417 configuration, which is recommended. Selecting this option
3418 enables FIT and FIT signature support for the target packages.
3419 It will also select the dtc and openssl packages.
3420
3421 config BR2_PTHREADS_OLD
3422 bool "linuxthreads (stable/old)"
3423 select BR2_LEGACY
3424 help
3425 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
3426 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
3427
3428 config BR2_BINUTILS_VERSION_2_23_X
3429 bool "binutils 2.23 removed"
3430 select BR2_LEGACY
3431 help
3432 Binutils 2.23 has been removed, using a newer version is
3433 recommended.
3434
3435 config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
3436 bool "eglibc support has been removed"
3437 select BR2_LEGACY
3438 help
3439 The eglibc project no longer exists, as it has been merged
3440 back into the glibc project. Therefore, support for eglibc
3441 has been removed, and glibc should be used instead.
3442
3443 config BR2_GDB_VERSION_7_8
3444 bool "gdb 7.8 has been removed"
3445 select BR2_LEGACY
3446 help
3447 The 7.8 version of gdb has been removed. Use a newer version
3448 instead.
3449
3450 ###############################################################################
3451 comment "Legacy options removed in 2016.05"
3452
3453 config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
3454 bool "openvpn polarssl crypto backend removed"
3455 select BR2_LEGACY
3456 help
3457 The OpenVPN polarssl crypto backend option has been removed.
3458 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
3459 compatible with mbedtls (polarssl) series 2.x which is the
3460 version provided in buildroot. And both can't coexist.
3461 It now uses OpenSSL as the only option.
3462
3463 config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
3464 bool "nginx http spdy module removed"
3465 select BR2_LEGACY
3466 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
3467 help
3468 The ngx_http_spdy_module has been superseded by the
3469 ngx_http_v2_module since nginx v1.9.5. The
3470 ngx_http_v2_module modules has been automatically selected
3471 in your configuration.
3472
3473 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
3474 bool "gst1-plugins-bad rtp plugin moved to good"
3475 select BR2_LEGACY
3476 help
3477 The rtp plugin has been moved from gst1-plugins-base to
3478 gst1-plugins-good.
3479
3480 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
3481 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
3482 select BR2_LEGACY
3483 help
3484 The mpg123 plugin has been moved from gst1-plugins-bad to
3485 gst1-plugins-ugly.
3486
3487 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
3488 bool "PowerPC Sourcery toolchain has been removed"
3489 select BR2_LEGACY
3490 help
3491 The Sourcery CodeBench toolchain for the PowerPC
3492 architecture has been removed, as it was very old, not
3493 maintained, and causing numerous build failures with modern
3494 userspace packages.
3495
3496 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
3497 bool "PowerPC Sourcery E500v2 toolchain has been removed"
3498 select BR2_LEGACY
3499 help
3500 The Sourcery CodeBench toolchain for the PowerPC E500v2
3501 architecture has been removed, as it was very old, not
3502 maintained, and causing numerous build failures with modern
3503 userspace packages.
3504
3505 config BR2_x86_i386
3506 bool "x86 i386 support removed"
3507 select BR2_LEGACY
3508 help
3509 The support for the i386 processors of the x86 architecture
3510 has been removed.
3511
3512 config BR2_PACKAGE_QT5QUICK1
3513 bool "qt5quick1 package removed"
3514 select BR2_LEGACY
3515 help
3516 The qt5quick1 package has been removed, since it was removed
3517 from upstream starting from Qt 5.6.
3518
3519 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
3520 string "uboot custom patch dir has been removed"
3521 help
3522 The uboot custom patch directory option has been removed. Use
3523 the improved BR2_TARGET_UBOOT_PATCH option instead.
3524
3525 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
3526 bool
3527 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
3528 select BR2_LEGACY
3529
3530 # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
3531 # boot/uboot/Config.in
3532
3533 config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
3534 bool "xf86-input-void removed"
3535 select BR2_LEGACY
3536 help
3537 The xf86-input-void package has been removed, there's no need
3538 for it in any modern (post-2007) xorg server.
3539
3540 config BR2_KERNEL_HEADERS_3_17
3541 bool "kernel headers version 3.17.x are no longer supported"
3542 select BR2_LEGACY
3543 help
3544 Version 3.17.x of the Linux kernel headers have been
3545 deprecated for more than four buildroot releases and are now
3546 removed.
3547
3548 config BR2_GDB_VERSION_7_7
3549 bool "gdb 7.7 has been removed"
3550 select BR2_LEGACY
3551 help
3552 The 7.7 version of gdb has been removed. Use a newer version
3553 instead.
3554
3555 config BR2_PACKAGE_FOOMATIC_FILTERS
3556 bool "foomatic-filters"
3557 select BR2_LEGACY
3558 help
3559 The foomatic-filters package was removed.
3560
3561 config BR2_PACKAGE_SAMBA
3562 bool "samba"
3563 select BR2_LEGACY
3564 help
3565 The samba package was removed in favour of samba4 since the
3566 3.x series isn't supported by upstream any longer.
3567
3568 config BR2_PACKAGE_KODI_WAVPACK
3569 bool "wavpack"
3570 select BR2_LEGACY
3571 help
3572 wavpack support was removed in favour of ffmpeg:
3573 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
3574
3575 config BR2_PACKAGE_KODI_RSXS
3576 bool "rsxs support in Kodi was moved to an addon"
3577 select BR2_LEGACY
3578 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
3579 help
3580 rsxs support in Kodi was moved to an addon
3581
3582 config BR2_PACKAGE_KODI_GOOM
3583 bool "Goom support in Kodi was moved to an addon"
3584 select BR2_LEGACY
3585 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
3586 help
3587 Goom support in Kodi was moved to an addon
3588
3589 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
3590 bool "systemd all extras option has been removed"
3591 select BR2_LEGACY
3592 select BR2_PACKAGE_XZ
3593 select BR2_PACKAGE_LIBGCRYPT
3594 help
3595 The systemd option to enable "all extras" has been
3596 removed. To get the same features, the libgcrypt and xz
3597 package should now be enabled.
3598
3599 config BR2_GCC_VERSION_4_5_X
3600 bool "gcc 4.5.x has been removed"
3601 select BR2_LEGACY
3602 help
3603 The 4.5.x version of gcc has been removed. Use a newer
3604 version instead.
3605
3606 config BR2_PACKAGE_SQLITE_READLINE
3607 bool "sqlite command-line editing support was updated"
3608 select BR2_PACKAGE_NCURSES
3609 select BR2_PACKAGE_READLINE
3610 select BR2_LEGACY
3611 help
3612 This option was removed in favour of the sqlite package
3613 deciding itself depending on the enabled packages whether
3614 command-line editing should be enabled, it also also takes
3615 libedit into account.
3616
3617 ###############################################################################
3618 comment "Legacy options removed in 2016.02"
3619
3620 config BR2_PACKAGE_DOVECOT_BZIP2
3621 bool "bzip2 support option has been removed"
3622 select BR2_LEGACY
3623 select BR2_PACKAGE_BZIP2
3624 help
3625 Bzip2 support is built if the bzip2 package is selected.
3626
3627 config BR2_PACKAGE_DOVECOT_ZLIB
3628 bool "zlib support option has been removed"
3629 select BR2_LEGACY
3630 select BR2_PACKAGE_ZLIB
3631 help
3632 Zlib support is built if the zlib package is selected.
3633
3634 config BR2_PACKAGE_E2FSPROGS_FINDFS
3635 bool "e2fsprogs findfs option has been removed"
3636 select BR2_LEGACY
3637 help
3638 This option attempted to enable findfs capabilities from
3639 e2fsprogs but has not worked since July 2015 (due to
3640 packaging changes). One can use BusyBox's findfs support or
3641 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
3642
3643 config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
3644 bool "openpowerlink debug option has been removed"
3645 select BR2_LEGACY
3646 help
3647 This option depends on BR2_ENABLE_DEBUG which should not be
3648 used by packages anymore.
3649
3650 config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
3651 bool "openpowerlink package has been updated"
3652 select BR2_LEGACY
3653 select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
3654 help
3655 openpowerlink kernel modules are built if the
3656 kernel stack library is selected.
3657
3658 config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
3659 bool "openpowerlink package has been updated"
3660 select BR2_LEGACY
3661 select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
3662 help
3663 The user space support has been split in two part:
3664 - a monolitic user space library
3665 - a user spae deamon driver
3666
3667 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
3668 bool "using the linux headers version for the kernel has been removed"
3669 select BR2_LEGACY
3670 help
3671 The option to use the version of the kernel headers for the
3672 kernel to build has been removed.
3673
3674 There is now the converse, better-suited and more versatile
3675 option to use the kernel version for the linux headers.
3676
3677 config BR2_PACKAGE_CUPS_PDFTOPS
3678 bool "Pdftops support has been removed from Cups"
3679 select BR2_PACKAGE_CUPS_FILTERS
3680 select BR2_LEGACY
3681 help
3682 Pdftops support has been removed from the cups package
3683 It is now part of the cups-filters package.
3684
3685 config BR2_KERNEL_HEADERS_3_16
3686 bool "kernel headers version 3.16.x are no longer supported"
3687 select BR2_LEGACY
3688 help
3689 Version 3.16.x of the Linux kernel headers have been
3690 deprecated for more than four buildroot releases and are now
3691 removed.
3692
3693 config BR2_PACKAGE_PYTHON_PYXML
3694 bool "python-pyxml package has been removed"
3695 select BR2_LEGACY
3696 help
3697 PyXML is obsolete and its functionality is covered either via
3698 native Python XML support or python-lxml package.
3699
3700 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
3701 config BR2_ENABLE_SSP
3702 bool "Stack Smashing protection now has different levels"
3703 help
3704 The protection offered by SSP can now be selected from
3705 different protection levels. Be sure to review the SSP level
3706 in the build options menu.
3707
3708 config BR2_PACKAGE_DIRECTFB_CLE266
3709 bool "cle266 driver for directfb removed"
3710 select BR2_LEGACY
3711 help
3712 The cle266 directfb driver support has been removed.
3713 It doesn't build in the latest version and it's unlikely
3714 anyone has any use for it.
3715
3716 config BR2_PACKAGE_DIRECTFB_UNICHROME
3717 bool "unichrome driver for directfb removed"
3718 select BR2_LEGACY
3719 help
3720 The unichrome directfb driver support has been removed.
3721 It doesn't build in the latest version and it's unlikely
3722 anyone has any use for it.
3723
3724 config BR2_PACKAGE_LIBELEMENTARY
3725 bool "libelementary has been renamed to elementary"
3726 select BR2_LEGACY
3727 select BR2_PACKAGE_ELEMENTARY
3728 help
3729 The libelementary package has been renamed to match the
3730 upstream name.
3731
3732 config BR2_PACKAGE_LIBEINA
3733 bool "libeina package has been removed"
3734 select BR2_LEGACY
3735 select BR2_PACKAGE_EFL
3736 help
3737 With EFL 1.15, libeina is now provided by the efl package.
3738
3739 config BR2_PACKAGE_LIBEET
3740 bool "libeet package has been removed"
3741 select BR2_LEGACY
3742 select BR2_PACKAGE_EFL
3743 help
3744 With EFL 1.15, libeet is now provided by the efl package.
3745
3746 config BR2_PACKAGE_LIBEVAS
3747 bool "libevas package has been removed"
3748 select BR2_LEGACY
3749 select BR2_PACKAGE_EFL
3750 help
3751 With EFL 1.15, libevas is now provided by the efl package.
3752
3753 config BR2_PACKAGE_LIBECORE
3754 bool "libecore package has been removed"
3755 select BR2_LEGACY
3756 select BR2_PACKAGE_EFL
3757 help
3758 With EFL 1.15, libecore is now provided by the efl package.
3759
3760 config BR2_PACKAGE_LIBEDBUS
3761 bool "libedbus package has been removed"
3762 select BR2_LEGACY
3763 select BR2_PACKAGE_EFL
3764 help
3765 With EFL 1.15, libedbus is now provided by the efl package.
3766
3767 config BR2_PACKAGE_LIBEFREET
3768 bool "libefreet package has been removed"
3769 select BR2_LEGACY
3770 select BR2_PACKAGE_EFL
3771 help
3772 With EFL 1.15, libefreet is now provided by the efl package.
3773
3774 config BR2_PACKAGE_LIBEIO
3775 bool "libeio package has been removed"
3776 select BR2_LEGACY
3777 select BR2_PACKAGE_EFL
3778 help
3779 With EFL 1.15, libeio is now provided by the efl package.
3780
3781 config BR2_PACKAGE_LIBEMBRYO
3782 bool "libembryo package has been removed"
3783 select BR2_LEGACY
3784 select BR2_PACKAGE_EFL
3785 help
3786 With EFL 1.15, libembryo is now provided by the efl package.
3787
3788 config BR2_PACKAGE_LIBEDJE
3789 bool "libedje package has been removed"
3790 select BR2_LEGACY
3791 select BR2_PACKAGE_EFL
3792 help
3793 With EFL 1.15, libedje is now provided by the efl package.
3794
3795 config BR2_PACKAGE_LIBETHUMB
3796 bool "libethumb package has been removed"
3797 select BR2_LEGACY
3798 select BR2_PACKAGE_EFL
3799 help
3800 With EFL 1.15, libethumb is now provided by the efl package.
3801
3802 config BR2_PACKAGE_INFOZIP
3803 bool "infozip option has been renamed to zip"
3804 select BR2_LEGACY
3805 select BR2_PACKAGE_ZIP
3806 help
3807 Info-Zip's Zip package has been renamed from infozip to zip,
3808 to avoid ambiguities with Info-Zip's UnZip which has been
3809 added in the unzip package.
3810
3811 config BR2_BR2_PACKAGE_NODEJS_0_10_X
3812 bool "nodejs 0.10.x option removed"
3813 select BR2_LEGACY
3814 select BR2_PACKAGE_NODEJS
3815 help
3816 nodejs 0.10.x option has been removed. 0.10.x is now
3817 automatically chosen for ARMv5 architectures only and the
3818 latest nodejs for all other supported architectures. The
3819 correct nodejs version has been automatically selected in your
3820 configuration.
3821
3822 config BR2_BR2_PACKAGE_NODEJS_0_12_X
3823 bool "nodejs version 0.12.x has been removed"
3824 select BR2_LEGACY
3825 select BR2_PACKAGE_NODEJS
3826 help
3827 nodejs version 0.12.x has been removed. As an alternative,
3828 the latest nodejs version has been automatically selected in
3829 your configuration.
3830
3831 config BR2_BR2_PACKAGE_NODEJS_4_X
3832 bool "nodejs version 4.x has been removed"
3833 select BR2_LEGACY
3834 select BR2_PACKAGE_NODEJS
3835 help
3836 nodejs version 4.x has been removed. As an alternative,
3837 the latest nodejs version has been automatically selected in
3838 your configuration.
3839
3840 ###############################################################################
3841 comment "Legacy options removed in 2015.11"
3842
3843 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
3844 bool "gst1-plugins-bad real plugin has been removed"
3845 select BR2_LEGACY
3846 help
3847 The real plugin from GStreamer 1 bad plugins has been
3848 removed.
3849
3850 config BR2_PACKAGE_MEDIA_CTL
3851 bool "media-ctl package has been removed"
3852 select BR2_LEGACY
3853 select BR2_PACKAGE_LIBV4L
3854 select BR2_PACKAGE_LIBV4L_UTILS
3855 help
3856 media-ctl source and developement have been moved to v4l-utils
3857 since June 2014. For an up-to-date media-ctl version select
3858 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
3859
3860 config BR2_PACKAGE_SCHIFRA
3861 bool "schifra package has been removed"
3862 select BR2_LEGACY
3863 help
3864 Schifra package has been maked broken since 2014.11 release
3865 and haven't been fixed since then.
3866
3867 config BR2_PACKAGE_ZXING
3868 bool "zxing option has been renamed"
3869 select BR2_LEGACY
3870 select BR2_PACKAGE_ZXING_CPP
3871 help
3872 ZXing no longer provides the cpp bindings, it has been renamed
3873 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
3874
3875 # Since FreeRDP has new dependencies, protect this legacy to avoid the
3876 # infamous "unmet direct dependencies" kconfig error.
3877 config BR2_PACKAGE_FREERDP_CLIENT
3878 bool "freerdp client option renamed"
3879 depends on BR2_PACKAGE_FREERDP
3880 select BR2_LEGACY
3881 select BR2_PACKAGE_FREERDP_CLIENT_X11
3882
3883 config BR2_PACKAGE_BLACKBOX
3884 bool "blackbox package has been removed"
3885 select BR2_LEGACY
3886 help
3887 Upstream is dead and the package has been deprecated for
3888 some time. There are other alternative maintained WMs.
3889
3890 config BR2_KERNEL_HEADERS_3_0
3891 bool "kernel headers version 3.0.x are no longer supported"
3892 select BR2_LEGACY
3893 help
3894 Version 3.0.x of the Linux kernel headers have been deprecated
3895 for more than four buildroot releases and are now removed.
3896
3897 config BR2_KERNEL_HEADERS_3_11
3898 bool "kernel headers version 3.11.x are no longer supported"
3899 select BR2_LEGACY
3900 help
3901 Version 3.11.x of the Linux kernel headers have been
3902 deprecated for more than four buildroot releases and are now
3903 removed.
3904
3905 config BR2_KERNEL_HEADERS_3_13
3906 bool "kernel headers version 3.13.x are no longer supported"
3907 select BR2_LEGACY
3908 help
3909 Version 3.13.x of the Linux kernel headers have been
3910 deprecated for more than four buildroot releases and are now
3911 removed.
3912
3913 config BR2_KERNEL_HEADERS_3_15
3914 bool "kernel headers version 3.15.x are no longer supported"
3915 select BR2_LEGACY
3916 help
3917 Version 3.15.x of the Linux kernel headers have been
3918 deprecated for more than four buildroot releases and are now
3919 removed.
3920
3921 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
3922 bool "DirectFB example df_andi has been removed"
3923 select BR2_LEGACY
3924 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3925 help
3926 The per-DirectFB example options have been removed. The
3927 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3928 examples.
3929
3930 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
3931 bool "DirectFB example df_bltload has been removed"
3932 select BR2_LEGACY
3933 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3934 help
3935 The per-DirectFB example options have been removed. The
3936 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3937 examples.
3938
3939 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
3940 bool "DirectFB example df_cpuload has been removed"
3941 select BR2_LEGACY
3942 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3943 help
3944 The per-DirectFB example options have been removed. The
3945 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3946 examples.
3947
3948 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
3949 bool "DirectFB example df_databuffer has been removed"
3950 select BR2_LEGACY
3951 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3952 help
3953 The per-DirectFB example options have been removed. The
3954 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3955 examples.
3956
3957 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
3958 bool "DirectFB example df_dioload has been removed"
3959 select BR2_LEGACY
3960 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3961 help
3962 The per-DirectFB example options have been removed. The
3963 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3964 examples.
3965
3966 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
3967 bool "DirectFB example df_dok has been removed"
3968 select BR2_LEGACY
3969 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3970 help
3971 The per-DirectFB example options have been removed. The
3972 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3973 examples.
3974
3975 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
3976 bool "DirectFB example df_drivertest has been removed"
3977 select BR2_LEGACY
3978 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3979 help
3980 The per-DirectFB example options have been removed. The
3981 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3982 examples.
3983
3984 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
3985 bool "DirectFB example df_fire has been removed"
3986 select BR2_LEGACY
3987 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3988 help
3989 The per-DirectFB example options have been removed. The
3990 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
3991 examples.
3992
3993 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
3994 bool "DirectFB example df_flip has been removed"
3995 select BR2_LEGACY
3996 select BR2_PACKAGE_DIRECTFB_EXAMPLES
3997 help
3998 The per-DirectFB example options have been removed. The
3999 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4000 examples.
4001
4002 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
4003 bool "DirectFB example df_fonts has been removed"
4004 select BR2_LEGACY
4005 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4006 help
4007 The per-DirectFB example options have been removed. The
4008 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4009 examples.
4010
4011 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
4012 bool "DirectFB example df_input has been removed"
4013 select BR2_LEGACY
4014 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4015 help
4016 The per-DirectFB example options have been removed. The
4017 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4018 examples.
4019
4020 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
4021 bool "DirectFB example df_joystick has been removed"
4022 select BR2_LEGACY
4023 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4024 help
4025 The per-DirectFB example options have been removed. The
4026 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4027 examples.
4028
4029 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
4030 bool "DirectFB example df_knuckles has been removed"
4031 select BR2_LEGACY
4032 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4033 help
4034 The per-DirectFB example options have been removed. The
4035 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4036 examples.
4037
4038 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
4039 bool "DirectFB example df_layer has been removed"
4040 select BR2_LEGACY
4041 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4042 help
4043 The per-DirectFB example options have been removed. The
4044 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4045 examples.
4046
4047 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
4048 bool "DirectFB example df_matrix has been removed"
4049 select BR2_LEGACY
4050 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4051 help
4052 The per-DirectFB example options have been removed. The
4053 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4054 examples.
4055
4056 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
4057 bool "DirectFB example df_matrix_water has been removed"
4058 select BR2_LEGACY
4059 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4060 help
4061 The per-DirectFB example options have been removed. The
4062 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4063 examples.
4064
4065 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
4066 bool "DirectFB example df_neo has been removed"
4067 select BR2_LEGACY
4068 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4069 help
4070 The per-DirectFB example options have been removed. The
4071 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4072 examples.
4073
4074 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
4075 bool "DirectFB example df_netload has been removed"
4076 select BR2_LEGACY
4077 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4078 help
4079 The per-DirectFB example options have been removed. The
4080 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4081 examples.
4082
4083 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
4084 bool "DirectFB example df_palette has been removed"
4085 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4086 help
4087 The per-DirectFB example options have been removed. The
4088 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4089 examples.
4090
4091 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
4092 bool "DirectFB example df_particle has been removed"
4093 select BR2_LEGACY
4094 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4095 help
4096 The per-DirectFB example options have been removed. The
4097 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4098 examples.
4099
4100 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
4101 bool "DirectFB example df_porter has been removed"
4102 select BR2_LEGACY
4103 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4104 help
4105 The per-DirectFB example options have been removed. The
4106 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4107 examples.
4108
4109 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
4110 bool "DirectFB example df_stress has been removed"
4111 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4112 help
4113 The per-DirectFB example options have been removed. The
4114 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4115 examples.
4116
4117 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
4118 bool "DirectFB example df_texture has been removed"
4119 select BR2_LEGACY
4120 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4121 help
4122 The per-DirectFB example options have been removed. The
4123 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4124 examples.
4125
4126 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
4127 bool "DirectFB example df_video has been removed"
4128 select BR2_LEGACY
4129 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4130 help
4131 The per-DirectFB example options have been removed. The
4132 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4133 examples.
4134
4135 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
4136 bool "DirectFB example df_video_particle has been removed"
4137 select BR2_LEGACY
4138 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4139 help
4140 The per-DirectFB example options have been removed. The
4141 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4142 examples.
4143
4144 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
4145 bool "DirectFB example df_window has been removed"
4146 select BR2_LEGACY
4147 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4148 help
4149 The per-DirectFB example options have been removed. The
4150 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4151 examples.
4152
4153 config BR2_PACKAGE_KOBS_NG
4154 bool "kobs-ng was replaced by imx-kobs"
4155 select BR2_LEGACY
4156 select BR2_PACKAGE_IMX_KOBS
4157 help
4158 The outdated kobs-ng has been replaced by the Freescale-
4159 maintained imx-kobs package.
4160
4161 config BR2_PACKAGE_SAWMAN
4162 bool "sawman package removed"
4163 select BR2_LEGACY
4164 select BR2_PACKAGE_DIRECTFB_SAWMAN
4165 help
4166 This option has been removed because the sawman package no
4167 longer exists: it was merged inside DirectFB itself. This
4168 feature can now be enabled using the
4169 BR2_PACKAGE_DIRECTFB_SAWMAN option.
4170
4171 config BR2_PACKAGE_DIVINE
4172 bool "divine package removed"
4173 select BR2_LEGACY
4174 select BR2_PACKAGE_DIRECTFB_DIVINE
4175 help
4176 This option has been removed because the divine package no
4177 longer exists: it was merged inside DirectFB itself. This
4178 feature can now be enabled using the
4179 BR2_PACKAGE_DIRECTFB_DIVINE option.
4180
4181 ###############################################################################
4182 comment "Legacy options removed in 2015.08"
4183
4184 config BR2_PACKAGE_KODI_PVR_ADDONS
4185 bool "Kodi PVR addon was split"
4186 select BR2_LEGACY
4187 select BR2_PACKAGE_KODI_PVR_ARGUSTV
4188 select BR2_PACKAGE_KODI_PVR_DVBLINK
4189 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
4190 select BR2_PACKAGE_KODI_PVR_FILMON
4191 select BR2_PACKAGE_KODI_PVR_HTS
4192 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
4193 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
4194 select BR2_PACKAGE_KODI_PVR_MYTHTV
4195 select BR2_PACKAGE_KODI_PVR_NEXTPVR
4196 select BR2_PACKAGE_KODI_PVR_NJOY
4197 select BR2_PACKAGE_KODI_PVR_PCTV
4198 select BR2_PACKAGE_KODI_PVR_STALKER
4199 select BR2_PACKAGE_KODI_PVR_VBOX
4200 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
4201 select BR2_PACKAGE_KODI_PVR_VUPLUS
4202 select BR2_PACKAGE_KODI_PVR_WMC
4203 help
4204 Kodi PVR addon was split into seperate modules
4205
4206 config BR2_BINUTILS_VERSION_2_23_2
4207 bool "binutils 2.23 option renamed"
4208 select BR2_LEGACY
4209 help
4210 Binutils 2.23.2 has been removed, using a newer version is
4211 recommended.
4212
4213 config BR2_BINUTILS_VERSION_2_24
4214 bool "binutils 2.24 option renamed"
4215 select BR2_LEGACY
4216 select BR2_BINUTILS_VERSION_2_24_X
4217 help
4218 The binutils version option has been renamed to match the
4219 same patchlevel logic used by gcc. The new option is now
4220 BR2_BINUTILS_VERSION_2_24_X.
4221
4222 config BR2_BINUTILS_VERSION_2_25
4223 bool "binutils 2.25 option renamed"
4224 select BR2_LEGACY
4225 select BR2_BINUTILS_VERSION_2_25_X
4226 help
4227 The binutils version option has been renamed to match the
4228 same patchlevel logic used by gcc. The new option is now
4229 BR2_BINUTILS_VERSION_2_25_X.
4230
4231 config BR2_PACKAGE_PERF
4232 bool "perf option has been renamed"
4233 select BR2_LEGACY
4234 select BR2_LINUX_KERNEL_TOOL_PERF
4235 help
4236 The perf package has been moved as a Linux tools package,
4237 and the option to enable it is now
4238 BR2_LINUX_KERNEL_TOOL_PERF.
4239
4240 config BR2_BINUTILS_VERSION_2_22
4241 bool "binutils 2.22 removed"
4242 select BR2_LEGACY
4243 help
4244 Binutils 2.22 has been removed, using a newer version is
4245 recommended.
4246
4247 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
4248 bool "gpu-viv-bin-mx6q"
4249 select BR2_LEGACY
4250 select BR2_PACKAGE_IMX_GPU_VIV
4251 help
4252 Vivante graphics libraries have been renamed to
4253 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
4254 name.
4255
4256 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
4257 bool "libsemanage python bindings removed"
4258 depends on BR2_PACKAGE_PYTHON
4259 select BR2_LEGACY
4260 help
4261 This option has been removed, since the libsemanage Python
4262 bindings on the target were not useful.
4263
4264 config BR2_TARGET_UBOOT_NETWORK
4265 bool "U-Boot custom network settings removed"
4266 select BR2_LEGACY
4267 help
4268 U-Boot's custom network settings options have been removed.
4269
4270 endmenu
4271
4272 endif # !SKIP_LEGACY