From: Ross Burton Date: Thu, 5 Mar 2026 14:33:10 +0000 (+0000) Subject: systemd: add back warning for use with musl X-Git-Tag: uninative-5.1~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00a4c1104ee28640bc6fcee788fa9195c84bff11;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git systemd: add back warning for use with musl Add back a warning linking to the release notes to alert users that systemd with musl is still experimental and has limitations compared to glibc. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/systemd/systemd_259.1.bb b/meta/recipes-core/systemd/systemd_259.1.bb index 91deadef4f..34dd37ffff 100644 --- a/meta/recipes-core/systemd/systemd_259.1.bb +++ b/meta/recipes-core/systemd/systemd_259.1.bb @@ -904,3 +904,9 @@ pkg_prerm:udev-hwdb () { } require dlopen-deps.inc + +python do_warn_musl() { + if d.getVar('TCLIBC') == "musl": + bb.warn("Using systemd with musl is experimental, see https://github.com/systemd/systemd/blob/9ca4334/NEWS#L524 for details") +} +addtask warn_musl before do_configure