From: Chen Qi Date: Thu, 13 Feb 2014 07:16:25 +0000 (-0500) Subject: alsa-state: do not install the init script in case of systemd X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7394b4a34e973a1655132709c054a272cf367252;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git alsa-state: do not install the init script in case of systemd As the corresponding service files have already been provided by the alsa-utils-alsactl package, the init script is really not needed. So we do not install it in a systemd based image. [YOCTO #4420] Signed-off-by: Chen Qi --- diff --git a/meta/recipes-bsp/alsa-state/alsa-state.bb b/meta/recipes-bsp/alsa-state/alsa-state.bb index 552fcfc0222..6dbc1aa66fa 100644 --- a/meta/recipes-bsp/alsa-state/alsa-state.bb +++ b/meta/recipes-bsp/alsa-state/alsa-state.bb @@ -18,16 +18,20 @@ SRC_URI = "\ file://alsa-state-init \ " -inherit update-rc.d +inherit update-rc.d systemd INITSCRIPT_NAME = "alsa-state" INITSCRIPT_PARAMS = "start 39 S . stop 31 0 6 ." do_install() { - sed -i -e "s:#STATEDIR#:${localstatedir}/lib/alsa:g" ${WORKDIR}/alsa-state-init - install -d ${D}${sysconfdir}/init.d - install -m 0755 ${WORKDIR}/alsa-state-init ${D}${sysconfdir}/init.d/alsa-state - + # The alsa-utils-alsactl already provides corresponding systemd unit files. + # So the init script should not be installed in a systemd based image. + install -d ${D}${sysconfdir} + if ${@base_contains('DISTRO_FEATURES','systemd','false','true',d)}; then + sed -i -e "s:#STATEDIR#:${localstatedir}/lib/alsa:g" ${WORKDIR}/alsa-state-init + install -d ${D}${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/alsa-state-init ${D}${sysconfdir}/init.d/alsa-state + fi install -d ${D}/${localstatedir}/lib/alsa install -m 0644 ${WORKDIR}/asound.conf ${D}${sysconfdir} install -m 0644 ${WORKDIR}/*.state ${D}${localstatedir}/lib/alsa