Comment 4 for bug 193891

Revision history for this message
FreqRush (peter-geirnaert) wrote :

I had to do this to get mine working again:

sudo gedit /etc/udev/rules.d/42-midisport-firmware.rules

then change this line:
# MidiSport 2x2
ACTION=="add", SUBSYSTEM=="usb", DEVPATH=="/*.0", ENV{PRODUCT}=="763/1001/*", RUN+="/sbin/fxload -s /usr/share/usb/maudio/MidiSportLoader.ihx -I /usr/share/usb/maudio/MidiSport2x2.ihx"

into

# MidiSport 2x2
ACTION=="add", SUBSYSTEM=="usb", DEVPATH=="/*.*", ENV{PRODUCT}=="763/1001/*", RUN+="/sbin/fxload -s /usr/share/usb/maudio/MidiSportLoader.ihx -I /usr/share/usb/maudio/MidiSport2x2.ihx -D %N"

so I had to change the DEVPATH=="/*.0" to "/*.*" and also add the -D %N part.
now it works.

Hope it helps ..