Hi! On Don, 11 Apr 2002 13:06:02 Charles A Edwards wrote:
> > > Second problem. > > > No longer have sound in enlightenment. > > You have to update your modules.conf and also fix /etc/init.d/alsa. > > Alsa 0.9 is a little bit different. > > I feeling dimwitted. > Update how and what needs to be fixed in /etc/init.d/alsa? replace line 78 in /etc/init.d/alsa: old: if /sbin/modprobe $line >/dev/null 2>&1; then new: if /sbin/modprobe snd-$desc >/dev/null 2>&1; then You have to do this because all alsa drivers were renamed (from snd-card-* to snd-*). I also had to update my /etc/modules.conf because my driver was renamed (cs461x to cs46xx). If you only do the above change in /etc/init.d/alsa, you have to keep snd-card in the module name, otherwise the alsa script will ignore the sound card. You can also add and extra alias (e.g. "alias snd-card-cs46xx snd-cs46xx") to match the old name to the new one, but that isn't really necessary. -- Michael Reinsch <[EMAIL PROTECTED]> http://mr.uue.org ------------------------------------------------------------------------
