Juanito
Group: Members
Posts: 1601
Joined: Sep. 2005 |
|
Posted: Feb. 03 2007,10:12 |
|
I tried your suggestions:
1. Boot option "alsa" or "alsa=es1370"
In both cases, after boot the alsa modules had not loaded, but I could get them loaded as follows:
~$ lsmod ... audio 42140 0 soundcore 3428 5 [audio]
~$ sudo rmmod audio ~$ sudo /etc/init.d/alsa-autoconfig Preparing modules for alsa... Building card database.. Configuring ens1370... Running update-modules... Creating snddevices... Setting default volumes... dsl@box:~$ lsmod Module Size Used by Not tainted snd-mixer-oss 11280 0 (autoclean) snd-ens1370 7904 0 (autoclean) gameport 1388 0 (autoclean) [snd-ens1370] snd-pcm 57504 0 (autoclean) [snd-ens1370] snd-timer 15044 0 (autoclean) [snd-pcm] snd-page-alloc 5584 0 (autoclean) [snd-ens1370 snd-pcm] snd-rawmidi 12512 0 (autoclean) [snd-ens1370] snd-seq-device 3716 0 (autoclean) [snd-rawmidi] snd-ak4531-codec 5160 0 (autoclean) [snd-ens1370] snd 29988 0 (autoclean) [snd-mixer-oss snd-ens1370 snd-pcm snd-timer snd-rawmidi snd-seq-device snd-ak4531-codec] ... soundcore 3428 3 [snd]
2. Boot option "nosound"
Strangely, this did not stop the sound modules loading, but I could get them loaded as follows:
~$ lsmod Module Size Used by Not tainted ... es1370 30348 0 audio 42140 0 soundcore 3428 9 [es1370 audio]
~$ sudo rmmod es1370 ~$ sudo rmmod audio ~$ sudo /etc/init.d/alsa-autoconfig Preparing modules for alsa... Building card database.. Configuring ens1370... Running update-modules... Creating snddevices... Setting default volumes... dsl@box:~$ lsmod Module Size Used by Not tainted snd-mixer-oss 11280 0 (autoclean) snd-ens1370 7904 0 (autoclean) snd-pcm 57504 0 (autoclean) [snd-ens1370] snd-timer 15044 0 (autoclean) [snd-pcm] snd-page-alloc 5584 0 (autoclean) [snd-ens1370 snd-pcm] snd-rawmidi 12512 0 (autoclean) [snd-ens1370] snd-seq-device 3716 0 (autoclean) [snd-rawmidi] snd-ak4531-codec 5160 0 (autoclean) [snd-ens1370] snd 29988 0 (autoclean) [snd-mixer-oss snd-ens1370 snd-pcm snd-timer snd-rawmidi snd-seq-device snd-ak4531-codec] soundcore 3428 3 [snd]
On my system at least, it would appear that the boot option "alsa" stops the es1370 module being loaded but it needs to stop the audio module being loaded in order for the autoconfig to work. In addition, it appears the boot option "nosound" does not have any effect.
Anyway, thanks for the help - at least I know how to get alsa working - which is good since the es1370 module does not produce any sound...
|