1config BR2_PACKAGE_BALENA_ENGINE 2 bool "balena-engine" 3 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 4 depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 5 depends on !BR2_TOOLCHAIN_USES_UCLIBC # no fexecve 6 depends on BR2_USE_MMU # util-linux 7 select BR2_PACKAGE_CGROUPFS_MOUNT if !BR2_PACKAGE_SYSTEMD # runtime 8 select BR2_PACKAGE_IPTABLES # runtime 9 select BR2_PACKAGE_SQLITE # runtime 10 select BR2_PACKAGE_UTIL_LINUX # runtime 11 select BR2_PACKAGE_UTIL_LINUX_BINARIES # runtime 12 select BR2_PACKAGE_UTIL_LINUX_MOUNT # runtime 13 select BR2_PACKAGE_UTIL_LINUX_MOUNTPOINT # runtime 14 select BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT # runtime 15 help 16 balenaEngine is a new container engine purpose-built for 17 embedded and IoT use cases and compatible with Docker 18 containers. 19 20 https://github.com/balena-os/balena-engine 21 22comment "balena-engine needs a glibc or musl toolchain w/ threads" 23 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 24 depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 25 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC 26 depends on BR2_USE_MMU 27