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

« back to all changes in this revision

Viewing changes to linux-2.6.7-quickcam.patch

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