summaryrefslogtreecommitdiffstats
path: root/abs/core/alsa-utils/alsa
blob: 2581a9a4a9a9862c715697b56ac758029d7f7216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash

. /etc/rc.conf
. /etc/conf.d/alsa
. /etc/rc.d/functions

case "$1" in
  start)
    stat_busy "Restoring ALSA Levels"
    /usr/sbin/alsactl restore
    if [ $? -gt 0 ]; then
      stat_fail
    else
      stat_done
      add_daemon alsa
    fi

    POWERSAVE=${POWERSAVE:-0}
    if [ -e /sys/module/snd_ac97_codec/parameters/power_save \
	 -a $POWERSAVE -ne 0 ]; then
        echo $POWERSAVE > /sys/module/snd_ac97_codec/parameters/power_save
        echo 1 > /dev/dsp
    fi

    if [ -e /sys/module/snd_hda_intel/parameters/power_save \
	 -a $POWERSAVE -ne 0 ]; then
	echo $POWERSAVE > /sys/module/snd_hda_intel/parameters/power_save
        echo 1 > /dev/dsp
    fi
    ;;
  stop)
    stat_busy "Saving ALSA Levels"
    /usr/sbin/alsactl store
    if [ $? -gt 0 ]; then
      stat_fail
    else
      stat_done
      rm_daemon alsa
    fi
    ;;
  restart)
    $0 stop
    sleep 1
    $0 start
    ;;
  *)
    echo "usage: $0 {start|stop|restart}"  
esac