summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/alsa-state/alsa-state/alsa-state-init
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/alsa-state/alsa-state/alsa-state-init')
-rwxr-xr-xmeta/recipes-bsp/alsa-state/alsa-state/alsa-state-init39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-bsp/alsa-state/alsa-state/alsa-state-init b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state-init
new file mode 100755
index 0000000000..eee59cb321
--- /dev/null
+++ b/meta/recipes-bsp/alsa-state/alsa-state/alsa-state-init
@@ -0,0 +1,39 @@
1#! /bin/sh
2#
3# Copyright Matthias Hentges <devel@hentges.net> (c) 2007
4# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
5#
6# Filename: alsa-state
7# Date: 20070308 (YMD)
8
9# source function library
10. /etc/init.d/functions
11
12asound_restore(){
13 echo "ALSA: Restoring mixer settings..."
14 if test -x /usr/sbin/alsactl -a -e #STATEDIR#/asound.state
15 then
16 /usr/sbin/alsactl -f #STATEDIR#/asound.state restore &
17 fi
18}
19
20asound_store(){
21 echo "ALSA: Storing mixer settings..."
22 if test -x /usr/sbin/alsactl
23 then
24 /usr/sbin/alsactl -f #STATEDIR#/asound.state store
25 fi
26}
27
28case "$1" in
29start) asound_restore ;;
30stop) asound_store ;;
31 status)
32 status /usr/sbin/alsactl;
33 exit $?
34 ;;
35 *)
36 echo "Usage: /etc/init.d/alsa-state {start|stop|status}"
37 exit 1
38 ;;
39esac