From 540b2d5ff756baffd7f958133dc311afd5e6caa1 Mon Sep 17 00:00:00 2001 From: Florin Sarbu Date: Wed, 22 Apr 2026 11:58:49 +0000 Subject: [PATCH] os-extra-firmware: Make the systemd service ExecStart the script directly Explicitly calling the sh interpreter makes the service fail on Dunfell based devices. Change-type: patch Signed-off-by: Florin Sarbu --- .../os-extra-firmware/os-extra-firmware.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-balena-common/recipes-support/os-extra-firmware/os-extra-firmware/os-extra-firmware.service b/meta-balena-common/recipes-support/os-extra-firmware/os-extra-firmware/os-extra-firmware.service index 1365c14acf..d915fcaa90 100644 --- a/meta-balena-common/recipes-support/os-extra-firmware/os-extra-firmware/os-extra-firmware.service +++ b/meta-balena-common/recipes-support/os-extra-firmware/os-extra-firmware/os-extra-firmware.service @@ -9,7 +9,7 @@ Conflicts=umount.target [Service] Type=oneshot RemainAfterExit=yes -ExecStart=@BASE_BINDIR@/sh @BINDIR@/os-extra-firmware +ExecStart=@BINDIR@/os-extra-firmware [Install] WantedBy=multi-user.target