On Sat, Jan 06, 2001 at 08:27:52AM -0500, Anthony Fox wrote: > I have auto module loading compiled into my kernel. How do I > specify that when an application attempts to access the sound > hardware that the kernel should install the emu10k1 module into the > running kernel? Right now, the kernel installs the soundcore module > only.
You probably need some aliases. I don't know exactly what for that card, but I have the following in /etc/modutils/aliases: options opl3 io=0x388 alias sound-slot-0 cs4232 alias sound-service-0-0 cs4232 # mixer alias sound-service-0-2 opl3 # /dev/midi alias sound-service-0-3 cs4232 # /dev/dsp & /dev/audio alias sound-service-0-4 cs4232 # "ditto" alias sound-service-0-6 sound # /dev/sndstat options sound dmabuf=1 options cs4232 io=0x534 irq=5 dma=1 dma2=0 There's info in the kernel docs about these sound-slot/sound-service things. Make sure to run "update-modules" after editing /etc/modutils/aliases. -- Eric G. Miller <egm2@jps.net>