This patch adds to alsa-firmware the firmware needed by the IndigoIOx and IndigoDJx cards. It's too long to post here inline. Please download the compressed patch at this url:
http://www.webalice.it/g_pochini/alsa-firmware_indigox.patch.bz2
The patch contains two c-coded blobs and the following patch:
diff -duNrp alsa-firmware__orig/echoaudio/Makefile.am alsa-firmware/echoaudio/Makefile.am --- alsa-firmware__orig/echoaudio/Makefile.am 2008-06-07 22:18:23.000000000 +0200 +++ alsa-firmware/echoaudio/Makefile.am 2009-02-01 22:15:02.000000000 +0100 @@ -26,7 +26,9 @@ firmware_files = \ 3g_asic.fw \ indigo_dsp.fw \ indigo_io_dsp.fw \ - indigo_dj_dsp.fw + indigo_iox_dsp.fw \ + indigo_dj_dsp.fw \ + indigo_djx_dsp.fw
noinst_PROGRAMS = fw_writer fw_writer_SOURCES = fw_writer.c @@ -57,7 +59,9 @@ EXTRA_DIST = DSP/LoaderDSP.c \ ASIC/3G_ASIC.c \ DSP/IndigoDSP.c \ DSP/IndigoIODSP.c \ + DSP/IndigoIOxDSP.c \ DSP/IndigoDJDSP.c \ + DSP/IndigoDJxDSP.c \ fw_writer.c
CLEANFILES = $(firmware_files) fw_writer @@ -97,4 +101,6 @@ $(firmware_files): fw_writer ./fw_writer ASIC/3G_ASIC.c 3g_asic.fw ./fw_writer DSP/IndigoDSP.c indigo_dsp.fw ./fw_writer DSP/IndigoIODSP.c indigo_io_dsp.fw + ./fw_writer DSP/IndigoIOxDSP.c indigo_iox_dsp.fw ./fw_writer DSP/IndigoDJDSP.c indigo_dj_dsp.fw + ./fw_writer DSP/IndigoDJxDSP.c indigo_djx_dsp.fw
-- Giuliano.