1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
--- linux-2.6.7/drivers/usb/media/Makefile Fri Jul 23 18:23:09 2004
+++ linux-2.6.7userdev/drivers/usb/media/Makefile Tue Jul 27 18:12:40 2004
@@ -3,6 +3,7 @@
#
pwc-objs := pwc-if.o pwc-misc.o pwc-ctrl.o pwc-uncompress.o
+quickcam-objs := qc-driver.o qc-hdcs.o qc-pb0100.o qc-vv6410.o qc-formats.o qc-mjpeg.o qc-memory.o
obj-$(CONFIG_USB_DABUSB) += dabusb.o
obj-$(CONFIG_USB_DSBR) += dsbr100.o
@@ -10,6 +11,7 @@
obj-$(CONFIG_USB_KONICAWC) += konicawc.o usbvideo.o
obj-$(CONFIG_USB_OV511) += ov511.o
obj-$(CONFIG_USB_PWC) += pwc.o
+obj-$(CONFIG_USB_QC) += quickcam.o
obj-$(CONFIG_USB_SE401) += se401.o
obj-$(CONFIG_USB_STV680) += stv680.o
obj-$(CONFIG_USB_VICAM) += vicam.o usbvideo.o
--- linux-2.6.7/drivers/usb/media/Kconfig Mon Jul 26 02:31:55 2004
+++ linux-2.6.7userdev/drivers/usb/media/Kconfig Tue Jul 27 18:00:59 2004
@@ -146,6 +146,34 @@
To compile this driver as a module, choose M here: the
module will be called pwc.
+config USB_QC
+ tristate "USB Logitech QuickCam Camera support"
+ depends on USB && VIDEO_DEV
+ ---help---
+ Say Y or M here if you want to use the Logitech QuickCam Express
+ cameras. Also some other cameras are supported, such as Dexxa
+ and Labtec cameras, which are based on ST Microelectronics
+ VV6410, Hewlett Packard HDCS-1000/1100, Agilent Technologies
+ HDCS-1020, or Photobit PB-0100/0101 sensor chip.
+ Easiest way to find out whether a camera is supported is to plug it
+ in and use "lsusb" to display the VendorId and ProductId values.
+ For supported cameras, VendorId should be 0x046d and ProductId
+ one of 0x0840, 0x0850, or 0x0870.
+
+ This driver has an user space configuration tool, which allows
+ setting some driver parameters without reloading it (some
+ parameters can be also set as driver options when loading it).
+ It is available from <http://qce-ga.sourceforge.net>, along with
+ more documentation.
+
+ This driver uses the Video For Linux API. You must say Y or M to
+ "Video For Linux" (under Character Devices) to use this driver.
+ Information on this API and pointers to "v4l" programs may be found
+ at <file:Documentation/video4linux/API.html>.
+
+ To compile this driver as a module, choose M here: the
+ module will be called quickcam.
+
config USB_SE401
tristate "USB SE401 Camera support"
depends on USB && VIDEO_DEV
--- linux-2.6.7/drivers/usb/Makefile Mon Jul 26 02:31:54 2004
+++ linux-2.6.7userdev/drivers/usb/Makefile Tue Jul 27 23:23:35 2004
@@ -36,6 +36,7 @@
obj-$(CONFIG_USB_KONICAWC) += media/
obj-$(CONFIG_USB_OV511) += media/
obj-$(CONFIG_USB_PWC) += media/
+obj-$(CONFIG_USB_QC) += media/
obj-$(CONFIG_USB_SE401) += media/
obj-$(CONFIG_USB_STV680) += media/
obj-$(CONFIG_USB_VICAM) += media/
|