File alsasound of Package alsa
xxxxxxxxxx
1
#!/bin/sh
2
#
3
# alsasound This shell script takes care of starting and stopping
4
# the ALSA sound driver.
5
#
6
# This script requires /usr/sbin/alsactl program from alsa-utils package.
7
#
8
# Copyright (c) by Jaroslav Kysela <perex@suse.cz>
9
#
10
#
11
# This program is free software; you can redistribute it and/or modify
12
# it under the terms of the GNU General Public License as published by
13
# the Free Software Foundation; either version 2 of the License, or
14
# (at your option) any later version.
15
#
16
# This program is distributed in the hope that it will be useful,
17
# but WITHOUT ANY WARRANTY; without even the implied warranty of
18
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
# GNU General Public License for more details.
20
#
21
# You should have received a copy of the GNU General Public License
22
# along with this program; if not, write to the Free Software
23
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24
#
25
#
26
# For RedHat 5.0+:
27
# chkconfig: 2345 87 14
28
# description: ALSA driver
29
#
30
# modified to visually fit into SuSE 6.0+ by Philipp Thomas <pthomas@suse.de>
31
# further improvements by Bernd Kaindl, Olaf Hering and Takashi Iwai.
32
#
33
### BEGIN INIT INFO
34
# Provides: alsasound
35
# Required-Start: $local_fs
36
# Should-Start: $remote_fs resmgr
37
# Required-Stop: $local_fs
38
# Should-Stop: $remote_fs resmgr
39
# Default-Start: 2 3 5
40
# Default-Stop:
41
# Short-Description: Set up ALSA sound system
42
# Description: Loading ALSA drivers and store/restore the current setting
43
### END INIT INFO
44
45
. /etc/rc.status
46
. /etc/sysconfig/sound
47
48
# Shell functions sourced from /etc/rc.status:
49
# rc_check check and set local and overall rc status
50
# rc_status check and set local and overall rc status
51
# rc_status -v ditto but be verbose in local rc status
52
# rc_status -v -r ditto and clear the local rc status
53
# rc_failed set local and overall rc status to failed
54
# rc_reset clear local rc status (overall remains)
55
# rc_exit exit appropriate to overall rc status
56
57
# First reset status of this service
58
rc_reset
59
60
alsactl=/usr/sbin/alsactl
61
asoundcfg=/var/lib/alsa/asound.state
62
aconnect=/usr/bin/aconnect
63
64
get_drivers() {
65
/sbin/modprobe -c | \
66
grep -E "^[[:space:]]*alias[[:space:]]+snd-card-[[:digit:]]" | sort -u | \
67
while read a b card; do
68
echo $card
69
done
70
}
71
72
#
73
# insert all sound modules
74
#
75
load_modules() {
76
module_loaded=0
77
c=""
78
drivers=`get_drivers`
79
for i in $drivers; do
80
if [ $i != off ]; then
81
if [ x$c = x ]; then
82
echo -n ": "
83
c=1
84
fi
85
echo -n " ${i##snd-}"
86
/sbin/modprobe $i && module_loaded=1
87
fi
88
done
89
rc_status -v -r
90
test $module_loaded -eq 0 && return 1
91
return 0
92
}
93
94
#
95
# rest of start action
96
#
97
98
# manual load and force to store the status
99
start_all() {
100
echo -n "Starting sound driver"
101
load_modules
102
rc_status -r
103
}
104
105
do_kill() {
106
fuser $* /dev/admmidi* /dev/adsp* /dev/amidi* /dev/audio* /dev/dmfm* \
107
/dev/dmmidi* /dev/dsp* /dev/dspW* /dev/midi* /dev/mixer* /dev/music \
108
/dev/patmgr* /dev/sequencer* /dev/sndstat >/dev/null 2>&1
109
if [ -d /dev/snd ]; then
110
fuser $* /dev/snd/* >/dev/null 2>&1
111
fi
112
}
113
114
terminate() {
115
#
116
# Kill processes holding open sound devices
117
#
118
do_kill -TERM -k
119
sleep 1
120
do_kill -k
121
122
#
123
# remove all sequencer connections if any
124
#
125
if [ -f /proc/asound/seq/clients -a -x $aconnect ]; then
126
$aconnect --removeall
127
fi
128
}
129
130
# mute master to avoid clicks at unload/shutdown
131
mute_system() {
132
/usr/bin/amixer set Master mute >/dev/null 2>&1
133
}
134
135
#
136
# remove all sound modules
137
#
138
unload_modules() {
139
mute_system
140
mod=$(grep -m1 -E '^(snd[^ ]*|ac97_bus) [0-9]+ 0' /proc/modules)
141
while [ -n "$mod" ]; do
142
mod=${mod%% *}
143
/sbin/modprobe -r $mod
144
mod=$(grep -m1 -E '^(snd[^ ]*|ac97_bus) [0-9]+ 0' /proc/modules)
145
done
146
rc_failed 0
147
}
148
149
unload_all() {
150
echo -n "Shutting down sound driver"
151
terminate
152
unload_modules
153
rc_status -v
154
}
155
156
stop_all() {
157
if [ -d /proc/asound ]; then
158
$alsactl -g -f $asoundcfg store
159
unload_all
160
fi
161
}
162
163
# See how we were called.
164
case "$1" in
165
start)
166
if test "$PREVLEVEL" = "N" -a -d /proc/asound ; then
167
# re-run alsactl when /var is a seprate partition (bnc#700781)
168
case $asoundcfg in
169
/var/*)
170
grep -q " /var " /proc/mounts && \
171
$alsactl -F -f $asoundcfg restore >/dev/null 2>&1
172
;;
173
esac
174
else
175
start_all
176
fi
177
;;
178
stop)
179
if [ "$RUNLEVEL" = "6" -o "$RUNLEVEL" = "0" ]; then
180
if [ -d /proc/asound ]; then
181
$alsactl -f $asoundcfg store
182
# kill pulseaudio before muting the system (bnc#499445)
183
if killall -q -TERM pulseaudio; then
184
usleep 200
185
fi
186
mute_system
187
fi
188
else
189
stop_all
190
fi
191
;;
192
unload)
193
test -d /proc/asound && unload_all
194
;;
195
reload|restart)
196
stop_all
197
start_all
198
;;
199
status)
200
if [ -d /proc/asound ]; then
201
echo -n "ALSA sound driver loaded."
202
rc_status -v
203
else
204
echo -n "ALSA sound driver not loaded."
205
rc_status -u
206
fi
207
;;
208
*)
209
echo "Usage: $0 {start|stop|restart|reload|unload|status}"
210
exit 1
211
;;
212
esac
213
214
rc_exit
215