2007-09-16 16:39:18 +00:00
|
|
|
#
|
2009-08-27 08:38:16 +00:00
|
|
|
# Copyright (C) 2009 David Cooper <dave@kupesoft.com>
|
2010-04-24 11:42:17 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2007-09-16 16:39:18 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
VIDEO_MENU:=Video Support
|
|
|
|
|
|
|
|
define KernelPackage/video-core
|
|
|
|
SUBMENU:=$(VIDEO_MENU)
|
|
|
|
TITLE=Video4Linux support
|
2010-08-11 17:00:01 +00:00
|
|
|
DEPENDS:=@PCI_SUPPORT||USB_SUPPORT +!TARGET_etrax:kmod-i2c-core
|
2007-09-16 16:39:18 +00:00
|
|
|
KCONFIG:= \
|
2009-11-05 11:06:23 +00:00
|
|
|
CONFIG_MEDIA_SUPPORT=m \
|
2007-09-16 16:39:18 +00:00
|
|
|
CONFIG_VIDEO_DEV \
|
|
|
|
CONFIG_VIDEO_V4L1=y \
|
2009-12-09 19:04:57 +00:00
|
|
|
CONFIG_VIDEO_ALLOW_V4L1=y \
|
2007-09-16 16:39:18 +00:00
|
|
|
CONFIG_VIDEO_CAPTURE_DRIVERS=y \
|
2012-02-02 08:23:44 +00:00
|
|
|
CONFIG_V4L_USB_DRIVERS=y \
|
|
|
|
CONFIG_V4L_PCI_DRIVERS=y \
|
2012-04-09 14:48:46 +00:00
|
|
|
CONFIG_V4L_PLATFORM_DRIVERS=y \
|
|
|
|
CONFIG_V4L_ISA_PARPORT_DRIVERS=y
|
2011-03-19 17:42:48 +00:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.38)),1)
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/v4l2-common.ko \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/videodev.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60, videodev v4l2-common)
|
|
|
|
else
|
2007-09-16 16:39:18 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/media/video/v4l2-common.ko \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/v4l1-compat.ko \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/videodev.ko
|
2011-03-19 17:42:48 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60, v4l1-compat videodev v4l2-common)
|
|
|
|
endif
|
2009-05-11 20:40:28 +00:00
|
|
|
endef
|
2007-09-16 16:39:18 +00:00
|
|
|
|
|
|
|
define KernelPackage/video-core/description
|
|
|
|
Kernel modules for Video4Linux support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-core))
|
|
|
|
|
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/video
|
2007-09-20 07:31:06 +00:00
|
|
|
SUBMENU:=$(VIDEO_MENU)
|
2010-01-22 08:18:04 +00:00
|
|
|
DEPENDS+=kmod-video-core $(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2012-05-06 20:35:54 +00:00
|
|
|
define KernelPackage/video-videobuf2
|
|
|
|
TITLE:=videobuf2 lib
|
|
|
|
DEPENDS:= @!(LINUX_2_6_37||LINUX_2_6_38)
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_VIDEOBUF2_CORE \
|
|
|
|
CONFIG_VIDEOBUF2_MEMOPS \
|
|
|
|
CONFIG_VIDEOBUF2_VMALLOC
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/videobuf2-core.ko \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/videobuf2-memops.ko \
|
|
|
|
$(LINUX_DIR)/drivers/media/video/videobuf2-vmalloc.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,videobuf2-core videobuf2-memops videobuf2-vmalloc)
|
|
|
|
$(call AddDepends/video)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-videobuf2/description
|
|
|
|
Kernel modules for supporting CPIA2 USB based cameras.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-videobuf2))
|
|
|
|
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
define KernelPackage/video-cpia2
|
2007-09-20 07:31:06 +00:00
|
|
|
TITLE:=CPIA2 video driver
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core
|
2007-09-20 07:31:06 +00:00
|
|
|
KCONFIG:=CONFIG_VIDEO_CPIA2
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/cpia2/cpia2.ko
|
2007-09-20 07:31:06 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,cpia2)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video)
|
2007-09-20 07:31:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-cpia2/description
|
|
|
|
Kernel modules for supporting CPIA2 USB based cameras.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-cpia2))
|
|
|
|
|
|
|
|
|
2009-07-25 23:41:22 +00:00
|
|
|
define KernelPackage/video-sn9c102
|
|
|
|
TITLE:=SN9C102 Camera Chip support
|
2010-08-11 16:53:44 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core
|
2009-07-25 23:41:22 +00:00
|
|
|
KCONFIG:=CONFIG_USB_SN9C102
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/sn9c102/sn9c102.ko
|
2010-03-24 23:33:50 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,gspca_sn9c20x)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video)
|
2009-07-25 23:41:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-sn9c102/description
|
|
|
|
Kernel modules for supporting SN9C102
|
|
|
|
camera chips.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-sn9c102))
|
|
|
|
|
|
|
|
|
2007-09-16 16:39:18 +00:00
|
|
|
define KernelPackage/video-pwc
|
2007-09-20 07:31:06 +00:00
|
|
|
TITLE:=Philips USB webcam support
|
2012-05-06 20:35:54 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core +!(LINUX_2_6_37||LINUX_2_6_38||LINUX_2_6_39||LINUX_3_0):kmod-video-videobuf2
|
2007-09-16 16:39:18 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_USB_PWC \
|
|
|
|
CONFIG_USB_PWC_DEBUG=n
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/pwc/pwc.ko
|
2007-09-16 16:39:18 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,pwc)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video)
|
2007-09-16 16:39:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-pwc/description
|
|
|
|
Kernel modules for supporting Philips USB based cameras.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-pwc))
|
|
|
|
|
2009-02-16 04:30:48 +00:00
|
|
|
define KernelPackage/video-uvc
|
|
|
|
TITLE:=USB Video Class (UVC) support
|
2012-05-06 20:35:54 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core +!(LINUX_2_6_37||LINUX_2_6_38||LINUX_2_6_39||LINUX_3_0||LINUX_3_1||LINUX_3_2):kmod-video-videobuf2
|
2009-08-27 08:38:16 +00:00
|
|
|
KCONFIG:= CONFIG_USB_VIDEO_CLASS
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/uvc/uvcvideo.ko
|
2009-02-16 04:30:48 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,uvcvideo)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video)
|
2010-08-11 17:00:01 +00:00
|
|
|
$(call AddDepends/input)
|
2009-02-16 04:30:48 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-uvc/description
|
|
|
|
Kernel modules for supporting USB Video Class (UVC) devices.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-uvc))
|
2009-08-27 08:38:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-core
|
|
|
|
MENU:=1
|
|
|
|
TITLE:=GSPCA webcam core support framework
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core
|
2009-08-27 08:38:16 +00:00
|
|
|
KCONFIG:=CONFIG_USB_GSPCA
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_main.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,70,gspca_main)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-core/description
|
|
|
|
Kernel modules for supporting GSPCA based webcam devices. Note this is just
|
|
|
|
the core of the driver, please select a submodule that supports your webcam.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-core))
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/video-gspca
|
2009-08-27 08:38:16 +00:00
|
|
|
SUBMENU:=$(VIDEO_MENU)
|
2010-01-22 08:18:04 +00:00
|
|
|
DEPENDS+=kmod-video-gspca-core $(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-conex
|
2009-08-27 08:38:16 +00:00
|
|
|
TITLE:=conex webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_CONEX
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_conex.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_conex)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-conex/description
|
|
|
|
The Conexant Camera Driver (conex) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-conex))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-etoms
|
|
|
|
TITLE:=etoms webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_ETOMS
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_etoms.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_etoms)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-etoms/description
|
|
|
|
The Etoms USB Camera Driver (etoms) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-etoms))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-finepix
|
|
|
|
TITLE:=finepix webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_FINEPIX
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_finepix.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_finepix)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-finepix/description
|
|
|
|
The Fujifilm FinePix USB V4L2 driver (finepix) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-finepix))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-mars
|
|
|
|
TITLE:=mars webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_MARS
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_mars.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_mars)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-mars/description
|
|
|
|
The Mars USB Camera Driver (mars) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-mars))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-mr97310a
|
|
|
|
TITLE:=mr97310a webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_MR97310A
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_mr97310a.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_mr97310a)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-mr97310a/description
|
|
|
|
The Mars-Semi MR97310A USB Camera Driver (mr97310a) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-mr97310a))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-ov519
|
|
|
|
TITLE:=ov519 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_OV519
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_ov519.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_ov519)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-ov519/description
|
|
|
|
The OV519 USB Camera Driver (ov519) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-ov519))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-ov534
|
|
|
|
TITLE:=ov534 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_OV534
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_ov534.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_ov534)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-ov534/description
|
|
|
|
The OV534 USB Camera Driver (ov534) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-ov534))
|
|
|
|
|
|
|
|
|
2012-03-18 18:14:10 +00:00
|
|
|
define KernelPackage/video-gspca-ov534-9
|
2012-03-18 18:37:08 +00:00
|
|
|
TITLE:=ov534-9 webcam support
|
2012-03-18 18:14:10 +00:00
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_OV534_9
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_ov534_9.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_ov534_9)
|
|
|
|
$(call AddDepends/video-gspca)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-ov534-9/description
|
|
|
|
The OV534-9 USB Camera Driver (ov534_9) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-ov534-9))
|
|
|
|
|
|
|
|
|
2009-08-27 08:38:16 +00:00
|
|
|
define KernelPackage/video-gspca-pac207
|
|
|
|
TITLE:=pac207 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_PAC207
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_pac207.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_pac207)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-pac207/description
|
|
|
|
The Pixart PAC207 USB Camera Driver (pac207) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-pac207))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-pac7311
|
|
|
|
TITLE:=pac7311 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_PAC7311
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_pac7311.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_pac7311)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-pac7311/description
|
|
|
|
The Pixart PAC7311 USB Camera Driver (pac7311) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-pac7311))
|
|
|
|
|
|
|
|
|
2010-03-20 10:27:18 +00:00
|
|
|
define KernelPackage/video-gspca-sn9c20x
|
|
|
|
TITLE:=sn9c20x webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SN9C20X
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sn9c20x.ko
|
2010-03-20 10:27:18 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,sn9c20x)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2010-03-20 10:27:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sn9c20x/description
|
|
|
|
The SN9C20X USB Camera Driver (sn9c20x) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-sn9c20x))
|
|
|
|
|
|
|
|
|
2009-08-27 08:38:16 +00:00
|
|
|
define KernelPackage/video-gspca-sonixb
|
|
|
|
TITLE:=sonixb webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SONIXB
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sonixb.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sonixb)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sonixb/description
|
|
|
|
The SONIX Bayer USB Camera Driver (sonixb) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-sonixb))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sonixj
|
|
|
|
TITLE:=sonixj webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SONIXJ
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sonixj.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sonixj)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sonixj/description
|
|
|
|
The SONIX JPEG USB Camera Driver (sonixj) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-sonixj))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca500
|
|
|
|
TITLE:=spca500 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA500
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca500.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca500)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca500/description
|
|
|
|
The SPCA500 USB Camera Driver (spca500) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-spca500))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca501
|
|
|
|
TITLE:=spca501 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA501
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca501.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca501)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca501/description
|
|
|
|
The SPCA501 USB Camera Driver (spca501) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-spca501))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca505
|
|
|
|
TITLE:=spca505 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA505
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca505.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca505)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca505/description
|
|
|
|
The SPCA505 USB Camera Driver (spca505) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-spca505))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca506
|
|
|
|
TITLE:=spca506 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA506
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca506.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca506)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca506/description
|
|
|
|
The SPCA506 USB Camera Driver (spca506) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-spca506))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca508
|
|
|
|
TITLE:=spca508 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA508
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca508.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca508)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca508/description
|
|
|
|
The SPCA508 USB Camera Driver (spca508) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-spca508))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca561
|
|
|
|
TITLE:=spca561 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA561
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca561.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca561)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-spca561/description
|
|
|
|
The SPCA561 USB Camera Driver (spca561) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-spca561))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sq905
|
|
|
|
TITLE:=sq905 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SQ905
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sq905.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sq905)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sq905/description
|
|
|
|
The SQ Technologies SQ905 based USB Camera Driver (sq905) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-sq905))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sq905c
|
|
|
|
TITLE:=sq905c webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SQ905C
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sq905c.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sq905c)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sq905c/description
|
|
|
|
The SQ Technologies SQ905C based USB Camera Driver (sq905c) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-sq905c))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-stk014
|
|
|
|
TITLE:=stk014 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_STK014
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_stk014.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_stk014)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-stk014/description
|
|
|
|
The Syntek DV4000 (STK014) USB Camera Driver (stk014) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-stk014))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sunplus
|
|
|
|
TITLE:=sunplus webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_SUNPLUS
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sunplus.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sunplus)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-sunplus/description
|
|
|
|
The SUNPLUS USB Camera Driver (sunplus) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-sunplus))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-t613
|
|
|
|
TITLE:=t613 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_T613
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_t613.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_t613)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-t613/description
|
|
|
|
The T613 (JPEG Compliance) USB Camera Driver (t613) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-t613))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-tv8532
|
|
|
|
TITLE:=tv8532 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_TV8532
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_tv8532.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_tv8532)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-tv8532/description
|
|
|
|
The TV8532 USB Camera Driver (tv8532) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-tv8532))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-vc032x
|
|
|
|
TITLE:=vc032x webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_VC032X
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_vc032x.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_vc032x)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-vc032x/description
|
|
|
|
The VC032X USB Camera Driver (vc032x) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-vc032x))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-zc3xx
|
|
|
|
TITLE:=zc3xx webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_ZC3XX
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_zc3xx.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_zc3xx)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-zc3xx/description
|
|
|
|
The ZC3XX USB Camera Driver (zc3xx) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-zc3xx))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-m5602
|
|
|
|
TITLE:=m5602 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_M5602
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/m5602/gspca_m5602.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_m5602)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-m5602/description
|
|
|
|
The ALi USB m5602 Camera Driver (m5602) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-m5602))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-stv06xx
|
|
|
|
TITLE:=stv06xx webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_STV06XX
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/stv06xx/gspca_stv06xx.ko
|
2009-08-27 08:38:16 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_stv06xx)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2009-08-27 08:38:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-stv06xx/description
|
|
|
|
The STV06XX USB Camera Driver (stv06xx) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-stv06xx))
|
2010-01-28 18:38:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-gl860
|
|
|
|
TITLE:=gl860 webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GL860
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gl860/gspca_gl860.ko
|
2010-01-28 18:38:27 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_gl860)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2010-01-28 18:38:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-gl800/description
|
|
|
|
The GL860 USB Camera Driver (gl860) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-gl860))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-jeilinj
|
|
|
|
TITLE:=jeilinj webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_JEILINJ
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_jeilinj.ko
|
2010-01-28 18:38:27 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_jeilinj)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/video-gspca)
|
2010-01-28 18:38:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-jeilinj/description
|
|
|
|
The JEILINJ USB Camera Driver (jeilinj) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-jeilinj))
|
2012-05-06 20:34:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-konica
|
|
|
|
TITLE:=konica webcam support
|
|
|
|
KCONFIG:=CONFIG_USB_GSPCA_KONICA
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_konica.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,75,gspca_konica)
|
|
|
|
$(call AddDepends/video-gspca)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/video-gspca-konica/description
|
|
|
|
The Konica USB Camera Driver (konica) kernel module.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,video-gspca-konica))
|