1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-10 00:40:43 +01:00
j1nx ba7c614593 [All] {WIP} Change over the quadlet files to use drop-in support.
At the moment these quadlets do not auto start at boot yet.
Still thinking about the best way forward in regards with the upcoming
template support and the overall ovos-containers buildroot package.
2024-01-09 11:59:46 +00:00

50 lines
1.2 KiB
Plaintext

menuconfig BR2_PACKAGE_OVOS_CONTAINERS
bool "Pre-install OVOS containers"
help
This is the system layer that prepares and
pre-install the required OVOS containers.
https://github.com/OpenVoiceOS/ovos-docker
if BR2_PACKAGE_OVOS_CONTAINERS
config BR2_PACKAGE_OVOS_CONTAINERS_ARCH
string "Container Arch"
help
Architecture for which we should be pull.
choice
prompt "Containers to pre-install"
default BR2_PACKAGE_OVOS_CONTAINERS_HEADLESS
config BR2_PACKAGE_OVOS_CONTAINERS_HEADLESS
bool "Headless"
help
This install all minimal required containers
to run the OVOS framework headless.
Install: - ovos-phal
- ovos-listener-dinkum
- ovos-audio
- ovos-core
- ovos-cli
config BR2_PACKAGE_OVOS_CONTAINERS_GUI
bool "Graphical User Interface"
help
This install all required containers
to run the OVOS framework with the QT5
Graphical User Interface enabled.
Install: - ovos-phal
- ovos-listener-dinkum
- ovos-audio
- ovos-core
- ovos-cli
- ovos-gui-websocket
- ovos-gui-shell
endchoice
endif