1*4882a593Smuzhiyunconfig BR2_PACKAGE_CONTAINERD 2*4882a593Smuzhiyun bool "containerd" 3*4882a593Smuzhiyun depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 4*4882a593Smuzhiyun depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 6*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_USES_UCLIBC # runc 7*4882a593Smuzhiyun depends on BR2_USE_MMU # util-linux 8*4882a593Smuzhiyun select BR2_PACKAGE_RUNC # runtime dependency 9*4882a593Smuzhiyun select BR2_PACKAGE_UTIL_LINUX # runtime dependency 10*4882a593Smuzhiyun select BR2_PACKAGE_UTIL_LINUX_BINARIES 11*4882a593Smuzhiyun select BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT 12*4882a593Smuzhiyun select BR2_PACKAGE_UTIL_LINUX_MOUNTPOINT 13*4882a593Smuzhiyun select BR2_PACKAGE_UTIL_LINUX_MOUNT 14*4882a593Smuzhiyun help 15*4882a593Smuzhiyun containerd is a daemon to control runC. 16*4882a593Smuzhiyun 17*4882a593Smuzhiyun https://containerd.io/ 18*4882a593Smuzhiyun 19*4882a593Smuzhiyunif BR2_PACKAGE_CONTAINERD 20*4882a593Smuzhiyun 21*4882a593Smuzhiyunconfig BR2_PACKAGE_CONTAINERD_DRIVER_BTRFS 22*4882a593Smuzhiyun bool "btrfs snapshot driver" 23*4882a593Smuzhiyun depends on BR2_USE_MMU # btrfs-progs 24*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS # btrfs-progs 25*4882a593Smuzhiyun select BR2_PACKAGE_BTRFS_PROGS 26*4882a593Smuzhiyun help 27*4882a593Smuzhiyun Build the btrfs snapshot driver for containerd. 28*4882a593Smuzhiyun 29*4882a593Smuzhiyunendif 30*4882a593Smuzhiyun 31*4882a593Smuzhiyuncomment "containerd needs a glibc or musl toolchain w/ threads" 32*4882a593Smuzhiyun depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 33*4882a593Smuzhiyun depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 34*4882a593Smuzhiyun depends on BR2_USE_MMU 35*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC 36