|
@@ -3,6 +3,7 @@ config BR2_PACKAGE_DOCKER_ENGINE
|
|
|
depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
|
|
|
depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11 # docker-containerd -> runc
|
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # docker-containerd -> runc
|
|
|
depends on BR2_USE_MMU # docker-containerd
|
|
|
select BR2_PACKAGE_DOCKER_CONTAINERD # runtime dependency
|
|
@@ -50,8 +51,9 @@ config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
|
|
|
|
|
|
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.11"
|
|
|
depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS
|
|
|
depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS
|
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
+ !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11 || BR2_TOOLCHAIN_USES_UCLIBC
|
|
|
depends on BR2_USE_MMU
|