mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-02 08:32:46 +01:00
* Add Makefile variable for Supervisor channel Allow to set the release channel pre-installed Home Assistant components like Supervisor and add-on are fetched from. This channel is then also used at runtime. * Use choice instead of string variable * Fix channel in Supervisor updater.json config * Add newlines
45 lines
822 B
Plaintext
45 lines
822 B
Plaintext
menuconfig BR2_PACKAGE_HASSIO
|
|
bool "Supervisor App"
|
|
help
|
|
This is the Application layer they build the
|
|
data partition with configurations.
|
|
|
|
https://github.com/home-assistant/supervisor
|
|
|
|
if BR2_PACKAGE_HASSIO
|
|
|
|
config BR2_PACKAGE_HASSIO_ARCH
|
|
string "Supervisor Arch"
|
|
help
|
|
Supervisor architecture which should be pull.
|
|
|
|
config BR2_PACKAGE_HASSIO_MACHINE
|
|
string "Supervisor Machine"
|
|
help
|
|
Machine to pull containers for (used for landing page).
|
|
|
|
choice
|
|
prompt "Default Channel"
|
|
default BR2_PACKAGE_HASSIO_CHANNEL_STABLE
|
|
help
|
|
Channel to use by default.
|
|
|
|
config BR2_PACKAGE_HASSIO_CHANNEL_STABLE
|
|
bool "Stable"
|
|
help
|
|
Stable channel.
|
|
|
|
config BR2_PACKAGE_HASSIO_CHANNEL_BETA
|
|
bool "Beta"
|
|
help
|
|
Beta channel.
|
|
|
|
config BR2_PACKAGE_HASSIO_CHANNEL_DEV
|
|
bool "Dev"
|
|
help
|
|
Dev channel.
|
|
|
|
endchoice
|
|
|
|
endif
|