dc1394_help.sh
上传用户:lijia5631
上传日期:2008-11-10
资源大小:1214k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

MultiPlatform

  1. #!/bin/sh
  2. # if it doesn't work, try with "coriander"
  3. # also, try "modprobe ieee1394 raw1394"
  4. # modprobe ohci1394 attempt_root=1
  5. # modprobe video1394
  6. #
  7. # if it worked but does not after some camera replugging, call
  8. # modprobe -r raw1394 video1394
  9. # modprobe raw1394 video1394
  10. /sbin/modprobe -r raw1394 video1394
  11. /sbin/modprobe raw1394 video1394
  12. /sbin/modprobe ohci1394 attempt_root=1
  13. mknod -m 600 /dev/raw1394 c 171 0
  14. chown root.root /dev/raw1394
  15. chmod a+rwx /dev/raw1394
  16. mkdir /dev/video1394
  17. chown root.root /dev/video1394
  18. chmod a+rwx /dev/video1394
  19. mknod -m 666 /dev/video1394/0 c 171 16