]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - src/initscripts/init.d/alsa
Add wireless client for RED to startup process.
[ipfire-2.x.git] / src / initscripts / init.d / alsa
... / ...
CommitLineData
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
13 start)
14 boot_mesg "Starting ALSA... Restoring volumes..."
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 loadproc /usr/sbin/alsactl restore
20 ;;
21 stop)
22 boot_mesg "Stopping ALSA... Saving volumes..."
23 loadproc /usr/sbin/alsactl store
24 ;;
25
26 *)
27 echo "Usage: $0 (start|stop)"
28 exit 1
29 ;;
30esac
31
32# End $rc_base/init.d/alsa