which audio module to load

My sound card is:

IXP SB600 High Definition Audio Controller

Looking at pages with similar problems it seems the driver is not loaded at all.

Code:
# cat /dev/sndstat
cat: /dev/sndstat: No such file or directory
Which driver would I have to load?

Thank you
 
Thanks, I loaded snd_driver and the sound is ok.

It's written that:
If you wish to find out the driver selected for your soundcard after loading the snd_driver metadriver, you may check the /dev/sndstat file with the cat /dev/sndstat command.

That's my output:
Code:
# cat /dev/sndstat
FreeBSD Audio Driver (newpcm: 64bit 2009061500/amd64)
Installed devices:
pcm0: <HDA IDT 92HD71B7 PCM #0 Analog> (play/rec) default
pcm1: <HDA IDT 92HD71B7 PCM #1 Analog> (rec)
pcm2: <HDA IDT 92HD71B7 PCM #2 Digital> (play)
pcm3: <HDA ATI R6xx HDMI PCM #0 HDMI> (play)


I'm not sure which one it is. What would I include in /boot/loader.conf ?

snd_driver_enable= "YES" or would I have to specific a particular driver.


thank you
 
Some added info, the snd_driver module will load all available sound drivers. After that you're supposed to look at /dev/sndstat to see which one is actually detected.

Your sndstat output shows snd_hda is loaded.
 
Back
Top