Files
Arnout Vandecappelle f3fb742641 package/qbee-agent: select BR2_PACKAGE_HOST_GO
Every golang package must select the host-go package. This will allow
the user to select the Go compiler variant (build from source or
pre-built).

The same pattern is used for Rust packages.

This was done for all golang packages in commit
58a291470a, but qbee-agent was missed.

Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
2024-06-19 22:07:53 +02:00

27 lines
1004 B
Plaintext

config BR2_PACKAGE_QBEE_AGENT
bool "qbee-agent"
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
depends on BR2_USE_MMU # bash
depends on !BR2_STATIC_LIBS # shadow
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 # shadow
select BR2_PACKAGE_HOST_GO
select BR2_PACKAGE_IPTABLES # runtime
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
select BR2_PACKAGE_SHADOW # runtime
select BR2_PACKAGE_BASH # runtime
help
Qbee is a device management platform that comprise of an
open-source agent and a hosted SaaS backend. This config
installs pre-built static binaries made with the official
public signing key for qbee.io. The binaries will work
seamlessly with the qbee.io device management backend.
https://github.com/qbee-io/qbee-agent
https://qbee.io
comment "qbee-agent needs a toolchain w/ headers >= 4.14, dynamic library"
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
depends on BR2_USE_MMU
depends on BR2_STATIC_LIBS || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14