Comment 38 for bug 27833

Revision history for this message
PJ (eespjl) wrote :

/lib no longer contains the firmware it seems to have migrated to /usr/share/usb

Currently this is the workaround script that works for me (as superuser).

-------
#!/bin/sh
fw=/usr/share/usb/maudio/MidiSport2x2.ihx

bd=$( lsusb | grep Midisport | cut -d ' ' -f 2,4 | sed -e 's/ /\//' -e 's/://' )

dev=/dev/bus/usb/$bd

echo fxload -I $fw -D $dev
fxload -I $fw -D $dev
---------