From: Chia-I Wu Date: Tue, 28 Oct 2008 08:48:24 +0000 (+0800) Subject: fastboot: alsa-state: Run init script earlier and in the background. X-Git-Tag: Release-2010-05/1~4436^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3d2c04b0c9526ed1cd46016717f261527cd9e2d;p=openembedded.git fastboot: alsa-state: Run init script earlier and in the background. --- diff --git a/packages/alsa/alsa-state.bb b/packages/alsa/alsa-state.bb index ba030e4aab..9e7f157059 100644 --- a/packages/alsa/alsa-state.bb +++ b/packages/alsa/alsa-state.bb @@ -7,7 +7,7 @@ DESCRIPTION = "Alsa Scenario Files" LICENSE = "MIT" PV = "0.2.0" -PR = "r0" +PR = "r1" SRC_URI = "\ file://asound.conf \ @@ -19,7 +19,7 @@ SRC_URI = "\ inherit update-rc.d INITSCRIPT_NAME = "alsa-state" -INITSCRIPT_PARAMS = "defaults 10" +INITSCRIPT_PARAMS = "start 39 S ." do_install() { install -d ${D}${sysconfdir}/init.d @@ -50,5 +50,9 @@ pkg_postinst_${PN}() { then /usr/sbin/alsactl -f ${sysconfdir}/asound.state restore fi + # INITSCRIPT_PARAMS changed, so remove the old and + # install the new setting. + update-rc.d -f ${INITSCRIPT_NAME} remove + update-rc.d ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS} fi } diff --git a/packages/alsa/alsa-state/alsa-state b/packages/alsa/alsa-state/alsa-state index c6bc1fd494..84cdf03750 100755 --- a/packages/alsa/alsa-state/alsa-state +++ b/packages/alsa/alsa-state/alsa-state @@ -11,7 +11,7 @@ asound_restore(){ echo "ALSA: Restoring mixer settings..." if test -x /usr/sbin/alsactl -a -e /etc/asound.state then - /usr/sbin/alsactl -f /etc/asound.state restore + /usr/sbin/alsactl -f /etc/asound.state restore & fi }