]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/init.d/alsa
Korrektur MPFire CGI
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / alsa
CommitLineData
99f3c72f
MT
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
12case "$1" in
51f3b7f5
MT
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 ;;
99f3c72f
MT
20 stop)
21 boot_mesg "Stopping ALSA... Saving volumes..."
22 loadproc /usr/sbin/alsactl store
23 ;;
24
25 *)
51f3b7f5 26 echo "Usage: $0 (start|stop)"
99f3c72f
MT
27 exit 1
28 ;;
29esac
30
31# End $rc_base/init.d/alsa