On 5/1/05, david walcroft <david_walcroft@xxxxxxxxxxxx> wrote:
What is in your /etc/modprobe.conf
david
The following:
alias snd-card-0 snd-emu10k1 options snd-card-0 index=0 extin="0x3fc3" extout="0x1fc3" install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /usr/sbin/alsactl restore >/dev/null 2>&1 || : remove snd-emu10k1 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; };
Try commenting out these
# /sbin/modprobe -r --ignore-remove snd-emu10k1
# alias snd-card-1 snd-ac97 # options snd-card-1 index=1 # install snd-ac97 /sbin/modprobe --ignore-install snd-ac97 && /usr/sbin/alsactl restore >/dev/null 2>&1 || : # remove snd-ac97 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-ac97
Add install snd-ac97 /bin/true
But even if I remove the ac97 card altogether modules still get loaded for it. And the modules for the Audigy are getting loaded fine, they are there when I lsmod, but they are not being used to drive the card.
Rob
This is my modprobe.conf
alias eth0 tulip
alias eth1 8139too
alias snd-card-0 snd-emu10k1
options snd-card-0 index=0
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /usr/sbin/alsactl restore >/dev/null 2>&1 || :
remove snd-emu10k1 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-emu10k1
alias usb-controller ehci-hcd
alias usb-controller1 uhci-hcd
alias ieee1394-controller ohci1394
alias net-pf-10 off
install ipv6 /bin/true
options loop max-loop=32
# I2C module options
alias char-major-89 i2c-dev
alias char-major-195* nvidia
I run an Audigy card so our setups are similar,there could be more info at http://www.alsa-project.org/ and just look up your card.
david