1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-05-18 14:39:11 +01:00

2995 Commits

Author SHA1 Message Date
Jan Čermák ab9bc32242 Squash Yellow DTS patches (#4710)
Squash all the patches to a single file per DTS without making any other
changes. The long patch series makes it harder to understand how the DTS
looks like without applying them all. We still have the repo history and
in-file comments if we need to understand individual changes.
2026-05-13 22:02:45 +02:00
Jan Čermák 1765a0d755 Bump nfs-utils to fix nfsrahead crashes (#4709)
* buildroot 93e375f6b8...a1db35a5fb (1):
  > package/nfs-utils: bump version to 2.8.7

The Buildroot bump to 2025.02.13 introduced regression in nfs-utils that
causes crashes of nfsrahead, triggering issues with data partition
resizing and other problems.

Fixes #4708
2026-05-13 17:23:48 +02:00
Jan Čermák 056e60df86 Backport U-Boot patch for Raspberry Pi MMC init on BCM2712 (#4707)
This backports patch currently waiting for a merge upstream that fixes
issue we saw with CM5 on Yellow, where the SD card init took over 120
seconds. We added a workaround in #3700 lowering this roughly to 20
seconds, but this is no longer needed, so revert this patch as well.
2026-05-13 14:20:05 +02:00
Jan Čermák ce33813f0a Enable pciutils on RPi4/RPi5-based targets (#4703)
Standard pciutils are required by rpi-eeprom-update. The Busybox version
is missing the -d flag, failing to show VL805 version. Enable pciutils
to fix it, to avoid adding HAOS-specific patch to rpi-eeprom-update.
2026-05-12 17:41:31 +02:00
Stefan Agner d76f3f4a6c systemd: Increase runtime watchdog timeout to 5 minutes (#4705)
Previously the watchdog timeout was set to "default", which makes
systemd adopt whatever timeout the underlying hardware driver
advertises. In practice this means very different behavior across
platforms: common x86-64 watchdogs (iTCO_wdt, i6300esb on virtual
systems) default to around 30 seconds, while the Raspberry Pi BCM2835
watchdog uses 15 seconds.

These short timeouts have proven too aggressive in the presence of
stalled network storage. PID1 enters the kernel through paths that can
park it in D-state on a dead NFS mount: mount_enter_mounting() calls
chase()/open_tree(), is_dir()/mkdir_p_label() on bind mount sources,
and mkdir_p_label()/unit_warn_if_dir_nonempty() on destinations all
end up in nfs_lookup/nfs_getattr/nfs_readdir, waiting for an RPC major
timeout. While PID1 is blocked it cannot ping the watchdog, and the
system reboots even though the underlying issue is a network storage
stall, not a kernel hang. Reported upstream as
https://github.com/systemd/systemd/issues/42050.

Set RuntimeWatchdogSec to 5 minutes to align all platforms on a
single, conservative value that tolerates NFS/CIFS RPC timeouts while
still recovering from genuine PID1 hangs.

A note on hardware limits: some watchdog drivers expose a
max_hw_heartbeat_ms instead of max_timeout. In that case the watchdog
core in drivers/watchdog/watchdog_dev.c arms a kernel timer that pings
the hardware in the background and multiplexes a longer userspace
timeout on top, so a 300s request is accepted even when the silicon
counter cannot represent it. The BCM2835 watchdog used on all
Raspberry Pi variants is exactly this case: the PM_WDOG_TIME_SET
register caps at ~16s of hardware heartbeat, but the driver migrated
to the max_hw_heartbeat_ms path in v6.8 (commit f33f5b1fd1be
"watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling", Dec 2023), so
WDIOC_SETTIMEOUT(300) is honored — the core re-pings the chip every
~15s automatically and only stops once userspace has been silent for
the full 300s. Drivers that still use max_timeout directly will reject
300s with -EINVAL and systemd falls back to the driver's own value;
this is no worse than the previous "default" behavior.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-12 16:45:02 +02:00
dependabot[bot] c2f352ddfb Bump release-drafter/release-drafter from 7.2.1 to 7.3.0 (#4704)
Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 7.2.1 to 7.3.0.
- [Release notes](https://github.com/release-drafter/release-drafter/releases)
- [Commits](https://github.com/release-drafter/release-drafter/compare/563bf132657a13ded0b01fcb723c5a58cdd824e2...c2e2804cc59f45f57076a99af580d0fedb697927)

---
updated-dependencies:
- dependency-name: release-drafter/release-drafter
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 09:24:54 +02:00
Jan Čermák 9f0f12735b Update build container to Debian Trixie (#4701)
The image for the build container was still using Bullseye which will be
EOL this August. Update to Trixie and adjust Dockerfile accordingly.
2026-05-11 17:26:21 +02:00
Jan Čermák 8283971fb0 Linux: Update kernel to 6.18.29 (#4700)
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.28
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.29
2026-05-11 13:43:33 +02:00
Jan Čermák bde6952ce5 Linux: Update kernel to 6.18.27 (#4691)
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.27
2026-05-07 20:25:30 +02:00
Jan Čermák 4929fdd318 Bump Buildroot to 2025.02.13 (#4689)
* buildroot 99bc39ee28...93e375f6b8 (1):
  > Merge tag '2025.02.13' into 2025.02.x-haos
2026-05-07 11:03:13 +02:00
Jan Čermák bb176184b2 Allow enter.sh to run without TTY (#4686)
Since enter.sh starts Docker with `--interactive --tty` flags, it fails
to run if started from another script which doesn't allocate TTY. Detect
if the parent shell is a terminal and if not, do not attempt to run in
interactive mode.
2026-05-07 11:02:44 +02:00
Jan Čermák 339b8ab2ba Update U-Boot to v2026.04 (#4685)
* Rebase fileenv on U-Boot v2026.04

* Update Green U-Boot to v2026.04, refresh patches

* Update U-Boot to v2026.04 on meson-based ODROIDs

* Update U-Boot to v2026.04 on Raspberry Pi

0013-configs-rpi-set-NR_DRAM_BANKS-to-8-to-accommodate-RA.patch was
merged upstream.

* Update Yellow U-Boot to v2026.04

* Update U-Boot to v2026.04 on Rockchip-based ODROIDs

* Update VIM3 U-Boot to v2026.04
2026-05-07 11:02:27 +02:00
zekiz774 9121e28917 Switch Raspberry Pi 4 default DRM driver from legacy FKMS to KMS (#4661)
* Fix cec issues on the Raspberry Pi 4 by switching from the legacy fkms to kms

The linux kernel didn't create /dev/cec0 and /dev/cec1 even though the hardware supports hdmi-cec. Fkms is not being updated anymore:

https://forums.raspberrypi.com/viewtopic.php?t=332742

* Disable firmware KMS setup in config.txt

Disable firmware KMS setup to use kernel defaults.
2026-05-06 15:18:09 +02:00
Stefan Agner 927f85a8cf Enable IPv6 on Docker default bridge (#4678)
Restores IPv6 forwarding that was dropped in d918dace. With ipv6=true,
dockerd enables net.ipv6.conf.all.forwarding at startup (and sets the
IPv6 FORWARD chain policy to DROP), matching IPv4 behavior. Fixes the
regression worked around in supervisor#6720 (issue #4630).

Note: Supervisor since
https://github.com/home-assistant/supervisor/pull/6720 (shipped with
Supervisor 2026.04.0) already enables IPv6 explicitly on the hassio
bridge by default, so this OS-level change is not strictly required to
restore IPv6 forwarding. It is still the right thing to do - letting
Docker take control of IPv6 forwarding (just like IPv4) is what the
original commit intended, and it ensures correct behavior independent
of Supervisor's defaults.
2026-05-06 15:17:04 +02:00
dependabot[bot] 8228f40a10 Bump release-drafter/release-drafter from 7.2.0 to 7.2.1 (#4680)
Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 7.2.0 to 7.2.1.
- [Release notes](https://github.com/release-drafter/release-drafter/releases)
- [Commits](https://github.com/release-drafter/release-drafter/compare/5de93583980a40bd78603b6dfdcda5b4df377b32...563bf132657a13ded0b01fcb723c5a58cdd824e2)

---
updated-dependencies:
- dependency-name: release-drafter/release-drafter
  dependency-version: 7.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-06 15:17:01 +02:00
Jan Čermák 6d3be0776f Merge branch 'main' into dev 2026-05-06 08:46:54 +02:00
Jan Čermák efd6a9e47c Bump OS to release version 17.3 17.3 2026-05-05 17:31:07 +02:00
Jan Čermák 9636b8a379 Bump OS to pre-release version 17.3.rc1 17.3.rc1 2026-05-04 17:26:53 +02:00
Jan Čermák 5bdb188496 Backport algif_aead patches to RPi 6.12.75 kernel
Backport patches required for clean application of
8b88d99341f139e23bdeb1027a2a3ae10d341d82 (mainline
f3d603dc3bdcf9ae47cc21e0daec706d7a5) to Raspberry Pi patchset. Can be
dropped after we update RPi either to v6.12.85+ or v6.18.y.
2026-05-04 17:26:20 +02:00
Jan Čermák 6543aacc79 Linux: Update kernel to 6.12.85
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.78
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.79
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.80
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.81
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.82
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.83
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.84
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.85
2026-05-04 17:26:10 +02:00
Jan Čermák c8ec98f2dd Linux: Update kernel to 6.18.26 (#4674)
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.25
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.26
2026-04-30 15:39:04 +02:00
Jan Čermák b08c0b80a0 Add RTL8125D rev.b firmware (#4675)
* buildroot 6a8d7060f2...99bc39ee28 (1):
  > package/linux-firmware: add RTL8125D rev.b firmware

Fixes #4587
2026-04-30 15:38:55 +02:00
Jan Čermák 01f1f8a322 Update linux-firmware to 20260410 (#4668)
* buildroot bc2fe6e38c...6a8d7060f2 (19):
  > package/linux-firmware: adjust for new iwlwifi Bz numbering scheme
  > package/linux-firmware: Add option to install ath11k (WC68655) firmware
  > package/linux-firmware: bump version to 20260410
  > package/linux-firmware: bump version to 20260309
  > package/linux-firmware: bump version to 20260221
  > package/linux-firmware: add option to select Airoha EN8811H
  > package/linux-firmware: bump version to 20251011
  > package/linux-firmware: Add option to install cadence MHDP8546 DPI/DP bridge firmware
  > package/linux-firmware: add option for ath12k firmwares
  > package/linux-firmware: add option for mediatek MT7986 firmware (WiFi)
  > package/linux-firmware: add Intel 7 WiFi firmware
  > package/linux-firmware: add support for PowerVR rogue
  > package/linux-firmware: add option for Chips&Media Wave 521C
  > package/linux-firmware: bump version to 20250627
  > package/linux-firmware: bump version to 20250509
  > package/linux-firmware: add support for amd-ucode
  > package/linux-firmware: add option for Intel NPU firmware
  > package/linux-firmware: bump version to 20250311
  > package/linux-firmware: add option for Intel Xe firmware
2026-04-28 22:26:13 +02:00
Stefan Agner bc7adb328c Fix ODROID-C2 USB hotplug (#4669)
It seems that USB autosuspend interacting badly with dwc2 on Meson-GXBB:
with nothing plugged into the GL852G's downstream ports at boot, the hub
idle-suspends, and dwc2 on this SoC doesn't reliably wake on a downstream
port-status-change. Devices present at boot enumerate before autosuspend
kicks in.

Fix by disabling USB autosuspend on this particular board.
2026-04-28 22:24:09 +02:00
dependabot[bot] ae74dad971 Bump shogo82148/actions-upload-release-asset from 1.10.0 to 1.10.1 (#4666)
Bumps [shogo82148/actions-upload-release-asset](https://github.com/shogo82148/actions-upload-release-asset) from 1.10.0 to 1.10.1.
- [Commits](https://github.com/shogo82148/actions-upload-release-asset/compare/96bc1f0cb850b65efd58a6b5eaa0a69f88d38077...ee2ae851dc5d938b90075b3ef12c540abfd1ee72)

---
updated-dependencies:
- dependency-name: shogo82148/actions-upload-release-asset
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 18:42:10 +02:00
Jan Čermák 34f6827768 Linux: Update kernel to 6.18.24 (#4664)
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.23
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.24
2026-04-24 17:01:23 +02:00
Jan Čermák f2bea2ef53 Restructure Linux version docs page (#4663)
Split boards per used source of the Linux kernel and sort them
alphabetically. This should reduce occasional collisions when both
sources are updated, and make the docs bit more explicit.
2026-04-24 11:56:36 +02:00
Jan Čermák 833aa4dfe4 Update all arm64 boards (except RPi) to Linux 6.18 (#4662)
* Update generic-aarch64 to Linux 6.18

* Update green to Linux 6.18

Patches refreshed with --zero-commit flag and rockchip defconfig
regenerated using savedefconfig from 6.12 version.

* Update Rockchip-based ODROIDs (M1, M1S) to Linux 6.18

* Update Amlogic/meson ODROIDs to Linux 6.18

Refresh patches with --zero-commit, regenerate defconfig and move all
patches from top-level odroid directory to patches-meson, as they're
essentially used and applied only for these SoCs.

* Update VIM3 to Linux 6.18

Defconfig regenerated using savedefconfig (without fragments).

* Update documented kernel version for updated boards

* Remove Rockchip base config for 6.12
2026-04-24 10:15:14 +02:00
dependabot[bot] 7112a0607d Bump actions/cache from 5.0.4 to 5.0.5 (#4657)
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.4 to 5.0.5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/668228422ae6a00e4ad889ee87cd7109ec5666a7...27d5ce7f107fe9357f9df03efb73ab90386fccae)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: 5.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 08:47:12 +02:00
Jan Čermák e25805b95a Update Linux to 6.18 for x86 targets (#4650)
* Update Linux to 6.18 for x86 targets

Update ova and generic_86_64 to Linux 6.18.22. Rebase the IPv6
reachability probe patch (which still applies on 6.12 with offsets) and
update config fragments.

The rtl8812au-aircrack-ng stays disabled as it no longer builds and is
deprecated by upstream rtw88 which supports those cards.

The fragemnts stay mostly the same with this diff:

  --- ../v6.12.y/docker.config    2025-03-18 15:05:42.161955925 +0100
  +++ docker.config       2026-04-16 15:01:30.346942217 +0200
  @@ -45,3 +44,0 @@
  -CONFIG_IP6_NF_FILTER=y
  -CONFIG_IP6_NF_MANGLE=y
  -CONFIG_IP6_NF_NAT=y
  @@ -48,0 +46,3 @@
  +CONFIG_NETFILTER_XT_NAT=y
  +CONFIG_NETFILTER_XT_TARGET_REDIRECT=y
  +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=y
  @@ -56,4 +55,0 @@
  -CONFIG_IP_NF_FILTER=y
  -CONFIG_IP_NF_NAT=y
  -CONFIG_IP_NF_TARGET_MASQUERADE=y
  -CONFIG_IP_NF_TARGET_REDIRECT=y
  --- ../v6.12.y/hassos.config    2026-01-16 13:49:13.879830313 +0100
  +++ hassos.config       2026-04-16 15:08:29.248341382 +0200
  @@ -30,2 +29,0 @@
  -CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC=y
  -CONFIG_ZSMALLOC=y

The IP_NF/IP6_NF depend on IP_NF_IPTABLES_LEGACY which is now by default
disabled. Since we use iptables-nft, those should not be needed, but
missing NETFILTER_XT options have been enabled to replace some of them.

ZSMALLOC is now enabled by default with ZSWAP and the ZSWAP option was
removed in related change in 2ccd9fecd9163f168761d4398564c81554f636ef.

CONFIG_MHP_DEFAULT_ONLINE_TYPE_ONLINE_AUTO is a direct replacement of
CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE as suggested in linux commit
44d46b76c3a4b514a0cc9dab147ed430e5c1d699

> mm: add build-time option for hotplug memory default online type
> ...
> Existing users of CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y should use
> CONFIG_MHP_DEFAULT_ONLINE_TYPE_ONLINE_AUTO.

* Fix build of the gasket driver with Linux 6.18

Backport patch from an unmerged PR to fix build with 6.18.

* Update package/rtl88x2bu to fix 6.18 build

Update the OOT driver to the latest version to fix build.

* Update Buildroot's package/rtl8821cu to fix build

* buildroot c4b580fde8...bc2fe6e38c (4):
  > package/rtl8821cu: bump to version 2025-12-14
  > package/rtl8821cu: fix build failure with Linux 6.17
  > package/rtl8821cu: fix build failure with Linux 6.16
  > package/rtl8821cu: bump to version 2025-05-08

* Replace rtl8812au-aircrack-ng by upstream kernel drivers

The drivers also need firmware - for 8812/8821 the firmware files are
already present, for 8814 the firmare needs linux-firmware update to
20250410 or newer which will install it using the wildcard pattern.
2026-04-20 17:30:52 +02:00
Jan Čermák a0b3eb6a75 Update v4l2loopback to v0.15.3 (#4648)
* buildroot 1751487954...c4b580fde8 (1):
  > package/v4l2loopback: bump version to 0.15.3
2026-04-16 13:05:46 +02:00
Jan Čermák 6cdc483f21 Add support for transitional attribute to kconfiglib (#4649)
For checking newer kernels, we need support for the transitional symbol
introdued in kernel commit f9afce4f32e9a120fc902fa6c9e0b90ad799a6ec.
Apply change taken from Yocto project's yocto-kernel-tools:
https://git.yoctoproject.org/yocto-kernel-tools/commit/Kconfiglib/kconfiglib.py?id=f589e1df23251d8319063da0a61c1016b2a0bf85

Co-authored-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2026-04-16 11:49:09 +02:00
Jan Čermák 133983bd6b Linux: Update kernel to 6.12.81 (#4646)
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.80
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.81
2026-04-14 15:40:00 +02:00
Jens Maus 7adb9ecca4 Bump rpi-rf-mod to 1.14.0 (ec17153) (#4644) 2026-04-14 15:39:48 +02:00
Jens Maus 69b9c25a71 Bump generic-raw-uart to 1.33 and add kernel 6.14+ patches. (#4643) 2026-04-14 15:39:31 +02:00
Jan Čermák afaf8daa18 Update Go to v1.25.9 (#4645)
* buildroot c0e24ce54b...1751487954 (1):
  > package/go: security bump to version 1.25.9
2026-04-14 15:34:15 +02:00
dependabot[bot] 9b9304cb2b Bump actions/github-script from 8.0.0 to 9.0.0 (#4638)
Bumps [actions/github-script](https://github.com/actions/github-script) from 8.0.0 to 9.0.0.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/ed597411d8f924073f98dfc5c65a23a2325f34cd...3a2844b7e9c422d3c10d287c895573f7108da1b3)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-13 17:17:27 +02:00
dependabot[bot] 401166cbb5 Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#4639)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/bbbca2ddaa5d8feaa63e36b76fdaad77386f024f...043fb46d1a93c77aae656e7c1c64a875d1fc6a0a)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-13 17:17:14 +02:00
dependabot[bot] 4e1e0b7e2f Bump docker/build-push-action from 7.0.0 to 7.1.0 (#4640)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 7.0.0 to 7.1.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/d08e5c354a6adb9ed34480a06d141179aa583294...bcafcacb16a39f128d818304e6c9c0c18556b85f)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-13 17:17:04 +02:00
dependabot[bot] c70a6f29a2 Bump release-drafter/release-drafter from 7.1.1 to 7.2.0 (#4641)
Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 7.1.1 to 7.2.0.
- [Release notes](https://github.com/release-drafter/release-drafter/releases)
- [Commits](https://github.com/release-drafter/release-drafter/compare/139054aeaa9adc52ab36ddf67437541f039b88e2...5de93583980a40bd78603b6dfdcda5b4df377b32)

---
updated-dependencies:
- dependency-name: release-drafter/release-drafter
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-13 17:16:52 +02:00
Jan Čermák d49cdef897 Merge branch 'main' into dev 2026-04-07 10:59:32 +02:00
Jan Čermák 41425d0c09 Bump OS to release version 17.2 17.2 2026-04-07 10:32:46 +02:00
Klara 0d559bb286 Disable UAS for RTL9201 (UGREEN USB3.0 HDD enclosure) (#4610)
Disable UAS on Raspberry Pi for this chipset as it's reported to cause issues.

Fixes #4609
2026-04-07 09:41:04 +02:00
dependabot[bot] 3c933ceb5a Bump docker/login-action from 4.0.0 to 4.1.0 (#4623)
Bumps [docker/login-action](https://github.com/docker/login-action) from 4.0.0 to 4.1.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/b45d80f862d83dbcd57f89517bcf500b2ab88fb2...4907a6ddec9925e35a0a9e82d7399ccc52663121)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 09:25:04 +02:00
Jan Čermák 131e4fcc74 Linux: Update kernel to 6.12.79 (#4621)
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.78
* https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.79
2026-03-31 17:50:07 +02:00
Jan Čermák ff5de11ad7 Bump OS to pre-release version 17.2.rc2 17.2.rc2 2026-03-31 09:05:14 +02:00
Jan Čermák 057fcd9488 Update to Docker v29.3.1, runC v1.3.5, containerd v2.2.2 (#4614)
* buildroot fb7fbb2f72...c0e24ce54b (4):
  > package/runc: bump version to v1.3.5
  > package/containerd: bump version to v2.2.2
  > package/docker-cli: bump version to v29.3.1
  > package/docker-engine: bump version to v29.3.1

(cherry picked from commit 9e95f6d453)
2026-03-31 09:04:40 +02:00
Jan Čermák 88210781ad Update Go to v1.25.8 (#4612)
* buildroot 9c02bc2922...fb7fbb2f72 (1):
  > package/go: security bump to version 1.25.8

(cherry picked from commit eaec1fe520)
2026-03-31 09:04:30 +02:00
Stefan Agner f2849d81db Add patches with fixes for Docker engine (#4605)
This adds two patches with fixes/improvements for the Docker engine

- `0001-daemon-respect-explicit-AppArmor-profile-on-privileg.patch`:
  Makes sure that AppArmor rules are always loaded, also on reboot. This
  is a long standing bug in Docker and affects Supervisor which is a
  privileged container with an AppArmor profile.
  Upstream PR: https://github.com/moby/moby/pull/52215
- `0002-bridge-protect-bridge-subnet-from-direct-external-ac.patch`:
  Makes sure that the whole network (including gateway IP) of any Docker
  bridge network in NAT mode is firewalled from access from the outside.
  This essentially implements on Docker level what Supervisor applies on
  startup with https://github.com/home-assistant/supervisor/pull/6650.
  Upstream PR: https://github.com/moby/moby/pull/52224.

(cherry picked from commit 50c1efdb3a)
2026-03-31 09:04:22 +02:00
dependabot[bot] 309878abcd Bump mikepenz/action-junit-report from 6.3.1 to 6.4.0 (#4615)
Bumps [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report) from 6.3.1 to 6.4.0.
- [Release notes](https://github.com/mikepenz/action-junit-report/releases)
- [Commits](https://github.com/mikepenz/action-junit-report/compare/49b2ca06f62aa7ef83ae6769a2179271e160d8e4...bccf2e31636835cf0874589931c4116687171386)

---
updated-dependencies:
- dependency-name: mikepenz/action-junit-report
  dependency-version: 6.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-30 16:54:30 +02:00