Re: [Alsa-user] Redorder cards
Brought to you by:
perex
|
From: Robert B. <Rob...@di...> - 2018-02-03 10:36:15
|
> I'm trying to reorder my soundcards on a RPi so that the I2S based cards > always is index zero. I looked at the docs > (https://alsa.opensrc.org/MultipleCards), which just says, "easy peasy, just > use options snd slots=this, that". Problem is that nowhere is it documented > WHAT "this, that" is! Is it card name ? Is it module name ? If latter, how do I > get driver name ? > > Help would be appreciated. Ok, they're module names from /proc/asound/modules. TL;DR problem I guess. cat /proc/asound/modules gives: 0 usb_f_uac2 1 (null) (null) is not very helpful, anyway: options snd slots=,usb_f_uac2 seems to do the trick. /R |