summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2014-11-09 15:03:41 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-25 13:03:29 +0000
commit3857f24e2d1c7d2e11cfd11a404f7a9e0a21baf4 (patch)
treeb3123f57a2213994b21e48377bfd0642a6fe4d4d
parent2e13f27e38a7e366e8ce12bd22aa072a7bf89068 (diff)
downloadpoky-3857f24e2d1c7d2e11cfd11a404f7a9e0a21baf4.tar.gz
procps: install symlink under /etc/sysctl.d in case of systemd
Install /etc/sysctl.d/99-sysctl.conf symlink in case of systemd so that /etc/sysctl.conf is taken into consideration by systemd-sysctl. (From OE-Core rev: a32869fcbcb5f31741a32fdca14e7f38c2abace6) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/procps/procps_3.2.8.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/procps/procps_3.2.8.bb b/meta/recipes-extended/procps/procps_3.2.8.bb
index 6211a7c955..fcfde194f1 100644
--- a/meta/recipes-extended/procps/procps_3.2.8.bb
+++ b/meta/recipes-extended/procps/procps_3.2.8.bb
@@ -28,6 +28,10 @@ EXTRA_OEMAKE = 'CFLAGS="${CFLAGS} -I${STAGING_INCDIR}" \
28do_install_append () { 28do_install_append () {
29 install -d ${D}${sysconfdir} 29 install -d ${D}${sysconfdir}
30 install -m 0644 ${WORKDIR}/sysctl.conf ${D}${sysconfdir}/sysctl.conf 30 install -m 0644 ${WORKDIR}/sysctl.conf ${D}${sysconfdir}/sysctl.conf
31 if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
32 install -d ${D}${sysconfdir}/sysctl.d
33 ln -sf ../sysctl.conf ${D}${sysconfdir}/sysctl.d/99-sysctl.conf
34 fi
31} 35}
32 36
33CONFFILES_${PN} = "${sysconfdir}/sysctl.conf" 37CONFFILES_${PN} = "${sysconfdir}/sysctl.conf"