From: Matt Madison Date: Sun, 5 Apr 2026 13:40:49 +0000 (-0700) Subject: systemd: fix packaging of 'run0' X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b4c689a91c048f588b2993aafc26876e8ca109f;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git systemd: fix packaging of 'run0' The 'run0' command was introduced with systemd v256. Its implementation is in the 'systemd-run' program, with ${bindir}/run0 installed as a symlink to that program. However, when the upgrade to v256 was done (in commit 89b75b46371d5e9172cb496b461824d8551a2af5), the run0 symlink wasn't packaged into systemd-extra-utils (where systemd-run is packaged), introducing a hard RDEPENDS from systemd -> systemd-extra-utils due to the symlink. Fix this, and return to the softer RRECOMMENDS dependency between systemd and systemd-extra-utils, by packaging run0 into systemd-extra-utils. Signed-off-by: Matt Madison Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/systemd/systemd_259.5.bb b/meta/recipes-core/systemd/systemd_259.5.bb index 4c758baca6..6987d4ad54 100644 --- a/meta/recipes-core/systemd/systemd_259.5.bb +++ b/meta/recipes-core/systemd/systemd_259.5.bb @@ -562,6 +562,7 @@ RRECOMMENDS:${PN}-container += "\ FILES:${PN}-extra-utils = "\ ${base_bindir}/systemd-escape \ ${base_bindir}/systemd-inhibit \ + ${bindir}/run0 \ ${bindir}/systemd-detect-virt \ ${bindir}/systemd-dissect \ ${bindir}/systemd-path \