1config BR2_PACKAGE_QBEE_AGENT 2 bool "qbee-agent" 3 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 4 depends on BR2_USE_MMU # bash 5 depends on !BR2_STATIC_LIBS # shadow 6 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 # shadow 7 select BR2_PACKAGE_IPTABLES # runtime 8 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash 9 select BR2_PACKAGE_SHADOW # runtime 10 select BR2_PACKAGE_BASH # runtime 11 help 12 Qbee is a device management platform that comprise of an 13 open-source agent and a hosted SaaS backend. This config 14 installs pre-built static binaries made with the official 15 public signing key for qbee.io. The binaries will work 16 seamlessly with the qbee.io device management backend. 17 18 https://github.com/qbee-io/qbee-agent 19 https://qbee.io 20 21comment "qbee-agent needs a toolchain w/ headers >= 4.14, dynamic library" 22 depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS 23 depends on BR2_USE_MMU 24 depends on BR2_STATIC_LIBS || \ 25 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 26