You are not logged in.
Pages: 1
I am having problems with my ALSA....
I have a:
Lenovo y510 ideapad
CARD----HDA intel
Chip----Realtek ALC888
The module I need to load is:
snd-hda-intel model=lenovo-ms7195-dig
I have alsa in rf.conf deamons and
sna
snd-hda-intel model=lenovo-ms7195-dig
In the mondules section in rf.conf and they are before any of the snd-oss things.....
Last night all I did was run this in the shell: ((((I think????))))
modprobe snd-hda-intel model=lenovo-ms7195-dig
Then went into the alsamixer in the shell and un-muted all the new entry for my sub-wofer and all and changed the channels to 6 and all was working vary well.......... Then I added the stuff in the rf.conf....... Now it will not work.....
I think the "Space" in between "snd-hda-intel" and "model=lenovo-ms7195-dig" is what it screwing it up..... what do you think.
Here is exacetly what is in my modules in rf.cofig:
MODULES=(tg3 acpi-cpufreq cpufreq_ondemand cpufreq_powersave
iwl4965 snd snd_hda_intel model=lenovo-ms7195-dig snd-mixer-oss snd-pcm-oss
snd-hwdep
snd-page-alloc snd-pcm snd-timer soundcore)
Here is exacately what is in my deamons:
DAEMONS=(syslog-ng @network netfs crond alsa hal fam acpid kdm)
Any Ideas would be alsom:D
I'v spent all day on this and just ran out of ideas....
Last edited by hunterthomson (2008-06-22 07:37:00)
OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec
Offline
Hmm. Not sure, but try adding
options snd-hda-intel model=lenovo-ms7195-dig
to /etc/modprobe.conf
Then load it in the modules array without that model part.
Last edited by Statix (2008-06-22 07:51:58)
Madly in love with Arch64, Openbox, DotA, and of course... penguins!
Happy to help if you're not a Help Vampire. Use your wonderful resources like ArchWiki, Google, and our wonderful search page.
Offline
Hmm. Not sure, but try adding
options snd-hda-intel model=lenovo-ms7195-dig
to /etc/modprobe.conf
Then load it in the modules array without that part.
I'll give it a shot should I remove model=lenovo-ms7195-dig from rf.conf first?
edit: O OK I see... you said to remove it from the moduels array.....
Last edited by hunterthomson (2008-06-22 07:57:09)
OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec
Offline
Statix wrote:Hmm. Not sure, but try adding
options snd-hda-intel model=lenovo-ms7195-dig
to /etc/modprobe.conf
Then load it in the modules array without that part.
I'll give it a shot should I remove model=lenovo-ms7195-dig from rf.conf first?
Yup.
Madly in love with Arch64, Openbox, DotA, and of course... penguins!
Happy to help if you're not a Help Vampire. Use your wonderful resources like ArchWiki, Google, and our wonderful search page.
Offline
hunterthomson wrote:Statix wrote:Hmm. Not sure, but try adding
options snd-hda-intel model=lenovo-ms7195-dig
to /etc/modprobe.conf
Then load it in the modules array without that part.
I'll give it a shot should I remove model=lenovo-ms7195-dig from rf.conf first?
Yup.
WOOOHOOOO:lol:
I LOVE you
If these forums had a star like the ubuntu forums I would give you one:P
I thought I tryed that but I guess i didn't or maybe I didn't edit the modules array... In any case thank you.
OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec
Offline
How do I mark SLOVED?
OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec
Offline
How do I mark SLOVED?
Edit your first post
But that snd-hda-intel model doesn't get me jack sensing
EDIT: rather, it doesn't play through the side speakers, but the jack sensing does work, until I suspend, a fix below:
In case this might be slightly useful to someone, here's a pm-utils hook that kills mpd, and removes the offending module, so that I can have jack sensing after a resume.
# /etc/pm/sleep.d/66jacksenseMpd
# alsa saves the state in 65alsa, so remove the module after
#!/bin/bash
mod=snd-hda-intel
case $1 in
hibernate|suspend)
mpd --kill
sleep 0.5 && modprobe -r $mod
;;
thaw|resume)
modprobe $mod
sleep 0.5 && mpd
;;
*) ;;
esac
exit $?
Last edited by vogt (2008-08-13 04:14:44)
Offline
Pages: 1