Advertisement
fliker09

/etc/udev/rules.d/80-theimagingsource-cameras.rules

Jun 20th, 2015
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # This file assures that The Imaging Source USB cameras are correctly recognized
  2. # This file only works for USB2 cameras whose name ends with a 1 (e.g. DMK 31, DFK41, etc.)
  3.  
  4. # if no driver has claimed the interface yet, load uvcvideo
  5. ACTION=="add", SUBSYSTEM=="usb", \
  6. ATTRS{idVendor}=="199e", ATTRS{idProduct}=="8101", \
  7. RUN+="/sbin/modprobe -b uvcvideo"
  8.  
  9. # add the imaging source VID and PID to the list of devices supported by uvcvideo
  10. ACTION=="add", SUBSYSTEM=="drivers", \
  11. ENV{DEVPATH}=="/bus/usb/drivers/uvcvideo", \
  12. ATTR{new_id}="199e 8101"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement