"Kevin C. Smith" wrote: > > On Wed, Oct 10, 2001 at 08:33:26PM -0700, Erik Steffl wrote: > > Tommi Komulainen wrote: > > > > > > On Wed, Oct 10, 2001 at 02:46:17PM -0400, Simon Law wrote: > > > > > > > > Probably not. You'll be wanting alsa-source from unstable, > > > > which is at 0.9. The development version is quite nice compared to > > > > the stable one. > > > > > > The only thing that's keeping me back from upgrading to 0.9 is > > > ALSA-plugin for XMMS. AFAIK, the one that works with 0.5 is not > > > compatible with 0.9 and there is no XMMS plugin compatible with 0.9 > > > either. Feel free to correct me if I'm wrong. > > > > you can use oss emulation under alsa, that's what I use, works fine > > (unstable, 2.4.10, alsa 0.9, sbawe driver (sb awe 64)) > > > > erik > > I attempted to but failed. Willing to give me/us a step-by-step, Erik? > It compiled fine, yet was unable to get the sound working. > Don't remember the errors. I'm not satisfied with the emu10k1 driver, and > would like to get ALSA working. (unstable, 2.4.10)
well, if you have 0.5 working the process to get 0.9 working is basically the same. the easiest way is to use make-kpkg: apt-get install kernel-source-2.4.10 apt-get install alsa-source (that's 0.9+0beta7-2) pick the right soundcard and settings (I don't think this changes since 0.5) and: cd /usr/src tar -xvf alsa-driver.tar.gz -gzip tar -xvf kernel-source-2.4.10.tar.bz2 -bzip2 cd kernel-source-2.4.10 cp ../kernel-source-2.4.9/.config (or whatever is your previous kernel) make oldconfig make-kpkg --revision 99:`hostname`.0 kernel_image make-kpkg modules image (uses same revision number) cd .. dpkg -i kernel-image-2.4.10_jojda.0_i386.deb dpkg -i alsa-modules-2.4.10_0.9+0beta7-1+p99+jojda.0_i386.deb shutdown -r now (reboot, previous kernel is linux.old) that should do it, if it doesn't you have to send the error messages to the list. However, I would suggest alsa user mailing list, you get better responses to alsa related question there (usually). The alsa mailing list is at www.alsa-project.org. erik