From 8e4a87c751fe71f162cc6e7fca2d38b08f03bfb2 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Wed, 6 Aug 2025 10:53:30 +0200 Subject: [PATCH] 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. --- supervisor/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisor/core.py b/supervisor/core.py index 20e04d968..1b9dd2d65 100644 --- a/supervisor/core.py +++ b/supervisor/core.py @@ -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