[oe-commits] Chia-I Wu : fastboot: alsa-state: Run init script earlier and in the background.

GIT User account git at amethyst.openembedded.net
Tue Dec 23 13:38:28 UTC 2008


Module: openembedded.git
Branch: john_lee/fastboot-devel
Commit: ab010c2ba1d2979baf5b2c395038de236cde0c2c
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=ab010c2ba1d2979baf5b2c395038de236cde0c2c

Author: Chia-I Wu <olv at openmoko.com>
Date:   Tue Oct 28 16:48:24 2008 +0800

fastboot: alsa-state: Run init script earlier and in the background.

---

 packages/alsa/alsa-state.bb         |    8 ++++++--
 packages/alsa/alsa-state/alsa-state |    2 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/packages/alsa/alsa-state.bb b/packages/alsa/alsa-state.bb
index ba030e4..9e7f157 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 c6bc1fd..84cdf03 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
 }
 





More information about the Openembedded-commits mailing list