You are not logged in.

#1 2008-06-22 07:32:14

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

ALSA -Module not found (When Boot)

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

#2 2008-06-22 07:49:41

Statix
Member
From: Hangzhou, China
Registered: 2008-02-16
Posts: 240

Re: ALSA -Module not found (When Boot)

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

#3 2008-06-22 07:52:11

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: ALSA -Module not found (When Boot)

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?

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

#4 2008-06-22 07:53:37

Statix
Member
From: Hangzhou, China
Registered: 2008-02-16
Posts: 240

Re: ALSA -Module not found (When Boot)

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.


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

#5 2008-06-22 08:12:00

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: ALSA -Module not found (When Boot)

Statix wrote:
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 tongue

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

#6 2008-06-22 08:13:21

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: ALSA -Module not found (When Boot)

How do I mark SLOVED?


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#7 2008-08-13 01:03:38

vogt
Member
From: Toronto, Canada
Registered: 2006-11-25
Posts: 389

Re: ALSA -Module not found (When Boot)

hunterthomson wrote:

How do I mark SLOVED?

Edit your first post tongue

But that snd-hda-intel model doesn't get me jack sensing sad

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

Board footer

Powered by FluxBB