OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | # |
2 | # Copyright (C) 2009 David Cooper <dave@kupesoft.com> |
||
3 | # Copyright (C) 2006-2010 OpenWrt.org |
||
4 | # |
||
5 | # This is free software, licensed under the GNU General Public License v2. |
||
6 | # See /LICENSE for more information. |
||
7 | # |
||
8 | |||
9 | VIDEO_MENU:=Video Support |
||
10 | |||
11 | V4L2_DIR=v4l2-core |
||
12 | V4L2_USB_DIR=usb |
||
13 | |||
14 | # |
||
15 | # Video Display |
||
16 | # |
||
17 | |||
18 | define KernelPackage/backlight |
||
19 | SUBMENU:=$(VIDEO_MENU) |
||
20 | TITLE:=Backlight support |
||
21 | DEPENDS:=@DISPLAY_SUPPORT |
||
22 | HIDDEN:=1 |
||
23 | KCONFIG:=CONFIG_BACKLIGHT_CLASS_DEVICE \ |
||
24 | CONFIG_BACKLIGHT_LCD_SUPPORT=y \ |
||
25 | CONFIG_LCD_CLASS_DEVICE=n \ |
||
26 | CONFIG_BACKLIGHT_GENERIC=n \ |
||
27 | CONFIG_BACKLIGHT_ADP8860=n \ |
||
28 | CONFIG_BACKLIGHT_ADP8870=n \ |
||
29 | CONFIG_BACKLIGHT_OT200=n \ |
||
30 | CONFIG_BACKLIGHT_PM8941_WLED=n |
||
31 | FILES:=$(LINUX_DIR)/drivers/video/backlight/backlight.ko |
||
32 | AUTOLOAD:=$(call AutoProbe,video backlight) |
||
33 | endef |
||
34 | |||
35 | define KernelPackage/backlight/description |
||
36 | Kernel module for Backlight support. |
||
37 | endef |
||
38 | |||
39 | $(eval $(call KernelPackage,backlight)) |
||
40 | |||
41 | define KernelPackage/backlight-pwm |
||
42 | SUBMENU:=$(VIDEO_MENU) |
||
43 | TITLE:=PWM Backlight support |
||
44 | DEPENDS:=+kmod-backlight |
||
45 | KCONFIG:=CONFIG_BACKLIGHT_PWM |
||
46 | FILES:=$(LINUX_DIR)/drivers/video/backlight/pwm_bl.ko |
||
47 | AUTOLOAD:=$(call AutoProbe,video pwm_bl) |
||
48 | endef |
||
49 | |||
50 | define KernelPackage/backlight-pwm/description |
||
51 | Kernel module for PWM based Backlight support. |
||
52 | endef |
||
53 | |||
54 | $(eval $(call KernelPackage,backlight-pwm)) |
||
55 | |||
56 | |||
57 | define KernelPackage/fb |
||
58 | SUBMENU:=$(VIDEO_MENU) |
||
59 | TITLE:=Framebuffer support |
||
60 | DEPENDS:=@DISPLAY_SUPPORT |
||
61 | KCONFIG:= \ |
||
62 | CONFIG_FB \ |
||
63 | CONFIG_FB_MXS=n \ |
||
64 | CONFIG_FB_SM750=n |
||
65 | FILES:=$(LINUX_DIR)/drivers/video/fbdev/core/fb.ko |
||
66 | AUTOLOAD:=$(call AutoLoad,06,fb) |
||
67 | endef |
||
68 | |||
69 | define KernelPackage/fb/description |
||
70 | Kernel support for framebuffers |
||
71 | endef |
||
72 | |||
73 | define KernelPackage/fb/x86 |
||
74 | FILES+=$(LINUX_DIR)/arch/x86/video/fbdev.ko |
||
75 | AUTOLOAD+=$(call AutoLoad,06,fbdev fb) |
||
76 | endef |
||
77 | |||
78 | $(eval $(call KernelPackage,fb)) |
||
79 | |||
80 | |||
81 | define KernelPackage/fbcon |
||
82 | SUBMENU:=$(VIDEO_MENU) |
||
83 | TITLE:=Framebuffer Console support |
||
84 | DEPENDS:=+kmod-fb @!LINUX_4_14 |
||
85 | KCONFIG:= \ |
||
86 | CONFIG_FRAMEBUFFER_CONSOLE \ |
||
87 | CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y \ |
||
88 | CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y \ |
||
89 | CONFIG_FONTS=y \ |
||
90 | CONFIG_FONT_8x8=y \ |
||
91 | CONFIG_FONT_8x16=y \ |
||
92 | CONFIG_FONT_6x11=n \ |
||
93 | CONFIG_FONT_7x14=n \ |
||
94 | CONFIG_FONT_PEARL_8x8=n \ |
||
95 | CONFIG_FONT_ACORN_8x8=n \ |
||
96 | CONFIG_FONT_MINI_4x6=n \ |
||
97 | CONFIG_FONT_6x10=n \ |
||
98 | CONFIG_FONT_SUN8x16=n \ |
||
99 | CONFIG_FONT_SUN12x22=n \ |
||
100 | CONFIG_FONT_10x18=n \ |
||
101 | CONFIG_VT=y \ |
||
102 | CONFIG_CONSOLE_TRANSLATIONS=y \ |
||
103 | CONFIG_VT_CONSOLE=y \ |
||
104 | CONFIG_VT_HW_CONSOLE_BINDING=y |
||
105 | FILES:= \ |
||
106 | $(LINUX_DIR)/drivers/video/console/bitblit.ko \ |
||
107 | $(LINUX_DIR)/drivers/video/console/softcursor.ko \ |
||
108 | $(LINUX_DIR)/drivers/video/console/fbcon.ko \ |
||
109 | $(LINUX_DIR)/drivers/video/console/fbcon_rotate.ko \ |
||
110 | $(LINUX_DIR)/drivers/video/console/fbcon_cw.ko \ |
||
111 | $(LINUX_DIR)/drivers/video/console/fbcon_ud.ko \ |
||
112 | $(LINUX_DIR)/drivers/video/console/fbcon_ccw.ko \ |
||
113 | $(LINUX_DIR)/lib/fonts/font.ko |
||
114 | AUTOLOAD:=$(call AutoLoad,94,font softcursor tileblit fbcon_cw fbcon_ud fbcon_ccw fbcon_rotate bitblit fbcon) |
||
115 | endef |
||
116 | |||
117 | define KernelPackage/fbcon/description |
||
118 | Kernel support for framebuffer console |
||
119 | endef |
||
120 | |||
121 | $(eval $(call KernelPackage,fbcon)) |
||
122 | |||
123 | define KernelPackage/fb-cfb-fillrect |
||
124 | SUBMENU:=$(VIDEO_MENU) |
||
125 | TITLE:=Framebuffer software rectangle filling support |
||
126 | DEPENDS:=+kmod-fb |
||
127 | KCONFIG:=CONFIG_FB_CFB_FILLRECT |
||
128 | FILES:=$(LINUX_DIR)/drivers/video/fbdev/core/cfbfillrect.ko |
||
129 | AUTOLOAD:=$(call AutoLoad,07,cfbfillrect) |
||
130 | endef |
||
131 | |||
132 | define KernelPackage/fb-cfb-fillrect/description |
||
133 | Kernel support for software rectangle filling |
||
134 | endef |
||
135 | |||
136 | $(eval $(call KernelPackage,fb-cfb-fillrect)) |
||
137 | |||
138 | |||
139 | define KernelPackage/fb-cfb-copyarea |
||
140 | SUBMENU:=$(VIDEO_MENU) |
||
141 | TITLE:=Framebuffer software copy area support |
||
142 | DEPENDS:=+kmod-fb |
||
143 | KCONFIG:=CONFIG_FB_CFB_COPYAREA |
||
144 | FILES:=$(LINUX_DIR)/drivers/video/fbdev/core/cfbcopyarea.ko |
||
145 | AUTOLOAD:=$(call AutoLoad,07,cfbcopyarea) |
||
146 | endef |
||
147 | |||
148 | define KernelPackage/fb-cfb-copyarea/description |
||
149 | Kernel support for software copy area |
||
150 | endef |
||
151 | |||
152 | $(eval $(call KernelPackage,fb-cfb-copyarea)) |
||
153 | |||
154 | define KernelPackage/fb-cfb-imgblt |
||
155 | SUBMENU:=$(VIDEO_MENU) |
||
156 | TITLE:=Framebuffer software image blit support |
||
157 | DEPENDS:=+kmod-fb |
||
158 | KCONFIG:=CONFIG_FB_CFB_IMAGEBLIT |
||
159 | FILES:=$(LINUX_DIR)/drivers/video/fbdev/core/cfbimgblt.ko |
||
160 | AUTOLOAD:=$(call AutoLoad,07,cfbimgblt) |
||
161 | endef |
||
162 | |||
163 | define KernelPackage/fb-cfb-imgblt/description |
||
164 | Kernel support for software image blitting |
||
165 | endef |
||
166 | |||
167 | $(eval $(call KernelPackage,fb-cfb-imgblt)) |
||
168 | |||
169 | |||
170 | define KernelPackage/fb-sys-fops |
||
171 | SUBMENU:=$(VIDEO_MENU) |
||
172 | TITLE:=Framebuffer software sys ops support |
||
173 | DEPENDS:=+kmod-fb |
||
174 | KCONFIG:=CONFIG_FB_SYS_FOPS |
||
175 | FILES:=$(LINUX_DIR)/drivers/video/fbdev/core/fb_sys_fops.ko |
||
176 | AUTOLOAD:=$(call AutoLoad,07,fbsysfops) |
||
177 | endef |
||
178 | |||
179 | define KernelPackage/fb-sys-fops/description |
||
180 | Kernel support for framebuffer sys ops |
||
181 | endef |
||
182 | |||
183 | $(eval $(call KernelPackage,fb-sys-fops)) |
||
184 | |||
185 | define KernelPackage/drm |
||
186 | SUBMENU:=$(VIDEO_MENU) |
||
187 | TITLE:=Direct Rendering Manager (DRM) support |
||
188 | HIDDEN:=1 |
||
189 | DEPENDS:=+kmod-dma-buf +kmod-i2c-core |
||
190 | KCONFIG:=CONFIG_DRM |
||
191 | FILES:=$(LINUX_DIR)/drivers/gpu/drm/drm.ko |
||
192 | AUTOLOAD:=$(call AutoLoad,05,drm) |
||
193 | endef |
||
194 | |||
195 | define KernelPackage/drm/description |
||
196 | Direct Rendering Manager (DRM) core support |
||
197 | endef |
||
198 | |||
199 | $(eval $(call KernelPackage,drm)) |
||
200 | |||
201 | define KernelPackage/drm-imx |
||
202 | SUBMENU:=$(VIDEO_MENU) |
||
203 | TITLE:=Freescale i.MX DRM support |
||
204 | DEPENDS:=@TARGET_imx6 +kmod-drm +kmod-fb +kmod-fb-cfb-copyarea +kmod-fb-cfb-imgblt +kmod-fb-cfb-fillrect +kmod-fb-sys-fops |
||
205 | KCONFIG:=CONFIG_DRM_IMX \ |
||
206 | CONFIG_DRM_FBDEV_EMULATION=y \ |
||
207 | CONFIG_DRM_FBDEV_OVERALLOC=100 \ |
||
208 | CONFIG_IMX_IPUV3_CORE \ |
||
209 | CONFIG_RESET_CONTROLLER=y \ |
||
210 | CONFIG_DRM_IMX_IPUV3 \ |
||
211 | CONFIG_IMX_IPUV3 \ |
||
212 | CONFIG_DRM_KMS_HELPER \ |
||
213 | CONFIG_FB_SYS_FILLRECT \ |
||
214 | CONFIG_FB_SYS_COPYAREA \ |
||
215 | CONFIG_FB_SYS_IMAGEBLIT \ |
||
216 | CONFIG_DRM_KMS_FB_HELPER=y \ |
||
217 | CONFIG_DRM_GEM_CMA_HELPER=y \ |
||
218 | CONFIG_DRM_KMS_CMA_HELPER=y \ |
||
219 | CONFIG_DRM_IMX_FB_HELPER \ |
||
220 | CONFIG_DRM_IMX_PARALLEL_DISPLAY=n \ |
||
221 | CONFIG_DRM_IMX_TVE=n \ |
||
222 | CONFIG_DRM_IMX_LDB=n \ |
||
223 | CONFIG_DRM_IMX_HDMI=n |
||
224 | FILES:= \ |
||
225 | $(LINUX_DIR)/drivers/gpu/drm/imx/imxdrm.ko \ |
||
226 | $(LINUX_DIR)/drivers/gpu/ipu-v3/imx-ipu-v3.ko \ |
||
227 | $(LINUX_DIR)/drivers/video/fbdev/core/syscopyarea.ko \ |
||
228 | $(LINUX_DIR)/drivers/video/fbdev/core/sysfillrect.ko \ |
||
229 | $(LINUX_DIR)/drivers/video/fbdev/core/sysimgblt.ko \ |
||
230 | $(LINUX_DIR)/drivers/gpu/drm/drm_kms_helper.ko |
||
231 | AUTOLOAD:=$(call AutoLoad,05,imxdrm imx-ipu-v3 imx-ipuv3-crtc) |
||
232 | endef |
||
233 | |||
234 | define KernelPackage/drm-imx/description |
||
235 | Direct Rendering Manager (DRM) support for Freescale i.MX |
||
236 | endef |
||
237 | |||
238 | $(eval $(call KernelPackage,drm-imx)) |
||
239 | |||
240 | define KernelPackage/drm-imx-hdmi |
||
241 | SUBMENU:=$(VIDEO_MENU) |
||
242 | TITLE:=Freescale i.MX HDMI DRM support |
||
243 | DEPENDS:=+kmod-sound-core kmod-drm-imx |
||
244 | KCONFIG:=CONFIG_DRM_IMX_HDMI \ |
||
245 | CONFIG_DRM_DW_HDMI_AHB_AUDIO \ |
||
246 | CONFIG_DRM_DW_HDMI_I2S_AUDIO |
||
247 | FILES:= \ |
||
248 | $(LINUX_DIR)/drivers/gpu/drm/bridge/synopsys/dw-hdmi.ko \ |
||
249 | $(LINUX_DIR)/drivers/gpu/drm/bridge/synopsys/dw-hdmi-ahb-audio.ko \ |
||
250 | $(LINUX_DIR)/drivers/gpu/drm/imx/dw_hdmi-imx.ko |
||
251 | AUTOLOAD:=$(call AutoLoad,05,dw-hdmi dw-hdmi-ahb-audio.ko dw_hdmi-imx) |
||
252 | endef |
||
253 | |||
254 | define KernelPackage/drm-imx-hdmi/description |
||
255 | Direct Rendering Manager (DRM) support for Freescale i.MX HDMI |
||
256 | endef |
||
257 | |||
258 | $(eval $(call KernelPackage,drm-imx-hdmi)) |
||
259 | |||
260 | define KernelPackage/drm-imx-ldb |
||
261 | SUBMENU:=$(VIDEO_MENU) |
||
262 | TITLE:=Freescale i.MX LVDS DRM support |
||
263 | DEPENDS:=+kmod-backlight kmod-drm-imx |
||
264 | KCONFIG:=CONFIG_DRM_IMX_LDB \ |
||
265 | CONFIG_DRM_PANEL_SIMPLE \ |
||
266 | CONFIG_DRM_PANEL=y \ |
||
267 | CONFIG_DRM_PANEL_SAMSUNG_LD9040=n \ |
||
268 | CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0=n \ |
||
269 | CONFIG_DRM_PANEL_LG_LG4573=n \ |
||
270 | CONFIG_DRM_PANEL_LD9040=n \ |
||
271 | CONFIG_DRM_PANEL_LVDS=n \ |
||
272 | CONFIG_DRM_PANEL_S6E8AA0=n \ |
||
273 | CONFIG_DRM_PANEL_SITRONIX_ST7789V=n |
||
274 | FILES:=$(LINUX_DIR)/drivers/gpu/drm/imx/imx-ldb.ko \ |
||
275 | $(LINUX_DIR)/drivers/gpu/drm/panel/panel-simple.ko |
||
276 | AUTOLOAD:=$(call AutoLoad,05,imx-ldb) |
||
277 | endef |
||
278 | |||
279 | define KernelPackage/drm-imx-ldb/description |
||
280 | Direct Rendering Manager (DRM) support for Freescale i.MX LVDS |
||
281 | endef |
||
282 | |||
283 | $(eval $(call KernelPackage,drm-imx-ldb)) |
||
284 | |||
285 | |||
286 | # |
||
287 | # Video Capture |
||
288 | # |
||
289 | |||
290 | define KernelPackage/video-core |
||
291 | SUBMENU:=$(VIDEO_MENU) |
||
292 | TITLE=Video4Linux support |
||
293 | DEPENDS:=@PCI_SUPPORT||USB_SUPPORT +PACKAGE_kmod-i2c-core:kmod-i2c-core |
||
294 | KCONFIG:= \ |
||
295 | CONFIG_MEDIA_SUPPORT \ |
||
296 | CONFIG_MEDIA_CAMERA_SUPPORT=y \ |
||
297 | CONFIG_VIDEO_DEV \ |
||
298 | CONFIG_VIDEO_V4L1=y \ |
||
299 | CONFIG_VIDEO_ALLOW_V4L1=y \ |
||
300 | CONFIG_VIDEO_CAPTURE_DRIVERS=y \ |
||
301 | CONFIG_V4L_USB_DRIVERS=y \ |
||
302 | CONFIG_V4L_PCI_DRIVERS=y \ |
||
303 | CONFIG_V4L_PLATFORM_DRIVERS=y \ |
||
304 | CONFIG_V4L_ISA_PARPORT_DRIVERS=y |
||
305 | FILES:= \ |
||
306 | $(LINUX_DIR)/drivers/media/$(V4L2_DIR)/v4l2-common.ko \ |
||
307 | $(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videodev.ko |
||
308 | AUTOLOAD:=$(call AutoLoad,60, videodev v4l2-common) |
||
309 | endef |
||
310 | |||
311 | define KernelPackage/video-core/description |
||
312 | Kernel modules for Video4Linux support |
||
313 | endef |
||
314 | |||
315 | $(eval $(call KernelPackage,video-core)) |
||
316 | |||
317 | |||
318 | define AddDepends/video |
||
319 | SUBMENU:=$(VIDEO_MENU) |
||
320 | DEPENDS+=kmod-video-core $(1) |
||
321 | endef |
||
322 | |||
323 | define AddDepends/camera |
||
324 | $(AddDepends/video) |
||
325 | KCONFIG+=CONFIG_MEDIA_USB_SUPPORT=y \ |
||
326 | CONFIG_MEDIA_CAMERA_SUPPORT=y |
||
327 | endef |
||
328 | |||
329 | |||
330 | define KernelPackage/video-videobuf2 |
||
331 | TITLE:=videobuf2 lib |
||
332 | DEPENDS:=+kmod-dma-buf |
||
333 | KCONFIG:= \ |
||
334 | CONFIG_VIDEOBUF2_CORE \ |
||
335 | CONFIG_VIDEOBUF2_MEMOPS \ |
||
336 | CONFIG_VIDEOBUF2_VMALLOC |
||
337 | FILES:= \ |
||
338 | $(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-core.ko \ |
||
339 | $(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-v4l2.ko@ge4.4 \ |
||
340 | $(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-memops.ko \ |
||
341 | $(LINUX_DIR)/drivers/media/$(V4L2_DIR)/videobuf2-vmalloc.ko |
||
342 | AUTOLOAD:=$(call AutoLoad,65,videobuf2-core videobuf-v4l2@ge4.4 videobuf2-memops videobuf2-vmalloc) |
||
343 | $(call AddDepends/video) |
||
344 | endef |
||
345 | |||
346 | define KernelPackage/video-videobuf2/description |
||
347 | Kernel modules that implements three basic types of media buffers. |
||
348 | endef |
||
349 | |||
350 | $(eval $(call KernelPackage,video-videobuf2)) |
||
351 | |||
352 | |||
353 | define KernelPackage/video-cpia2 |
||
354 | TITLE:=CPIA2 video driver |
||
355 | DEPENDS:=@USB_SUPPORT +kmod-usb-core |
||
356 | KCONFIG:=CONFIG_VIDEO_CPIA2 |
||
357 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/cpia2/cpia2.ko |
||
358 | AUTOLOAD:=$(call AutoProbe,cpia2) |
||
359 | $(call AddDepends/camera) |
||
360 | endef |
||
361 | |||
362 | define KernelPackage/video-cpia2/description |
||
363 | Kernel modules for supporting CPIA2 USB based cameras |
||
364 | endef |
||
365 | |||
366 | $(eval $(call KernelPackage,video-cpia2)) |
||
367 | |||
368 | |||
369 | define KernelPackage/video-pwc |
||
370 | TITLE:=Philips USB webcam support |
||
371 | DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-video-videobuf2 |
||
372 | KCONFIG:= \ |
||
373 | CONFIG_USB_PWC \ |
||
374 | CONFIG_USB_PWC_DEBUG=n |
||
375 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/pwc/pwc.ko |
||
376 | AUTOLOAD:=$(call AutoProbe,pwc) |
||
377 | $(call AddDepends/camera) |
||
378 | endef |
||
379 | |||
380 | define KernelPackage/video-pwc/description |
||
381 | Kernel modules for supporting Philips USB based cameras |
||
382 | endef |
||
383 | |||
384 | $(eval $(call KernelPackage,video-pwc)) |
||
385 | |||
386 | |||
387 | define KernelPackage/video-uvc |
||
388 | TITLE:=USB Video Class (UVC) support |
||
389 | DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-video-videobuf2 +kmod-input-core |
||
390 | KCONFIG:= CONFIG_USB_VIDEO_CLASS |
||
391 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/uvc/uvcvideo.ko |
||
392 | AUTOLOAD:=$(call AutoProbe,uvcvideo) |
||
393 | $(call AddDepends/camera) |
||
394 | endef |
||
395 | |||
396 | define KernelPackage/video-uvc/description |
||
397 | Kernel modules for supporting USB Video Class (UVC) devices |
||
398 | endef |
||
399 | |||
400 | $(eval $(call KernelPackage,video-uvc)) |
||
401 | |||
402 | |||
403 | define KernelPackage/video-gspca-core |
||
404 | MENU:=1 |
||
405 | TITLE:=GSPCA webcam core support framework |
||
406 | DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-input-core |
||
407 | KCONFIG:=CONFIG_USB_GSPCA |
||
408 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_main.ko |
||
409 | AUTOLOAD:=$(call AutoProbe,gspca_main) |
||
410 | $(call AddDepends/camera) |
||
411 | endef |
||
412 | |||
413 | define KernelPackage/video-gspca-core/description |
||
414 | Kernel modules for supporting GSPCA based webcam devices. Note this is just |
||
415 | the core of the driver, please select a submodule that supports your webcam. |
||
416 | endef |
||
417 | |||
418 | $(eval $(call KernelPackage,video-gspca-core)) |
||
419 | |||
420 | |||
421 | define AddDepends/camera-gspca |
||
422 | SUBMENU:=$(VIDEO_MENU) |
||
423 | DEPENDS+=kmod-video-gspca-core $(1) |
||
424 | endef |
||
425 | |||
426 | |||
427 | define KernelPackage/video-gspca-conex |
||
428 | TITLE:=conex webcam support |
||
429 | KCONFIG:=CONFIG_USB_GSPCA_CONEX |
||
430 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_conex.ko |
||
431 | AUTOLOAD:=$(call AutoProbe,gspca_conex) |
||
432 | $(call AddDepends/camera-gspca) |
||
433 | endef |
||
434 | |||
435 | define KernelPackage/video-gspca-conex/description |
||
436 | The Conexant Camera Driver (conex) kernel module |
||
437 | endef |
||
438 | |||
439 | $(eval $(call KernelPackage,video-gspca-conex)) |
||
440 | |||
441 | |||
442 | define KernelPackage/video-gspca-etoms |
||
443 | TITLE:=etoms webcam support |
||
444 | KCONFIG:=CONFIG_USB_GSPCA_ETOMS |
||
445 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_etoms.ko |
||
446 | AUTOLOAD:=$(call AutoProbe,gspca_etoms) |
||
447 | $(call AddDepends/camera-gspca) |
||
448 | endef |
||
449 | |||
450 | define KernelPackage/video-gspca-etoms/description |
||
451 | The Etoms USB Camera Driver (etoms) kernel module |
||
452 | endef |
||
453 | |||
454 | $(eval $(call KernelPackage,video-gspca-etoms)) |
||
455 | |||
456 | |||
457 | define KernelPackage/video-gspca-finepix |
||
458 | TITLE:=finepix webcam support |
||
459 | KCONFIG:=CONFIG_USB_GSPCA_FINEPIX |
||
460 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_finepix.ko |
||
461 | AUTOLOAD:=$(call AutoProbe,gspca_finepix) |
||
462 | $(call AddDepends/camera-gspca) |
||
463 | endef |
||
464 | |||
465 | define KernelPackage/video-gspca-finepix/description |
||
466 | The Fujifilm FinePix USB V4L2 driver (finepix) kernel module |
||
467 | endef |
||
468 | |||
469 | $(eval $(call KernelPackage,video-gspca-finepix)) |
||
470 | |||
471 | |||
472 | define KernelPackage/video-gspca-mars |
||
473 | TITLE:=mars webcam support |
||
474 | KCONFIG:=CONFIG_USB_GSPCA_MARS |
||
475 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_mars.ko |
||
476 | AUTOLOAD:=$(call AutoProbe,gspca_mars) |
||
477 | $(call AddDepends/camera-gspca) |
||
478 | endef |
||
479 | |||
480 | define KernelPackage/video-gspca-mars/description |
||
481 | The Mars USB Camera Driver (mars) kernel module |
||
482 | endef |
||
483 | |||
484 | $(eval $(call KernelPackage,video-gspca-mars)) |
||
485 | |||
486 | |||
487 | define KernelPackage/video-gspca-mr97310a |
||
488 | TITLE:=mr97310a webcam support |
||
489 | KCONFIG:=CONFIG_USB_GSPCA_MR97310A |
||
490 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_mr97310a.ko |
||
491 | AUTOLOAD:=$(call AutoProbe,gspca_mr97310a) |
||
492 | $(call AddDepends/camera-gspca) |
||
493 | endef |
||
494 | |||
495 | define KernelPackage/video-gspca-mr97310a/description |
||
496 | The Mars-Semi MR97310A USB Camera Driver (mr97310a) kernel module |
||
497 | endef |
||
498 | |||
499 | $(eval $(call KernelPackage,video-gspca-mr97310a)) |
||
500 | |||
501 | |||
502 | define KernelPackage/video-gspca-ov519 |
||
503 | TITLE:=ov519 webcam support |
||
504 | KCONFIG:=CONFIG_USB_GSPCA_OV519 |
||
505 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_ov519.ko |
||
506 | AUTOLOAD:=$(call AutoProbe,gspca_ov519) |
||
507 | $(call AddDepends/camera-gspca) |
||
508 | endef |
||
509 | |||
510 | define KernelPackage/video-gspca-ov519/description |
||
511 | The OV519 USB Camera Driver (ov519) kernel module |
||
512 | endef |
||
513 | |||
514 | $(eval $(call KernelPackage,video-gspca-ov519)) |
||
515 | |||
516 | |||
517 | define KernelPackage/video-gspca-ov534 |
||
518 | TITLE:=ov534 webcam support |
||
519 | KCONFIG:=CONFIG_USB_GSPCA_OV534 |
||
520 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_ov534.ko |
||
521 | AUTOLOAD:=$(call AutoProbe,gspca_ov534) |
||
522 | $(call AddDepends/camera-gspca) |
||
523 | endef |
||
524 | |||
525 | define KernelPackage/video-gspca-ov534/description |
||
526 | The OV534 USB Camera Driver (ov534) kernel module |
||
527 | endef |
||
528 | |||
529 | $(eval $(call KernelPackage,video-gspca-ov534)) |
||
530 | |||
531 | |||
532 | define KernelPackage/video-gspca-ov534-9 |
||
533 | TITLE:=ov534-9 webcam support |
||
534 | KCONFIG:=CONFIG_USB_GSPCA_OV534_9 |
||
535 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_ov534_9.ko |
||
536 | AUTOLOAD:=$(call AutoProbe,gspca_ov534_9) |
||
537 | $(call AddDepends/camera-gspca) |
||
538 | endef |
||
539 | |||
540 | define KernelPackage/video-gspca-ov534-9/description |
||
541 | The OV534-9 USB Camera Driver (ov534_9) kernel module |
||
542 | endef |
||
543 | |||
544 | $(eval $(call KernelPackage,video-gspca-ov534-9)) |
||
545 | |||
546 | |||
547 | define KernelPackage/video-gspca-pac207 |
||
548 | TITLE:=pac207 webcam support |
||
549 | KCONFIG:=CONFIG_USB_GSPCA_PAC207 |
||
550 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_pac207.ko |
||
551 | AUTOLOAD:=$(call AutoProbe,gspca_pac207) |
||
552 | $(call AddDepends/camera-gspca) |
||
553 | endef |
||
554 | |||
555 | define KernelPackage/video-gspca-pac207/description |
||
556 | The Pixart PAC207 USB Camera Driver (pac207) kernel module |
||
557 | endef |
||
558 | |||
559 | $(eval $(call KernelPackage,video-gspca-pac207)) |
||
560 | |||
561 | |||
562 | define KernelPackage/video-gspca-pac7311 |
||
563 | TITLE:=pac7311 webcam support |
||
564 | KCONFIG:=CONFIG_USB_GSPCA_PAC7311 |
||
565 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_pac7311.ko |
||
566 | AUTOLOAD:=$(call AutoProbe,gspca_pac7311) |
||
567 | $(call AddDepends/camera-gspca) |
||
568 | endef |
||
569 | |||
570 | define KernelPackage/video-gspca-pac7311/description |
||
571 | The Pixart PAC7311 USB Camera Driver (pac7311) kernel module |
||
572 | endef |
||
573 | |||
574 | $(eval $(call KernelPackage,video-gspca-pac7311)) |
||
575 | |||
576 | |||
577 | define KernelPackage/video-gspca-se401 |
||
578 | TITLE:=se401 webcam support |
||
579 | KCONFIG:=CONFIG_USB_GSPCA_SE401 |
||
580 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_se401.ko |
||
581 | AUTOLOAD:=$(call AutoProbe,gspca_se401) |
||
582 | $(call AddDepends/camera-gspca) |
||
583 | endef |
||
584 | |||
585 | define KernelPackage/video-gspca-se401/description |
||
586 | The SE401 USB Camera Driver kernel module |
||
587 | endef |
||
588 | |||
589 | $(eval $(call KernelPackage,video-gspca-se401)) |
||
590 | |||
591 | |||
592 | define KernelPackage/video-gspca-sn9c20x |
||
593 | TITLE:=sn9c20x webcam support |
||
594 | KCONFIG:=CONFIG_USB_GSPCA_SN9C20X |
||
595 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_sn9c20x.ko |
||
596 | AUTOLOAD:=$(call AutoProbe,gspca_sn9c20x) |
||
597 | $(call AddDepends/camera-gspca) |
||
598 | endef |
||
599 | |||
600 | define KernelPackage/video-gspca-sn9c20x/description |
||
601 | The SN9C20X USB Camera Driver (sn9c20x) kernel module |
||
602 | endef |
||
603 | |||
604 | $(eval $(call KernelPackage,video-gspca-sn9c20x)) |
||
605 | |||
606 | |||
607 | define KernelPackage/video-gspca-sonixb |
||
608 | TITLE:=sonixb webcam support |
||
609 | KCONFIG:=CONFIG_USB_GSPCA_SONIXB |
||
610 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_sonixb.ko |
||
611 | AUTOLOAD:=$(call AutoProbe,gspca_sonixb) |
||
612 | $(call AddDepends/camera-gspca) |
||
613 | endef |
||
614 | |||
615 | define KernelPackage/video-gspca-sonixb/description |
||
616 | The SONIX Bayer USB Camera Driver (sonixb) kernel module |
||
617 | endef |
||
618 | |||
619 | $(eval $(call KernelPackage,video-gspca-sonixb)) |
||
620 | |||
621 | |||
622 | define KernelPackage/video-gspca-sonixj |
||
623 | TITLE:=sonixj webcam support |
||
624 | KCONFIG:=CONFIG_USB_GSPCA_SONIXJ |
||
625 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_sonixj.ko |
||
626 | AUTOLOAD:=$(call AutoProbe,gspca_sonixj) |
||
627 | $(call AddDepends/camera-gspca) |
||
628 | endef |
||
629 | |||
630 | define KernelPackage/video-gspca-sonixj/description |
||
631 | The SONIX JPEG USB Camera Driver (sonixj) kernel module |
||
632 | endef |
||
633 | |||
634 | $(eval $(call KernelPackage,video-gspca-sonixj)) |
||
635 | |||
636 | |||
637 | define KernelPackage/video-gspca-spca500 |
||
638 | TITLE:=spca500 webcam support |
||
639 | KCONFIG:=CONFIG_USB_GSPCA_SPCA500 |
||
640 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_spca500.ko |
||
641 | AUTOLOAD:=$(call AutoProbe,gspca_spca500) |
||
642 | $(call AddDepends/camera-gspca) |
||
643 | endef |
||
644 | |||
645 | define KernelPackage/video-gspca-spca500/description |
||
646 | The SPCA500 USB Camera Driver (spca500) kernel module |
||
647 | endef |
||
648 | |||
649 | $(eval $(call KernelPackage,video-gspca-spca500)) |
||
650 | |||
651 | |||
652 | define KernelPackage/video-gspca-spca501 |
||
653 | TITLE:=spca501 webcam support |
||
654 | KCONFIG:=CONFIG_USB_GSPCA_SPCA501 |
||
655 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_spca501.ko |
||
656 | AUTOLOAD:=$(call AutoProbe,gspca_spca501) |
||
657 | $(call AddDepends/camera-gspca) |
||
658 | endef |
||
659 | |||
660 | define KernelPackage/video-gspca-spca501/description |
||
661 | The SPCA501 USB Camera Driver (spca501) kernel module |
||
662 | endef |
||
663 | |||
664 | $(eval $(call KernelPackage,video-gspca-spca501)) |
||
665 | |||
666 | |||
667 | define KernelPackage/video-gspca-spca505 |
||
668 | TITLE:=spca505 webcam support |
||
669 | KCONFIG:=CONFIG_USB_GSPCA_SPCA505 |
||
670 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_spca505.ko |
||
671 | AUTOLOAD:=$(call AutoProbe,gspca_spca505) |
||
672 | $(call AddDepends/camera-gspca) |
||
673 | endef |
||
674 | |||
675 | define KernelPackage/video-gspca-spca505/description |
||
676 | The SPCA505 USB Camera Driver (spca505) kernel module |
||
677 | endef |
||
678 | |||
679 | $(eval $(call KernelPackage,video-gspca-spca505)) |
||
680 | |||
681 | |||
682 | define KernelPackage/video-gspca-spca506 |
||
683 | TITLE:=spca506 webcam support |
||
684 | KCONFIG:=CONFIG_USB_GSPCA_SPCA506 |
||
685 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_spca506.ko |
||
686 | AUTOLOAD:=$(call AutoProbe,gspca_spca506) |
||
687 | $(call AddDepends/camera-gspca) |
||
688 | endef |
||
689 | |||
690 | define KernelPackage/video-gspca-spca506/description |
||
691 | The SPCA506 USB Camera Driver (spca506) kernel module |
||
692 | endef |
||
693 | |||
694 | $(eval $(call KernelPackage,video-gspca-spca506)) |
||
695 | |||
696 | |||
697 | define KernelPackage/video-gspca-spca508 |
||
698 | TITLE:=spca508 webcam support |
||
699 | KCONFIG:=CONFIG_USB_GSPCA_SPCA508 |
||
700 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_spca508.ko |
||
701 | AUTOLOAD:=$(call AutoProbe,gspca_spca508) |
||
702 | $(call AddDepends/camera-gspca) |
||
703 | endef |
||
704 | |||
705 | define KernelPackage/video-gspca-spca508/description |
||
706 | The SPCA508 USB Camera Driver (spca508) kernel module |
||
707 | endef |
||
708 | |||
709 | $(eval $(call KernelPackage,video-gspca-spca508)) |
||
710 | |||
711 | |||
712 | define KernelPackage/video-gspca-spca561 |
||
713 | TITLE:=spca561 webcam support |
||
714 | KCONFIG:=CONFIG_USB_GSPCA_SPCA561 |
||
715 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_spca561.ko |
||
716 | AUTOLOAD:=$(call AutoProbe,gspca_spca561) |
||
717 | $(call AddDepends/camera-gspca) |
||
718 | endef |
||
719 | |||
720 | define KernelPackage/video-gspca-spca561/description |
||
721 | The SPCA561 USB Camera Driver (spca561) kernel module |
||
722 | endef |
||
723 | |||
724 | $(eval $(call KernelPackage,video-gspca-spca561)) |
||
725 | |||
726 | |||
727 | define KernelPackage/video-gspca-sq905 |
||
728 | TITLE:=sq905 webcam support |
||
729 | KCONFIG:=CONFIG_USB_GSPCA_SQ905 |
||
730 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_sq905.ko |
||
731 | AUTOLOAD:=$(call AutoProbe,gspca_sq905) |
||
732 | $(call AddDepends/camera-gspca) |
||
733 | endef |
||
734 | |||
735 | define KernelPackage/video-gspca-sq905/description |
||
736 | The SQ Technologies SQ905 based USB Camera Driver (sq905) kernel module |
||
737 | endef |
||
738 | |||
739 | $(eval $(call KernelPackage,video-gspca-sq905)) |
||
740 | |||
741 | |||
742 | define KernelPackage/video-gspca-sq905c |
||
743 | TITLE:=sq905c webcam support |
||
744 | KCONFIG:=CONFIG_USB_GSPCA_SQ905C |
||
745 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_sq905c.ko |
||
746 | AUTOLOAD:=$(call AutoProbe,gspca_sq905c) |
||
747 | $(call AddDepends/camera-gspca) |
||
748 | endef |
||
749 | |||
750 | define KernelPackage/video-gspca-sq905c/description |
||
751 | The SQ Technologies SQ905C based USB Camera Driver (sq905c) kernel module |
||
752 | endef |
||
753 | |||
754 | $(eval $(call KernelPackage,video-gspca-sq905c)) |
||
755 | |||
756 | |||
757 | define KernelPackage/video-gspca-stk014 |
||
758 | TITLE:=stk014 webcam support |
||
759 | KCONFIG:=CONFIG_USB_GSPCA_STK014 |
||
760 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_stk014.ko |
||
761 | AUTOLOAD:=$(call AutoProbe,gspca_stk014) |
||
762 | $(call AddDepends/camera-gspca) |
||
763 | endef |
||
764 | |||
765 | define KernelPackage/video-gspca-stk014/description |
||
766 | The Syntek DV4000 (STK014) USB Camera Driver (stk014) kernel module |
||
767 | endef |
||
768 | |||
769 | $(eval $(call KernelPackage,video-gspca-stk014)) |
||
770 | |||
771 | |||
772 | define KernelPackage/video-gspca-sunplus |
||
773 | TITLE:=sunplus webcam support |
||
774 | KCONFIG:=CONFIG_USB_GSPCA_SUNPLUS |
||
775 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_sunplus.ko |
||
776 | AUTOLOAD:=$(call AutoProbe,gspca_sunplus) |
||
777 | $(call AddDepends/camera-gspca) |
||
778 | endef |
||
779 | |||
780 | define KernelPackage/video-gspca-sunplus/description |
||
781 | The SUNPLUS USB Camera Driver (sunplus) kernel module |
||
782 | endef |
||
783 | |||
784 | $(eval $(call KernelPackage,video-gspca-sunplus)) |
||
785 | |||
786 | |||
787 | define KernelPackage/video-gspca-t613 |
||
788 | TITLE:=t613 webcam support |
||
789 | KCONFIG:=CONFIG_USB_GSPCA_T613 |
||
790 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_t613.ko |
||
791 | AUTOLOAD:=$(call AutoProbe,gspca_t613) |
||
792 | $(call AddDepends/camera-gspca) |
||
793 | endef |
||
794 | |||
795 | define KernelPackage/video-gspca-t613/description |
||
796 | The T613 (JPEG Compliance) USB Camera Driver (t613) kernel module |
||
797 | endef |
||
798 | |||
799 | $(eval $(call KernelPackage,video-gspca-t613)) |
||
800 | |||
801 | |||
802 | define KernelPackage/video-gspca-tv8532 |
||
803 | TITLE:=tv8532 webcam support |
||
804 | KCONFIG:=CONFIG_USB_GSPCA_TV8532 |
||
805 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_tv8532.ko |
||
806 | AUTOLOAD:=$(call AutoProbe,gspca_tv8532) |
||
807 | $(call AddDepends/camera-gspca) |
||
808 | endef |
||
809 | |||
810 | define KernelPackage/video-gspca-tv8532/description |
||
811 | The TV8532 USB Camera Driver (tv8532) kernel module |
||
812 | endef |
||
813 | |||
814 | $(eval $(call KernelPackage,video-gspca-tv8532)) |
||
815 | |||
816 | |||
817 | define KernelPackage/video-gspca-vc032x |
||
818 | TITLE:=vc032x webcam support |
||
819 | KCONFIG:=CONFIG_USB_GSPCA_VC032X |
||
820 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_vc032x.ko |
||
821 | AUTOLOAD:=$(call AutoProbe,gspca_vc032x) |
||
822 | $(call AddDepends/camera-gspca) |
||
823 | endef |
||
824 | |||
825 | define KernelPackage/video-gspca-vc032x/description |
||
826 | The VC032X USB Camera Driver (vc032x) kernel module |
||
827 | endef |
||
828 | |||
829 | $(eval $(call KernelPackage,video-gspca-vc032x)) |
||
830 | |||
831 | |||
832 | define KernelPackage/video-gspca-zc3xx |
||
833 | TITLE:=zc3xx webcam support |
||
834 | KCONFIG:=CONFIG_USB_GSPCA_ZC3XX |
||
835 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_zc3xx.ko |
||
836 | AUTOLOAD:=$(call AutoProbe,gspca_zc3xx) |
||
837 | $(call AddDepends/camera-gspca) |
||
838 | endef |
||
839 | |||
840 | define KernelPackage/video-gspca-zc3xx/description |
||
841 | The ZC3XX USB Camera Driver (zc3xx) kernel module |
||
842 | endef |
||
843 | |||
844 | $(eval $(call KernelPackage,video-gspca-zc3xx)) |
||
845 | |||
846 | |||
847 | define KernelPackage/video-gspca-m5602 |
||
848 | TITLE:=m5602 webcam support |
||
849 | KCONFIG:=CONFIG_USB_M5602 |
||
850 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/m5602/gspca_m5602.ko |
||
851 | AUTOLOAD:=$(call AutoProbe,gspca_m5602) |
||
852 | $(call AddDepends/camera-gspca) |
||
853 | endef |
||
854 | |||
855 | define KernelPackage/video-gspca-m5602/description |
||
856 | The ALi USB m5602 Camera Driver (m5602) kernel module |
||
857 | endef |
||
858 | |||
859 | $(eval $(call KernelPackage,video-gspca-m5602)) |
||
860 | |||
861 | |||
862 | define KernelPackage/video-gspca-stv06xx |
||
863 | TITLE:=stv06xx webcam support |
||
864 | KCONFIG:=CONFIG_USB_STV06XX |
||
865 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/stv06xx/gspca_stv06xx.ko |
||
866 | AUTOLOAD:=$(call AutoProbe,gspca_stv06xx) |
||
867 | $(call AddDepends/camera-gspca) |
||
868 | endef |
||
869 | |||
870 | define KernelPackage/video-gspca-stv06xx/description |
||
871 | The STV06XX USB Camera Driver (stv06xx) kernel module |
||
872 | endef |
||
873 | |||
874 | $(eval $(call KernelPackage,video-gspca-stv06xx)) |
||
875 | |||
876 | |||
877 | define KernelPackage/video-gspca-gl860 |
||
878 | TITLE:=gl860 webcam support |
||
879 | KCONFIG:=CONFIG_USB_GL860 |
||
880 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gl860/gspca_gl860.ko |
||
881 | AUTOLOAD:=$(call AutoProbe,gspca_gl860) |
||
882 | $(call AddDepends/camera-gspca) |
||
883 | endef |
||
884 | |||
885 | define KernelPackage/video-gspca-gl800/description |
||
886 | The GL860 USB Camera Driver (gl860) kernel module |
||
887 | endef |
||
888 | |||
889 | $(eval $(call KernelPackage,video-gspca-gl860)) |
||
890 | |||
891 | |||
892 | define KernelPackage/video-gspca-jeilinj |
||
893 | TITLE:=jeilinj webcam support |
||
894 | KCONFIG:=CONFIG_USB_GSPCA_JEILINJ |
||
895 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_jeilinj.ko |
||
896 | AUTOLOAD:=$(call AutoProbe,gspca_jeilinj) |
||
897 | $(call AddDepends/camera-gspca) |
||
898 | endef |
||
899 | |||
900 | define KernelPackage/video-gspca-jeilinj/description |
||
901 | The JEILINJ USB Camera Driver (jeilinj) kernel module |
||
902 | endef |
||
903 | |||
904 | $(eval $(call KernelPackage,video-gspca-jeilinj)) |
||
905 | |||
906 | |||
907 | define KernelPackage/video-gspca-konica |
||
908 | TITLE:=konica webcam support |
||
909 | KCONFIG:=CONFIG_USB_GSPCA_KONICA |
||
910 | FILES:=$(LINUX_DIR)/drivers/media/$(V4L2_USB_DIR)/gspca/gspca_konica.ko |
||
911 | AUTOLOAD:=$(call AutoProbe,gspca_konica) |
||
912 | $(call AddDepends/camera-gspca) |
||
913 | endef |
||
914 | |||
915 | define KernelPackage/video-gspca-konica/description |
||
916 | The Konica USB Camera Driver (konica) kernel module |
||
917 | endef |
||
918 | |||
919 | $(eval $(call KernelPackage,video-gspca-konica)) |