From: Alex Kiernan Date: Thu, 17 Apr 2025 03:29:15 +0000 (+0000) Subject: connman: Create ${sysconfdir} for systemd images X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac582cb1f2b5b75695b69b07925257c335a76861;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git connman: Create ${sysconfdir} for systemd images Depending on what set of PACKAGECONFIG options you have, ${sysconfdir} may not have been created. Signed-off-by: Alex Kiernan Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-connectivity/connman/connman_1.44.bb b/meta/recipes-connectivity/connman/connman_1.44.bb index 33b1ca0680b..bbe3585dc72 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 }