Penguin
Diff: DigitalCameras
EditPageHistoryDiffInfoLikePages

Differences between version 2 and predecessor to the previous major change of DigitalCameras.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 2 Last edited on Saturday, July 19, 2003 2:05:45 am by PerryLorier Revert
Older page: version 1 Last edited on Friday, July 18, 2003 9:54:13 pm by DavidAntliff Revert
@@ -7,23 +7,23 @@
 I have a CD burner so I already have the SCSI emulation compiled into my kernel (or as modules). The only extra SCSI module I needed is the SCSI Disk driver (sd_mod.o). I also had Mass Storage support (usb-storage.o) and the USB virtual filesystem support. 
  
 After connecting my camera to the USBus, a quick 'dmesg' showed that the camera had been detected. I loaded the usb-storage driver and the SCSI disk driver. I confirmed that it had been picked up as an emulated SCSI device by: 
  
-$ cat /proc/scsi/usb-storage-/1  
- Host scsi1: usb-storage  
- Vendor: SAMSUNG  
- Product: DIGIMAX V4  
-Serial Number: None  
- Protocol: 8070i  
- Transport: Bulk  
- GUID: 083910090000000000000000  
- Attached: Yes 
+ $ cat /proc/scsi/usb-storage-/1  
+ Host scsi1: usb-storage  
+ Vendor: SAMSUNG  
+ Product: DIGIMAX V4  
+ Serial Number: None  
+ Protocol: 8070i  
+ Transport: Bulk  
+ GUID: 083910090000000000000000  
+ Attached: Yes 
  
 Also, /dev/sda1 appeared. 
  
 To mount the filesystem on the camera's SD card, I simply: 
  
-$ mount -t msdos /dev/sda1 /mnt/usbfs 
+ $ mount -t msdos /dev/sda1 /mnt/usbfs 
  
 And voila! 
  
 I think that was all. The hardest part was working out what drivers I needed.