2 # Config.in.legacy - support for backward compatibility
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.
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.
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.
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.
25 # [Example: renaming a bool option that is part of a choice from FOO to BAR]
28 # prompt "Choose foobar"
37 # prompt "Choose foobar"
38 # default BR2_BAR_1 if BR2_FOO_1 # legacy
39 # default BR2_BAR_2 if BR2_FOO_2 # legacy
46 # and in Config.in.legacy:
48 # bool "foobar 1 has been renamed"
50 # <suitable help text>
51 # # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
53 # bool "foobar 2 has been renamed"
55 # <suitable help text>
56 # # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
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
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.
68 # [Example: renaming a string option from FOO to BAR]
70 # config BR2_FOO_STRING
71 # string "Some foo string"
74 # config BR2_BAR_STRING
75 # string "Some bar string"
76 # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
78 # and in Config.in.legacy:
79 # config BR2_FOO_STRING
80 # string "The foo string has been renamed"
82 # <suitable help text>
84 # config BR2_FOO_STRING_WRAP
86 # default y if BR2_FOO_STRING != ""
89 # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
93 config BR2_SKIP_LEGACY
95 option env="SKIP_LEGACY"
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.
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
112 menu "Legacy config options"
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. "
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. "
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. "
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 "----------------------------------------------------"
145 ###############################################################################
147 comment "Legacy options removed in 2023.11"
149 config BR2_PACKAGE_PYTHON_PYXB
150 bool "python-pyxb removed"
153 python-pyxb has been removed due to being abandoned and
154 distutils no longer being supported in python 3.12.0.
156 config BR2_PACKAGE_OPENJDK_VERSION_11
157 bool "openjdk 11 has been removed"
160 Version 11 of OpenJDK is no longer supported, version 17
161 should now be used as the new LTS release.
163 config BR2_KERNEL_HEADERS_6_4
164 bool "kernel headers version 6.4.x are no longer supported"
167 Version 6.4.x of the Linux kernel headers are no longer
168 maintained upstream and are now removed.
170 config BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS
171 bool "google-material-design-icons removed"
174 The google-material-design-icons package has been removed.
176 config BR2_GDB_VERSION_10
177 bool "gdb 10.x removed"
180 gdb 10.x has been removed, use a newer version.
182 comment "Legacy options removed in 2023.08"
184 config BR2_TARGET_LPC32XXCDL
185 bool "lpc32xxcdl has been removed"
188 lpc32xxcdl has been removed, due to licensing concerns.
190 config BR2_BINUTILS_VERSION_2_38_X
191 bool "binutils 2.38.x has been removed"
194 binutils 2.38 has been removed, use a newer version.
196 config BR2_GCC_VERSION_10_X
197 bool "gcc 10.x support removed"
200 Support for gcc version 10.x has been removed. The current
201 default version (12.x or later) has been selected instead.
203 config BR2_KERNEL_HEADERS_6_3
204 bool "kernel headers version 6.3.x are no longer supported"
207 Version 6.3.x of the Linux kernel headers are no longer
208 maintained upstream and are now removed.
210 config BR2_PACKAGE_TOVID
216 config BR2_PACKAGE_LIBASPLIB
217 bool "libasplib removed"
220 libasplib is no longer needed.
222 config BR2_PACKAGE_OCF_LINUX
223 bool "ocf-linux has been removed"
226 ocf-linux is incompatible with newer kernels.
228 config BR2_BINUTILS_VERSION_2_37_X
229 bool "binutils 2.37.x has been removed"
232 binutils 2.37 has been removed, use a newer version.
234 comment "Legacy options removed in 2023.05"
236 config BR2_KERNEL_HEADERS_6_2
237 bool "kernel headers version 6.2.x are no longer supported"
240 Version 6.2.x of the Linux kernel headers are no longer
241 maintained upstream and are now removed.
243 config BR2_PACKAGE_ATK
247 atk is now part of at-spi2-core.
249 config BR2_PACKAGE_AT_SPI2_ATK
250 bool "at-spi2-atk removed"
253 at-spi2-atk is now part of at-spi2-core.
255 config BR2_PACKAGE_OPTEE_BENCHMARK
256 bool "optee-benchmark has been removed"
259 optee-benchmark is no longer maintained upstream.
261 config BR2_PACAKGE_OPENFPGALOADER_CMSIS
262 bool "openfpgaloader cmsis option name fixed"
265 A typo on BR2_PACAKGE_OPENFPGALOADER_CMSIS was fixed by
266 renaming the option to BR2_PACKAGE_OPENFPGALOADER_CMSIS.
268 comment "Legacy options removed in 2023.02"
270 config BR2_PACKAGE_PUGIXML_HEADER_ONLY
271 bool "pugixml header-only removed"
274 The header-only version raises a build failure with gerbera.
276 config BR2_PACKAGE_UCCP420WLAN
277 bool "uccp420wlan removed"
280 The uccp420wlan package is unmaintained and doesn't build
281 with any "recent" kernel (e.g. >= 4.7).
283 config BR2_PACKAGE_IMX_GPU_G2D_EXAMPLES
284 bool "imx-gpu-g2d examples removed"
287 The examples are not provided by NXP anymore.
289 config BR2_KERNEL_HEADERS_6_0
290 bool "kernel headers version 6.0.x are no longer supported"
293 Version 6.0.x of the Linux kernel headers are no longer
294 maintained upstream and are now removed.
296 config BR2_KERNEL_HEADERS_4_9
297 bool "kernel headers version 4.9.x are no longer supported"
300 Version 4.9.x of the Linux kernel headers are no longer
301 maintained upstream and are now removed.
303 config BR2_PACKAGE_DOCKER_PROXY
304 bool "docker-proxy removed"
306 select BR2_PACKAGE_DOCKER_ENGINE
308 docker-proxy has been dropped by upstream since version
309 563fe8. it has been merged into docker-engine (moby).
311 config BR2_PACKAGE_PYTHON_BUNCH
312 bool "python-bunch removed"
315 The python-bunch package is unmaintained and is replaced
316 by the python-munch package.
318 config BR2_TARGET_GUMMIBOOT
319 bool "gummiboot removed"
322 gummiboot has been deprecated since 2015, with no further
323 updates. It became integrated into the systemd project as
326 config BR2_PACKAGE_IPUTILS_NINFOD
327 bool "iputils 20221126 removed ninfod"
330 iputils 20221126 removed ninfod.
332 config BR2_PACKAGE_IPUTILS_RARPD
333 bool "iputils 20221126 removed rarpd"
336 iputils 20221126 removed rarpd.
338 config BR2_PACKAGE_IPUTILS_RDISC
339 bool "iputils 20221126 removed rdisc"
342 iputils 20221126 removed rdisc.
344 config BR2_PACKAGE_IPUTILS_RDISC_SERVER
345 bool "iputils 20221126 removed rdisc"
348 iputils 20221126 removed rdisc.
350 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_XINGMUX
353 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_XINGMUX
355 The xingmux option has been moved to gst1-plugins-good.
357 config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOSCALE
358 bool "videoscale removed"
360 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERTSCALE
362 The videoscale option has been combined with videoconvert.
364 config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERT
365 bool "videoconvert removed"
367 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERTSCALE
369 The videoconvert option has been combined with videoscale.
371 config BR2_PACKAGE_IMX_GPU_VIV_OUTPUT_X11
372 bool "imx-gpu-viv X11 output has been removed"
375 The X11 output was dropped by NXP.
377 config BR2_PACKAGE_XDRIVER_XF86_VIDEO_IMX_VIV
378 bool "xf86-video-imx-viv has been removed"
381 The X11 output was dropped by NXP.
383 config BR2_PACKAGE_QEMU_CUSTOM_TARGETS
384 string "the QEMU specific targets option has been removed"
386 This option has been replaced by a list of individual targets
387 for the many architectures supported by QEMU.
389 config BR2_PACKAGE_QEMU_CUSTOM_TARGETS_WRAP
391 default y if BR2_PACKAGE_QEMU_CUSTOM_TARGETS != ""
394 config BR2_PACKAGE_XDRIVER_XF86_INPUT_KEYBOARD
395 bool "xf86-input-keyboard removed"
398 The X.org keyboard input driver no longer support Linux.
400 config BR2_TARGET_SUN20I_D1_SPL
401 bool "sun20-d1-spl removed"
404 U-Boot has gained SPL support for D1, so this temporary
405 bootloader is no longer supported.
407 config BR2_PACKAGE_PYTHON_M2R
408 bool "python-m2r removed"
411 The python-m2r package is unmaintained.
413 config BR2_PACKAGE_MESA3D_XVMC
414 bool "mesa Gallium XvMC state tracker removed"
417 The Gallium XvMC state tracker was removed upstream.
419 config BR2_KERNEL_HEADERS_5_19
420 bool "kernel headers version 5.19.x are no longer supported"
423 Version 5.19.x of the Linux kernel headers are no longer
424 maintained upstream and are now removed.
426 config BR2_PACKAGE_XDRIVER_XF86_VIDEO_TGA
427 bool "xf86-video-tga removed"
430 The X.org xf86-video-tga package was removed.
432 config BR2_PACKAGE_XDRIVER_XF86_VIDEO_GLINT
433 bool "xf86-video-glint removed"
436 The X.org xf86-video-glint package no longer builds with
437 Xserver 21 and is unmaintained.
439 config BR2_PACKAGE_USBREDIR_SERVER
440 bool "usbredirserver removed"
443 usbredirserver has been dropped by upstream since version
444 0.13.0. usbredir tools (which include usbredirect binary) can
445 be used as a replacement.
447 comment "Legacy options removed in 2022.11"
449 config BR2_BINUTILS_VERSION_2_36_X
450 bool "binutils 2.36.x has been removed"
453 binutils 2.36 has been removed, use a newer version.
455 config BR2_PACKAGE_RABBITMQ_SERVER
456 bool "rabbitmq-server removed"
459 Package was removed because it was unmaintained and had
460 known security issues.
462 config BR2_PACKAGE_LIBOPENSSL_ENABLE_RC5
463 bool "libopenssl rc5 was never enabled"
466 The libopenssl option for rc5 never actually enabled rc5,
467 which had always been disabled in Buildroot.
469 config BR2_PACKAGE_LIBDCADEC
470 bool "package was deprecated upstream, use ffmpeg instead"
473 This decoder has been fully integrated into FFmpeg master
474 branch and further development will continue there. Using
475 FFmpeg for DTS decoding is now recommended.
477 config BR2_KERNEL_HEADERS_5_17
478 bool "kernel headers version 5.17.x are no longer supported"
481 Version 5.17.x of the Linux kernel headers are no longer
482 maintained upstream and are now removed.
485 bool "ARM iwmmxt variant removed"
488 Support for the ARM iwmmxt architecture variant in GCC has
489 bitroten and is no longer maintained. GCC maintainers
490 recommend to no longer use it, and suggest to use "xscale"
491 as a replacement architecture variant. See
492 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106972
494 config BR2_PACKAGE_UHD_N230
495 bool "uhd N230 support removed"
498 uhd N230 support has been dropped by upstream since version
501 config BR2_PACKAGE_UHD_RFNOC
502 bool "uhd RFNoC support removed"
505 uhd RFNoC support has been dropped by upstream since version
508 config BR2_PACKAGE_GPSD_OLDSTYLE
509 bool "gpsd oldstyle removed"
512 gpsd oldstyle option has been removed by upstream in 2015.
514 config BR2_GDB_VERSION_9_2
515 bool "gdb 9.2 removed"
518 Support for GDB 9.2 has been removed. A new version has
519 automatically been selected.
521 comment "Legacy options removed in 2022.08"
523 config BR2_ECLIPSE_REGISTER
524 bool "Eclipse integration removed"
527 The Buildroot integration with the Eclipse IDE has been
528 removed, as the corresponding Eclipse plugin is no longer
529 maintained, and is no longer usable with current versions of
533 bool "csky architecture removed"
536 The csky architecture was removed, by lack of toolchain
539 config BR2_PACKAGE_MESA3D_DRI_DRIVER_I915
540 bool "mesa DRI i915 driver removed"
543 The DRI i915 driver was removed upstream.
545 config BR2_PACKAGE_MESA3D_DRI_DRIVER_I965
546 bool "mesa DRI i965 driver removed"
549 The DRI i965 driver was removed upstream.
551 config BR2_PACKAGE_MESA3D_DRI_DRIVER_NOUVEAU
552 bool "mesa DRI nouveau driver removed"
555 The DRI radeon nouveau was removed upstream.
557 config BR2_PACKAGE_MESA3D_DRI_DRIVER_RADEON
558 bool "mesa DRI radeon r100 driver removed"
561 The DRI radeon r100 driver was removed upstream.
563 config BR2_GCC_VERSION_9_X
564 bool "gcc 9.x support removed"
567 Support for gcc version 9.x has been removed. The current
568 default version (11.x or later) has been selected instead.
570 config BR2_PACKAGE_PHP_EXT_WDDX
571 bool "php wddx removed"
574 The WDDX extension was removed from php.
577 bool "nds32 architecture removed"
580 Support for the nds32 architecture has been removed, due to
581 its support being removed from the upstream Linux kernel,
582 and its lack of maintenance in Buildroot.
584 config BR2_PACKAGE_RTL8723BS
585 bool "rtl8723bs removed"
588 Package was removed because it is not compatible with latest
589 kernels and is not maintained anymore: code has been removed
590 in 2017 as driver is available in the linux-next tree.
592 comment "Legacy options removed in 2022.05"
594 config BR2_PACKAGE_KTAP
598 Package was removed because it is not compatible with latest
599 kernels and is not maintained anymore (no release since 2013).
601 config BR2_KERNEL_HEADERS_5_16
602 bool "kernel headers version 5.16.x are no longer supported"
605 Version 5.16.x of the Linux kernel headers are no longer
606 maintained upstream and are now removed.
608 config BR2_KERNEL_HEADERS_4_4
609 bool "kernel headers version 4.4.x are no longer supported"
612 Version 4.4.x of the Linux kernel headers are no longer
613 maintained upstream and are now removed.
615 config BR2_BINUTILS_VERSION_2_32_X
616 bool "binutils 2.32.x has been removed"
619 binutils 2.32 has been removed, use a newer version.
622 bool "sh2a architecture support removed"
625 The SuperH 2A (SH2A) architecture was not maintained, and
626 broken, so its support was dropped.
628 config BR2_BINUTILS_VERSION_2_35_X
629 bool "binutils 2.35.x has been removed"
632 binutils 2.35 has been removed, use a newer version.
634 config BR2_PACKAGE_BOOST_LAYOUT_TAGGED
635 bool "boost tagged layout removed"
638 Boost tagged layout isn't handled by some packages (e.g. botan
641 config BR2_PACKAGE_BOOST_LAYOUT_VERSIONED
642 bool "boost versioned layout removed"
645 Boost versioned layout isn't handled by a number of autotools
646 and cmake packages (e.g. azmq, cc-tool, i2pd).
648 comment "Legacy options removed in 2022.02"
650 config BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS
651 string "entrypoint argumetns has been changed as command"
653 The OCI image BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS option
654 has been renamed to BR2_TARGET_ROOTFS_OCI_CMD to better
655 reflect its relation to the actual 'command' of the OCI
658 The new semantic for BR2_TARGET_ROOTFS_OCI_CMD is slightly
659 differnt in relation to how it is interpreted, so be sure to
660 review the help entry for it.
662 Due to this breaking change, the old value here could not be
663 set to the new variable.
665 config BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS_WRAP
667 default y if BR2_TARGET_ROOTFS_OCI_ENTRYPOINT_ARGS != ""
670 config BR2_PACKAGE_LIBCURL_LIBNSS
671 bool "libcurl NSS removed"
674 NSS was deprecated in libcurl 7.82.0.
676 config BR2_PACKAGE_WESTON_DEFAULT_FBDEV
677 bool "weston fbdev removed"
680 fbdev was deprecated in weston 10.0.0.
682 config BR2_PACKAGE_WESTON_FBDEV
683 bool "weston fbdev compositor removed"
686 fbdev compositor was deprecated in weston 10.0.0.
688 config BR2_PACKAGE_PYTHON_PYCLI
689 bool "python-pycli removed"
692 Package was removed because it is not compatible with python
693 3.10 and is not maintained anymore (no release since 2012).
695 config BR2_PACKAGE_LINUX_TOOLS_BPFTOOL
696 bool "bpftool was moved"
698 select BR2_PACKAGE_BPFTOOL
700 The linux-tools bpftool build has been moved out
701 of the linux-tools package.
703 config BR2_TARGET_UBOOT_NEEDS_PYTHON2
704 bool "host-python 2.7 support for U-Boot was removed"
707 Option was removed together with python 2.7 support.
709 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBMMS
710 bool "gst1-plugins-bad plugin libmms was removed"
711 depends on BR2_USE_WCHAR
712 depends on BR2_TOOLCHAIN_HAS_THREADS
715 This plugin was removed with gst1-plugins-bad-1.20.0.
717 config BR2_PACKAGE_PYTHON_FUNCTOOLS32
718 bool "python-functools32 removed"
721 Package was removed together with python 2.7 support.
723 config BR2_PACKAGE_PYTHON_ENUM34
724 bool "python-enum34 removed"
727 Package was removed together with python 2.7 support.
729 config BR2_PACKAGE_PYTHON_ENUM
730 bool "python-enum removed"
733 Package was removed together with python 2.7 support.
735 config BR2_PACKAGE_PYTHON_DIALOG
736 bool "python-dialog removed"
739 Package was removed together with python 2.7 support.
741 config BR2_PACKAGE_PYTHON_CONFIGOBJ
742 bool "python-configobj removed"
745 Package was removed together with python 2.7 support.
747 config BR2_PACKAGE_PYTHON_YIELDFROM
748 bool "python-yieldfrom removed"
751 Package was removed together with python 2.7 support.
753 config BR2_PACKAGE_PYTHON_TYPING
754 bool "python-typing removed"
757 Package was removed together with python 2.7 support.
759 config BR2_PACKAGE_PYTHON_SUBPROCESS32
760 bool "python-subprocess32 removed"
763 Package was removed together with python 2.7 support.
765 config BR2_PACKAGE_PYTHON_SINGLEDISPATCH
766 bool "python-singledispatch removed"
769 Package was removed together with python 2.7 support.
771 config BR2_PACKAGE_PYTHON_PYRO
772 bool "python-pyro removed"
775 Package was removed together with python 2.7 support.
777 config BR2_PACKAGE_PYTHON_PYPCAP
778 bool "python-pypcap removed"
781 Package was removed together with python 2.7 support.
783 config BR2_PACKAGE_PYTHON_PATHLIB2
784 bool "python-pathlib2 removed"
787 Package was removed together with python 2.7 support.
789 config BR2_PACKAGE_PYTHON_PAM
790 bool "python-pam removed"
793 Package was removed together with python 2.7 support.
795 config BR2_PACKAGE_PYTHON_NFC
796 bool "python-nfc removed"
799 Package was removed together with python 2.7 support.
801 config BR2_PACKAGE_PYTHON_MAD
802 bool "python-mad removed"
805 Package was removed together with python 2.7 support.
807 config BR2_PACKAGE_PYTHON_IPADDRESS
808 bool "python-ipaddress removed"
811 Package was removed together with python 2.7 support.
813 config BR2_PACKAGE_PYTHON_IPADDR
814 bool "python-ipaddr removed"
817 Package was removed together with python 2.7 support.
819 config BR2_PACKAGE_PYTHON_ID3
820 bool "python-id3 removed"
823 Package was removed together with python 2.7 support.
825 config BR2_PACKAGE_PYTHON_FUTURES
826 bool "python-futures removed"
829 Package was removed together with python 2.7 support.
831 config BR2_PACKAGE_PYTHON_BACKPORTS_SSL_MATCH_HOSTNAME
832 bool "python-backports-ssl-match-hostname removed"
835 Package was removed together with python 2.7 support.
837 config BR2_PACKAGE_PYTHON_BACKPORTS_SHUTIL_GET_TERMINAL_SIZE
838 bool "python-backports-shutil-get-terminal-size removed"
841 Package was removed together with python 2.7 support.
843 config BR2_PACKAGE_PYTHON_BACKPORTS_ABC
844 bool "python-backports-abc removed"
847 Package was removed together with python 2.7 support.
849 config BR2_PACKAGE_PYTHON
850 bool "python2.7 package removed"
853 Python 2.7 is EOL since April 2020 and has been removed.
855 https://www.python.org/dev/peps/pep-0373/
857 config BR2_TARGET_UBOOT_ZYNQ_IMAGE
858 bool "Generate image for Xilinx Zynq"
861 Since 2016.1, U-Boot can natively generate the Zynq boot
862 image, and so the Xilinx-specific format and tools have been
863 removed. Should you still have an older U-Boot that needs
864 this, a python3 version of the zynq-boot-bin.py script can be
865 downloaded from the URL below and called from a post-build
868 https://gist.githubusercontent.com/jameshilliard/e09235dfc6f96c11418a134e6ebf7890/raw/135b7480c405ae8a77a9db615e495f9a9f2d3242/zynq-boot-bin.py
870 config BR2_PACKAGE_RPI_BT_FIRMWARE
871 bool "rpi-bt-firmware package was renamed"
872 depends on BR2_arm || BR2_aarch64
874 select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI
875 select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI_BT
877 Package rpi-bt-firmware was moved as option to
878 package brcmfmac_sdio-firmware-rpi.
880 config BR2_PACKAGE_RPI_WIFI_FIRMWARE
881 bool "rpi-wifi-firmware package was renamed"
882 depends on BR2_arm || BR2_aarch64
884 select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI
885 select BR2_PACKAGE_BRCMFMAC_SDIO_FIRMWARE_RPI_WIFI
887 Package rpi-wifi-firmware was moved as option to
888 package brcmfmac_sdio-firmware-rpi.
890 config BR2_PACKAGE_HOST_GDB_PYTHON
891 bool "GDB Python2 support removed"
894 Python2 is deprecated and no longer supported.
895 Please migrate to Python3.
897 config BR2_PACKAGE_GSTREAMER1_MM
898 bool "gstreamer1-mm package removed"
901 This package has been removed as it is not actively
902 maintained anymore and does not support glibmm-2.68 API.
904 config BR2_KERNEL_HEADERS_5_14
905 bool "kernel headers version 5.14.x are no longer supported"
908 Version 5.14.x of the Linux kernel headers are no longer
909 maintained upstream and are now removed.
911 config BR2_PACKAGE_PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE
912 bool "python-backports-functools-lru-cache package removed"
915 This package has been removed as python-setuptools-scm
916 dropped support of python 2 since version 6.0.0.
918 config BR2_PACKAGE_CIVETWEB_WITH_LUA
919 bool "civetweb lua support option removed"
922 Lua support does not depend on a version of Lua bundled
923 within the Civetweb sources anymore. Lua support is
924 automatically enabled if an Lua interpreter (lua or luajit)
925 is enabled in Buildroot.
927 config BR2_PACKAGE_SUNXI_MALI_MAINLINE_DRIVER
928 bool "sunxi-mali-mainline-driver package was renamed"
930 select BR2_PACKAGE_SUNXI_MALI_UTGARD_DRIVER
932 Since the removal of the sunxi-mali-driver package, the
933 sunxi-mali-mainline-driver package that coexisted became the
934 only package to provide the Sunxi Mali driver. The "-mainline"
935 suffix being undescriptive nowadays and before adding new
936 packages bringing Mali support for other SoCs/GPU flavors, it
937 is clearer to rename it SUNXI_MALI_UTGARD_DRIVER.
939 config BR2_PACKAGE_SUNXI_MALI_MAINLINE
940 bool "sunxi-mali-mainline package was renamed"
942 select BR2_PACKAGE_SUNXI_MALI_UTGARD
944 Since the removal of the sunxi-mali package, the
945 sunxi-mali-mainline package that coexisted became the only
946 package to provide Mali blobs. The "-mainline" suffix being
947 undescriptive nowadays and before adding new packages bringing
948 Mali support for other SoCs/GPU flavors, it is clearer to
949 rename it SUNXI_MALI_UTGARD.
951 config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2
952 bool "sunxi-mali-mainline-r6p2 was renamed"
955 The sunxi-mali-mainline package has been renamed
956 sunxi-mali-utgard, the suboptions of this package have also
957 been renamed accordingly.
958 # Note: BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2 is still referenced from
959 # package/sunxi-mali-utgard/Config.in
961 config BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1
962 bool "sunxi-mali-mainline-r8p1 was renamed"
965 The sunxi-mali-mainline package has been renamed
966 sunxi-mali-utgard, the suboptions of this package have also
967 been renamed accordingly.
968 # Note: BR2_PACKAGE_SUNXI_MALI_MAINLINE_R8P1 is still referenced from
969 # package/sunxi-mali-utgard/Config.in
971 config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
972 bool "qt5webkit-examples removed"
975 The qt5webkit-examples package is unmaintained and has been
978 config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_GLIBC_BLEEDING_EDGE
979 bool "Bootlin riscv64 glibc bleeding-edge toolchain removed"
982 The RISC-V 64-bit LP64 Bootlin toolchains have been removed,
983 in favor of RISC-V 64-bit LP64D toolchains.
985 config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_MUSL_BLEEDING_EDGE
986 bool "Bootlin riscv64 musl bleeding-edge toolchain removed"
989 The RISC-V 64-bit LP64 Bootlin toolchains have been removed,
990 in favor of RISC-V 64-bit LP64D toolchains.
992 config BR2_PACKAGE_IPUTILS_TFTPD
993 bool "iputils tftpd option removed"
996 tftpd has been removed from iputils since version 20211215.
998 config BR2_PACKAGE_IPUTILS_TRACEROUTE6
999 bool "iputils traceroute6 option removed"
1002 traceroute6 has been removed from iputils since version
1005 config BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
1006 bool "libmediaart 'none' backend removed"
1009 'none' backend has been removed from libmediaart since version
1012 config BR2_PACKAGE_MPD_UPNP
1013 bool "MPD UPnP configuration changed"
1016 From version 0.23, MPD supports npupnp in addition to pupnp to
1017 provide database access to a UPnP media server. To preserve
1018 the existing functionality, the pupnp option has been selected
1019 in the MPD UPnP configuration.
1020 # Note: BR2_PACKAGE_MPD_UPNP is still referenced from package/mpd/Config.in
1022 comment "Legacy options removed in 2021.11"
1024 config BR2_OPENJDK_VERSION_LTS
1025 bool "OpenJDK LTS version was renamed to OpenJDK 11"
1028 The LTS version option was renamed to OpenJDK 11 to make it
1029 clear what LTS version is.
1030 # Note: BR2_OPENJDK_VERSION_LTS is still referenced from
1031 # package/openjdk/Config.in
1033 config BR2_OPENJDK_VERSION_LATEST
1034 bool "OpenJDK latest version (16.x) was removed"
1037 OpenJDK 16.x is no longer mainted, so the option has been
1038 removed. Use OpenJDK 17.x instead.
1039 # Note: BR2_OPENJDK_VERSION_LATEST is still referenced from
1040 # package/openjdk/Config.in
1042 config BR2_PACKAGE_MPD_TIDAL
1043 bool "mpd tidal option removed"
1046 tidal has been removed from mpd since version 0.22.10.
1048 config BR2_PACKAGE_MROUTED_RSRR
1049 bool "RSRR for RSVP removed in mrouted v4.4"
1052 The RSRR configure option and feature was dropped in upstream
1053 mrouted as of v4.4. This feature was marked as experimental
1054 since its inception well before v4.0 and was never deployed
1055 in the field outside of academia.
1057 config BR2_BINUTILS_VERSION_CSKY
1058 bool "binutils csky version removed"
1061 Support for binutils csky version has been removed.
1063 config BR2_GCC_VERSION_CSKY
1064 bool "gcc csky version removed"
1067 Support for gcc csky version has been removed.
1069 config BR2_PACKAGE_CANFESTIVAL
1070 bool "canfestival package removed"
1073 This package has been removed as it is unmaintained since
1076 config BR2_PACKAGE_NMAP_NDIFF
1077 bool "The ndiff utility has been removed"
1079 select BR2_PACKAGE_PYTHON_PYNDIFF
1081 The ndiff utility provided by nmap requires python2 which is
1082 deprecated. The same functionality is provided by the python
1085 config BR2_GDB_VERSION_8_3
1086 bool "gdb version 8.3.x removed"
1089 gdb 8.3.x has been removed, use a newer version instead.
1091 config BR2_PACKAGE_PYTHON_MELD3
1092 bool "python-meld3 package removed"
1095 This package has been removed as it is unmaintained since
1098 config BR2_PACKAGE_STRONGSWAN_EAP
1099 bool "strongswan EAP plugins now individually selectable"
1102 The various EAP plugins are now individually selectable.
1104 config BR2_PACKAGE_GNURADIO_PAGER
1105 bool "gnuradio gr-flex support removed"
1108 gr-flex has been removed from gnuradio since version 3.8.0.0.
1110 config BR2_KERNEL_HEADERS_5_11
1111 bool "kernel headers version 5.11.x are no longer supported"
1114 Version 5.11.x of the Linux kernel headers are no longer
1115 maintained upstream and are now removed.
1117 config BR2_KERNEL_HEADERS_5_12
1118 bool "kernel headers version 5.12.x are no longer supported"
1121 Version 5.12.x of the Linux kernel headers are no longer
1122 maintained upstream and are now removed.
1124 config BR2_KERNEL_HEADERS_5_13
1125 bool "kernel headers version 5.13.x are no longer supported"
1128 Version 5.13.x of the Linux kernel headers are no longer
1129 maintained upstream and are now removed.
1131 comment "Legacy options removed in 2021.08"
1133 config BR2_TARGET_GRUB2_BUILTIN_MODULES
1134 string "the grub2 builtin modules has been renamed"
1136 This option has been split to separate the builtin modules
1137 between BR2_TARGET_GRUB2_BUILTIN_MODULES_PC and
1138 BR2_TARGET_GRUB2_BUILTIN_MODULES_EFI.
1140 config BR2_TARGET_GRUB2_BUILTIN_MODULES_WRAP
1142 default y if BR2_TARGET_GRUB2_BUILTIN_MODULES != ""
1145 config BR2_TARGET_GRUB2_BUILTIN_CONFIG
1146 string "the grub2 builtin configuration has been renamed"
1148 This option has been split to separate the builtin
1149 configuration between BR2_TARGET_GRUB2_BUILTIN_CONFIG_PC and
1150 BR2_TARGET_GRUB2_BUILTIN_CONFIG_EFI.
1152 config BR2_TARGET_GRUB2_BUILTIN_CONFIG_WRAP
1154 default y if BR2_TARGET_GRUB2_BUILTIN_CONFIG != ""
1157 config BR2_PACKAGE_LIBMCRYPT
1158 bool "libmcrypt package was removed"
1161 This package has been removed as "the last update to libmcrypt
1162 was in 2007, despite years of unmerged patches. These facts
1163 have led security experts to declare mcrypt abandonware and
1164 discourage its use in new development" (extract from
1165 https://en.wikipedia.org/wiki/Mcrypt).
1167 config BR2_PACKAGE_MCRYPT
1168 bool "mcrypt package was removed"
1171 This package has been removed as "the last update to libmcrypt
1172 was in 2007, despite years of unmerged patches. These facts
1173 have led security experts to declare mcrypt abandonware and
1174 discourage its use in new development" (extract from
1175 https://en.wikipedia.org/wiki/Mcrypt).
1177 config BR2_PACKAGE_PHP_EXT_MCRYPT
1178 bool "PHP mcrypt extension removed"
1181 mcrypt has been removed from php since version 7.2.0.
1183 config BR2_BINUTILS_VERSION_2_34_X
1184 bool "binutils 2.34 has been removed"
1187 binutils 2.34 has been removed, use a newer version.
1189 config BR2_PACKAGE_LIBSOIL
1190 bool "libsoil package removed"
1193 The libsoil package was removed. All packages needing
1194 libsoil removed the dependency.
1196 config BR2_PACKAGE_CLAPACK
1197 bool "cblas/clapack package removed"
1199 select BR2_PACKAGE_LAPACK if BR2_PACKAGE_LAPACK_ARCH_SUPPORTS && BR2_TOOLCHAIN_HAS_FORTRAN
1201 The clapack package was removed. LAPACK no longer generates a
1202 C version. Use lapack instead. This does require a Fortran
1205 config BR2_PACKAGE_SPIDERMONKEY
1206 bool "spidermonkey package removed"
1209 The spidermonkey package was removed. The only package that
1210 depended on spidermonkey was polkit. The spidermonkey
1211 dependency is replaced with duktape.
1213 config BR2_PACKAGE_KODI_LIBVA
1214 bool "kodi option to add libva support removed"
1217 Kodi still has support for libva if the package is enabled but
1218 the kodi-specific dependencies limiting libva support to non-
1219 OPENGLES platforms were removed including this option.
1221 config BR2_PACKAGE_PYTHON_COHERENCE
1222 bool "python-coherence package removed"
1225 This package has been removed as it can't be built anymore due
1226 to python-twisted being now incompatible with python 2.
1228 config BR2_PACKAGE_PHP_EXT_XMLRPC
1229 bool "PHP XMLRPC extension removed"
1232 The XMLRPC php extension was removed.
1233 See: https://wiki.php.net/rfc/unbundle_xmlprc
1235 config BR2_GCC_VERSION_8_X
1236 bool "gcc 8.x support removed"
1239 Support for gcc version 8.x has been removed. The current
1240 default version (10.x or later) has been selected instead.
1242 comment "Legacy options removed in 2021.05"
1244 config BR2_PACKAGE_UDISKS_LVM2
1245 bool "udisks lvm2 support removed"
1248 The lvm2 support was removed because udisks < 2.7.0 still
1249 depends on lvm2 application library, which was removed
1252 config BR2_PACKAGE_LVM2_APP_LIBRARY
1253 bool "lvm2 application library removed"
1256 The lvm2 application library was removed upstream.
1258 config BR2_PACKAGE_LVM2_LVMETAD
1259 bool "lvm2 lvmetad removed"
1262 The lvm2 lvmetad was removed upstream.
1264 config BR2_PACKAGE_MONKEY
1265 bool "monkey package removed"
1268 This package has been removed as it has not seen any release
1269 since 2016 and because TLS is broken on master.
1271 config BR2_PACKAGE_DOCKER_CONTAINERD
1272 bool "docker-containerd package was renamed to containerd"
1274 select BR2_PACKAGE_CONTAINERD
1276 The containerd project is now independent from Docker.
1277 The package was renamed to containerd accordingly.
1279 config BR2_PACKAGE_IOSTAT
1280 bool "iostat package removed"
1283 This package has been removed, use sysstat instead.
1285 config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE
1286 bool "sconeserver http::sconesite::image removed"
1289 Sconeserver cannot be built with ImageMagick - it uses the
1290 "transofrm" function which is removed from public API.
1292 config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_EVDEV
1293 bool "KDrive/TinyX evdev input driver removed"
1296 The evdev input driver in KDrive was removed.
1298 config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_KBD
1299 bool "KDrive/TinyX kbd input driver removed"
1302 The kbd input driver in KDrive was removed.
1304 config BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE_MOUSE
1305 bool "KDrive/TinyX mouse input driver removed"
1308 The mouse input driver in KDrive was removed.
1310 config BR2_PACKAGE_MESA3D_OSMESA_CLASSIC
1311 bool "mesa OSMesa (classic) option removed"
1313 select BR2_PACKAGE_MESA3D_OSMESA_GALLIUM
1315 The OSMesa "classic" library option was removed upstream.
1316 Only the Gallium-based implementation remains.
1318 config BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST
1319 bool "mesa DRI swrast driver removed"
1321 select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST
1323 The DRI swrast driver was removed upstream.
1324 Only the Gallium-based implementation remains.
1326 config BR2_PACKAGE_KODI_SCREENSAVER_CRYSTALMORPH
1327 bool "kodi-screensaver-crystalmorph removed"
1330 The package received its last updates in 2017, is not part
1331 of the official Kodi github repo and its build is broken
1332 with Kodi 19.x, so it was removed.
1334 comment "Legacy options removed in 2021.02"
1336 config BR2_PACKAGE_MPD_AUDIOFILE
1337 bool "mpd audiofile support removed"
1340 The audiofile support was removed from mpd as audiofile is
1341 affected by multiple CVEs and is not maintained anymore (no
1342 release since 2013).
1344 config BR2_PACKAGE_AUDIOFILE
1345 bool "audiofile package removed"
1348 The audiofile package was removed as it is affected by
1349 multiple CVEs and is not maintained anymore (no release since
1352 config BR2_BINUTILS_VERSION_2_33_X
1353 bool "binutils 2.33.x has been removed"
1356 binutils 2.33.x has been removed, use a newer version.
1358 config BR2_PACKAGE_LIBUPNP18
1359 bool "libupnp18 package removed"
1361 select BR2_PACKAGE_LIBUPNP
1363 Version 1.8.x of libupnp (i.e. libupnp18) has been removed
1364 because it will never be fixed against CallStranger a.k.a.
1365 CVE-2020-12695. The libupnp package (which has been updated to
1366 version 1.14.x) has been selected instead.
1368 config BR2_PACKAGE_BOA
1369 bool "boa package removed"
1372 The boa package was removed as it is affected by multiple
1373 CVEs and is not maintained anymore (no release since 2005).
1375 config BR2_PACKAGE_LINUX_FIRMWARE_IMX_SDMA
1376 bool "imx sdma firmware is provided by firmware-imx"
1378 select BR2_PACKAGE_FREESCALE_IMX
1379 select BR2_PACKAGE_FIRMWARE_IMX
1381 linux-firmware provide the same firmware as firmware-imx.
1382 We prefer using firmware-imx as the only provider.
1384 config BR2_GDB_VERSION_8_2
1385 bool "gdb 8.2.x has been removed"
1388 gdb 8.2 support has been removed, you can use a newer
1389 version such as 8.3 or more recent.
1391 config BR2_PACKAGE_HOST_RCW
1392 bool "rcw package was renamed to qoriq-rcw"
1393 select BR2_PACKAGE_HOST_QORIQ_RCW
1396 The rcw package was specific to the QorIQ platform, so it has
1397 been renamed to qoriq-rcw, to leave room for other *-rcw
1398 packages for other platforms.
1400 config BR2_KERNEL_HEADERS_5_9
1401 bool "kernel headers version 5.9.x are no longer supported"
1404 Version 5.9.x of the Linux kernel headers are no longer
1405 maintained upstream and are now removed.
1407 config BR2_KERNEL_HEADERS_5_8
1408 bool "kernel headers version 5.8.x are no longer supported"
1411 Version 5.8.x of the Linux kernel headers are no longer
1412 maintained upstream and are now removed.
1414 config BR2_powerpc_601
1415 bool "PowerPC 601 support removed"
1418 The support for the PowerPC 601 processors has been removed.
1420 config BR2_PACKAGE_TI_SGX_LIBGBM
1421 bool "ti-sgx-libgbm support removed"
1424 TI has merged the ti-sgx-libgbm package with the ti-sgx-um
1427 config BR2_PACKAGE_IPSEC_TOOLS
1428 bool "ipsec-tools package was removed"
1431 This package has been removed as it has security issues and
1432 has been abandoned since 2014.
1434 comment "Legacy options removed in 2020.11"
1436 config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED
1437 bool "compile with fixed serial port speed"
1440 Since gpsd 3.20, GPSD_FIXED_PORT_SPEED is replaced
1441 by runtime option --speed.
1443 config BR2_PACKAGE_GPSD_RECONFIGURE
1444 bool "allow gpsd to change device settings"
1447 Since gpsd 3.21, GPSD_RECONFIGURE is replaced
1448 by runtime option --passive.
1450 config BR2_PACKAGE_GPSD_CONTROLSEND
1451 bool "allow gpsctl/gpsmon to change device settings"
1454 Option removed in gpsd 3.21
1456 config BR2_PACKAGE_OPENCV
1457 bool "opencv package was removed"
1460 This package has been removed, use opencv3 instead.
1462 config BR2_PACKAGE_LIBCROCO
1463 bool "libcroco package was removed"
1466 This package has been removed as it is affected by several
1467 security issues such as CVE-2020-12825 which will never be
1468 fixed as libcroco has been archived.
1470 config BR2_PACKAGE_BELLAGIO
1471 bool "bellagio package was removed"
1474 This package has been removed as it is not maintained anymore
1475 (no release since 2011).
1477 config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
1478 bool "systemd-journal-gatewayd now in systemd-journal-remote"
1480 select BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE
1482 All system journal remote programs are now enabled using
1483 BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE.
1485 config BR2_TARGET_UBOOT_BOOT_SCRIPT
1486 bool "u-boot script generation was moved"
1488 select BR2_PACKAGE_HOST_UBOOT_TOOLS
1489 select BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT
1491 Migrated U-Boot script generation to uboot-tools
1493 # Note: BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE is still referenced from
1494 # package/uboot-tools/Config.in
1495 config BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE
1496 string "The uboot script source string has been renamed"
1497 depends on BR2_TARGET_UBOOT_BOOT_SCRIPT
1499 Migrated U-Boot script generation to uboot-tools.
1501 BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT_SOURCE
1503 config BR2_TARGET_UBOOT_ENVIMAGE
1504 bool "u-boot env generation was moved"
1506 select BR2_PACKAGE_HOST_UBOOT_TOOLS
1507 select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE
1509 Migrated U-Boot env generation to uboot-tools
1511 # Note: BR2_TARGET_UBOOT_ENVIMAGE_SOURCE is still referenced from
1512 # package/uboot-tools/Config.in
1513 config BR2_TARGET_UBOOT_ENVIMAGE_SOURCE
1514 string "The uboot env image source string has been renamed"
1515 depends on BR2_TARGET_UBOOT_ENVIMAGE
1517 Migrated U-Boot env generation to uboot-tools.
1519 BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE
1521 # Note: BR2_TARGET_UBOOT_ENVIMAGE_SIZE is still referenced from
1522 # package/uboot-tools/Config.in
1523 config BR2_TARGET_UBOOT_ENVIMAGE_SIZE
1524 string "The uboot env image size string has been renamed"
1525 depends on BR2_TARGET_UBOOT_ENVIMAGE
1527 Migrated U-Boot env generation to uboot-tools.
1528 New option is named BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SIZE
1530 config BR2_TARGET_UBOOT_ENVIMAGE_REDUNDANT
1531 bool "u-boot env generation was moved"
1532 depends on BR2_TARGET_UBOOT_ENVIMAGE
1533 select BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_REDUNDANT
1535 Migrated U-Boot env generation to uboot-tools
1537 config BR2_PACKAGE_KISMET_CLIENT
1538 bool "kismet client support was removed"
1541 Kismet client support was removed since version 2019-04-R1.
1543 config BR2_PACKAGE_KISMET_DRONE
1544 bool "kismet drone support was removed"
1547 Kismet drone support was removed since version 2019-04-R1.
1549 config BR2_GCC_VERSION_7_X
1550 bool "gcc 7.x support removed"
1553 Support for gcc version 7.x has been removed. The current
1554 default version (9.x or later) has been selected instead.
1556 config BR2_PACKAGE_GST1_VALIDATE
1557 bool "gst1-validate was moved to gst1-devtools"
1558 select BR2_PACKAGE_GST1_DEVTOOLS
1561 This package has been removed, use gst1-devtools instead.
1563 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF
1564 bool "gst1-plugins-bad yadif plugin was removed"
1566 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEINTERLACE
1568 This plugin was removed with gst1-plugins-bad-1.18.0, the
1569 same functionality has moved to gst1-plugins-good
1570 deinterlace plugin (method=yadif).
1572 config BR2_PACKAGE_GQVIEW
1573 bool "gqview package was removed"
1576 This package has been removed as it is not maintained anymore
1577 (no release since 2006).
1579 config BR2_PACKAGE_WESTON_IMX
1580 bool "weston-imx package was removed"
1583 This package has been removed, use weston instead.
1585 config BR2_KERNEL_HEADERS_5_7
1586 bool "kernel headers version 5.7.x are no longer supported"
1589 Version 5.7.x of the Linux kernel headers are no longer
1590 maintained upstream and are now removed.
1592 config BR2_PACKAGE_TINYHTTPD
1593 bool "tinyhttpd package removed"
1596 The tinyhttpd package was removed as it is affected by
1597 CVE-2002-1819 and is not maintained anymore (no release since
1600 config BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX
1601 bool "X.org Enable AIGLX Extension"
1604 AIGLX Extension was removed in X.org X server version 1.19.0
1606 config BR2_PACKAGE_AMD_CATALYST
1610 Current X.org server is incompatible with this driver.
1612 config BR2_PACKAGE_NVIDIA_TEGRA23
1613 bool "nvidia-tegra23 package removed"
1616 Current X.org server is incompatible with this driver.
1618 config BR2_GDB_VERSION_8_1
1619 bool "gdb 8.1.x has been removed"
1622 The 8.1.x version of gdb has been removed. Use a newer
1625 comment "Legacy options removed in 2020.08"
1627 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64
1628 bool "toolchain-external-codesourcery-amd64 removed"
1631 The CodeSourcery toolchain for AMD64, in version 2016.11 was
1632 dropped, due to it using a too old gcc 6.2.0 compiler which
1633 caused issues compiling a number of recent packages
1634 (e.g. Boost). CodeSourcery has stopped making newer versions
1635 of this toolchain publicly available, so it was not possible
1638 config BR2_KERNEL_HEADERS_5_6
1639 bool "kernel headers version 5.6.x are no longer supported"
1642 Version 5.6.x of the Linux kernel headers are no longer
1643 maintained upstream and are now removed.
1645 config BR2_KERNEL_HEADERS_5_5
1646 bool "kernel headers version 5.5.x are no longer supported"
1649 Version 5.5.x of the Linux kernel headers are no longer
1650 maintained upstream and are now removed.
1652 config BR2_BINUTILS_VERSION_2_31_X
1653 bool "binutils version 2.31.1 support removed"
1656 Support for binutils version 2.31.1 has been removed. The
1657 current default version (2.33.1 or later) has been selected
1660 config BR2_PACKAGE_KODI_PERIPHERAL_STEAMCONTROLLER
1661 bool "kodi-peripheral-steamcontroller package was removed"
1664 This package is broken.
1666 comment "Legacy options removed in 2020.05"
1668 config BR2_PACKAGE_WIRINGPI
1669 bool "wiringpi package removed"
1672 The author of wiringpi has deprecated the package, and
1673 completely removed the git tree that was serving the
1674 sources, with this message:
1675 Please look for alternatives for wiringPi
1677 config BR2_PACKAGE_PYTHON_PYCRYPTO
1678 bool "python-pycrypto package removed"
1681 This package has been removed, use python-pycryptodomex
1684 config BR2_PACKAGE_MTDEV2TUIO
1685 bool "mtdev2tuio package removed"
1688 The mtdev2tuio package was removed as it breaks the builds
1689 every now and then and is not maintained upstream.
1691 config BR2_PACKAGE_EZXML
1692 bool "ezxml package removed"
1695 The ezXML package was removed as it is affected by several
1696 CVEs and is not maintained anymore (no release since 2006).
1698 config BR2_PACKAGE_COLLECTD_LVM
1699 bool "lvm support in collectd was removed"
1702 collectd removed LVM plugin, liblvm2app has been deprecated
1704 config BR2_PACKAGE_PYTHON_PYASN
1705 bool "duplicate python-pyasn1 package removed"
1707 select BR2_PACKAGE_PYTHON_PYASN1
1709 This package was a duplicate of python-pyasn1.
1711 config BR2_PACKAGE_PYTHON_PYASN_MODULES
1712 bool "duplicate python-pyasn1-modules package removed"
1714 select BR2_PACKAGE_PYTHON_PYASN1_MODULES
1716 This package was a duplicate of python-pyasn1-modules.
1718 config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_10K_QCA6174
1719 bool "duplicate QCA6174 firmware symbol removed"
1721 select BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174
1723 This config symbol duplicates existing symbol for QCA6174
1726 config BR2_PACKAGE_QT5CANVAS3D
1727 bool "qt5canvas3d was removed"
1730 This Qt5 module was removed by the upstream Qt project since
1731 Qt 5.13, so the corresponding Buildroot package was removed
1734 config BR2_PACKAGE_KODI_LIBTHEORA
1735 bool "libtheora support in Kodi was removed"
1738 Kodi does not need libtheora
1740 config BR2_PACKAGE_CEGUI06
1741 bool "BR2_PACKAGE_CEGUI06 was renamed"
1742 select BR2_PACKAGE_CEGUI
1745 The BR2_PACKAGE_CEGUI06 config symbol was renamed to
1748 config BR2_GCC_VERSION_5_X
1749 bool "gcc 5.x support removed"
1752 Support for gcc version 5.x has been removed. The current
1753 default version (8.x or later) has been selected instead.
1755 comment "Legacy options removed in 2020.02"
1757 config BR2_PACKAGE_JAMVM
1758 bool "jamvm removed"
1761 JamVM has not had a release since 2014 and is unmaintained.
1763 config BR2_PACKAGE_CLASSPATH
1764 bool "classpath removed"
1767 GNU Classpath package was removed. The last upstream
1768 release was in 2012 and there hasn't been a commit
1771 config BR2_PACKAGE_QT5_VERSION_5_6
1772 bool "qt 5.6 support removed"
1775 Support for Qt 5.6 is EOL and has been removed. The current
1776 version (5.12 or later) has been selected instead.
1778 config BR2_PACKAGE_CURL
1779 bool "BR2_PACKAGE_CURL was renamed"
1780 select BR2_PACKAGE_LIBCURL_CURL
1783 The BR2_PACKAGE_CURL config symbol was renamed to
1784 BR2_PACKAGE_LIBCURL_CURL.
1786 config BR2_PACKAGE_GSTREAMER
1787 bool "gstreamer-0.10 removed"
1790 Gstreamer-0.10 package was removed. It has been deprecated
1791 upstream since 2012, and is missing a lot of features and
1792 fixes compared to gstreamer-1.x.
1794 config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_GSTREAMER_PLUGINS
1795 bool "nvidia-tegra23 binaries gstreamer 0.10.x support removed"
1798 Gstreamer 0.10.x is no longer available in Buildroot, so
1799 neither is the support in nvidia-tegra23 binaries.
1801 config BR2_PACKAGE_NVIDIA_TEGRA23_BINARIES_NV_SAMPLE_APPS
1802 bool "nvidia-tegra23 binaries sample apps removed"
1805 Gstreamer 0.10.x is no longer available in Buildroot, so
1806 neither is the support in nvidia-tegra23 binaries.
1808 config BR2_PACKAGE_FREERDP_GSTREAMER
1809 bool "freerdp gstreamer 0.10.x support removed"
1812 Gstreamer 0.10.x is no longer available in Buildroot, so
1813 neither is the support in freerdp.
1815 config BR2_PACKAGE_OPENCV3_WITH_GSTREAMER
1816 bool "opencv3 gstreamer 0.10.x support removed"
1819 Gstreamer 0.10.x is no longer available in Buildroot, so
1820 neither is the support in opencv3.
1822 config BR2_PACKAGE_OPENCV_WITH_GSTREAMER
1823 bool "opencv gstreamer 0.10.x support removed"
1826 Gstreamer 0.10.x is no longer available in Buildroot, so
1827 neither is the support in opencv.
1829 config BR2_PACKAGE_LIBPLAYER
1830 bool "libplayer package was removed"
1833 The libplayer package was removed. The latest release is
1834 from 2010 and none of the backends are available in
1837 config BR2_GCC_VERSION_OR1K
1838 bool "gcc 5.x fork for or1k has been removed"
1841 Support for gcc 5.x for or1k has been removed. The current
1842 default version (9.x or later) has been selected instead.
1844 config BR2_PACKAGE_BLUEZ_UTILS
1845 bool "bluez-utils was removed"
1847 select BR2_PACKAGE_BLUEZ5_UTILS if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 \
1848 && BR2_TOOLCHAIN_HAS_SYNC_4
1850 The bluez-utils (BlueZ 4.x) package was removed as it is
1851 deprecated since a long time. As an alternative, the
1852 bluez5-utils (BlueZ 5.x) has been automatically selected in
1855 config BR2_PACKAGE_GADGETFS_TEST
1856 bool "gadgetfs-test was removed"
1859 The gadgetfs-test package was removed. Gadgetfs has been
1860 deprecated in favour of functionfs. Consider using
1861 gadget-tool (gt) instead.
1863 config BR2_PACKAGE_FIS
1864 bool "fis was removed"
1867 The fis package was removed.
1869 config BR2_PACKAGE_REFPOLICY_POLICY_VERSION
1870 string "refpolicy policy version"
1872 The refpolicy policy version option has been moved to the
1875 config BR2_PACKAGE_REFPOLICY_POLICY_VERSION_WRAP
1877 default y if BR2_PACKAGE_REFPOLICY_POLICY_VERSION != ""
1880 config BR2_PACKAGE_CELT051
1881 bool "celt051 package was removed"
1883 select BR2_PACKAGE_OPUS
1885 The celt051 package was removed as it is now obsolete since
1886 the CELT codec has been merged into the IETF Opus codec. As
1887 a result, the opus package has been automatically selected
1888 in your configuration.
1890 config BR2_PACKAGE_WIREGUARD
1891 bool "wireguard package renamed"
1892 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
1894 select BR2_PACKAGE_WIREGUARD_LINUX_COMPAT if BR2_LINUX_KERNEL
1895 select BR2_PACKAGE_WIREGUARD_TOOLS
1897 The wireguard package has been renamed to wireguard-tools
1898 for the userspace tooling and wireguard-linux-compat for the
1899 kernel side for legacy (<5.6) kernels to match upstream.
1901 config BR2_PACKAGE_PERL_NET_PING
1902 bool "perl-net-ping was removed"
1905 Net::Ping is a Perl core module (ie. bundled with perl).
1907 config BR2_PACKAGE_PERL_MIME_BASE64
1908 bool "perl-mime-base64 was removed"
1911 MIME::Base64 is a Perl core module (ie. bundled with perl).
1913 config BR2_PACKAGE_PERL_DIGEST_MD5
1914 bool "perl-digest-md5 was removed"
1917 Digest::MD5 is a Perl core module (ie. bundled with perl).
1919 config BR2_PACKAGE_ERLANG_P1_ICONV
1920 bool "erlang-p1-iconv has been removed"
1923 The erlang-p1-iconv package was no longer used by ejabberd,
1924 and was no longer maintained upstream, so it was removed.
1926 config BR2_KERNEL_HEADERS_5_3
1927 bool "kernel headers version 5.3.x are no longer supported"
1930 Version 5.3.x of the Linux kernel headers are no longer
1931 maintained upstream and are now removed.
1933 config BR2_PACKAGE_PYTHON_SCAPY3K
1934 bool "python-scapy3k is replaced by python-scapy"
1936 select BR2_PACKAGE_PYTHON_SCAPY
1938 python-scapy3k has been deprecated, since python-scapy has
1939 gained Python 3 support. Use BR2_PACKAGE_PYTHON_SCAPY
1942 config BR2_BINUTILS_VERSION_2_30_X
1943 bool "binutils version 2.30 support removed"
1946 Support for binutils version 2.30 has been removed. The
1947 current default version (2.31 or later) has been selected
1950 config BR2_PACKAGE_RPI_USERLAND_START_VCFILED
1951 bool "rpi-userland start vcfiled was removed"
1954 The vcfiled support was removed upstream.
1956 config BR2_PACKAGE_TI_SGX_KM_AM335X
1957 bool "ti-sgx-km AM335X option removed"
1959 select BR2_PACKAGE_TI_SGX_KM
1961 Starting from buildroot release 2020.02, the buildroot package
1962 only supports the target am335x.
1964 config BR2_PACKAGE_TI_SGX_KM_AM437X
1965 bool "ti-sgx-km AM437X option removed"
1968 Starting from buildroot release 2020.02, the buildroot package
1969 only supports the target am335x.
1971 config BR2_PACKAGE_TI_SGX_KM_AM4430
1972 bool "ti-sgx-km AM4430 option removed"
1975 Starting from buildroot release 2020.02, the buildroot package
1976 only supports the target am335x.
1978 config BR2_PACKAGE_TI_SGX_KM_AM5430
1979 bool "ti-sgx-km AM5430 option removed"
1982 Starting from buildroot release 2020.02, the buildroot package
1983 only supports the target am335x.
1985 comment "Legacy options removed in 2019.11"
1987 config BR2_PACKAGE_OPENVMTOOLS_PROCPS
1988 bool "openvmtools' procps support was removed"
1991 Upstream stopped supporting this option a while ago.
1993 config BR2_PACKAGE_ALLJOYN
1994 bool "alljoyn was removed"
1997 The alljoyn framework is dead
1999 config BR2_PACKAGE_ALLJOYN_BASE
2000 bool "alljoyn-base was removed"
2003 The alljoyn framework is dead
2005 config BR2_PACKAGE_ALLJOYN_BASE_CONTROLPANEL
2006 bool "alljoyn-base control panel was removed"
2009 The alljoyn framework is dead
2011 config BR2_PACKAGE_ALLJOYN_BASE_NOTIFICATION
2012 bool "alljoyn-base notification was removed"
2015 The alljoyn framework is dead
2017 config BR2_PACKAGE_ALLJOYN_BASE_ONBOARDING
2018 bool "alljoyn-base onboarding was removed"
2021 The alljoyn framework is dead
2023 config BR2_PACKAGE_ALLJOYN_TCL_BASE
2024 bool "alljoyn-tcl-base was removed"
2027 The alljoyn framework is dead
2029 config BR2_PACKAGE_ALLJOYN_TCL
2030 bool "alljoyn-tcl was removed"
2033 The alljoyn framework is dead
2035 config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS
2036 string "toolchain-external extra libs option has been renamed"
2038 The option BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS has
2039 been renamed to BR2_TOOLCHAIN_EXTRA_LIBS.
2041 config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS_WRAP
2043 default y if BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS != ""
2046 config BR2_PACKAGE_PYTHON_PYSNMP_APPS
2047 bool "python-pysnmp-apps was removed"
2049 select BR2_PACKAGE_SNMPCLITOOLS
2051 Following upstream changes, the python-pysnmp-apps package
2052 has been removed, and snmpclitools should be used as a
2055 config BR2_KERNEL_HEADERS_5_2
2056 bool "kernel headers version 5.2.x are no longer supported"
2059 Version 5.2.x of the Linux kernel headers are no longer
2060 maintained upstream and are now removed.
2062 config BR2_TARGET_RISCV_PK
2063 bool "riscv-pk was removed"
2066 The RISC-V Proxy Kernel (pk) and Berkley Boot Loader (BBL)
2067 have been replaced with OpenSBI.
2069 config BR2_PACKAGE_SQLITE_STAT3
2070 bool "sqlite stat3 support was removed"
2073 Upstream removed the support for stat3.
2075 config BR2_KERNEL_HEADERS_5_1
2076 bool "kernel headers version 5.1.x are no longer supported"
2079 Version 5.1.x of the Linux kernel headers are no longer
2080 maintained upstream and are now removed.
2082 config BR2_PACKAGE_DEVMEM2
2083 bool "devmem2 package was removed"
2086 Use the the Busybox devmem utility, instead, which provides
2087 the same functionality.
2089 config BR2_PACKAGE_USTR
2090 bool "ustr package removed"
2093 The 'ustr' package was only used by SELinux libsemanage, but
2094 since SELinux 2.7, ustr is no longer used. Therefore, we
2095 removed this package from Buildroot.
2097 config BR2_PACKAGE_KODI_SCREENSAVER_PLANESTATE
2098 bool "kodi-screensaver-planestate package was removed"
2101 This package is incompatible with Kodi 18.x.
2103 config BR2_PACKAGE_KODI_VISUALISATION_WAVEFORHUE
2104 bool "kodi-visualisation-waveforhue package was removed"
2107 This package is incompatible with Kodi 18.x.
2109 config BR2_PACKAGE_KODI_AUDIODECODER_OPUS
2110 bool "kodi-audiodecoder-opus package was removed"
2113 This package is incompatible with Kodi 18.x.
2115 config BR2_PACKAGE_MESA3D_OSMESA
2116 bool "mesa OSMesa option renamed"
2117 select BR2_PACKAGE_MESA3D_OSMESA_CLASSIC if BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST
2120 The option was renamed in order to match the naming used
2121 by the meson buildsystem.
2123 config BR2_PACKAGE_HOSTAPD_DRIVER_RTW
2124 bool "hostapd rtl871xdrv driver removed"
2127 Since the update of hostapd to 2.9, the patch provided for
2128 the rtl871xdrv no longer works, although it
2129 applies. Moreover, AP support for Realtek chips is broken
2130 anyway in kernels > 4.9. Therefore, this option has been
2133 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
2134 bool "new dbus support option in wpa_supplicant was renamed"
2135 select BR2_PACKAGE_WPA_SUPPLICANT_DBUS if BR2_TOOLCHAIN_HAS_THREADS
2138 The new dbus support option was renamed.
2140 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD
2141 bool "old dbus support in wpa_supplicant was removed"
2144 The old dbus support was removed.
2146 comment "Legacy options removed in 2019.08"
2148 config BR2_TARGET_TS4800_MBRBOOT
2149 bool "ts4800-mbrboot package was removed"
2152 The defconfig for the TS4800 platform has been removed, so
2153 the ts4800-mbrboot package, containing the boot code for
2154 this specific platform has been removed as welL.
2156 config BR2_PACKAGE_LIBAMCODEC
2157 bool "liamcodec package was removed"
2160 Support for odroidc2 based systems was removed, making the
2161 libamcodec package useless.
2163 config BR2_PACKAGE_ODROID_SCRIPTS
2164 bool "odroid-scripts package was removed"
2167 Support for odroidc2 based systems was removed, making the
2168 odroid-scripts package useless.
2170 config BR2_PACKAGE_ODROID_MALI
2171 bool "odroid-mali package was removed"
2174 Support for odroidc2 based systems was removed, making the
2175 odroid-mali package useless.
2177 config BR2_PACKAGE_KODI_PLATFORM_AML
2178 bool "Kodi AMLogic support was removed"
2181 Support for AMLogic was removed due to the removal of the
2184 config BR2_GCC_VERSION_6_X
2185 bool "gcc 6.x support removed"
2188 Support for gcc version 6.x has been removed. The current
2189 default version (8.x or later) has been selected instead.
2191 config BR2_GCC_VERSION_4_9_X
2192 bool "gcc 4.9.x support removed"
2195 Support for gcc version 4.9.x has been removed. The current
2196 default version (8.x or later) has been selected instead.
2198 config BR2_GDB_VERSION_7_12
2199 bool "gdb 7.12.x has been removed"
2202 The 7.12.x version of gdb has been removed. Use a newer
2205 config BR2_PACKAGE_XAPP_MKFONTDIR
2206 bool "mkfontdir is now included in xapp_mkfontscale"
2207 select BR2_PACKAGE_XAPP_MKFONTSCALE
2210 xapp_mkfontscale now includes the mkfontdir script previously
2211 distributed separately for compatibility with older X11
2214 config BR2_GDB_VERSION_8_0
2215 bool "gdb 8.0.x has been removed"
2218 The 8.0.x version of gdb has been removed. Use a newer
2221 config BR2_KERNEL_HEADERS_4_20
2222 bool "kernel headers version 4.20.x are no longer supported"
2225 Version 4.20.x of the Linux kernel headers are no longer
2226 maintained upstream and are now removed.
2228 config BR2_KERNEL_HEADERS_5_0
2229 bool "kernel headers version 5.0.x are no longer supported"
2232 Version 5.0.x of the Linux kernel headers are no longer
2233 maintained upstream and are now removed.
2235 comment "Legacy options removed in 2019.05"
2238 bool "C-SKY DSP support removed"
2241 C-SKY DSP instruction support for ck810 / ck807 was removed,
2242 as it was no longer supported in C-SKY gcc. Perhaps the VDSP
2243 instructions should be used instead, using the BR2_CSKY_VDSP
2246 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COMPOSITOR
2247 bool "compositor moved to gst1-plugins-base"
2248 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR
2251 The gst1-plugins-bad compositor plugin has moved
2252 to gst1-plugins-base.
2254 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
2255 bool "gst-plugins-bad IQA option was removed"
2258 The gst1-plugins-bad IQA option was removed.
2260 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV
2261 bool "gst-plugins-bad opencv option was removed"
2264 The gst1-plugins-bad opencv option was removed because
2265 buildroot does not have the opencv_contrib package which
2266 is required for the bgsegm module which gst1-plugins-bad
2267 now requires along with opencv3.
2269 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_STEREO
2270 bool "stereo was merged into audiofx in gst1-plugins-good"
2272 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX
2274 The gst1-plugins-bad stereo plugin has merged with the
2275 gst1-plugins-base audiofx plugin.
2277 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD
2278 bool "gst-plugins-bad vcd plugin was removed."
2281 The gst1-plugins-bad vcd plugin was removed.
2283 config BR2_PACKAGE_LUNIT
2284 bool "lunit package removed"
2286 select BR2_PACKAGE_LUA_LUNITX
2288 The lunit package was removed in favor of its fork lunitx,
2289 which supports all versions of Lua.
2291 config BR2_PACKAGE_FFMPEG_FFSERVER
2292 bool "ffmpeg ffserver removed"
2295 On July 10th, 2016, ffserver program has been dropped.
2297 config BR2_PACKAGE_LIBUMP
2298 bool "libump package removed"
2301 The libump package was removed, it was only used as a
2302 dependency of sunxi-mali, which itself was removed.
2304 config BR2_PACKAGE_SUNXI_MALI
2305 bool "sunxi-mali package removed"
2307 select BR2_PACKAGE_SUNXI_MALI_UTGARD
2309 The sunxi-mali package was removed, as the
2310 sunxi-mali-mainline package replaces it for mainline
2311 kernels on Allwinner platforms.
2313 config BR2_BINUTILS_VERSION_2_29_X
2314 bool "binutils version 2.29 support removed"
2317 Support for binutils version 2.29 has been removed. The
2318 current default version (2.31 or later) has been selected
2321 config BR2_BINUTILS_VERSION_2_28_X
2322 bool "binutils version 2.28 support removed"
2325 Support for binutils version 2.28 has been removed. The
2326 current default version (2.31 or later) has been selected
2329 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
2330 bool "gst-plugins-bad apexsink option removed"
2333 The gst-plugins-bad apexsink option was removed.
2335 comment "Legacy options removed in 2019.02"
2337 config BR2_PACKAGE_QT
2338 bool "qt package removed"
2341 The qt package was removed.
2343 config BR2_PACKAGE_QTUIO
2344 bool "qtuio package removed"
2347 The qtuio package was removed.
2349 config BR2_PACKAGE_PINENTRY_QT4
2350 bool "pinentry-qt4 option removed"
2353 The pinentry-qt4 option was removed.
2355 config BR2_PACKAGE_POPPLER_QT
2356 bool "poppler qt option removed"
2359 The poppler qt option was removed.
2361 config BR2_PACKAGE_OPENCV3_WITH_QT
2362 bool "opencv3 qt backend option removed"
2365 The opencv3 qt backend option was removed.
2367 config BR2_PACKAGE_OPENCV_WITH_QT
2368 bool "opencv qt backend option removed"
2371 The opencv qt backend option was removed.
2373 config BR2_PACKAGE_AMD_CATALYST_CCCLE
2374 bool "catalyst control center option removed"
2377 The AMD Catalyst Control Center option was removed.
2379 config BR2_PACKAGE_SDL_QTOPIA
2380 bool "sdl qtopia video driver option removed"
2383 The SDL QTopia video driver option was removed.
2385 config BR2_PACKAGE_PYTHON_PYQT
2386 bool "python-pyqt package removed"
2389 The python-pyqt package was removed. Consider python-pyqt5
2392 config BR2_PACKAGE_LUACRYPTO
2393 bool "luacrypto package removed"
2396 The luacrypto package was removed. Consider luaossl instead.
2398 config BR2_PACKAGE_TN5250
2399 bool "tn5250 package removed"
2402 The tn5250 package was removed.
2404 config BR2_PACKAGE_BOOST_SIGNALS
2405 bool "Boost signals removed"
2408 Its removal was announced in boost 1.68 and its deprecation
2409 was announced in 1.54. Users are encouraged to use Signals2
2412 config BR2_PACKAGE_FFTW_PRECISION_SINGLE
2415 select BR2_PACKAGE_FFTW_SINGLE
2417 This option has been removed in favor of
2418 BR2_PACKAGE_FFTW_SINGLE.
2420 config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
2423 select BR2_PACKAGE_FFTW_DOUBLE
2425 This option has been removed in favor of
2426 BR2_PACKAGE_FFTW_DOUBLE.
2428 config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
2430 depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
2431 (BR2_arm || BR2_mips || BR2_mipsel))
2433 select BR2_PACKAGE_FFTW_LONG_DOUBLE
2435 This option has been removed in favor of
2436 BR2_PACKAGE_FFTW_LONG_DOUBLE.
2438 config BR2_PACKAGE_FFTW_PRECISION_QUAD
2440 depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
2442 select BR2_PACKAGE_FFTW_QUAD
2444 This option has been removed in favor of
2445 BR2_PACKAGE_FFTW_QUAD.
2447 config BR2_PACKAGE_LUA_5_2
2448 bool "Lua 5.2.x version removed"
2451 The Lua 5.2.x version was removed.
2452 # Note: BR2_PACKAGE_LUA_5_2 is still referenced from package/lua/Config.in
2454 config BR2_TARGET_GENERIC_PASSWD_MD5
2455 bool "target passwd md5 format support has been removed"
2458 The default has been moved to SHA256 and all C libraries
2459 now support that method by default
2461 comment "Legacy options removed in 2018.11"
2463 config BR2_TARGET_XLOADER
2464 bool "xloader has been removed"
2467 The package has been removed as u-boot SPL provides
2468 similar functionality
2470 config BR2_PACKAGE_TIDSP_BINARIES
2471 bool "tidsp-binaries package removed"
2474 The tidsp-binaries package was removed.
2476 config BR2_PACKAGE_DSP_TOOLS
2477 bool "dsp-tools package removed"
2480 The dsp-tools package was removed.
2482 config BR2_PACKAGE_GST_DSP
2483 bool "gst-dsp package removed"
2486 The gst-dsp package was removed.
2488 config BR2_PACKAGE_BOOTUTILS
2489 bool "bootutils package removed"
2492 The bootutils package was removed.
2494 config BR2_PACKAGE_EXPEDITE
2495 bool "expedite package has been removed"
2498 expedite is not actively maintained anymore.
2499 https://sourceforge.net/p/enlightenment/mailman/message/36428571
2501 config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
2502 bool "mesa3d opengl texture float option removed"
2505 mesa3d now unconditionally enables floating-point textures,
2506 as the corresponding patent has expired.
2508 config BR2_KERNEL_HEADERS_4_10
2509 bool "kernel headers version 4.10.x are no longer supported"
2512 Version 4.10.x of the Linux kernel headers are no longer
2513 maintained upstream and are now removed.
2515 config BR2_KERNEL_HEADERS_4_11
2516 bool "kernel headers version 4.11.x are no longer supported"
2519 Version 4.11.x of the Linux kernel headers are no longer
2520 maintained upstream and are now removed.
2522 config BR2_KERNEL_HEADERS_4_12
2523 bool "kernel headers version 4.12.x are no longer supported"
2526 Version 4.12.x of the Linux kernel headers are no longer
2527 maintained upstream and are now removed.
2529 config BR2_KERNEL_HEADERS_4_13
2530 bool "kernel headers version 4.13.x are no longer supported"
2533 Version 4.13.x of the Linux kernel headers are no longer
2534 maintained upstream and are now removed.
2536 config BR2_KERNEL_HEADERS_4_15
2537 bool "kernel headers version 4.15.x are no longer supported"
2540 Version 4.15.x of the Linux kernel headers are no longer
2541 maintained upstream and are now removed.
2543 config BR2_KERNEL_HEADERS_4_17
2544 bool "kernel headers version 4.17.x are no longer supported"
2547 Version 4.17.x of the Linux kernel headers are no longer
2548 maintained upstream and are now removed.
2550 config BR2_PACKAGE_LIBNFTNL_XML
2551 bool "libnftl no longer supports XML output"
2554 libnftnl removed integration with libmxml.
2556 config BR2_KERNEL_HEADERS_3_2
2557 bool "kernel headers version 3.2.x are no longer supported"
2560 Version 3.2.x of the Linux kernel headers are no longer
2561 maintained upstream and are now removed.
2563 config BR2_KERNEL_HEADERS_4_1
2564 bool "kernel headers version 4.1.x are no longer supported"
2567 Version 4.1.x of the Linux kernel headers are no longer
2568 maintained upstream and are now removed.
2570 config BR2_KERNEL_HEADERS_4_16
2571 bool "kernel headers version 4.16.x are no longer supported"
2574 Version 4.16.x of the Linux kernel headers are no longer
2575 maintained upstream and are now removed.
2577 config BR2_KERNEL_HEADERS_4_18
2578 bool "kernel headers version 4.18.x are no longer supported"
2581 Version 4.18.x of the Linux kernel headers are no longer
2582 maintained upstream and are now removed.
2584 ###############################################################################
2585 comment "Legacy options removed in 2018.08"
2587 config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
2588 bool "docker-engine static client option renamed"
2590 select BR2_PACKAGE_DOCKER_CLI_STATIC
2592 BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
2593 BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
2594 docker-engine and docker-cli.
2596 config BR2_PACKAGE_XPROTO_APPLEWMPROTO
2597 bool "xproto-applewmproto package replaced by xorgproto"
2599 select BR2_PACKAGE_XORGPROTO
2601 The xproto-applewmproto package has been replaced by the
2602 xorgproto package, which combines all xproto_* packages.
2604 config BR2_PACKAGE_XPROTO_BIGREQSPROTO
2605 bool "xproto-bigreqsproto package replaced by xorgproto"
2607 select BR2_PACKAGE_XORGPROTO
2609 The xproto-bigreqsproto package has been replaced by the
2610 xorgproto package, which combines all xproto_* packages.
2612 config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
2613 bool "xproto-compositeproto package replaced by xorgproto"
2615 select BR2_PACKAGE_XORGPROTO
2617 The xproto-compositeproto package has been replaced by the
2618 xorgproto package, which combines all xproto_* packages.
2620 config BR2_PACKAGE_XPROTO_DAMAGEPROTO
2621 bool "xproto-dameproto package replaced by xorgproto"
2623 select BR2_PACKAGE_XORGPROTO
2625 The xproto-dameproto package has been replaced by the
2626 xorgproto package, which combines all xproto_* packages.
2628 config BR2_PACKAGE_XPROTO_DMXPROTO
2629 bool "xproto-dmxproto package replaced by xorgproto"
2631 select BR2_PACKAGE_XORGPROTO
2633 The xproto-dmxproto package has been replaced by the
2634 xorgproto package, which combines all xproto_* packages.
2636 config BR2_PACKAGE_XPROTO_DRI2PROTO
2637 bool "xproto-dri2proto package replaced by xorgproto"
2639 select BR2_PACKAGE_XORGPROTO
2641 The xproto-dri2proto package has been replaced by the
2642 xorgproto package, which combines all xproto_* packages.
2644 config BR2_PACKAGE_XPROTO_DRI3PROTO
2645 bool "xproto-dri3proto package replaced by xorgproto"
2647 select BR2_PACKAGE_XORGPROTO
2649 The xproto-dri3proto package has been replaced by the
2650 xorgproto package, which combines all xproto_* packages.
2652 config BR2_PACKAGE_XPROTO_FIXESPROTO
2653 bool "xproto-fixesproto package replaced by xorgproto"
2655 select BR2_PACKAGE_XORGPROTO
2657 The xproto-fixesproto package has been replaced by the
2658 xorgproto package, which combines all xproto_* packages.
2660 config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
2661 bool "xproto-fontcacheproto package replaced by xorgproto"
2663 select BR2_PACKAGE_XORGPROTO
2665 The xproto-fontcacheproto package has been replaced by the
2666 xorgproto package, which combines all xproto_* packages.
2668 config BR2_PACKAGE_XPROTO_FONTSPROTO
2669 bool "xproto-fontsproto package replaced by xorgproto"
2671 select BR2_PACKAGE_XORGPROTO
2673 The xproto-fontsproto package has been replaced by the
2674 xorgproto package, which combines all xproto_* packages.
2676 config BR2_PACKAGE_XPROTO_GLPROTO
2677 bool "xproto-glproto package replaced by xorgproto"
2679 select BR2_PACKAGE_XORGPROTO
2681 The xproto-glproto package has been replaced by the
2682 xorgproto package, which combines all xproto_* packages.
2684 config BR2_PACKAGE_XPROTO_INPUTPROTO
2685 bool "xproto-inputproto package replaced by xorgproto"
2687 select BR2_PACKAGE_XORGPROTO
2689 The xproto-inputproto package has been replaced by the
2690 xorgproto package, which combines all xproto_* packages.
2692 config BR2_PACKAGE_XPROTO_KBPROTO
2693 bool "xproto-kbproto package replaced by xorgproto"
2695 select BR2_PACKAGE_XORGPROTO
2697 The xproto-kbproto package has been replaced by the
2698 xorgproto package, which combines all xproto_* packages.
2700 config BR2_PACKAGE_XPROTO_PRESENTPROTO
2701 bool "xproto-presentproto package replaced by xorgproto"
2703 select BR2_PACKAGE_XORGPROTO
2705 The xproto-presentproto package has been replaced by the
2706 xorgproto package, which combines all xproto_* packages.
2708 config BR2_PACKAGE_XPROTO_RANDRPROTO
2709 bool "xproto-randrproto package replaced by xorgproto"
2711 select BR2_PACKAGE_XORGPROTO
2713 The xproto-randrproto package has been replaced by the
2714 xorgproto package, which combines all xproto_* packages.
2716 config BR2_PACKAGE_XPROTO_RECORDPROTO
2717 bool "xproto-recordproto package replaced by xorgproto"
2719 select BR2_PACKAGE_XORGPROTO
2721 The xproto-recordproto package has been replaced by the
2722 xorgproto package, which combines all xproto_* packages.
2724 config BR2_PACKAGE_XPROTO_RENDERPROTO
2725 bool "xproto-renderproto package replaced by xorgproto"
2727 select BR2_PACKAGE_XORGPROTO
2729 The xproto-renderproto package has been replaced by the
2730 xorgproto package, which combines all xproto_* packages.
2732 config BR2_PACKAGE_XPROTO_RESOURCEPROTO
2733 bool "xproto-resourceproto package replaced by xorgproto"
2735 select BR2_PACKAGE_XORGPROTO
2737 The xproto-resourceproto package has been replaced by the
2738 xorgproto package, which combines all xproto_* packages.
2740 config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
2741 bool "xproto-scrnsaverprot package replaced by xorgproto"
2743 select BR2_PACKAGE_XORGPROTO
2745 The xproto-scrnsaverprot package has been replaced by the
2746 xorgproto package, which combines all xproto_* packages.
2748 config BR2_PACKAGE_XPROTO_VIDEOPROTO
2749 bool "xproto-videoproto package replaced by xorgproto"
2751 select BR2_PACKAGE_XORGPROTO
2753 The xproto-videoproto package has been replaced by the
2754 xorgproto package, which combines all xproto_* packages.
2756 config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
2757 bool "xproto-windowswmproto package replaced by xorgproto"
2759 select BR2_PACKAGE_XORGPROTO
2761 The xproto-windowswmproto package has been replaced by the
2762 xorgproto package, which combines all xproto_* packages.
2764 config BR2_PACKAGE_XPROTO_XCMISCPROTO
2765 bool "xproto-xcmiscproto package replaced by xorgproto"
2767 select BR2_PACKAGE_XORGPROTO
2769 The xproto-xcmiscproto package has been replaced by the
2770 xorgproto package, which combines all xproto_* packages.
2772 config BR2_PACKAGE_XPROTO_XEXTPROTO
2773 bool "xproto-xextproto package replaced by xorgproto"
2775 select BR2_PACKAGE_XORGPROTO
2777 The xproto-xextproto package has been replaced by the
2778 xorgproto package, which combines all xproto_* packages.
2780 config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
2781 bool "xproto-xf86bigfontproto package replaced by xorgproto"
2783 select BR2_PACKAGE_XORGPROTO
2785 The xproto-xf86bigfontproto package has been replaced by the
2786 xorgproto package, which combines all xproto_* packages.
2788 config BR2_PACKAGE_XPROTO_XF86DGAPROTO
2789 bool "xproto-xf86dgaproto package replaced by xorgproto"
2791 select BR2_PACKAGE_XORGPROTO
2793 The xproto-xf86dgaproto package has been replaced by the
2794 xorgproto package, which combines all xproto_* packages.
2796 config BR2_PACKAGE_XPROTO_XF86DRIPROTO
2797 bool "xproto-xf86driproto package replaced by xorgproto"
2799 select BR2_PACKAGE_XORGPROTO
2801 The xproto-xf86driproto package has been replaced by the
2802 xorgproto package, which combines all xproto_* packages.
2804 config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
2805 bool "xproto-xf86vidmodeproto package replaced by xorgproto"
2807 select BR2_PACKAGE_XORGPROTO
2809 The xproto-xf86vidmodeproto package has been replaced by the
2810 xorgproto package, which combines all xproto_* packages.
2812 config BR2_PACKAGE_XPROTO_XINERAMAPROTO
2813 bool "xproto-xineramaproto package replaced by xorgproto"
2815 select BR2_PACKAGE_XORGPROTO
2817 The xproto-xineramaproto package has been replaced by the
2818 xorgproto package, which combines all xproto_* packages.
2820 config BR2_PACKAGE_XPROTO_XPROTO
2821 bool "xproto-xproto package replaced by xorgproto"
2823 select BR2_PACKAGE_XORGPROTO
2825 The xproto-xproto package has been replaced by the
2826 xorgproto package, which combines all xproto_* packages.
2828 config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
2829 bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
2831 select BR2_PACKAGE_XORGPROTO
2833 The xproto-xproxymanagementprotocol package has been
2834 replaced by the xorgproto package, which combines all
2837 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
2838 bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
2840 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
2842 The opengl option has been moved from gst1-plugins-bad to
2845 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
2846 bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
2848 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
2850 The gles2 option has been moved from gst1-plugins-bad to
2853 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
2854 bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
2856 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
2858 The glx option has been moved from gst1-plugins-bad to
2861 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
2862 bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
2864 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
2866 The egl option has been moved from gst1-plugins-bad to
2869 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
2870 bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
2872 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
2874 The x11 option has been moved from gst1-plugins-bad to
2877 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
2878 bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
2880 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
2882 The wayland option has been moved from gst1-plugins-bad to
2885 config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
2886 bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
2888 select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
2890 The dispmanx option has been moved from gst1-plugins-mad to
2893 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
2894 bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
2896 select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
2898 The audiomixer option has been moved from gst1-plugins-bad to
2901 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
2902 bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
2904 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
2906 The lame option has been moved from gst1-plugins-ugly to
2909 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
2910 bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
2912 select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
2914 The mpg123 option has been moved from gst1-plugins-ugly to
2917 config BR2_GDB_VERSION_7_11
2918 bool "gdb 7.11 has been removed"
2921 The 7.11 version of gdb has been removed. Use a newer version
2924 config BR2_GDB_VERSION_7_10
2925 bool "gdb 7.10 has been removed"
2928 The 7.10 version of gdb has been removed. Use a newer version
2931 ###############################################################################
2932 comment "Legacy options removed in 2018.05"
2934 config BR2_PACKAGE_MEDIAART_BACKEND_NONE
2935 bool "libmediaart none backend option renamed"
2938 For consistency reasons, the option
2939 BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
2940 BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
2942 config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
2943 bool "libmediaart gdk-pixbuf backend option renamed"
2946 For consistency reasons, the option
2947 BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
2948 BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
2950 config BR2_PACKAGE_MEDIAART_BACKEND_QT
2951 bool "libmediaart qt backend option renamed"
2954 For consistency reasons, the option
2955 BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
2956 BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
2958 config BR2_PACKAGE_TI_SGX_AM335X
2959 bool "ti-sgx-km AM335X option removed"
2961 select BR2_PACKAGE_TI_SGX_KM
2963 Starting from buildroot release 2020.02, the buildroot package
2964 only supports the target am335x.
2966 config BR2_PACKAGE_TI_SGX_AM437X
2967 bool "ti-sgx-km AM437X option removed"
2970 Starting from buildroot release 2020.02, the buildroot package
2971 only supports the target am335x.
2973 config BR2_PACKAGE_TI_SGX_AM4430
2974 bool "ti-sgx-km AM4430 option removed"
2977 Starting from buildroot release 2020.02, the buildroot package
2978 only supports the target am335x.
2980 config BR2_PACKAGE_TI_SGX_AM5430
2981 bool "ti-sgx-km AM5430 option removed"
2984 Starting from buildroot release 2020.02, the buildroot package
2985 only supports the target am335x.
2987 config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
2988 bool "janus-gateway audio-bridge option renamed"
2990 select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
2992 For consistency reasons, the janus-gateway option
2993 BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
2994 BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
2996 config BR2_PACKAGE_JANUS_ECHO_TEST
2997 bool "janus-gateway echo-test option renamed"
2999 select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
3001 For consistency reasons, the janus-gateway option
3002 BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
3003 BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
3005 config BR2_PACKAGE_JANUS_RECORDPLAY
3006 bool "janus-gateway recordplay option renamed"
3008 select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
3010 For consistency reasons, the janus-gateway option
3011 BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
3012 BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
3014 config BR2_PACKAGE_JANUS_SIP_GATEWAY
3015 bool "janus-gateway sip-gateway option renamed"
3017 select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
3019 For consistency reasons, the janus-gateway option
3020 BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
3021 BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
3023 config BR2_PACKAGE_JANUS_STREAMING
3024 bool "janus-gateway streaming option renamed"
3026 select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
3028 For consistency reasons, the janus-gateway option
3029 BR2_PACKAGE_JANUS_STREAMING has been renamed to
3030 BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
3032 config BR2_PACKAGE_JANUS_TEXT_ROOM
3033 bool "janus-gateway text-room option renamed"
3035 select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
3037 For consistency reasons, the janus-gateway option
3038 BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
3039 BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
3041 config BR2_PACKAGE_JANUS_VIDEO_CALL
3042 bool "janus-gateway video-call option renamed"
3044 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
3046 For consistency reasons, the janus-gateway option
3047 BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
3048 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
3050 config BR2_PACKAGE_JANUS_VIDEO_ROOM
3051 bool "janus-gateway video-room option renamed"
3053 select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
3055 For consistency reasons, the janus-gateway option
3056 BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
3057 BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
3059 config BR2_PACKAGE_JANUS_MQTT
3060 bool "janus-gateway mqtt option renamed"
3062 select BR2_PACKAGE_JANUS_GATEWAY_MQTT
3064 For consistency reasons, the janus-gateway option
3065 BR2_PACKAGE_JANUS_MQTT has been renamed to
3066 BR2_PACKAGE_JANUS_GATEWAY_MQTT.
3068 config BR2_PACKAGE_JANUS_RABBITMQ
3069 bool "janus-gateway rabbitmq option renamed"
3071 select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
3073 For consistency reasons, the janus-gateway option
3074 BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
3075 BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
3077 config BR2_PACKAGE_JANUS_REST
3078 bool "janus-gateway rest option renamed"
3080 select BR2_PACKAGE_JANUS_GATEWAY_REST
3082 For consistency reasons, the janus-gateway option
3083 BR2_PACKAGE_JANUS_REST has been renamed to
3084 BR2_PACKAGE_JANUS_GATEWAY_REST.
3086 config BR2_PACKAGE_JANUS_UNIX_SOCKETS
3087 bool "janus-gateway unix-sockets option renamed"
3089 select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
3091 For consistency reasons, the janus-gateway option
3092 BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
3093 BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
3095 config BR2_PACKAGE_JANUS_WEBSOCKETS
3096 bool "janus-gateway websockets option renamed"
3098 select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
3100 For consistency reasons, the janus-gateway option
3101 BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
3102 BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
3104 config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
3105 bool "ipsec-tools security context disable option renamed"
3108 For consistency reasons, the option
3109 BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
3110 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
3112 config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
3113 bool "ipsec-tools SELinux security context enable option renamed"
3116 For consistency reasons, the option
3117 BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
3118 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
3120 config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
3121 bool "ipsec-tools kernel security context enable option renamed"
3124 For consistency reasons, the option
3125 BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
3126 BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
3128 config BR2_PACKAGE_LIBTFDI_CPP
3129 bool "libftdi C++ bindings option renamed"
3131 select BR2_PACKAGE_LIBFTDI_CPP
3133 The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
3134 BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
3137 config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
3138 bool "jquery-ui-themes option black-tie renamed"
3141 For consistency reasons, the jquery-ui-themes option for the
3142 black-tie theme has been renamed from
3143 BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
3144 BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
3146 config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
3147 bool "jquery-ui-themes option blitzer renamed"
3150 For consistency reasons, the jquery-ui-themes option for the
3151 blitzer theme has been renamed from
3152 BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
3153 BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
3155 config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
3156 bool "jquery-ui-themes option cupertino renamed"
3159 For consistency reasons, the jquery-ui-themes option for the
3160 cupertino theme has been renamed from
3161 BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
3162 BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
3164 config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
3165 bool "jquery-ui-themes option dark-hive renamed"
3168 For consistency reasons, the jquery-ui-themes option for the
3169 dark-hive theme has been renamed from
3170 BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
3171 BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
3173 config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
3174 bool "jquery-ui-themes option dot-luv renamed"
3177 For consistency reasons, the jquery-ui-themes option for the
3178 dot-luv theme has been renamed from
3179 BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
3180 BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
3182 config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
3183 bool "jquery-ui-themes option eggplant renamed"
3186 For consistency reasons, the jquery-ui-themes option for the
3187 eggplant theme has been renamed from
3188 BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
3189 BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
3191 config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
3192 bool "jquery-ui-themes option excite-bike renamed"
3195 For consistency reasons, the jquery-ui-themes option for the
3196 excite-bike theme has been renamed from
3197 BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
3198 BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
3200 config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
3201 bool "jquery-ui-themes option flick renamed"
3204 For consistency reasons, the jquery-ui-themes option for the
3205 flick theme has been renamed from
3206 BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
3207 BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
3209 config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
3210 bool "jquery-ui-themes option hot-sneaks renamed"
3213 For consistency reasons, the jquery-ui-themes option for the
3214 hot-sneaks theme has been renamed from
3215 BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
3216 BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
3218 config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
3219 bool "jquery-ui-themes option humanity renamed"
3222 For consistency reasons, the jquery-ui-themes option for the
3223 humanity theme has been renamed from
3224 BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
3225 BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
3227 config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
3228 bool "jquery-ui-themes option le-frog renamed"
3231 For consistency reasons, the jquery-ui-themes option for the
3232 le-frog theme has been renamed from
3233 BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
3234 BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
3236 config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
3237 bool "jquery-ui-themes option mint-choc renamed"
3240 For consistency reasons, the jquery-ui-themes option for the
3241 mint-choc theme has been renamed from
3242 BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
3243 BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
3245 config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
3246 bool "jquery-ui-themes option overcast renamed"
3249 For consistency reasons, the jquery-ui-themes option for the
3250 overcast theme has been renamed from
3251 BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
3252 BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
3254 config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
3255 bool "jquery-ui-themes option pepper-grinder renamed"
3258 For consistency reasons, the jquery-ui-themes option for the
3259 pepper-grinder theme has been renamed from
3260 BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
3261 BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
3263 config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
3264 bool "jquery-ui-themes option redmond renamed"
3267 For consistency reasons, the jquery-ui-themes option for the
3268 redmond theme has been renamed from
3269 BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
3270 BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
3272 config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
3273 bool "jquery-ui-themes option smoothness renamed"
3276 For consistency reasons, the jquery-ui-themes option for the
3277 smoothness theme has been renamed from
3278 BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
3279 BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
3281 config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
3282 bool "jquery-ui-themes option south-street renamed"
3285 For consistency reasons, the jquery-ui-themes option for the
3286 south-street theme has been renamed from
3287 BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
3288 BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
3290 config BR2_PACKAGE_JQUERY_UI_THEME_START
3291 bool "jquery-ui-themes option start renamed"
3294 For consistency reasons, the jquery-ui-themes option for the
3295 start theme has been renamed from
3296 BR2_PACKAGE_JQUERY_UI_THEME_START to
3297 BR2_PACKAGE_JQUERY_UI_THEMES_START.
3299 config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
3300 bool "jquery-ui-themes option sunny renamed"
3303 For consistency reasons, the jquery-ui-themes option for the
3304 sunny theme has been renamed from
3305 BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
3306 BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
3308 config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
3309 bool "jquery-ui-themes option swanky-purse renamed"
3312 For consistency reasons, the jquery-ui-themes option for the
3313 swanky-purse theme has been renamed from
3314 BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
3315 BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
3317 config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
3318 bool "jquery-ui-themes option trontastic renamed"
3321 For consistency reasons, the jquery-ui-themes option for the
3322 trontastic theme has been renamed from
3323 BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
3324 BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
3326 config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
3327 bool "jquery-ui-themes option ui-darkness renamed"
3330 For consistency reasons, the jquery-ui-themes option for the
3331 ui-darkness theme has been renamed from
3332 BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
3333 BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
3335 config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
3336 bool "jquery-ui-themes option ui-lightness renamed"
3339 For consistency reasons, the jquery-ui-themes option for the
3340 ui-lightness theme has been renamed from
3341 BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
3342 BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
3344 config BR2_PACKAGE_JQUERY_UI_THEME_VADER
3345 bool "jquery-ui-themes option vader renamed"
3348 For consistency reasons, the jquery-ui-themes option for the
3349 vader theme has been renamed from
3350 BR2_PACKAGE_JQUERY_UI_THEME_VADER to
3351 BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
3353 config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
3354 bool "bluez5-utils health plugin option renamed"
3356 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
3358 For consistency reasons, the option
3359 BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
3360 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
3362 config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
3363 bool "bluez5-utils midi plugin option renamed"
3365 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
3367 For consistency reasons, the option
3368 BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
3369 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
3371 config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
3372 bool "bluez5-utils nfc plugin option renamed"
3374 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
3376 For consistency reasons, the option
3377 BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
3378 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
3380 config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
3381 bool "bluez5-utils sap plugin option renamed"
3383 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
3385 For consistency reasons, the option
3386 BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
3387 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
3389 config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
3390 bool "bluez5-utils sixaxis plugin option renamed"
3392 select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
3394 For consistency reasons, the option
3395 BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
3396 BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
3398 config BR2_PACKAGE_TRANSMISSION_REMOTE
3399 bool "transmission remote tool option removed"
3401 select BR2_PACKAGE_TRANSMISSION_DAEMON
3403 Upstream does not provide a separate configure option for
3404 the tool transmission-remote, it is built when the
3405 transmission daemon has been enabled. Therefore, Buildroot
3406 has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
3409 config BR2_PACKAGE_LIBKCAPI_APPS
3410 bool "libkcapi test applications removed"
3412 select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
3413 select BR2_PACKAGE_LIBKCAPI_RNGAPP
3414 select BR2_PACKAGE_LIBKCAPI_SPEED
3415 select BR2_PACKAGE_LIBKCAPI_TEST
3417 Test applications (hasher, rng read, speed-test, test) now
3418 have their own configuration options in the libkcapi menu.
3420 config BR2_PACKAGE_MPLAYER
3421 bool "mplayer package removed"
3424 The mplayer package was removed.
3426 config BR2_PACKAGE_MPLAYER_MPLAYER
3427 bool "mplayer package removed"
3430 The mplayer package was removed.
3432 config BR2_PACKAGE_MPLAYER_MENCODER
3433 bool "mplayer package removed"
3436 The mplayer package was removed.
3438 config BR2_PACKAGE_LIBPLAYER_MPLAYER
3439 bool "mplayer support in libplayer removed"
3442 The mplayer package was removed.
3444 config BR2_PACKAGE_IQVLINUX
3445 bool "iqvlinux package removed"
3448 This package contained a kernel module from Intel, which
3449 could only be used together with Intel userspace tools
3450 provided under NDA, which also come with the same kernel
3451 module. The copy of the kernel module available on
3452 SourceForge is provided only to comply with the GPLv2
3453 requirement. Intel engineers were even surprised it even
3454 built and were not willing to make any effort to fix their
3455 tarball naming to contain a version number. Therefore, it
3456 does not make sense for Buildroot to provide such a package.
3458 See https://sourceforge.net/p/e1000/bugs/589/ for the
3461 config BR2_BINFMT_FLAT_SEP_DATA
3462 bool "binfmt FLAT with separate code and data removed"
3465 This FLAT binary format was only used on Blackfin, which has
3469 bool "Blackfin architecture support removed"
3472 Following the removal of Blackfin support for the upstream
3473 Linux kernel, Buildroot has removed support for this CPU
3476 config BR2_PACKAGE_KODI_ADSP_BASIC
3477 bool "kodi-adsp-basic package removed"
3480 kodi-adsp-basic is unmaintained
3482 config BR2_PACKAGE_KODI_ADSP_FREESURROUND
3483 bool "kodi-adsp-freesurround package removed"
3486 kodi-adsp-freesurround is unmaintained
3488 ###############################################################################
3489 comment "Legacy options removed in 2018.02"
3491 config BR2_KERNEL_HEADERS_3_4
3492 bool "kernel headers version 3.4.x are no longer supported"
3495 Version 3.4.x of the Linux kernel headers are no longer
3496 maintained upstream and are now removed.
3498 config BR2_KERNEL_HEADERS_3_10
3499 bool "kernel headers version 3.10.x are no longer supported"
3502 Version 3.10.x of the Linux kernel headers are no longer
3503 maintained upstream and are now removed.
3505 config BR2_KERNEL_HEADERS_3_12
3506 bool "kernel headers version 3.12.x are no longer supported"
3509 Version 3.12.x of the Linux kernel headers are no longer
3510 maintained upstream and are now removed.
3512 config BR2_BINUTILS_VERSION_2_27_X
3513 bool "binutils version 2.27 support removed"
3516 Support for binutils version 2.27 has been removed. The
3517 current default version (2.29 or later) has been selected
3520 config BR2_PACKAGE_EEPROG
3521 bool "eeprog package removed"
3523 select BR2_PACKAGE_I2C_TOOLS
3524 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
3526 The eeprog program is now provided by the i2c-tools package.
3528 config BR2_PACKAGE_GNUPG2_GPGV2
3529 bool "gnupg2 gpgv2 option removed"
3531 select BR2_PACKAGE_GNUPG2_GPGV
3533 The gpgv2 executable is now named gpgv. The config option
3534 has been renamed accordingly.
3536 config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
3537 bool "Vivante apitrace tool option removed"
3540 The apitrace tool for Vivante is not provided by the
3541 imx-gpu-viv package any longer.
3543 config BR2_PACKAGE_IMX_GPU_VIV_G2D
3544 bool "Vivante G2D libraries from imx-gpu-viv removed"
3546 select BR2_PACKAGE_IMX_GPU_G2D
3548 The G2D libraries are now provided by the imx-gpu-g2d package.
3550 ###############################################################################
3551 comment "Legacy options removed in 2017.11"
3553 config BR2_PACKAGE_RFKILL
3554 bool "rfkill package removed"
3556 select BR2_PACKAGE_UTIL_LINUX
3557 select BR2_PACKAGE_UTIL_LINUX_RFKILL
3559 The rfkill program is now provided by the util-linux package.
3561 config BR2_PACKAGE_UTIL_LINUX_RESET
3562 bool "util-linux reset option removed"
3565 The util-linux package no longer offers a "reset" command. Use
3566 either the reset command provided by BusyBox or select ncurses
3567 programs, which will install a symlink from "tset" to reset.
3569 config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
3570 bool "policycoreutils audit2allow option removed"
3572 select BR2_PACKAGE_SELINUX_PYTHON
3573 select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
3575 The policycoreutils package no longer offers audit2allow
3576 as a option. This package has been moved into the
3577 selinux-python package by the SELinux maintainers.
3579 config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
3580 bool "policycoreutils restorecond option removed"
3582 select BR2_PACKAGE_RESTORECOND
3584 The policycoreutils package no longer offers restorecond
3585 as a option. This package has been moved into a separate
3586 package maintained by the SELinux maintainers.
3588 config BR2_PACKAGE_SEPOLGEN
3589 bool "sepolgen package has been removed"
3591 select BR2_PACKAGE_SELINUX_PYTHON
3592 select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
3594 Sepolgen is no longer a individual package, but instead has
3595 been moved into the selinux-python package by the SELinux
3598 config BR2_PACKAGE_OPENOBEX_BLUEZ
3599 bool "openobex bluez option removed"
3601 select BR2_PACKAGE_BLUEZ_UTILS
3603 The OpenOBEX package no longer offers an option to enable or
3604 disable BlueZ support. Instead, BlueZ support is always
3605 included when the bluez5_utils or bluez_utils package is
3608 config BR2_PACKAGE_OPENOBEX_LIBUSB
3609 bool "openobex libusb option removed"
3611 select BR2_PACKAGE_LIBUSB
3613 The OpenOBEX package no longer offers an option to enable or
3614 disable libusb support. Instead, USB support is always
3615 included when the libusb package is selected.
3617 config BR2_PACKAGE_OPENOBEX_APPS
3618 bool "openobex apps option removed"
3621 The OpenOBEX package no longer offers an option to enable or
3622 disable apps support.
3624 config BR2_PACKAGE_OPENOBEX_SYSLOG
3625 bool "openobex syslog option removed"
3628 The OpenOBEX package no longer offers an option to enable or
3629 disable syslog support.
3631 config BR2_PACKAGE_OPENOBEX_DUMP
3632 bool "openobex dump option removed"
3635 The OpenOBEX package no longer offers an option to enable or
3636 disable dump support.
3638 config BR2_PACKAGE_AICCU
3639 bool "aiccu utility removed"
3642 As the SixXS project has ceased its operation on 2017-06-06,
3643 the AICCU utility has no use anymore and has been removed.
3645 https://www.sixxs.net/sunset/
3647 config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
3648 bool "util-linux login utilities option removed"
3650 select BR2_PACKAGE_UTIL_LINUX_LAST
3651 select BR2_PACKAGE_UTIL_LINUX_LOGIN
3652 select BR2_PACKAGE_UTIL_LINUX_RUNUSER
3653 select BR2_PACKAGE_UTIL_LINUX_SU
3654 select BR2_PACKAGE_UTIL_LINUX_SULOGIN
3656 Login utilities (last, login, runuser, su, sulogin) now have
3657 their own configuration options in the util-linux menu.
3659 ###############################################################################
3660 comment "Legacy options removed in 2017.08"
3662 config BR2_TARGET_GRUB
3663 bool "grub (aka grub-legacy) has been removed"
3666 grub-legacy is no longer maintained, and no longer builds with
3667 recent binutils versions.
3669 Use grub2 or syslinux instead.
3671 config BR2_PACKAGE_SIMICSFS
3672 bool "simicsfs support removed"
3675 Support for simicsfs kernel driver that provides access to a
3676 host computer's local filesystem when the target is
3677 executing within a SIMICS simulation has been removed.
3679 Simics is now moving away from the simicsfs kernel module,
3680 as the kernel module has required too much maintenance
3681 work. Users should move to the user mode Simics agent
3684 config BR2_BINUTILS_VERSION_2_26_X
3685 bool "binutils version 2.26 support removed"
3688 Support for binutils version 2.26 has been removed. The
3689 current default version (2.28 or later) has been selected
3692 config BR2_XTENSA_OVERLAY_DIR
3693 string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
3695 The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
3696 BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
3697 path to the overlay file, not to the directory containing
3700 config BR2_XTENSA_OVERLAY_DIR_WRAP
3702 default y if BR2_XTENSA_OVERLAY_DIR != ""
3705 config BR2_XTENSA_CUSTOM_NAME
3706 string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
3708 The BR2_XTENSA_CUSTOM_NAME option has been removed.
3710 config BR2_XTENSA_CUSTOM_NAME_WRAP
3712 default y if BR2_XTENSA_CUSTOM_NAME != ""
3715 config BR2_PACKAGE_HOST_MKE2IMG
3716 bool "host mke2img has been removed"
3719 We now call mkfs directly to generate ext2/3/4 filesystem
3720 image, so mke2img is no longer necessary.
3722 config BR2_TARGET_ROOTFS_EXT2_BLOCKS
3723 int "exact size in blocks has been removed"
3726 This option has been removed in favor of
3727 BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
3728 to the value you had before. Set to 0 here to remove the
3731 config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
3733 default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
3734 BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
3737 # Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
3739 config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
3740 int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
3743 Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
3744 images. It now automatically selects the number of inodes
3745 based on the image size. The extra number of inodes can no
3746 longer be provided; instead, provide the total number of
3747 inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
3749 config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
3751 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
3754 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
3755 bool "cdxaparse removed"
3758 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
3759 bool "dataurisrc moved to gstreamer1"
3762 Dataurisrc has moved to gstreamer core and is always built.
3764 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
3768 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
3769 bool "hdvparse removed"
3772 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
3776 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
3777 bool "nuvdemux removed"
3780 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
3781 bool "patchdetect removed"
3784 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
3788 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
3792 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
3793 bool "videomeasure removed"
3794 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
3797 videomeasure plugin has been removed and has been replaced by
3798 iqa, which has automatically been enabled.
3800 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
3801 bool "apexsink removed"
3804 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
3808 config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
3809 bool "mad (*.mp3 audio) removed"
3812 config BR2_STRIP_none
3813 bool "Strip command 'none' has been removed"
3816 The strip command choice has been changed into a single
3817 boolean option. Please check that the new setting is
3818 correct (in the "Build options" sub-menu)
3820 config BR2_PACKAGE_BEECRYPT_CPP
3821 bool "C++ support removed in beecrypt"
3824 Support for C++ depends on icu. The beecrypt package is
3825 incompatible with icu 59+.
3827 config BR2_PACKAGE_SPICE_CLIENT
3828 bool "spice client support removed"
3831 Spice client support has been removed upstream. The
3832 functionality now lives in the spice-gtk widget and
3835 config BR2_PACKAGE_SPICE_GUI
3836 bool "spice gui support removed"
3839 Spice gui support has been removed upstream. The
3840 functionality now lives in the spice-gtk widget and
3843 config BR2_PACKAGE_SPICE_TUNNEL
3844 bool "spice network redirection removed"
3847 Spice network redirection, aka tunnelling has been removed
3850 config BR2_PACKAGE_INPUT_TOOLS
3851 bool "input-tools removed"
3853 select BR2_PACKAGE_LINUXCONSOLETOOLS
3855 input-tools has been removed, it is replaced by
3856 linuxconsoletools, which has automatically been enabled.
3858 config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
3859 bool "inputattach moved to linuxconsoletools"
3861 select BR2_PACKAGE_LINUXCONSOLETOOLS
3862 select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
3864 input-tools has been removed, inputattach is now part
3865 of linuxconsoletools, which has automatically been
3868 config BR2_PACKAGE_INPUT_TOOLS_JSCAL
3869 bool "jscal moved to linuxconsoletools"
3871 select BR2_PACKAGE_LINUXCONSOLETOOLS
3872 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
3874 input-tools has been removed, jscal is now part
3875 of linuxconsoletools, which has automatically been
3878 config BR2_PACKAGE_INPUT_TOOLS_JSTEST
3879 bool "jstest moved to linuxconsoletools"
3881 select BR2_PACKAGE_LINUXCONSOLETOOLS
3882 select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
3884 input-tools has been removed, jstest is now part
3885 of linuxconsoletools, which has automatically been
3888 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
3889 bool "SH Sourcery toolchain has been removed"
3892 The Sourcery CodeBench toolchain for the sh architecture has
3893 been removed, since it uses glibc older than 2.17 that
3894 requires -lrt to link executables using clock_* system calls.
3895 This makes this toolchain difficult to maintain over time.
3897 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
3898 bool "x86 Sourcery toolchain has been removed"
3901 The Sourcery CodeBench toolchain for the x86 architecture has
3902 been removed, since it uses glibc older than 2.17 that
3903 requires -lrt to link executables using clock_* system calls.
3904 This makes this toolchain difficult to maintain over time.
3906 config BR2_GCC_VERSION_4_8_X
3907 bool "gcc 4.8.x support removed"
3910 Support for gcc version 4.8.x has been removed. The current
3911 default version (5.x or later) has been selected instead.
3913 ###############################################################################
3914 comment "Legacy options removed in 2017.05"
3916 config BR2_PACKAGE_SUNXI_MALI_R2P4
3917 bool "sunxi-mali r2p4 removed"
3920 sunxi-mali libMali for r2p4 Mali kernel module has been
3921 removed since the libump package only provides libUMP.so.3.
3922 libMali for r2p4 Mali kernel module requires libUMP.so.2.
3924 config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
3925 bool "CoffeeScript option has been removed"
3928 The option to enable NodeJS CoffeeScript has been removed.
3929 To continue using it, add "coffee-script" to
3930 BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
3932 config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
3933 bool "Express web application framework option has been removed"
3936 The option to enable the NodeJS Express web application
3937 framework has been removed. To continue using it, add
3938 "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
3940 config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
3941 bool "bluez5_utils gatttool install option removed"
3942 select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
3944 The option to install gatttool specifically has been removed.
3945 Since version 5.44 gatttool is in the list of deprecated
3946 tools. The option to build and install deprecated tools has
3947 been automatically enabled.
3949 config BR2_PACKAGE_OPENOCD_FT2XXX
3950 bool "openocd ft2232 support has been removed"
3951 select BR2_PACKAGE_OPENOCD_FTDI
3954 FT2232 support in OpenOCD has been removed, it's replaced by
3955 FDTI support, which has automatically been enabled.
3957 config BR2_PACKAGE_KODI_RTMPDUMP
3958 bool "kodi rtmp has been removed"
3960 select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
3962 Internal rtmp support was removed from Kodi.
3964 config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
3965 bool "kodi-visualisation-fountain has been removed"
3968 According to upstream 'the visualization is not currently
3969 in a working shape.'
3971 config BR2_PACKAGE_PORTMAP
3972 bool "portmap has been removed"
3974 select BR2_PACKAGE_RPCBIND
3976 The portmap upstream tarball is removed, no releases since
3977 ten years and latest change in upstream git in 2014.
3978 You should better use rpcbind as a RPC portmapper.
3980 config BR2_BINUTILS_VERSION_2_25_X
3981 bool "binutils version 2.25 support removed"
3984 Support for binutils version 2.25 has been removed. The
3985 current default version (2.27 or later) has been selected
3988 config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
3989 bool "uclibc RPC support has been removed"
3992 uClibc-ng removed internal RPC implementation in 1.0.23. You
3993 should use libtirpc instead.
3995 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
3996 int "extra size in blocks has been removed"
3999 Since the support for auto calculation of the filesystem size
4000 has been removed, this option is now useless and must be 0.
4001 You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
4004 config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
4006 default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
4009 config BR2_PACKAGE_SYSTEMD_KDBUS
4010 bool "systemd-kdbus has been removed"
4013 --enable/disable-kdbus configure option has been removed since
4016 config BR2_PACKAGE_POLARSSL
4017 bool "polarssl has been removed"
4020 The polarssl crypto library has been removed since the 1.2.x
4021 release branch is no longer maintained. Newer upstream
4022 branches/releases (mbedtls) have API changes so they're not
4023 drop-in replacements.
4025 config BR2_NBD_CLIENT
4026 bool "nbd client option was renamed"
4028 select BR2_PACKAGE_NBD_CLIENT
4030 The nbd client option has been renamed to
4031 BR2_PACKAGE_NBD_CLIENT.
4033 config BR2_NBD_SERVER
4034 bool "nbd server option was renamed"
4036 select BR2_PACKAGE_NBD_SERVER
4038 The nbd server option has been renamed to
4039 BR2_PACKAGE_NBD_SERVER.
4041 config BR2_PACKAGE_GMOCK
4042 bool "gmock merged into gtest package"
4044 select BR2_PACKAGE_GTEST
4045 select BR2_PACKAGE_GTEST_GMOCK
4047 GMock is now a suboption of the GTest package.
4049 config BR2_KERNEL_HEADERS_4_8
4050 bool "kernel headers version 4.8.x are no longer supported"
4053 Version 4.8.x of the Linux kernel headers are no longer
4054 maintained upstream and are now removed.
4056 config BR2_KERNEL_HEADERS_3_18
4057 bool "kernel headers version 3.18.x are no longer supported"
4060 Version 3.18.x of the Linux kernel headers are no longer
4061 maintained upstream and are now removed.
4063 config BR2_GLIBC_VERSION_2_22
4064 bool "glibc 2.22 removed"
4067 Support for glibc version 2.22 has been removed. The current
4068 default version has been selected instead.
4070 ###############################################################################
4071 comment "Legacy options removed in 2017.02"
4073 config BR2_PACKAGE_PERL_DB_FILE
4074 bool "perl-db-file removed"
4076 select BR2_PACKAGE_BERKELEYDB
4077 select BR2_PACKAGE_PERL
4079 DB_File can be built as a core Perl module, so the separate
4080 perl-db-file package has been removed.
4082 config BR2_KERNEL_HEADERS_4_7
4083 bool "kernel headers version 4.7.x are no longer supported"
4086 Version 4.7.x of the Linux kernel headers are no longer
4087 maintained upstream and are now removed.
4089 config BR2_KERNEL_HEADERS_4_6
4090 bool "kernel headers version 4.6.x are no longer supported"
4093 Version 4.6.x of the Linux kernel headers are no longer
4094 maintained upstream and are now removed.
4096 config BR2_KERNEL_HEADERS_4_5
4097 bool "kernel headers version 4.5.x are no longer supported"
4100 Version 4.5.x of the Linux kernel headers are no longer
4101 maintained upstream and are now removed.
4103 config BR2_KERNEL_HEADERS_3_14
4104 bool "kernel headers version 3.14.x are no longer supported"
4107 Version 3.14.x of the Linux kernel headers are no longer
4108 maintained upstream and are now removed.
4110 config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
4111 bool "musl-cross 1.1.12 toolchain removed"
4114 The support for the prebuilt toolchain based on the Musl C
4115 library provided by the musl-cross project has been removed.
4116 Upstream doesn't provide any prebuilt toolchain anymore, use
4117 the Buildroot toolchain instead.
4119 config BR2_UCLIBC_INSTALL_TEST_SUITE
4120 bool "uClibc tests now in uclibc-ng-test"
4122 select BR2_PACKAGE_UCLIBC_NG_TEST
4124 The test suite of the uClibc C library has been moved into a
4125 separate package, uclibc-ng-test.
4127 config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
4128 bool "Blackfin.uclinux.org 2014R1 toolchain removed"
4131 The ADI Blackfin toolchain has many bugs which are fixed in
4132 more recent gcc and uClibc-ng releases. Use the Buildroot
4135 config BR2_PACKAGE_MAKEDEVS
4136 bool "makedevs removed"
4139 The makedevs tool is part of busybox. The Buildroot fork
4140 should not be used outside of the Buildroot infrastructure.
4142 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
4143 bool "Arago ARMv7 2011.09 removed"
4146 The Arago toolchains are every old and not updated anymore.
4148 config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
4149 bool "Arago ARMv5 2011.09 removed"
4152 The Arago toolchains are every old and not updated anymore.
4154 config BR2_PACKAGE_SNOWBALL_HDMISERVICE
4155 bool "snowball-hdmiservice removed"
4158 We no longer have support for the Snowball platform in
4159 Buildroot, so this package was no longer useful.
4161 config BR2_PACKAGE_SNOWBALL_INIT
4162 bool "snowball-init removed"
4165 We no longer have support for the Snowball platform in
4166 Buildroot, so this package was no longer useful.
4168 config BR2_GDB_VERSION_7_9
4169 bool "gdb 7.9 has been removed"
4172 The 7.9 version of gdb has been removed. Use a newer version
4175 ###############################################################################
4176 comment "Legacy options removed in 2016.11"
4178 config BR2_PACKAGE_PHP_SAPI_CLI_CGI
4179 bool "PHP CGI and CLI options are now separate"
4180 select BR2_PACKAGE_PHP_SAPI_CLI
4181 select BR2_PACKAGE_PHP_SAPI_CGI
4184 The PHP Interface options have been split up into a
4185 separate option for each interface.
4187 config BR2_PACKAGE_PHP_SAPI_CLI_FPM
4188 bool "PHP CLI and FPM options are now separate"
4189 select BR2_PACKAGE_PHP_SAPI_CLI
4190 select BR2_PACKAGE_PHP_SAPI_FPM
4193 The PHP Interface options have been split up into a
4194 separate option for each interface.
4196 config BR2_PACKAGE_WVSTREAMS
4197 bool "wvstreams removed"
4200 wvstreams is not maintained anymore since about 2009. It also
4201 doesn't build anymore with recent compilers (GCC 5+).
4203 config BR2_PACKAGE_WVDIAL
4204 bool "wvdial removed"
4207 wvdial is not maintained anymore since about 2009. It also
4208 doesn't build anymore with recent compilers (GCC 5+).
4210 config BR2_PACKAGE_WEBKITGTK24
4211 bool "webkitgtk 2.4.x removed"
4214 This legacy package only existed because some other packages
4215 depended on that specific version of webkitgtk. However, the
4216 other packages have been fixed. webkitgtk 2.4 is full of
4217 security issues so it needs to be removed.
4219 config BR2_PACKAGE_TORSMO
4220 bool "torsmo removed"
4223 torsmo has been unmaintained for a long time, and nobody
4224 seems to be interested in it.
4226 config BR2_PACKAGE_SSTRIP
4227 bool "sstrip removed"
4230 sstrip is unmaintained and potentially harmful. It doesn't
4231 save so much compared to normal binutils strip, and there is
4232 a big risk of binaries that don't work. Use normal strip
4235 config BR2_KERNEL_HEADERS_4_3
4236 bool "kernel headers version 4.3.x are no longer supported"
4239 Version 4.3.x of the Linux kernel headers are no longer
4240 maintained upstream and are now removed.
4242 config BR2_KERNEL_HEADERS_4_2
4243 bool "kernel headers version 4.2.x are no longer supported"
4246 Version 4.2.x of the Linux kernel headers are no longer
4247 maintained upstream and are now removed.
4249 config BR2_PACKAGE_KODI_ADDON_XVDR
4250 bool "kodi-addon-xvdr removed"
4253 According to the github project page:
4254 https://github.com/pipelka/xbmc-addon-xvdr
4255 this package is discontinued.
4257 config BR2_PACKAGE_IPKG
4261 ipkg dates back to the early 2000s when Compaq started the
4262 handhelds.org project and it hasn't seen development since
4263 2006. Use opkg as a replacement.
4265 config BR2_GCC_VERSION_4_7_X
4266 bool "gcc 4.7.x support removed"
4269 Support for gcc version 4.7.x has been removed. The current
4270 default version (4.9.x or later) has been selected instead.
4272 config BR2_BINUTILS_VERSION_2_24_X
4273 bool "binutils version 2.24 support removed"
4276 Support for binutils version 2.24 has been removed. The
4277 current default version (2.26 or later) has been selected
4280 config BR2_PACKAGE_WESTON_RPI
4281 bool "Weston propietary RPI support is gone"
4284 Upstream decided the propietary (rpi-userland) weston composer
4285 support wasn't worth the effort so it was removed. Switch to
4286 the open VC4 support.
4288 config BR2_LINUX_KERNEL_TOOL_CPUPOWER
4289 bool "linux-tool cpupower"
4290 depends on BR2_LINUX_KERNEL
4292 select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
4294 Linux tool cpupower option was renamed.
4296 config BR2_LINUX_KERNEL_TOOL_PERF
4297 bool "linux-tool perf"
4298 depends on BR2_LINUX_KERNEL
4300 select BR2_PACKAGE_LINUX_TOOLS_PERF
4302 Linux tool perf option was renamed.
4304 config BR2_LINUX_KERNEL_TOOL_SELFTESTS
4305 bool "linux-tool selftests"
4306 depends on BR2_LINUX_KERNEL
4308 select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
4310 Linux tool selftests option was renamed.
4312 config BR2_GCC_VERSION_4_8_ARC
4313 bool "gcc arc option renamed"
4316 The option that selects the gcc version for the ARC
4317 architecture has been renamed to BR2_GCC_VERSION_ARC.
4318 # Note: BR2_GCC_VERSION_4_8_ARC is still referenced from
4319 # package/gcc/Config.in.host
4321 config BR2_KERNEL_HEADERS_4_0
4322 bool "kernel headers version 4.0.x are no longer supported"
4325 Version 4.0.x of the Linux kernel headers have been deprecated
4326 for more than four buildroot releases and are now removed.
4328 config BR2_KERNEL_HEADERS_3_19
4329 bool "kernel headers version 3.19.x are no longer supported"
4332 Version 3.19.x of the Linux kernel headers have been
4333 deprecated for more than four buildroot releases and are now
4336 config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
4337 bool "libevas-generic-loaders package removed"
4339 select BR2_PACKAGE_EFL
4341 With EFL 1.18, libevas-generic-loaders is now provided by the
4344 config BR2_PACKAGE_ELEMENTARY
4345 bool "elementary package removed"
4347 select BR2_PACKAGE_EFL
4349 With EFL 1.18, elementary is now provided by the efl package.
4351 config BR2_LINUX_KERNEL_CUSTOM_LOCAL
4352 bool "Linux kernel local directory option removed"
4355 The option to select a local directory as the source of the
4356 Linux kernel has been removed. It hurts reproducibility of
4359 In case you were using this option during development of your
4360 Linux kernel, use the override mechanism instead.
4362 ###############################################################################
4363 comment "Legacy options removed in 2016.08"
4365 config BR2_PACKAGE_EFL_JP2K
4366 bool "libevas jp2k loader has been removed"
4369 JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
4370 while Buildroot only packages openjpeg 2.x. Therefore, the
4371 JP2K loader has been removed from EFL.
4373 config BR2_PACKAGE_SYSTEMD_COMPAT
4374 bool "systemd compatibility libraries have been removed"
4377 The systemd option to enable the compatibility libraries has
4378 been removed. Theses libraries have been useless since a few
4379 version, and have been fully dropped from the source since
4382 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
4383 bool "gst1-plugins-bad liveadder plugin removed"
4385 select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
4387 The functionality of the liveadder plugin of the
4388 gst1-plugins-bad package has been merged into audiomixer.
4390 config BR2_PACKAGE_LIBFSLVPUWRAP
4391 bool "libfslvpuwrap has been renamed to imx-vpuwrap"
4393 select BR2_PACKAGE_IMX_VPUWRAP
4395 The libfslvpuwrap has been renamed to match the renamed
4398 config BR2_PACKAGE_LIBFSLPARSER
4399 bool "libfslparser has been renamed to imx-parser"
4401 select BR2_PACKAGE_IMX_PARSER
4403 The libfslparser has been renamed to match the renamed
4406 config BR2_PACKAGE_LIBFSLCODEC
4407 bool "libfslcodec has been renamed to imx-codec"
4409 select BR2_PACKAGE_IMX_CODEC
4411 The libfslcodec has been renamed to match the renamed package.
4413 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
4414 bool "FIT support in uboot-tools has been refactored"
4416 select BR2_PACKAGE_DTC
4417 select BR2_PACKAGE_DTC_PROGRAMS
4418 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
4419 select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
4420 select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
4422 This option has been removed in favor of a more fine-grained
4423 configuration, which is recommended. Selecting this option
4424 enables FIT and FIT signature support for the target packages.
4425 It will also select the dtc and openssl packages.
4427 config BR2_PTHREADS_OLD
4428 bool "linuxthreads (stable/old)"
4431 Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
4432 BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
4434 config BR2_BINUTILS_VERSION_2_23_X
4435 bool "binutils 2.23 removed"
4438 Binutils 2.23 has been removed, using a newer version is
4441 config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
4442 bool "eglibc support has been removed"
4445 The eglibc project no longer exists, as it has been merged
4446 back into the glibc project. Therefore, support for eglibc
4447 has been removed, and glibc should be used instead.
4449 config BR2_GDB_VERSION_7_8
4450 bool "gdb 7.8 has been removed"
4453 The 7.8 version of gdb has been removed. Use a newer version
4456 ###############################################################################
4457 comment "Legacy options removed in 2016.05"
4459 config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
4460 bool "openvpn polarssl crypto backend removed"
4463 The OpenVPN polarssl crypto backend option has been removed.
4464 Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
4465 compatible with mbedtls (polarssl) series 2.x which is the
4466 version provided in buildroot. And both can't coexist.
4467 It now uses OpenSSL as the only option.
4469 config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
4470 bool "nginx http spdy module removed"
4472 select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
4474 The ngx_http_spdy_module has been superseded by the
4475 ngx_http_v2_module since nginx v1.9.5. The
4476 ngx_http_v2_module modules has been automatically selected
4477 in your configuration.
4479 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
4480 bool "gst1-plugins-bad rtp plugin moved to good"
4483 The rtp plugin has been moved from gst1-plugins-base to
4486 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
4487 bool "gst1-plugins-bad mpg123 plugin moved to ugly"
4490 The mpg123 plugin has been moved from gst1-plugins-bad to
4493 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
4494 bool "PowerPC Sourcery toolchain has been removed"
4497 The Sourcery CodeBench toolchain for the PowerPC
4498 architecture has been removed, as it was very old, not
4499 maintained, and causing numerous build failures with modern
4502 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
4503 bool "PowerPC Sourcery E500v2 toolchain has been removed"
4506 The Sourcery CodeBench toolchain for the PowerPC E500v2
4507 architecture has been removed, as it was very old, not
4508 maintained, and causing numerous build failures with modern
4512 bool "x86 i386 support removed"
4515 The support for the i386 processors of the x86 architecture
4518 config BR2_PACKAGE_QT5QUICK1
4519 bool "qt5quick1 package removed"
4522 The qt5quick1 package has been removed, since it was removed
4523 from upstream starting from Qt 5.6.
4525 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
4526 string "uboot custom patch dir has been removed"
4528 The uboot custom patch directory option has been removed. Use
4529 the improved BR2_TARGET_UBOOT_PATCH option instead.
4531 config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
4533 default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
4536 # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
4537 # boot/uboot/Config.in
4539 config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
4540 bool "xf86-input-void removed"
4543 The xf86-input-void package has been removed, there's no need
4544 for it in any modern (post-2007) xorg server.
4546 config BR2_KERNEL_HEADERS_3_17
4547 bool "kernel headers version 3.17.x are no longer supported"
4550 Version 3.17.x of the Linux kernel headers have been
4551 deprecated for more than four buildroot releases and are now
4554 config BR2_GDB_VERSION_7_7
4555 bool "gdb 7.7 has been removed"
4558 The 7.7 version of gdb has been removed. Use a newer version
4561 config BR2_PACKAGE_FOOMATIC_FILTERS
4562 bool "foomatic-filters"
4565 The foomatic-filters package was removed.
4567 config BR2_PACKAGE_SAMBA
4571 The samba package was removed in favour of samba4 since the
4572 3.x series isn't supported by upstream any longer.
4574 config BR2_PACKAGE_KODI_WAVPACK
4578 wavpack support was removed in favour of ffmpeg:
4579 https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
4581 config BR2_PACKAGE_KODI_RSXS
4582 bool "rsxs support in Kodi was moved to an addon"
4584 select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
4586 rsxs support in Kodi was moved to an addon
4588 config BR2_PACKAGE_KODI_GOOM
4589 bool "Goom support in Kodi was moved to an addon"
4591 select BR2_PACKAGE_KODI_VISUALISATION_GOOM
4593 Goom support in Kodi was moved to an addon
4595 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
4596 bool "systemd all extras option has been removed"
4598 select BR2_PACKAGE_XZ
4599 select BR2_PACKAGE_LIBGCRYPT
4601 The systemd option to enable "all extras" has been
4602 removed. To get the same features, the libgcrypt and xz
4603 package should now be enabled.
4605 config BR2_GCC_VERSION_4_5_X
4606 bool "gcc 4.5.x has been removed"
4609 The 4.5.x version of gcc has been removed. Use a newer
4612 config BR2_PACKAGE_SQLITE_READLINE
4613 bool "sqlite command-line editing support was updated"
4614 select BR2_PACKAGE_NCURSES
4615 select BR2_PACKAGE_READLINE
4618 This option was removed in favour of the sqlite package
4619 deciding itself depending on the enabled packages whether
4620 command-line editing should be enabled, it also also takes
4621 libedit into account.
4623 ###############################################################################
4624 comment "Legacy options removed in 2016.02"
4626 config BR2_PACKAGE_DOVECOT_BZIP2
4627 bool "bzip2 support option has been removed"
4629 select BR2_PACKAGE_BZIP2
4631 Bzip2 support is built if the bzip2 package is selected.
4633 config BR2_PACKAGE_DOVECOT_ZLIB
4634 bool "zlib support option has been removed"
4636 select BR2_PACKAGE_ZLIB
4638 Zlib support is built if the zlib package is selected.
4640 config BR2_PACKAGE_E2FSPROGS_FINDFS
4641 bool "e2fsprogs findfs option has been removed"
4644 This option attempted to enable findfs capabilities from
4645 e2fsprogs but has not worked since July 2015 (due to
4646 packaging changes). One can use BusyBox's findfs support or
4647 enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
4649 config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
4650 bool "openpowerlink debug option has been removed"
4653 This option depends on BR2_ENABLE_DEBUG which should not be
4654 used by packages anymore.
4656 config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
4657 bool "openpowerlink package has been updated"
4660 openpowerlink kernel modules are built if the
4661 kernel stack library is selected.
4662 # Note: BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE is still referenced from
4663 # package/openpowerlink/Config.in
4665 config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
4666 bool "openpowerlink package has been updated"
4669 The user space support has been split in two part:
4670 - a monolithic user space library
4671 - a user space daemon driver
4672 # Note: BR2_PACKAGE_OPENPOWERLINK_LIBPCAP is still referenced from
4673 # package/openpowerlink/Config.in
4675 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
4676 bool "using the linux headers version for the kernel has been removed"
4679 The option to use the version of the kernel headers for the
4680 kernel to build has been removed.
4682 There is now the converse, better-suited and more versatile
4683 option to use the kernel version for the linux headers.
4685 config BR2_PACKAGE_CUPS_PDFTOPS
4686 bool "Pdftops support has been removed from Cups"
4687 select BR2_PACKAGE_CUPS_FILTERS
4690 Pdftops support has been removed from the cups package
4691 It is now part of the cups-filters package.
4693 config BR2_KERNEL_HEADERS_3_16
4694 bool "kernel headers version 3.16.x are no longer supported"
4697 Version 3.16.x of the Linux kernel headers have been
4698 deprecated for more than four buildroot releases and are now
4701 config BR2_PACKAGE_PYTHON_PYXML
4702 bool "python-pyxml package has been removed"
4705 PyXML is obsolete and its functionality is covered either via
4706 native Python XML support or python-lxml package.
4708 # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
4709 config BR2_ENABLE_SSP
4710 bool "Stack Smashing protection now has different levels"
4712 The protection offered by SSP can now be selected from
4713 different protection levels. Be sure to review the SSP level
4714 in the build options menu.
4716 config BR2_PACKAGE_DIRECTFB_CLE266
4717 bool "cle266 driver for directfb removed"
4720 The cle266 directfb driver support has been removed.
4721 It doesn't build in the latest version and it's unlikely
4722 anyone has any use for it.
4724 config BR2_PACKAGE_DIRECTFB_UNICHROME
4725 bool "unichrome driver for directfb removed"
4728 The unichrome directfb driver support has been removed.
4729 It doesn't build in the latest version and it's unlikely
4730 anyone has any use for it.
4732 config BR2_PACKAGE_LIBELEMENTARY
4733 bool "libelementary has been renamed to elementary"
4735 select BR2_PACKAGE_ELEMENTARY
4737 The libelementary package has been renamed to match the
4740 config BR2_PACKAGE_LIBEINA
4741 bool "libeina package has been removed"
4743 select BR2_PACKAGE_EFL
4745 With EFL 1.15, libeina is now provided by the efl package.
4747 config BR2_PACKAGE_LIBEET
4748 bool "libeet package has been removed"
4750 select BR2_PACKAGE_EFL
4752 With EFL 1.15, libeet is now provided by the efl package.
4754 config BR2_PACKAGE_LIBEVAS
4755 bool "libevas package has been removed"
4757 select BR2_PACKAGE_EFL
4759 With EFL 1.15, libevas is now provided by the efl package.
4761 config BR2_PACKAGE_LIBECORE
4762 bool "libecore package has been removed"
4764 select BR2_PACKAGE_EFL
4766 With EFL 1.15, libecore is now provided by the efl package.
4768 config BR2_PACKAGE_LIBEDBUS
4769 bool "libedbus package has been removed"
4771 select BR2_PACKAGE_EFL
4773 With EFL 1.15, libedbus is now provided by the efl package.
4775 config BR2_PACKAGE_LIBEFREET
4776 bool "libefreet package has been removed"
4778 select BR2_PACKAGE_EFL
4780 With EFL 1.15, libefreet is now provided by the efl package.
4782 config BR2_PACKAGE_LIBEIO
4783 bool "libeio package has been removed"
4785 select BR2_PACKAGE_EFL
4787 With EFL 1.15, libeio is now provided by the efl package.
4789 config BR2_PACKAGE_LIBEMBRYO
4790 bool "libembryo package has been removed"
4792 select BR2_PACKAGE_EFL
4794 With EFL 1.15, libembryo is now provided by the efl package.
4796 config BR2_PACKAGE_LIBEDJE
4797 bool "libedje package has been removed"
4799 select BR2_PACKAGE_EFL
4801 With EFL 1.15, libedje is now provided by the efl package.
4803 config BR2_PACKAGE_LIBETHUMB
4804 bool "libethumb package has been removed"
4806 select BR2_PACKAGE_EFL
4808 With EFL 1.15, libethumb is now provided by the efl package.
4810 config BR2_PACKAGE_INFOZIP
4811 bool "infozip option has been renamed to zip"
4813 select BR2_PACKAGE_ZIP
4815 Info-Zip's Zip package has been renamed from infozip to zip,
4816 to avoid ambiguities with Info-Zip's UnZip which has been
4817 added in the unzip package.
4819 config BR2_BR2_PACKAGE_NODEJS_0_10_X
4820 bool "nodejs 0.10.x option removed"
4822 select BR2_PACKAGE_NODEJS
4824 nodejs 0.10.x option has been removed. 0.10.x is now
4825 automatically chosen for ARMv5 architectures only and the
4826 latest nodejs for all other supported architectures. The
4827 correct nodejs version has been automatically selected in your
4830 config BR2_BR2_PACKAGE_NODEJS_0_12_X
4831 bool "nodejs version 0.12.x has been removed"
4833 select BR2_PACKAGE_NODEJS
4835 nodejs version 0.12.x has been removed. As an alternative,
4836 the latest nodejs version has been automatically selected in
4839 config BR2_BR2_PACKAGE_NODEJS_4_X
4840 bool "nodejs version 4.x has been removed"
4842 select BR2_PACKAGE_NODEJS
4844 nodejs version 4.x has been removed. As an alternative,
4845 the latest nodejs version has been automatically selected in
4848 ###############################################################################
4849 comment "Legacy options removed in 2015.11"
4851 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
4852 bool "gst1-plugins-bad real plugin has been removed"
4855 The real plugin from GStreamer 1 bad plugins has been
4858 config BR2_PACKAGE_MEDIA_CTL
4859 bool "media-ctl package has been removed"
4861 select BR2_PACKAGE_LIBV4L
4862 select BR2_PACKAGE_LIBV4L_UTILS
4864 media-ctl source and developement have been moved to v4l-utils
4865 since June 2014. For an up-to-date media-ctl version select
4866 BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
4868 config BR2_PACKAGE_SCHIFRA
4869 bool "schifra package has been removed"
4872 Schifra package has been maked broken since 2014.11 release
4873 and haven't been fixed since then.
4875 config BR2_PACKAGE_ZXING
4876 bool "zxing option has been renamed"
4878 select BR2_PACKAGE_ZXING_CPP
4880 ZXing no longer provides the cpp bindings, it has been renamed
4881 to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
4883 # Since FreeRDP has new dependencies, protect this legacy to avoid the
4884 # infamous "unmet direct dependencies" kconfig error.
4885 config BR2_PACKAGE_FREERDP_CLIENT
4886 bool "freerdp client option renamed"
4887 depends on BR2_PACKAGE_FREERDP
4889 select BR2_PACKAGE_FREERDP_CLIENT_X11
4891 config BR2_PACKAGE_BLACKBOX
4892 bool "blackbox package has been removed"
4895 Upstream is dead and the package has been deprecated for
4896 some time. There are other alternative maintained WMs.
4898 config BR2_KERNEL_HEADERS_3_0
4899 bool "kernel headers version 3.0.x are no longer supported"
4902 Version 3.0.x of the Linux kernel headers have been deprecated
4903 for more than four buildroot releases and are now removed.
4905 config BR2_KERNEL_HEADERS_3_11
4906 bool "kernel headers version 3.11.x are no longer supported"
4909 Version 3.11.x of the Linux kernel headers have been
4910 deprecated for more than four buildroot releases and are now
4913 config BR2_KERNEL_HEADERS_3_13
4914 bool "kernel headers version 3.13.x are no longer supported"
4917 Version 3.13.x of the Linux kernel headers have been
4918 deprecated for more than four buildroot releases and are now
4921 config BR2_KERNEL_HEADERS_3_15
4922 bool "kernel headers version 3.15.x are no longer supported"
4925 Version 3.15.x of the Linux kernel headers have been
4926 deprecated for more than four buildroot releases and are now
4929 config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
4930 bool "DirectFB example df_andi has been removed"
4932 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4934 The per-DirectFB example options have been removed. The
4935 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4938 config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
4939 bool "DirectFB example df_bltload has been removed"
4941 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4943 The per-DirectFB example options have been removed. The
4944 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4947 config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
4948 bool "DirectFB example df_cpuload has been removed"
4950 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4952 The per-DirectFB example options have been removed. The
4953 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4956 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
4957 bool "DirectFB example df_databuffer has been removed"
4959 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4961 The per-DirectFB example options have been removed. The
4962 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4965 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
4966 bool "DirectFB example df_dioload has been removed"
4968 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4970 The per-DirectFB example options have been removed. The
4971 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4974 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
4975 bool "DirectFB example df_dok has been removed"
4977 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4979 The per-DirectFB example options have been removed. The
4980 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4983 config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
4984 bool "DirectFB example df_drivertest has been removed"
4986 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4988 The per-DirectFB example options have been removed. The
4989 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
4992 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
4993 bool "DirectFB example df_fire has been removed"
4995 select BR2_PACKAGE_DIRECTFB_EXAMPLES
4997 The per-DirectFB example options have been removed. The
4998 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5001 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
5002 bool "DirectFB example df_flip has been removed"
5004 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5006 The per-DirectFB example options have been removed. The
5007 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5010 config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
5011 bool "DirectFB example df_fonts has been removed"
5013 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5015 The per-DirectFB example options have been removed. The
5016 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5019 config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
5020 bool "DirectFB example df_input has been removed"
5022 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5024 The per-DirectFB example options have been removed. The
5025 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5028 config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
5029 bool "DirectFB example df_joystick has been removed"
5031 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5033 The per-DirectFB example options have been removed. The
5034 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5037 config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
5038 bool "DirectFB example df_knuckles has been removed"
5040 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5042 The per-DirectFB example options have been removed. The
5043 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5046 config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
5047 bool "DirectFB example df_layer has been removed"
5049 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5051 The per-DirectFB example options have been removed. The
5052 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5055 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
5056 bool "DirectFB example df_matrix has been removed"
5058 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5060 The per-DirectFB example options have been removed. The
5061 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5064 config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
5065 bool "DirectFB example df_matrix_water has been removed"
5067 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5069 The per-DirectFB example options have been removed. The
5070 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5073 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
5074 bool "DirectFB example df_neo has been removed"
5076 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5078 The per-DirectFB example options have been removed. The
5079 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5082 config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
5083 bool "DirectFB example df_netload has been removed"
5085 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5087 The per-DirectFB example options have been removed. The
5088 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5091 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
5092 bool "DirectFB example df_palette has been removed"
5093 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5095 The per-DirectFB example options have been removed. The
5096 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5099 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
5100 bool "DirectFB example df_particle has been removed"
5102 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5104 The per-DirectFB example options have been removed. The
5105 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5108 config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
5109 bool "DirectFB example df_porter has been removed"
5111 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5113 The per-DirectFB example options have been removed. The
5114 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5117 config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
5118 bool "DirectFB example df_stress has been removed"
5119 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5121 The per-DirectFB example options have been removed. The
5122 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5125 config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
5126 bool "DirectFB example df_texture has been removed"
5128 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5130 The per-DirectFB example options have been removed. The
5131 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5134 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
5135 bool "DirectFB example df_video has been removed"
5137 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5139 The per-DirectFB example options have been removed. The
5140 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5143 config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
5144 bool "DirectFB example df_video_particle has been removed"
5146 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5148 The per-DirectFB example options have been removed. The
5149 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5152 config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
5153 bool "DirectFB example df_window has been removed"
5155 select BR2_PACKAGE_DIRECTFB_EXAMPLES
5157 The per-DirectFB example options have been removed. The
5158 BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
5161 config BR2_PACKAGE_KOBS_NG
5162 bool "kobs-ng was replaced by imx-kobs"
5164 select BR2_PACKAGE_IMX_KOBS
5166 The outdated kobs-ng has been replaced by the Freescale-
5167 maintained imx-kobs package.
5169 config BR2_PACKAGE_SAWMAN
5170 bool "sawman package removed"
5172 select BR2_PACKAGE_DIRECTFB_SAWMAN
5174 This option has been removed because the sawman package no
5175 longer exists: it was merged inside DirectFB itself. This
5176 feature can now be enabled using the
5177 BR2_PACKAGE_DIRECTFB_SAWMAN option.
5179 config BR2_PACKAGE_DIVINE
5180 bool "divine package removed"
5182 select BR2_PACKAGE_DIRECTFB_DIVINE
5184 This option has been removed because the divine package no
5185 longer exists: it was merged inside DirectFB itself. This
5186 feature can now be enabled using the
5187 BR2_PACKAGE_DIRECTFB_DIVINE option.
5189 ###############################################################################
5190 comment "Legacy options removed in 2015.08"
5192 config BR2_PACKAGE_KODI_PVR_ADDONS
5193 bool "Kodi PVR addon was split"
5195 select BR2_PACKAGE_KODI_PVR_ARGUSTV
5196 select BR2_PACKAGE_KODI_PVR_DVBLINK
5197 select BR2_PACKAGE_KODI_PVR_DVBVIEWER
5198 select BR2_PACKAGE_KODI_PVR_FILMON
5199 select BR2_PACKAGE_KODI_PVR_HTS
5200 select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
5201 select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
5202 select BR2_PACKAGE_KODI_PVR_MYTHTV
5203 select BR2_PACKAGE_KODI_PVR_NEXTPVR
5204 select BR2_PACKAGE_KODI_PVR_NJOY
5205 select BR2_PACKAGE_KODI_PVR_PCTV
5206 select BR2_PACKAGE_KODI_PVR_STALKER
5207 select BR2_PACKAGE_KODI_PVR_VBOX
5208 select BR2_PACKAGE_KODI_PVR_VDR_VNSI
5209 select BR2_PACKAGE_KODI_PVR_VUPLUS
5210 select BR2_PACKAGE_KODI_PVR_WMC
5212 Kodi PVR addon was split into separate modules
5214 config BR2_BINUTILS_VERSION_2_23_2
5215 bool "binutils 2.23 option renamed"
5218 Binutils 2.23.2 has been removed, using a newer version is
5221 config BR2_BINUTILS_VERSION_2_24
5222 bool "binutils 2.24 option renamed"
5224 select BR2_BINUTILS_VERSION_2_24_X
5226 The binutils version option has been renamed to match the
5227 same patchlevel logic used by gcc. The new option is now
5228 BR2_BINUTILS_VERSION_2_24_X.
5230 config BR2_BINUTILS_VERSION_2_25
5231 bool "binutils 2.25 option renamed"
5233 select BR2_BINUTILS_VERSION_2_25_X
5235 The binutils version option has been renamed to match the
5236 same patchlevel logic used by gcc. The new option is now
5237 BR2_BINUTILS_VERSION_2_25_X.
5239 config BR2_PACKAGE_PERF
5240 bool "perf option has been renamed"
5242 select BR2_LINUX_KERNEL_TOOL_PERF
5244 The perf package has been moved as a Linux tools package,
5245 and the option to enable it is now
5246 BR2_LINUX_KERNEL_TOOL_PERF.
5248 config BR2_BINUTILS_VERSION_2_22
5249 bool "binutils 2.22 removed"
5252 Binutils 2.22 has been removed, using a newer version is
5255 config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
5256 bool "gpu-viv-bin-mx6q"
5258 select BR2_PACKAGE_IMX_GPU_VIV
5260 Vivante graphics libraries have been renamed to
5261 BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
5264 config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
5265 bool "libsemanage python bindings removed"
5266 depends on BR2_PACKAGE_PYTHON
5269 This option has been removed, since the libsemanage Python
5270 bindings on the target were not useful.
5272 config BR2_TARGET_UBOOT_NETWORK
5273 bool "U-Boot custom network settings removed"
5276 U-Boot's custom network settings options have been removed.
5280 endif # !SKIP_LEGACY