1config BR2_PACKAGE_NERDCTL 2 bool "nerdctl" 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 # containerd 7 depends on BR2_USE_MMU # util-linux 8 select BR2_PACKAGE_CONTAINERD # runtime 9 help 10 Docker-compatible CLI for containerd, controlling runc. 11 12 https://github.com/containerd/nerdctl 13 14comment "nerdctl needs a glibc or musl toolchain w/ threads" 15 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 16 depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 17 depends on BR2_USE_MMU 18 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC 19