Sorry, been busy wth other stuff.
First, all that source code does is build you a copy of
snd-intel8x0, which you already have. As it says, the code was copied from the ALSA site.
As to the module def.s, here's what mine looks like (and my AC'97 sound is working fine):
Code:
$ cat /etc/modprobe.conf
alias eth0 8139too
alias snd-card-0 snd-intel8x0
options snd-card-0 index=0
options snd-intel8x0 index=0
remove snd-intel8x0 { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0
alias usb-controller ehci-hcd
alias usb-controller1 uhci-hcd
# I2C module options
alias char-major-89 i2c-dev
alias char-major-195* nvidia
options nvidia NVreg_ModifyDeviceFiles=0
Just for the heck of it, I'm going to try their suggestion and add
Code:
# ALSA portion
alias char-major-116 snd
alias snd-card-0 snd-intel8x0
# OSS/Free portion
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0
# card #1
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
in there. Maybe then ALSA might work for me
Oh, note that the
modprobe.conf file is in
/etc/, and (of course) you need root access to edit it.