--- Begin Message ---
Derek L Davies wrote:
>
> [EMAIL PROTECTED] writes:
> >
> > I had the same problem, and if I remember correctly, I did not have a
> > /lib/modules/<kernel-version>/misc directory. I created the directory,
> > recompiled the alsa drivers, libs and utils, and things began to work. I
> > don't know which linux distribution you are using but I'm using RedHat
> > 7.1, and the misc directory was not there.
> >
> > If the misc dir is there, you might do a 'lsmod' and see if the snd
> > module is loaded. If not you can do a 'insmod snd' to get it loaded.
> >
> > You don't need ISAPNP if you don't have any ISA cards installed.
> >
>
> I've got a misc dir and I can load all the modules (by hand, in the
> right order) until I get to snd-card-emu10k1, then I get "device busy"
> or some such. If I cut to the chase and do modprobe snd-car-emu10k1
> then I get the same results.
>
> But, I do have support isapnp even though I have no cards -- let me
> take that away and see what happens.
>
> Thanks,
> Derek
>
> --
To find what resources are being used:
cat /proc/interrupts (for the irq assignments)
cat /proc/ioports (for the io port usage)
isapnp should not be an issue.
For the "device busy", make sure any original sound related
entries are gone, so you only have the new alsa entries.
Your /etc/modules.conf should look something like this:
# ALSA Section
alias char-major-116 snd
options snd snd_major=116 snd_cards_limit=1
alias snd-card-0 snd-card-emu10k
and if you want the OSS compatibilty:
# OSS/Free setup
alias char-major-14 soundcore
alias sound-slot-0 emu10k
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-12 snd-pcm-oss
It might help to try doing a "depmod -a" before the modprobe.
If you have a mixer open, or anything sound related in use when you try
to do the modprobe, you'll get "device busy"
If you want to send me an:
lsmod
copy of your /etc/modules.conf
cat /proc/interrupts
cat /proc/ioports
I'll see if I can see anything that might be a show stopper.
RK
--
Randy Kelsoe
Dae Richt, Fear Nacht
--- End Message ---