Πως θα μπορούσα να κάνω το ubuntu (Kubuntu 64 12.04) ,να δουν τη συσκευή σαν gs-10?
Στα windows απλά άλλαξα το inf file του driver, αλλά απο linux είμαι ολίγον τι newbie!
Οι μόνες πληροφορίες που βρήκα ήταν
http://www.ha19.no/usb/ αλλά δεν έβγαλα άκρη
Τα αναγνωριστικά του sp606:
- Κώδικας: Επιλογή όλων
1183 /* has ID 0x006b when not in "Advanced Driver" mode */
1184 USB_DEVICE_VENDOR_SPEC(0x0582, 0x006a),
1185 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1186 .vendor_name = "Roland",
1187 .product_name = "SP-606",
1188 .ifnum = 3,
1189 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1190 .data = & (const struct snd_usb_midi_endpoint_info) {
1191 .out_cables = 0x0001,
1192 .in_cables = 0x0001
1193 }
1194 }
1195 },
Ενω του boss gs-10
- Κώδικας: Επιλογή όλων
960 /*
961 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
962 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
963 * and no MIDI.
964 */
965 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b)
966 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
967 .vendor_name = "BOSS",
968 .product_name = "GS-10",
969 .ifnum = QUIRK_ANY_INTERFACE,
970 .type = QUIRK_COMPOSITE,
971 .data = & (const struct snd_usb_audio_quirk[]) {
972 {
973 .ifnum = 1,
974 .type = QUIRK_AUDIO_STANDARD_INTERFACE
975 },
976 {
977 .ifnum = 2,
978 .type = QUIRK_AUDIO_STANDARD_INTERFACE
979 },
980 {
981 .ifnum = 3,
982 .type = QUIRK_MIDI_STANDARD_INTERFACE
983 },
984 {
985 .ifnum = -1
986 }
987 }
988 }
989 },
Τα βρήκα απο http://www.cs.fsu.edu/~baker/devices/lxr/http/source/linux/sound/usb/usbquirks.h



