# Filename: MakeKodakDev # Creates the device files for USB access of Kodak digital cameras. # Last Modified October 4, 2000 # Please see the Kodak Digital Camera HOWTO for more information # http://www.marblehorse.org/projects/documentation/kodak/ #!/bin/sh export scrapvar=0 while [ $scrapvar -lt 17 ]; do mknod -m 0666 /dev/dc2xx$scrapvar c 180 $(( $scrapvar + 80 )); scrapvar=$(( $scrapvar + 1 )); done # EOF