From 6f5804c0d134b5d6a8a5e246deafe143a1621a29 Mon Sep 17 00:00:00 2001 From: Alex Kiernan Date: Thu, 17 Apr 2025 03:29:15 +0000 Subject: [PATCH] connman: Create ${sysconfdir} for systemd images Depending on what set of PACKAGECONFIG options you have, ${sysconfdir} may not have been created. (From OE-Core rev: ac582cb1f2b5b75695b69b07925257c335a76861) Signed-off-by: Alex Kiernan Signed-off-by: Richard Purdie --- meta/recipes-connectivity/connman/connman_1.44.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-connectivity/connman/connman_1.44.bb b/meta/recipes-connectivity/connman/connman_1.44.bb index 33b1ca0680..bbe3585dc7 100644 --- a/meta/recipes-connectivity/connman/connman_1.44.bb +++ b/meta/recipes-connectivity/connman/connman_1.44.bb @@ -115,6 +115,7 @@ do_install:append() { # For read-only filesystem, do not create links during bootup if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then + install -d ${D}${sysconfdir} ln -sf ../run/connman/resolv.conf ${D}${sysconfdir}/resolv-conf.connman fi }