Reply To: use Behringer UCA-202 with Pi2 and M2P

Max2Play Home Forums Max2Play on Raspberry PI use Behringer UCA-202 with Pi2 and M2P Reply To: use Behringer UCA-202 with Pi2 and M2P

16. September 2015 at 0:50 #15705

After reading on the ALSA site (http://www.alsa-project.org/main/index.php/Download#alsa-driver) I learned that there is ALSA support (no surprise).
There is a HowTo on enabling the usb audio support, too: http://www.alsa-project.org/main/index.php/Matrix:Module-usb-audio

A modprobe won’t work:

root@squeezautilus:/etc# modprobe snd-usb-audio
libkmod: ERROR ../libkmod/libkmod-module.c:174 kmod_module_parse_depline: ctx=0xb7f8a008 path=/lib/modules/3.18.7+/kernel/sound/usb/snd-usbmidi-lib.ko error=No such file or directory
libkmod: ERROR ../libkmod/libkmod-module.c:174 kmod_module_parse_depline: ctx=0xb7f8a008 path=/lib/modules/3.18.7+/kernel/sound/usb/snd-usbmidi-lib.ko error=No such file or directory
ERROR: could not insert ’snd_usb_audio‘: Unknown symbol in module, or unknown parameter (see dmesg)

Even the soundcore module is not installed:

root@squeezautilus:/etc# modinfo soundcore
ERROR: Module soundcore not found.

Downloading the latest „old“ driver (according to ALSA it should be contained in the kernel), which is 1.0.25 and trying to compile, I receive the following output:

root@squeezautilus:/usr/src/alsa/alsa-driver-1.0.25# ./configure –with-cards=usb-audio –with-sequencer=yes ; make ; make install
checking for gcc… gcc
checking whether the C compiler works… yes
checking for C compiler default output file name… a.out
checking for suffix of executables…
checking whether we are cross compiling… configure: error: in `/usr/src/alsa/alsa-driver-1.0.25′:
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `–host‘.
See `config.log‘ for more details

ANY HINTS?!