Load Home Assistant OS component earlier (#6068)

Load the Home Assistant OS component earlier in the Supervisor
lifecycle to ensure that updater has board information available
when checking for updates. This makes sure that we have the latest
OS update information right on Supervisor start.
This commit is contained in:
Stefan Agner 2025-08-06 10:53:30 +02:00 committed by GitHub
parent fdde95d849
commit 8e4a87c751
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,6 +150,8 @@ class Core(CoreSysAttributes):
self.sys_dbus.load(),
# Load Host
self.sys_host.load(),
# Load HassOS
self.sys_os.load(),
# Adjust timezone / time settings
self._adjust_system_datetime(),
# Load mounts
@ -164,8 +166,6 @@ class Core(CoreSysAttributes):
self.sys_homeassistant.load(),
# Load CPU/Arch
self.sys_arch.load(),
# Load HassOS
self.sys_os.load(),
# Load Stores
self.sys_store.load(),
# Load Add-ons