summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/alsa-state
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/alsa-state')
-rw-r--r--meta/recipes-bsp/alsa-state/alsa-state.bb11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-bsp/alsa-state/alsa-state.bb b/meta/recipes-bsp/alsa-state/alsa-state.bb
index d2f8ea2be1..17c2d002d5 100644
--- a/meta/recipes-bsp/alsa-state/alsa-state.bb
+++ b/meta/recipes-bsp/alsa-state/alsa-state.bb
@@ -18,6 +18,13 @@ SRC_URI = "\
18 file://alsa-state-init \ 18 file://alsa-state-init \
19" 19"
20 20
21# As the recipe doesn't inherit systemd.bbclass, we need to set this variable
22# manually to avoid unnecessary postinst/preinst generated.
23python __anonymous() {
24 if not bb.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, d):
25 d.setVar("INHIBIT_UPDATERCD_BBCLASS", "1")
26}
27
21inherit update-rc.d 28inherit update-rc.d
22 29
23INITSCRIPT_NAME = "alsa-state" 30INITSCRIPT_NAME = "alsa-state"
@@ -54,9 +61,5 @@ pkg_postinst_${PN}() {
54 then 61 then
55 ${sbindir}/alsactl -f ${localstatedir}/lib/alsa/asound.state restore 62 ${sbindir}/alsactl -f ${localstatedir}/lib/alsa/asound.state restore
56 fi 63 fi
57 # INITSCRIPT_PARAMS changed, so remove the old and
58 # install the new setting.
59 update-rc.d -f ${INITSCRIPT_NAME} remove
60 update-rc.d ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS}
61 fi 64 fi
62} 65}