|
|
@@ -3,11 +3,12 @@ config BR2_PACKAGE_DOCKER_ENGINE
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_2
|
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # containerd -> runc
|
|
|
depends on BR2_USE_MMU # containerd
|
|
|
+ depends on !BR2_PACKAGE_CGROUPFS_MOUNT
|
|
|
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_V2_MOUNT if !BR2_PACKAGE_SYSTEMD # runtime dependency
|
|
|
select BR2_PACKAGE_CONTAINERD # runtime dependency
|
|
|
select BR2_PACKAGE_HOST_GO
|
|
|
select BR2_PACKAGE_IPTABLES # runtime dependency
|
|
|
@@ -22,13 +23,9 @@ if BR2_PACKAGE_DOCKER_ENGINE
|
|
|
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_BTRFS
|
|
|
bool "btrfs filesystem driver"
|
|
|
- depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
|
|
|
help
|
|
|
Build the btrfs filesystem driver for Docker.
|
|
|
|
|
|
-comment "brtfs filesystem driver needs headers >= 4.12"
|
|
|
- depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
|
|
|
-
|
|
|
config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_DEVICEMAPPER
|
|
|
bool "devicemapper filesystem driver"
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2
|
|
|
@@ -83,11 +80,11 @@ config BR2_PACKAGE_DOCKER_ENGINE_DOCKER_INIT_NAME
|
|
|
|
|
|
endif
|
|
|
|
|
|
-comment "docker-engine needs a glibc or musl toolchain w/ threads, headers >= 3.17"
|
|
|
+comment "docker-engine needs a glibc or musl toolchain w/ threads, headers >= 5.2"
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
|
|
|
depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS
|
|
|
depends on BR2_PACKAGE_LIBSECCOMP_ARCH_SUPPORTS
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
|
- !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
|
|
|
+ !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_2
|
|
|
depends on BR2_USE_MMU
|