diff options
author | 2016-07-04 15:30:32 -0700 | |
---|---|---|
committer | 2016-07-05 11:01:00 +0200 | |
commit | 16ec6a6c783e20660d366e06ab2a12275acd72f9 (patch) | |
tree | cd88f1e5d78f18f4d6798cf7ffc63022f4861ab5 /package/docker-containerd/Config.in | |
parent | f812c6b36f59583d37aab25aef8a292494532c6e (diff) | |
download | buildroot-16ec6a6c783e20660d366e06ab2a12275acd72f9.tar.gz buildroot-16ec6a6c783e20660d366e06ab2a12275acd72f9.tar.bz2 |
docker-containerd: new package
docker-containerd is a daemon and API for controlling and managing runC
containers.
https://containerd.tools/
Signed-off-by: Christian Stewart <christian@paral.in>
Reviewed-by: Romain Naour <romain.naour@gmail.com>
[Thomas:
- simplify a bit the comments about the runtime dependencies
- add missing comment on wchar, and take into account the BR2_USE_MMU
dependency in the comment
- factorize the build step with a foreach loop.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/docker-containerd/Config.in')
-rw-r--r-- | package/docker-containerd/Config.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/docker-containerd/Config.in b/package/docker-containerd/Config.in new file mode 100644 index 0000000000..85843b8706 --- /dev/null +++ b/package/docker-containerd/Config.in @@ -0,0 +1,21 @@ +config BR2_PACKAGE_DOCKER_CONTAINERD + bool "docker-containerd" + depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS + depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_USE_MMU # util-linux + depends on BR2_USE_WCHAR # util-linux + select BR2_PACKAGE_RUNC # runtime dependency + select BR2_PACKAGE_UTIL_LINUX # runtime dependency + select BR2_PACKAGE_UTIL_LINUX_BINARIES + select BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT + select BR2_PACKAGE_UTIL_LINUX_MOUNTPOINT + select BR2_PACKAGE_UTIL_LINUX_MOUNT + help + containerd is a daemon to control runC. + + https://github.com/docker/containerd + +comment "docker-containerd needs a toolchain w/ threads, wchar" + depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS + depends on BR2_USE_MMU + depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR |