From: Alex Kiernan <alex.kiernan@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [RFC PATCH 04/11] systemd: Add PACKAGECONFIG for sysvinit
Date: Tue, 17 Mar 2020 15:22:56 +0000 [thread overview]
Message-ID: <20200317152303.4600-5-alex.kiernan@gmail.com> (raw)
In-Reply-To: <20200317152303.4600-1-alex.kiernan@gmail.com>
Add sysvinit PACKAGECONFIG which is bound to DISTRO_FEATURES, this
then disables all sysvinit handling in systemd if it isn't present.
Consolidate sysvinit handling so that when it's disabled we exclude all
sysvinit features.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
---
meta/recipes-core/systemd/systemd_244.3.bb | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-core/systemd/systemd_244.3.bb b/meta/recipes-core/systemd/systemd_244.3.bb
index b26f3cb72d2b..7c33bde21a39 100644
--- a/meta/recipes-core/systemd/systemd_244.3.bb
+++ b/meta/recipes-core/systemd/systemd_244.3.bb
@@ -56,7 +56,7 @@ PAM_PLUGINS = " \
"
PACKAGECONFIG ??= " \
- ${@bb.utils.filter('DISTRO_FEATURES', 'efi ldconfig pam selinux usrmerge polkit', d)} \
+ ${@bb.utils.filter('DISTRO_FEATURES', 'efi ldconfig pam selinux sysvinit usrmerge polkit', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'wifi', 'rfkill', '', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xkbcommon', '', d)} \
acl \
@@ -165,6 +165,7 @@ PACKAGECONFIG[seccomp] = "-Dseccomp=true,-Dseccomp=false,libseccomp"
PACKAGECONFIG[selinux] = "-Dselinux=true,-Dselinux=false,libselinux,initscripts-sushell"
PACKAGECONFIG[smack] = "-Dsmack=true,-Dsmack=false"
PACKAGECONFIG[sysusers] = "-Dsysusers=true,-Dsysusers=false"
+PACKAGECONFIG[sysvinit] = "-Dsysvinit-path=${sysconfdir}/init.d -Dsysvrcnd-path=${sysconfdir},-Dsysvinit-path= -Dsysvrcnd-path="
# When enabled use reproducble build timestamp if set as time epoch,
# or build time if not. When disabled, time epoch is unset.
def build_epoch(d):
@@ -198,7 +199,6 @@ EXTRA_OEMESON += "-Dnobody-user=nobody \
-Dnobody-group=nobody \
-Drootlibdir=${rootlibdir} \
-Drootprefix=${rootprefix} \
- -Dsysvrcnd-path=${sysconfdir} \
-Ddefault-locale=C \
"
@@ -234,6 +234,7 @@ do_install() {
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/systemd-udevd
sed -i s%@UDEVD@%${rootlibexecdir}/systemd/systemd-udevd% ${D}${sysconfdir}/init.d/systemd-udevd
+ install -Dm 0755 ${S}/src/systemctl/systemd-sysv-install.SKELETON ${D}${systemd_unitdir}/systemd-sysv-install
fi
chown root:systemd-journal ${D}/${localstatedir}/log/journal
@@ -273,7 +274,6 @@ do_install() {
sed -i -e "s%^L! /etc/resolv.conf.*$%L! /etc/resolv.conf - - - - ../run/systemd/resolve/resolv.conf%g" ${D}${exec_prefix}/lib/tmpfiles.d/etc.conf
ln -s ../run/systemd/resolve/resolv.conf ${D}${sysconfdir}/resolv-conf.systemd
fi
- install -Dm 0755 ${S}/src/systemctl/systemd-sysv-install.SKELETON ${D}${systemd_unitdir}/systemd-sysv-install
# If polkit is setup fixup permissions and ownership
if ${@bb.utils.contains('PACKAGECONFIG', 'polkit', 'true', 'false', d)}; then
@@ -560,7 +560,8 @@ FILES_${PN}-dev += "${base_libdir}/security/*.la ${datadir}/dbus-1/interfaces/ $
RDEPENDS_${PN} += "kmod dbus util-linux-mount util-linux-umount udev (= ${EXTENDPKGV}) util-linux-agetty util-linux-fsck"
RDEPENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'serial-getty-generator', '', 'systemd-serialgetty', d)}"
-RDEPENDS_${PN} += "volatile-binds update-rc.d"
+RDEPENDS_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'update-rc.d', '', d)}"
+RDEPENDS_${PN} += "volatile-binds"
RRECOMMENDS_${PN} += "systemd-extra-utils \
systemd-compat-units udev-hwdb \
--
2.17.1
next prev parent reply other threads:[~2020-03-17 15:28 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-17 15:22 [RFC PATCH 00/11] Systemd 245 and related updates Alex Kiernan
2020-03-17 15:22 ` [RFC PATCH 01/11] systemd: Package udev rules explicitly Alex Kiernan
2020-03-18 3:02 ` Otavio Salvador
2020-03-18 17:18 ` Alex Kiernan
2020-03-18 23:18 ` Otavio Salvador
2020-03-17 15:22 ` [RFC PATCH 02/11] systemd: Reinstate systemd-hwdb-update.service Alex Kiernan
2020-03-18 3:03 ` Otavio Salvador
2020-03-17 15:22 ` [RFC PATCH 03/11] systemd: Add sch-fq-codel to RRECOMMENDS Alex Kiernan
2020-03-18 3:04 ` Otavio Salvador
2020-03-17 15:22 ` Alex Kiernan [this message]
2020-03-17 17:47 ` [RFC PATCH 04/11] systemd: Add PACKAGECONFIG for sysvinit Peter Kjellerstedt
2020-03-17 15:22 ` [RFC PATCH 05/11] systemd: Remove X11 related files when disabled Alex Kiernan
2020-03-18 3:05 ` Otavio Salvador
2020-03-17 15:22 ` [RFC PATCH 06/11] psplash: Set RemainAfterExit on systemd units Alex Kiernan
2020-03-18 3:06 ` Otavio Salvador
2020-03-17 15:22 ` [RFC PATCH 07/11] oeqa/runtime/cases: Disable and stop systemd-timesyncd Alex Kiernan
2020-03-18 3:06 ` Otavio Salvador
2020-03-17 15:23 ` [RFC PATCH 08/11] systemd: upgrade v244.3 -> v245 Alex Kiernan
2020-03-18 3:12 ` Otavio Salvador
2020-03-17 15:23 ` [RFC PATCH 09/11] systemd: Enable smack based on DISTRO_FEATURES Alex Kiernan
2020-03-18 3:07 ` Otavio Salvador
2020-03-17 15:23 ` [RFC PATCH 10/11] systemd: Enable audit " Alex Kiernan
2020-03-18 3:08 ` Otavio Salvador
2020-03-17 15:23 ` [RFC PATCH 11/11] systemd: Enable acl " Alex Kiernan
2020-03-18 3:13 ` Otavio Salvador
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200317152303.4600-5-alex.kiernan@gmail.com \
--to=alex.kiernan@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox