OpenWrt – Blame information for rev 2

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