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_UTIL_LINUX # runtime 10 select BR2_PACKAGE_UTIL_LINUX_BINARIES # runtime 11 select BR2_PACKAGE_UTIL_LINUX_MOUNT # runtime 12 select BR2_PACKAGE_UTIL_LINUX_MOUNTPOINT # runtime 13 select BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT # runtime 14 help 15 balenaEngine is a new container engine purpose-built for 16 embedded and IoT use cases and compatible with Docker 17 containers. 18 19 https://github.com/balena-os/balena-engine 20 21comment "balena-engine needs a glibc or musl toolchain w/ threads" 22 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 23 depends on BR2_PACKAGE_HOST_GO_TARGET_CGO_LINKING_SUPPORTS 24 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_UCLIBC 25 depends on BR2_USE_MMU 26