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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
VIDEO_MENU:=Video Support
define KernelPackage/video-core
SUBMENU:=$(VIDEO_MENU)
TITLE=Video4Linux support
DEPENDS:= @!TARGET_uml
KCONFIG:= \
CONFIG_VIDEO_DEV \
CONFIG_VIDEO_V4L1=y \
CONFIG_VIDEO_CAPTURE_DRIVERS=y \
CONFIG_V4L_USB_DRIVERS=y
endef
define KernelPackage/video-core/2.4
FILES:=$(LINUX_DIR)/drivers/media/video/videodev.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,60,videodev)
endef
define KernelPackage/video-core/2.6
FILES:= \
$(LINUX_DIR)/drivers/media/video/v4l2-common.$(LINUX_KMOD_SUFFIX) \
$(LINUX_DIR)/drivers/media/video/v4l1-compat.$(LINUX_KMOD_SUFFIX) \
$(LINUX_DIR)/drivers/media/video/compat_ioctl32.$(LINUX_KMOD_SUFFIX) \
$(LINUX_DIR)/drivers/media/video/videodev.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,60, \
v4l2-common \
v4l1-compat \
compat_ioctl32 \
videodev \
)
endef
define KernelPackage/video-core/description
Kernel modules for Video4Linux support
endef
$(eval $(call KernelPackage,video-core))
define KernelPackage/video-cpia2
SUBMENU:=$(VIDEO_MENU)
TITLE:=CPIA2 video driver
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
KCONFIG:=CONFIG_VIDEO_CPIA2
FILES:=$(LINUX_DIR)/drivers/media/video/cpia2/cpia2.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,70,cpia2)
endef
define KernelPackage/video-cpia2/description
Kernel modules for supporting CPIA2 USB based cameras.
endef
$(eval $(call KernelPackage,video-cpia2))
define KernelPackage/video-konica
SUBMENU:=$(VIDEO_MENU)
TITLE:=Konica USB webcam support
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-video kmod-video-core
KCONFIG:=CONFIG_USB_KONICAWC
FILES:=$(LINUX_DIR)/drivers/media/video/usbvideo/konicawc.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,70,konicawc)
endef
define KernelPackage/video-konica/description
Kernel support for webcams based on a Konica chipset. This is known to
work with the Intel YC76 webcam.
endef
$(eval $(call KernelPackage,video-konica))
define KernelPackage/video-ov511
SUBMENU:=$(VIDEO_MENU)
TITLE:=OV511 USB webcam support
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
KCONFIG:=CONFIG_VIDEO_OV511
FILES:=$(LINUX_DIR)/drivers/media/video/ov511.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,70,ov511)
endef
define KernelPackage/video-ov511/description
Kernel modules for supporting OmniVision OV511 USB webcams.
endef
$(eval $(call KernelPackage,video-ov511))
define KernelPackage/video-ovcamchip
SUBMENU:=$(VIDEO_MENU)
TITLE:=OV6xxx/OV7xxx Camera Chip support
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-i2c-core kmod-video-core
KCONFIG:=CONFIG_VIDEO_OVCAMCHIP
FILES:=$(LINUX_DIR)/drivers/media/video/ovcamchip/ovcamchip.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,70,ovcamchip)
endef
define KernelPackage/video-ovcamchip/description
Kernel modules for supporting OmniVision OV6xxx and OV7xxx series of
camera chips.
endef
$(eval $(call KernelPackage,video-ovcamchip))
define KernelPackage/video-pwc
SUBMENU:=$(VIDEO_MENU)
TITLE:=Philips USB webcam support
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
KCONFIG:= \
CONFIG_USB_PWC \
CONFIG_USB_PWC_DEBUG=n
FILES:=$(LINUX_DIR)/drivers/media/video/pwc/pwc.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,70,pwc)
endef
define KernelPackage/video-pwc/description
Kernel modules for supporting Philips USB based cameras.
endef
$(eval $(call KernelPackage,video-pwc))
|