]> git.ipfire.org Git - ipfire-2.x.git/blob - src/initscripts/init.d/alsa
QoS-Graphen wieder eingebaut.
[ipfire-2.x.git] / src / initscripts / init.d / alsa
1 #!/bin/sh
2 # Begin $rc_base/init.d/alsa
3
4 # Based on sysklogd script from LFS-3.1 and earlier.
5 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6 # ALSA specific parts by Mark Hymers - markh@linuxfromscratch.org
7 # Stores mixer settings in the default location: /etc/asound.state
8
9 . /etc/sysconfig/rc
10 . $rc_functions
11
12 case "$1" in
13 start)
14 boot_mesg "Starting ALSA..."
15 modprobe snd_pcm_oss >/dev/null 2>&1 || failed=1
16 modprobe snd_mixer_oss >/dev/null 2>&1 || failed=1
17 (exit ${failed})
18 evaluate_retval
19 ;;
20 stop)
21 boot_mesg "Stopping ALSA... Saving volumes..."
22 loadproc /usr/sbin/alsactl store
23 ;;
24
25 *)
26 echo "Usage: $0 (start|stop)"
27 exit 1
28 ;;
29 esac
30
31 # End $rc_base/init.d/alsa