This is a patch file for "cdrkit" 1.1.11. If standard versions of "cdrkit" 1.1.X are used, "wodim --devices" (or "cdrecord --devices") doesn't list SCSI (or USB) devices for some distros; specifically, distros that use "/dev/sr#" nodes instead of "/dev/scd#" nodes. The following change corrects the problem. However, the modified code isn't backwards-compatible. Therefore, this file should only be used with distros that support "/dev/sr#" nodes. --- cdrkit-1.1.11.old/libusal/scsi-linux-sg.c +++ cdrkit-1.1.11/libusal/scsi-linux-sg.c @@ -529,7 +529,7 @@ { if(!check_linux_26()) continue; - pattern="/dev/scd%d"; + pattern="/dev/sr%d"; first=0; last=255; break;