From 896924c72e7b37c18819229e8160c34cdf4465c8 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Tue, 10 Jan 2012 08:32:08 -0800 Subject: alsa-state: move state files to localstatedir alsactl creates the state files in /var/lib/alsa by default so switch alsa-state to use files in that location. Further, update the alsa-state init script to have the location of the state files sed'ed into the script at do_install time (so as to remove hard coding of directory paths). Signed-off-by: Joshua Lock --- meta/recipes-bsp/alsa-state/alsa-state/alsa-state | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta/recipes-bsp/alsa-state/alsa-state') diff --git a/meta/recipes-bsp/alsa-state/alsa-state/alsa-state b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state index 84cdf0375..985079149 100755 --- a/meta/recipes-bsp/alsa-state/alsa-state/alsa-state +++ b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state @@ -9,9 +9,9 @@ asound_restore(){ echo "ALSA: Restoring mixer settings..." - if test -x /usr/sbin/alsactl -a -e /etc/asound.state + if test -x /usr/sbin/alsactl -a -e #STATEDIR#/asound.state then - /usr/sbin/alsactl -f /etc/asound.state restore & + /usr/sbin/alsactl -f #STATEDIR#/asound.state restore & fi } @@ -19,7 +19,7 @@ asound_store(){ echo "ALSA: Storing mixer settings..." if test -x /usr/sbin/alsactl then - /usr/sbin/alsactl -f /etc/asound.state store + /usr/sbin/alsactl -f #STATEDIR#/asound.state store fi } -- cgit v1.2.3