Click to See Complete Forum and Search --> : problems with modprobe emu10k1


DimGR
06-21-2004, 12:18 AM
There is the driver emu10k1 in the /lib/modules/ drivers for sound but when im doing modprobe emu10k1 it gives me this error


modprobe emu10k1
/lib/modules/2.4.20-gentoo-r6/kernel/drivers/sound/emu10k1/emu10k1.o: init_module: No such device
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
/lib/modules/2.4.20-gentoo-r6/kernel/drivers/sound/emu10k1/emu10k1.o: insmod /lib/modules/2.4.20-gentoo-r6/kernel/drivers/sound/emu10k1/emu10k1.o failed
/lib/modules/2.4.20-gentoo-r6/kernel/drivers/sound/emu10k1/emu10k1.o: insmod emu10k1 failed
bash-2.05b#


dmesg gives me this which obviously is not an error

Creative EMU10K1 PCI Audio Driver, version 0.20, 10:17:20 Oct 8 2003


and here is my lsmod

lsmod
Module Size Used by Not tainted
ide-floppy 14052 0 (autoclean)
sg 29804 0 (autoclean) (unused)
st 29776 0 (autoclean) (unused)
sr_mod 16952 0 (autoclean) (unused)
sd_mod 11212 0 (autoclean) (unused)
scsi_mod 59380 4 (autoclean) [sg st sr_mod sd_mod]
floppy 51804 0 (autoclean)
natsemi 17888 1 (autoclean)
usbcore 65376 1
bash-2.05b#


thank you :)

JohnT
06-21-2004, 12:29 AM
You might find your answer .......
HERE (http://www.justlinux.com/nhf/Soundcards)

je_fro
06-21-2004, 01:50 AM
http://www.gentoo.org/doc/en/alsa-guide.xml

GaryJones32
06-21-2004, 03:32 AM
hi,
emu10k1
is the OS not the alsa driver
all it needs is
alias char-major-14-* soundcore
alias sound-slot-0 emu10k1
#for the joystick
alias char-major-13-0 joydev
#i also have this in there but i don't think it's needed
# or even correct
#(doesn't seem to hurt anything anyway)
#(can't remember if it fixed something or what)
#(possibly has something to do with joystick)
options sb io=0x220 irq=7 dma=1 dma16=5 mpu_io=0x330

lsmod looks like this:

snd_mixer_oss 27328 0
snd 73092 1 snd_mixer_oss
joydev 11712 0
emu10k1_gp 4736 0
emu10k1 92100 1
sound 95516 1 emu10k1
soundcore 12096 4 snd,emu10k1,sound
ac97_codec 22764 1 emu10k1


/proc/driver/emu10k1/0000:02:0a.0/info
reads:

Driver Version : 0.20a
Card type : Emu10k1
Revision : 10
Model : 0x8067
IO : 0xdf80-0xdf9f
IRQ : 22

Registered /dev Entries:
/dev/dsp0
/dev/dsp1
/dev/mixer0
/dev/midi0
/dev/sequencer

je_fro
06-21-2004, 06:09 AM
yeah, I know it's a kernel module.
that's what he needs to read, imo.

bwkaz
06-21-2004, 06:54 PM
Also (as has been posted in COUNTLESS other threads where people get that "init_module: no such device" error), make sure you have your BIOS's PnP OS setting off.

Windows will work with it either way (I don't know if that's an issue for you or not), but oftentimes Linux won't detect PCI hardware if the setting is on.

Of course, the setting doesn't really have much to do with PnP anyway (it controls whether the BIOS or OS initializes devices -- with it turned off, the BIOS will initialize everything, and with it on, the BIOS will only initialize stuff required for booting like video and IDE), but whatever.

MMYoung
06-22-2004, 06:17 PM
Wouldn't you:
modprobe snd-emu10k1
:confused: