~ubuntu-branches/ubuntu/precise/qc-usb/precise

« back to all changes in this revision

Viewing changes to FAQ

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2005-04-18 00:54:40 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050418005440-o6epqv8w4e0i7vrd
Tags: 0.6.3-1
New upstream release, with better 2.6.11 fix. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
   virgin kernel in /usr/src/linux-x.y.zz, you must first copy
19
19
   kernel configuration file to /usr/src/linux-x.y.zz/.config,
20
20
   then go to the directory and run "make oldconfig" and "make dep".
 
21
   You may also need to type
 
22
        cd /usr/src/linux-x.y.zz
 
23
        make include/linux/version.h
21
24
   This should create the missing linux/version.h file.
22
25
   Some more help for Redhat/Mandrake users:
23
26
 
110
113
   Then send the same commands to the camera from Linux.
111
114
 
112
115
------------------------------------------------------------
113
 
Q: I added IEEE1394 card and now Quickcam doesn't work?
 
116
Q: I added IEEE1394 card and now QuickCam doesn't work?
114
117
A: The card driver overwrites /dev/video0..2, use
115
118
   insmod ./quickcam.o video_nr=3
116
 
   and then /dev/video3 with Quickcam.
 
119
   and then /dev/video3 with QuickCam.
117
120
   Create /dev/video3 with mknod if necessary.
118
121
   [from Makarand]
 
122
 
 
123
------------------------------------------------------------
 
124
Q: I get oops after call path video_open/qc_v4l_open/qc_v4l_init/
 
125
   qc_capt_init/qc_frame_init/qc_sensor_init/hdcs_init
 
126
   because qc->sensor pointer was poisoned with 0x5B?
 
127
A: Some of the driver objects were compiled with debugging
 
128
   and some without. If you change any options (LINUX_DIR or
 
129
   USER_OPT) you must always do first "make clean"!
 
130
 
 
131
------------------------------------------------------------
 
132
Q: Can I use more than one camera simultaneously?
 
133
A: Yes, if you have enough bandwidth in USB bus. A single
 
134
   USB 1.0 bus can drive generally only one camera (there is
 
135
   a report that with using "qcset subsample=y" even two
 
136
   cameras might work in one bus, in theory it shouldn't).
 
137
   If you have just two USB ports in your computer, it
 
138
   typically means that you have just one USB bus.
 
139
   You can attach the camera into the ports and do
 
140
   "cat /proc/video/quickcam/*" to see whether the USB bus
 
141
   number is different or the same in the two ports.
 
142
   A single USB 2.0 bus may or may not work with multiple
 
143
   cameras. It appears to depend on the vendor.
 
144
 
 
145
------------------------------------------------------------
 
146
Q: Do I need to patch my kernel with linux-xxx-quickcam.patch?
 
147
A: No. To be more precise, only if you want to compile the
 
148
   driver statically into the kernel which would be useful
 
149
   usually only if you want to boot Linux from the camera ;)
 
150
   or if you otherwise want to include the camera driver
 
151
   into the kernel source. If you really want to do this,
 
152
   use "make patch", but it will work only with some kernel
 
153
   versions.
 
154