50 lines
1.2 KiB
Plaintext
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
|