1config BR2_PACKAGE_CNI_PLUGINS
2	bool "cni-plugins"
3	depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
4	depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
5	depends on BR2_TOOLCHAIN_HAS_THREADS
6	depends on !BR2_TOOLCHAIN_USES_UCLIBC # no fexecve
7	depends on BR2_USE_MMU
8	help
9	  Container Networking Interface plugins.
10
11	  https://github.com/containernetworking/plugins
12
13comment "cni-plugins needs a glibc or musl toolchain w/ threads"
14	depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS && \
15		BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
16	depends on BR2_USE_MMU
17	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC
18