summaryrefslogtreecommitdiff
blob: 5522d88dc691cc56de745ecd51b72540f1eee00a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/sbin/runscript
# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/files/alsasound,v 1.7 2004/02/07 05:00:03 eradicator Exp $
#
# Gentoo users: add this script to 'boot' run level.
# ==================================================
#
# alsasound     	This shell script takes care of starting and stopping
#               	the ALSA sound driver.
#
# This script requires /usr/sbin/alsactl and /usr/bin/aconnect programs
# from the alsa-utils package.
#
# Copyright (c) by Jaroslav Kysela <perex@suse.cz> 
#
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA

#	Edited to support Linux kernel 2.5 and above as well as 2.4
#	John Mylchreest <johnm@gentoo.org>
#	July 29, 2003 

alsactl=/usr/sbin/alsactl
asoundcfg=/etc/asound.state
aconnect=/usr/bin/aconnect
alsascrdir=/etc/alsa.d

depend() {
	need bootmisc localmount
	before modules
	after isapnp
	provide alsa-modules
}

start() {
	if [ -d /proc/asound ] && [ -z "$(grep ' no soundcards ' /proc/asound/cards)" ] ; then
		ebegin "ALSA Detected"
	else
		ebegin "Loading ALSA drivers"
		
		# I really dislike this and would like to tidy it up.
		# Anyone running 2.4 + alsa-driver willing to help me?
		
		DRIVERS="$(modprobe -c | grep snd.* | grep pci: | awk '{ print $3 }' | uniq)"
		if [ -z "${DRIVERS}" ] ; then
			# Fallback on older modprobe syntax
			DRIVERS="$(/sbin/modprobe -c | grep -E "^[[:space:]]*alias[[:space:]]+snd-card-[[:digit:]]" | awk '{print $3}')"
		fi
		
		[ -z "${DRIVERS}" ] && eerror "Unable to find any ALSA drivers. Have you compiled alsa-drivers correctly?"
		# Test for use of OSS

		if modprobe -c | grep -q "snd.*oss$" ; then
		  einfo "Using ALSA OSS emulation"
		  OSS="$(modprobe -l | grep "snd.*oss" | sed -e "s:\/.*\/::" -e "s:\..*::")"
		  # Add oss modules to list
		  for i in ${OSS}
		  do
		    DRIVERS="${i} ${DRIVERS}"
		  done
		fi
		
		for DRIVER in ${DRIVERS}
		do
			if [ ! "${DRIVER}" = off ] &&
			   [ -z `cut -d' ' -f1 /proc/modules | egrep "^${DRIVER}\$"` ]; then
				einfo "Loading: ${DRIVER}"
				/sbin/modprobe ${DRIVER}
			fi
		done
		
		sleep 1

		if [ -f /proc/asound/seq/drivers ] ; then
			SEQUENCERS="$(cut -d"," -f1 /proc/asound/seq/drivers)"
			for SEQUENCER in ${SEQUENCERS}
			do
				if [ -z `cut -d' ' -f1 /proc/modules | egrep "^${SEQUENCER}\$"` ]; then
					einfo "Loading: ${SEQUENCER}"
					[ -n "${SEQUENCER}" ] && /sbin/modprobe ${SEQUENCER}
				fi
			done
		fi
		
		einfo "Running card-dependent scripts"
		for DRIVER in ${DRIVERS}
		do
			TMP=${DRIVER##snd-}
			[ -x "${alsascrdir}/${TMP}" ] && ${alsascrdir}/${TMP}
		done
		
		[ ! -d /proc/asound ] && eerror "ERROR: Failed to load necessary drivers"
	fi
	
	einfo "Restoring Mixer Levels"
	if [ ! -r $asoundcfg ]; then
		ewarn "No mixer config in $asoundcfg, you have to unmute your card!"
		eend 1
	elif [ -x $alsactl ]; then
		CARDS="$(cat /proc/asound/cards | awk '/: / { print $1 }')"
		for CARDNUM in ${CARDS}
		do
			$alsactl -f $asoundcfg restore ${CARDNUM}
		done
	else
		eerror -e "ERROR: Cannot find alsactl, did you forget to install media-sound/alsa-utils?"
		eend 1
	fi
	eend 0
}

stop() {
	if [ ! -d /proc/asound ] ; then
		eerror "ALSA is not loaded"
		return 0
	fi
	
	ebegin "Unloading ALSA"
	terminate
	einfo "Storing ALSA Mixer Levels"
	if [ -x $alsactl ]; then
		$alsactl -f $asoundcfg store
	else
		eerror -e "ERROR: Cannot find alsactl, did you forget to install media-sound/alsa-utils?"
		eend 1
	fi

	LOADED_MODULES="$(/sbin/lsmod | grep -E "^snd" | awk '{print $1}')"
	einfo "Unloading modules"
	for MODULE in ${LOADED_MODULES}
	do
		/sbin/rmmod ${MODULE} 2> /dev/null
	done
	/sbin/rmmod soundcore 2> /dev/null
	/sbin/rmmod gameport 2> /dev/null	
	eend 0
}

terminate() {
	#
	# Kill processes holding open sound devices
	#
	# DEVS=`find /dev/ -follow -type c -maxdepth 1 -print 2>/dev/null | xargs ls -dils | grep "1*1[46]," | cut -d: -f2 | cut -d" " -f2; echo /proc/asound/dev/*`
	ossdevs="/dev/admmidi? /dev/adsp? /dev/amidi? /dev/audio* /dev/dmfm* \
			/dev/dmmidi? /dev/dsp* /dev/dspW* /dev/midi0? /dev/mixer? /dev/music \
			/dev/patmgr? /dev/sequencer* /dev/sndstat"
	alsadevs="/proc/asound/dev/*"
	fuser -k $ossdevs $alsadevs 2> /dev/null 1>/dev/null
	
	#
	# remove all sequencer connections if any
	#
	[ -f /proc/asound/seq/clients -a -x $aconnect ] && $aconnect --removeall
}