Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-03 Thread Lee Revell
On Tue, 2006-01-03 at 09:27 -0800, Eric Weaver wrote:
> Anybody know how to make it boot up and put the usb-audio devices in the 
> right order?

Um, what's the "right" order?  We are not psychic.

Lee



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-03 Thread Eric Weaver

Lee Revell wrote:

On Tue, 2006-01-03 at 09:27 -0800, Eric Weaver wrote:

Anybody know how to make it boot up and put the usb-audio devices in the 
right order?



Um, what's the "right" order?  We are not psychic.


Fair enough.

Well, if I put "snd-card-3  snd-usb-audio" and "snd-card-4 
snd-usb-audio" in modules.conf, to have them come up as devices 3 and 4 
instead of 0 and 1 as they seem to do on first boot-up.






---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-03 Thread Lee Revell
On Tue, 2006-01-03 at 09:41 -0800, Eric Weaver wrote:
> Lee Revell wrote:
> > On Tue, 2006-01-03 at 09:27 -0800, Eric Weaver wrote:
> > 
> >>Anybody know how to make it boot up and put the usb-audio devices in the 
> >>right order?
> > 
> > 
> > Um, what's the "right" order?  We are not psychic.
> 
> Fair enough.
> 
> Well, if I put "snd-card-3  snd-usb-audio" and "snd-card-4 
> snd-usb-audio" in modules.conf, to have them come up as devices 3 and 4 
> instead of 0 and 1 as they seem to do on first boot-up.

I think you need to add "options snd-card-3 index=3" and "options
snd-card-4 index=4" or something.

This is an FAQ (possibly the #1 ALSA FAQ), you should be able to just
Google it.

Lee



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-03 Thread Eric Weaver

Lee Revell wrote:


I think you need to add "options snd-card-3 index=3" and "options
snd-card-4 index=4" or something.

This is an FAQ (possibly the #1 ALSA FAQ), you should be able to just
Google it.


Found it.  snd_index=n if I'm reading this right.

Thanks!


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-04 Thread Takashi Iwai
At Tue, 03 Jan 2006 10:38:00 -0800,
Eric Weaver wrote:
> 
> Lee Revell wrote:
> 
> > I think you need to add "options snd-card-3 index=3" and "options
> > snd-card-4 index=4" or something.
> > 
> > This is an FAQ (possibly the #1 ALSA FAQ), you should be able to just
> > Google it.
> 
> Found it.  snd_index=n if I'm reading this right.

"snd_" prefix in module options is deprecated.  Pass "index=#".

Also, "options snd-card-4 ..." seems not working on 2.6
module-init-tools (at the last time I tried).  It has to be a real
module name like snd-usb-audio.


Takashi


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-04 Thread Eric Weaver

Takashi Iwai wrote:


"snd_" prefix in module options is deprecated.  Pass "index=#".

Also, "options snd-card-4 ..." seems not working on 2.6
module-init-tools (at the last time I tried).  It has to be a real
module name like snd-usb-audio.


So will it work to do two lines for the same module:

options snd-usb-audio index=3
options snd-usb-audio index=4

?

Or should I do it on the alias lines?


Arigatou


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Device order vs. snd-usb-audio drivers in 1.0.10

2006-01-04 Thread Takashi Iwai
At Wed, 04 Jan 2006 09:18:56 -0800,
Eric Weaver wrote:
> 
> Takashi Iwai wrote:
> 
> > "snd_" prefix in module options is deprecated.  Pass "index=#".
> > 
> > Also, "options snd-card-4 ..." seems not working on 2.6
> > module-init-tools (at the last time I tried).  It has to be a real
> > module name like snd-usb-audio.
> 
> So will it work to do two lines for the same module:
> 
> options snd-usb-audio index=3
> options snd-usb-audio index=4

options snd-usb-audio index=3,4


Takashi


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user