Re: Loading sound drivers

2009-04-09 Thread Ricardo Jesus

af300...@gmail.com wrote:

Hi,

My motherboard, an ASUS K8V-X, has a generic type sound chip on board, 
according to ASUS' specifications, it is an AD1980 chipset. The hardware 
notes, linked from the handbook, does not list this chipset but does 
list several Intel type HDA chipsets including one AD1981 chipset. Never 
the less, using the handbook instructions I loaded the meta sound driver 
and my chipset was identified as a via8233 chipset. The meta driver 
loaded many drivers into the kernel, but through trial and error I've 
discovered that only sound.ko and snd_via8233.ko need to be loaded. So, 
I put these two lines into /boot/loader.conf:


sound="YES"
snd_via8233="YES"

However, these two modules do not load on bootup. Why? How do I fix this?

Thanks,
Andy
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"freebsd-questions-unsubscr...@freebsd.org"




From man snd_via8233:

Alternatively, to load the driver as a module at boot time, place the 
following line in loader.conf(5):


snd_via8233_load="YES"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Loading sound drivers

2009-04-09 Thread kyanh
On Thu, 09 Apr 2009 14:47:15 +
af300...@gmail.com wrote:

> Hi,
> 
> My motherboard, an ASUS K8V-X, has a generic type sound chip on
> board, according to ASUS' specifications, it is an AD1980 chipset.
> The hardware notes, linked from the handbook, does not list this
> chipset but does list several Intel type HDA chipsets including one
> AD1981 chipset. Never the less, using the handbook instructions I
> loaded the meta sound driver and my chipset was identified as a
> via8233 chipset. The meta driver loaded many drivers into the
> kernel, but through trial and error I've discovered that only
> sound.ko and snd_via8233.ko need to be loaded. So, I put these two
> lines into /boot/loader.conf:
> 
> sound="YES"
> snd_via8233="YES"

The correct lines are

sound_load="YES"
snd_via8233_load="YES"

Regards,

-- 
Ky Anh, Huynh
Homepage: http://viettug.org/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Loading sound drivers

2009-04-09 Thread Ricardo Jesus

kyanh wrote:

On Thu, 09 Apr 2009 14:47:15 +
af300...@gmail.com wrote:


Hi,

My motherboard, an ASUS K8V-X, has a generic type sound chip on
board, according to ASUS' specifications, it is an AD1980 chipset.
The hardware notes, linked from the handbook, does not list this
chipset but does list several Intel type HDA chipsets including one
AD1981 chipset. Never the less, using the handbook instructions I
loaded the meta sound driver and my chipset was identified as a
via8233 chipset. The meta driver loaded many drivers into the
kernel, but through trial and error I've discovered that only
sound.ko and snd_via8233.ko need to be loaded. So, I put these two
lines into /boot/loader.conf:

sound="YES"
snd_via8233="YES"


The correct lines are

sound_load="YES"
snd_via8233_load="YES"

Regards,

You even need sound_load="YES" in the loader.conf. snd_via8234 pulls it 
upon loading.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Loading sound drivers

2009-04-09 Thread Ricardo Jesus

Ricardo Jesus wrote:

kyanh wrote:

On Thu, 09 Apr 2009 14:47:15 +
af300...@gmail.com wrote:


Hi,

My motherboard, an ASUS K8V-X, has a generic type sound chip on
board, according to ASUS' specifications, it is an AD1980 chipset.
The hardware notes, linked from the handbook, does not list this
chipset but does list several Intel type HDA chipsets including one
AD1981 chipset. Never the less, using the handbook instructions I
loaded the meta sound driver and my chipset was identified as a
via8233 chipset. The meta driver loaded many drivers into the
kernel, but through trial and error I've discovered that only
sound.ko and snd_via8233.ko need to be loaded. So, I put these two
lines into /boot/loader.conf:

sound="YES"
snd_via8233="YES"


The correct lines are

sound_load="YES"
snd_via8233_load="YES"

Regards,

You even need sound_load="YES" in the loader.conf. snd_via8234 pulls it 
upon loading.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"freebsd-questions-unsubscr...@freebsd.org"




It should read *you don't even..*

Oops ;)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Re: Loading sound drivers

2009-04-10 Thread af300wsm

On Apr 9, 2009 9:20am, Ricardo Jesus  wrote:



You even need sound_load="YES" in the loader.conf. snd_via8234 pulls it  
upon loading.



Yup, pathetic that I missed it, but that's what I was missing. Thanks  
everyone. I've added "_load" to the lines.


Andy
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"