All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rootfs-postcommands.bbclass: Change the default.target location
@ 2022-01-10 15:37 Peter Kjellerstedt
  2022-01-10 15:44 ` [OE-core] " Richard Purdie
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Kjellerstedt @ 2022-01-10 15:37 UTC (permalink / raw)
  To: openembedded-core

Rather than adding a default.target in /etc/systemd/system, modify the
one in /usr/lib/systemd/system.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/classes/rootfs-postcommands.bbclass | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index a3f96ef7ed..713ae5bfe0 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -218,8 +218,9 @@ postinst_enable_logging () {
 # Modify systemd default target
 #
 set_systemd_default_target () {
-	if [ -d ${IMAGE_ROOTFS}${sysconfdir}/systemd/system -a -e ${IMAGE_ROOTFS}${systemd_system_unitdir}/${SYSTEMD_DEFAULT_TARGET} ]; then
-		ln -sf ${systemd_system_unitdir}/${SYSTEMD_DEFAULT_TARGET} ${IMAGE_ROOTFS}${sysconfdir}/systemd/system/default.target
+	if [ "${SYSTEMD_DEFAULT_TARGET}" ] &&
+	   [ -e ${IMAGE_ROOTFS}${systemd_system_unitdir}/${SYSTEMD_DEFAULT_TARGET} ]; then
+		ln -sf ${SYSTEMD_DEFAULT_TARGET} ${IMAGE_ROOTFS}${systemd_system_unitdir}/default.target
 	fi
 }
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-10 20:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-10 15:37 [PATCH] rootfs-postcommands.bbclass: Change the default.target location Peter Kjellerstedt
2022-01-10 15:44 ` [OE-core] " Richard Purdie
2022-01-10 20:33   ` Peter Kjellerstedt
2022-01-10 20:39     ` Konrad Weihmann
2022-01-10 20:39     ` Alexander Kanavin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.