|
@@ -5,9 +5,12 @@ config BR2_PACKAGE_DOCKER_ENGINE
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # containerd -> runc
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # containerd -> runc
|
|
depends on BR2_USE_MMU # containerd
|
|
depends on BR2_USE_MMU # containerd
|
|
|
|
+ depends on BR2_PACKAGE_LIBSECCOMP_ARCH_SUPPORTS # libseccomp
|
|
|
|
+ depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 # libseccomp
|
|
select BR2_PACKAGE_CGROUPFS_MOUNT if !BR2_PACKAGE_SYSTEMD # runtime dependency
|
|
select BR2_PACKAGE_CGROUPFS_MOUNT if !BR2_PACKAGE_SYSTEMD # runtime dependency
|
|
select BR2_PACKAGE_CONTAINERD # runtime dependency
|
|
select BR2_PACKAGE_CONTAINERD # runtime dependency
|
|
select BR2_PACKAGE_IPTABLES # runtime dependency
|
|
select BR2_PACKAGE_IPTABLES # runtime dependency
|
|
|
|
+ select BR2_PACKAGE_LIBSECCOMP
|
|
help
|
|
help
|
|
Docker is a platform to build, ship,
|
|
Docker is a platform to build, ship,
|
|
and run applications as lightweight containers.
|
|
and run applications as lightweight containers.
|
|
@@ -48,8 +51,11 @@ config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
|
|
|
|
|
|
endif
|
|
endif
|
|
|
|
|
|
-comment "docker-engine needs a glibc or musl toolchain w/ threads"
|
|
|
|
|
|
+comment "docker-engine needs a glibc or musl toolchain w/ threads, headers >= 3.17"
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC
|
|
|
|
|
|
+ depends on BR2_PACKAGE_LIBSECCOMP_ARCH_SUPPORTS
|
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
+ BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
|
|
+ !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_USE_MMU
|