Hi Dave: On Monday 05 June 2006 16:03, Dave wrote: > Hello, > I'm atempting to get an integrated AC97 sound card working under 6.1. I > know this card works, loading the snd_driver module finds it, but i do not > know which actual module works it over. I'd rather not have to load 26 > sound modules just the ones i actually need. I've checked /boot/kernel/snd* > but didn't find anything AC97 and googling showed that others had asked, > but no clear answer. If anyone has this going i'd appreciate hearing about > it, and also any difficulties with quality or getting applications going.
Try this (taken from the handbook): // load all the sound drivers # kldload snd_driver // see which one worked # cat /dev/sndstat Here's what got loaded: # kldstat Id Refs Address Size Name 1 47 0xc0400000 3f4498 kernel 2 2 0xc07f5000 5ec0 snd_ich.ko 3 29 0xc07fb000 22ae8 sound.ko 4 1 0xc081e000 58554 acpi.ko 5 1 0xc4fe1000 16000 linux.ko 6 1 0xc531d000 1c000 radeon.ko 7 1 0xc533b000 e000 drm.ko 8 1 0xc5349000 11000 agp.ko 9 1 0xc5f26000 2000 snd_driver.ko 10 1 0xc5f28000 4000 snd_vibes.ko 11 1 0xc5f2c000 4000 snd_via82c686.ko 12 1 0xc5f30000 5000 snd_via8233.ko 13 1 0xc606e000 4000 snd_t4dwave.ko 14 1 0xc6072000 5000 snd_solo.ko 15 4 0xc6077000 4000 snd_sbc.ko 16 1 0xc607b000 4000 snd_sb8.ko 17 1 0xc607f000 4000 snd_sb16.ko 18 1 0xc60ce000 10000 snd_neomagic.ko 19 2 0xc6083000 9000 snd_mss.ko 20 1 0xc60de000 8000 snd_maestro3.ko 21 1 0xc60e6000 a000 snd_maestro.ko 22 1 0xc60f0000 4000 snd_fm801.ko 23 2 0xc60f4000 4000 snd_ess.ko 24 1 0xc60f8000 6000 snd_es137x.ko 25 1 0xc60fe000 6000 snd_emu10k1.ko 26 1 0xc6104000 b000 snd_ds1.ko 27 2 0xc610f000 6000 snd_csa.ko 28 1 0xc6118000 5000 snd_cs4281.ko 29 1 0xc611d000 4000 snd_cmi.ko 30 1 0xc6121000 5000 snd_atiixp.ko 31 1 0xc6126000 4000 snd_als4000.ko 32 1 0xc612a000 4000 snd_ad1816.ko And here's what I needed: # cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: <Intel ICH6 (82801FB)> at io 0xc8000800, 0xc8000400 irq 22 bufsz 16384 kld snd_ich (1p/1r/0v channels duplex default) So, I added the following to loader.conf: # cat /boot/loader.conf ... #sound driver snd_ich_load="YES" hth... don > Thanks. > Dave. > > _______________________________________________ > [email protected] mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "[EMAIL PROTECTED]" -- Don Hinton <don.hinton at vanderbilt.edu> tel: 615.480.5667 ISIS, Vanderbilt University skype: donhinton http://people.vanderbilt.edu/~don.hinton/ _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
