Quote:
Originally posted by rbochan
Try using the modconf program instead of just insmod... it'll give you a list of all the modules built for your currently running kernel, so you can choose which you want to use. Since ALSA is default for the 2.6.x series kernels, I believe the module you're after has a slightly different name - you're using the older OSS module name.
|
tks for the answer, but I try modconf and don't find anything helpfull.
My real problem is to configure a joystick. I read about and try :
modprobe joydev
modprobe ns558
modprobe analog
I created js0, js1, js2 and js3 in /dev/input and ln /dev/js* ( mknod /dev/input/js0 c 13 0 )
but jstest tells me : No such device.
So I found a post that tell to load es1371 and not ns558, but es1371 do not load.
~# lspci -v -s 07.5
0000:00:07.5 Multimedia audio controller: VIA Technologies, Inc. VT82C686 AC97 Audio Controller (rev 50)
Subsystem: Giga-byte Technology: Unknown device a002
Flags: medium devsel, IRQ 10
I/O ports at dc00 [size=256]
I/O ports at d800 [size=4]
I/O ports at d400 [size=4]
Capabilities: [c0] Power Management version 2
~# lsmod
Module Size Used by
........
nvidia 3470172 12
analog 11872 0
ns558 5760 0
joydev 9792 0
snd_via82xx 29604 0
snd_ac97_codec 69572 1 snd_via82xx
snd_pcm_oss 54312 0
snd_mixer_oss 19904 1 snd_pcm_oss
snd_pcm 97508 2 snd_via82xx,snd_pcm_oss
snd_timer 25540 1 snd_pcm
snd_page_alloc 11720 2 snd_via82xx,snd_pcm
gameport 4736 3 analog,ns558,snd_via82xx
snd_mpu401_uart 8000 1 snd_via82xx
snd_rawmidi 25408 1 snd_mpu401_uart
snd_seq_device 8264 1 snd_rawmidi
snd 56932 9 snd_via82xx,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,s nd_seq_device
soundcore 10400 1 snd
via82cxxx 14044 1
...........
tks again,
fsm