add the in-tree gspca driver
Signed-off-by: David Cooper <dave at kupesoft.com> SVN-Revision: 17421
This commit is contained in:
parent
06f095a73a
commit
c7d20c0a7e
4 changed files with 534 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2008 OpenWrt.org
|
# Copyright (C) 2009 David Cooper <dave@kupesoft.com>
|
||||||
|
# Copyright (C) 2006-2009 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
|
@ -166,9 +167,7 @@ define KernelPackage/video-uvc
|
||||||
SUBMENU:=$(VIDEO_MENU)
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
TITLE:=USB Video Class (UVC) support
|
TITLE:=USB Video Class (UVC) support
|
||||||
DEPENDS:=@LINUX_2_6 @!LINUX_2_6_25 @!LINUX_2_6_24 @!LINUX_2_6_23 @USB_SUPPORT +kmod-usb-core +kmod-video-core
|
DEPENDS:=@LINUX_2_6 @!LINUX_2_6_25 @!LINUX_2_6_24 @!LINUX_2_6_23 @USB_SUPPORT +kmod-usb-core +kmod-video-core
|
||||||
KCONFIG:= \
|
KCONFIG:= CONFIG_USB_VIDEO_CLASS
|
||||||
CONFIG_USB_VIDEO_CLASS \
|
|
||||||
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
|
|
||||||
FILES:=$(LINUX_DIR)/drivers/media/video/uvc/uvcvideo.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/drivers/media/video/uvc/uvcvideo.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,90,uvcvideo)
|
AUTOLOAD:=$(call AutoLoad,90,uvcvideo)
|
||||||
endef
|
endef
|
||||||
|
@ -179,3 +178,453 @@ define KernelPackage/video-uvc/description
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,video-uvc))
|
$(eval $(call KernelPackage,video-uvc))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-core
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
MENU:=1
|
||||||
|
TITLE:=GSPCA webcam core support framework
|
||||||
|
DEPENDS:=@LINUX_2_6 @!LINUX_2_6_21 @!LINUX_2_6_25 @!LINUX_2_6_27 @USB_SUPPORT +kmod-usb-core +kmod-video-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_main.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,70,gspca_main)
|
||||||
|
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))
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-conex
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=conex webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_CONEX
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_conex.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_conex)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=etoms webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_ETOMS
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_etoms.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_etoms)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=finepix webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_FINEPIX
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_finepix.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_finepix)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=mars webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_MARS
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_mars.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_mars)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=mr97310a webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core @!LINUX_2_6_28
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_MR97310A
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_mr97310a.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_mr97310a)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=ov519 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_OV519
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_ov519.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_ov519)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=ov534 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core @!LINUX_2_6_28
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_OV534
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_ov534.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_ov534)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-ov534/description
|
||||||
|
The OV534 USB Camera Driver (ov534) kernel module.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,video-gspca-ov534))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-pac207
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=pac207 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_PAC207
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_pac207.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_pac207)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=pac7311 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_PAC7311
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_pac7311.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_pac7311)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-pac7311/description
|
||||||
|
The Pixart PAC7311 USB Camera Driver (pac7311) kernel module.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,video-gspca-pac7311))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-sonixb
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=sonixb webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SONIXB
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sonixb.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sonixb)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=sonixj webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SONIXJ
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sonixj.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sonixj)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=spca500 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA500
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca500.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca500)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=spca501 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA501
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca501.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca501)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=spca505 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA505
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca505.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca505)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=spca506 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA506
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca506.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca506)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=spca508 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA508
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca508.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca508)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=spca561 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SPCA561
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_spca561.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_spca561)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=sq905 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core @!LINUX_2_6_28
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SQ905
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sq905.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sq905)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=sq905c webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core @!LINUX_2_6_28
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SQ905C
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sq905c.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sq905c)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=stk014 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_STK014
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_stk014.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_stk014)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=sunplus webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_SUNPLUS
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_sunplus.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_sunplus)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=t613 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_T613
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_t613.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_t613)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=tv8532 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_TV8532
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_tv8532.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_tv8532)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=vc032x webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_VC032X
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_vc032x.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_vc032x)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=zc3xx webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_GSPCA_ZC3XX
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/gspca_zc3xx.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_zc3xx)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=m5602 webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core
|
||||||
|
KCONFIG:=CONFIG_USB_M5602
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/m5602/gspca_m5602.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_m5602)
|
||||||
|
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
|
||||||
|
SUBMENU:=$(VIDEO_MENU)
|
||||||
|
TITLE:=stv06xx webcam support
|
||||||
|
DEPENDS:=kmod-video-gspca-core @!LINUX_2_6_28
|
||||||
|
KCONFIG:=CONFIG_USB_STV06XX
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/media/video/gspca/stv06xx/gspca_stv06xx.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,75,gspca_stv06xx)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/video-gspca-stv06xx/description
|
||||||
|
The STV06XX USB Camera Driver (stv06xx) kernel module.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,video-gspca-stv06xx))
|
||||||
|
|
|
@ -1976,6 +1976,27 @@ CONFIG_USB_EZUSB=y
|
||||||
# CONFIG_USB_FTDI_ELAN is not set
|
# CONFIG_USB_FTDI_ELAN is not set
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
# CONFIG_USB_GSPCA is not set
|
# CONFIG_USB_GSPCA is not set
|
||||||
|
# CONFIG_USB_GSPCA_CONEX is not set
|
||||||
|
# CONFIG_USB_GSPCA_ETOMS is not set
|
||||||
|
# CONFIG_USB_GSPCA_FINEPIX is not set
|
||||||
|
# CONFIG_USB_GSPCA_MARS is not set
|
||||||
|
# CONFIG_USB_GSPCA_OV519 is not set
|
||||||
|
# CONFIG_USB_GSPCA_PAC207 is not set
|
||||||
|
# CONFIG_USB_GSPCA_PAC7311 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SONIXB is not set
|
||||||
|
# CONFIG_USB_GSPCA_SONIXJ is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA500 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA501 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA505 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA506 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA508 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA561 is not set
|
||||||
|
# CONFIG_USB_GSPCA_STK014 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SUNPLUS is not set
|
||||||
|
# CONFIG_USB_GSPCA_T613 is not set
|
||||||
|
# CONFIG_USB_GSPCA_TV8532 is not set
|
||||||
|
# CONFIG_USB_GSPCA_VC032X is not set
|
||||||
|
# CONFIG_USB_GSPCA_ZC3XX is not set
|
||||||
# CONFIG_USB_HIDDEV is not set
|
# CONFIG_USB_HIDDEV is not set
|
||||||
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
||||||
CONFIG_USB_HIDINPUT=y
|
CONFIG_USB_HIDINPUT=y
|
||||||
|
@ -2000,6 +2021,7 @@ CONFIG_USB_HIDINPUT=y
|
||||||
# CONFIG_USB_LED is not set
|
# CONFIG_USB_LED is not set
|
||||||
# CONFIG_USB_LEGOTOWER is not set
|
# CONFIG_USB_LEGOTOWER is not set
|
||||||
# CONFIG_USB_LIBUSUAL is not set
|
# CONFIG_USB_LIBUSUAL is not set
|
||||||
|
# CONFIG_USB_M5602 is not set
|
||||||
# CONFIG_USB_MDC800 is not set
|
# CONFIG_USB_MDC800 is not set
|
||||||
# CONFIG_USB_MICROTEK is not set
|
# CONFIG_USB_MICROTEK is not set
|
||||||
# CONFIG_USB_MON is not set
|
# CONFIG_USB_MON is not set
|
||||||
|
@ -2123,6 +2145,7 @@ CONFIG_USB_STORAGE_USBAT=y
|
||||||
# CONFIG_USB_USBNET_MII is not set
|
# CONFIG_USB_USBNET_MII is not set
|
||||||
# CONFIG_USB_VICAM is not set
|
# CONFIG_USB_VICAM is not set
|
||||||
# CONFIG_USB_VIDEO_CLASS is not set
|
# CONFIG_USB_VIDEO_CLASS is not set
|
||||||
|
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
|
||||||
# CONFIG_USB_VST is not set
|
# CONFIG_USB_VST is not set
|
||||||
# CONFIG_USB_W9968CF is not set
|
# CONFIG_USB_W9968CF is not set
|
||||||
# CONFIG_USB_WACOM is not set
|
# CONFIG_USB_WACOM is not set
|
||||||
|
|
|
@ -2098,6 +2098,31 @@ CONFIG_USB_EZUSB=y
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
# CONFIG_USB_GPIO_VBUS is not set
|
# CONFIG_USB_GPIO_VBUS is not set
|
||||||
# CONFIG_USB_GSPCA is not set
|
# CONFIG_USB_GSPCA is not set
|
||||||
|
# CONFIG_USB_GSPCA_CONEX is not set
|
||||||
|
# CONFIG_USB_GSPCA_ETOMS is not set
|
||||||
|
# CONFIG_USB_GSPCA_FINEPIX is not set
|
||||||
|
# CONFIG_USB_GSPCA_MARS is not set
|
||||||
|
# CONFIG_USB_GSPCA_MR97310A is not set
|
||||||
|
# CONFIG_USB_GSPCA_OV519 is not set
|
||||||
|
# CONFIG_USB_GSPCA_OV534 is not set
|
||||||
|
# CONFIG_USB_GSPCA_PAC207 is not set
|
||||||
|
# CONFIG_USB_GSPCA_PAC7311 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SONIXB is not set
|
||||||
|
# CONFIG_USB_GSPCA_SONIXJ is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA500 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA501 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA505 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA506 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA508 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA561 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SQ905 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SQ905C is not set
|
||||||
|
# CONFIG_USB_GSPCA_STK014 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SUNPLUS is not set
|
||||||
|
# CONFIG_USB_GSPCA_T613 is not set
|
||||||
|
# CONFIG_USB_GSPCA_TV8532 is not set
|
||||||
|
# CONFIG_USB_GSPCA_VC032X is not set
|
||||||
|
# CONFIG_USB_GSPCA_ZC3XX is not set
|
||||||
# CONFIG_USB_HIDDEV is not set
|
# CONFIG_USB_HIDDEV is not set
|
||||||
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
||||||
CONFIG_USB_HIDINPUT=y
|
CONFIG_USB_HIDINPUT=y
|
||||||
|
@ -2122,6 +2147,7 @@ CONFIG_USB_HIDINPUT=y
|
||||||
# CONFIG_USB_LED is not set
|
# CONFIG_USB_LED is not set
|
||||||
# CONFIG_USB_LEGOTOWER is not set
|
# CONFIG_USB_LEGOTOWER is not set
|
||||||
# CONFIG_USB_LIBUSUAL is not set
|
# CONFIG_USB_LIBUSUAL is not set
|
||||||
|
# CONFIG_USB_M5602 is not set
|
||||||
# CONFIG_USB_MDC800 is not set
|
# CONFIG_USB_MDC800 is not set
|
||||||
# CONFIG_USB_MICROTEK is not set
|
# CONFIG_USB_MICROTEK is not set
|
||||||
# CONFIG_USB_MON is not set
|
# CONFIG_USB_MON is not set
|
||||||
|
@ -2242,6 +2268,7 @@ CONFIG_USB_STORAGE_SDDR09=y
|
||||||
CONFIG_USB_STORAGE_SDDR55=y
|
CONFIG_USB_STORAGE_SDDR55=y
|
||||||
# CONFIG_USB_STORAGE_SIERRA is not set
|
# CONFIG_USB_STORAGE_SIERRA is not set
|
||||||
CONFIG_USB_STORAGE_USBAT=y
|
CONFIG_USB_STORAGE_USBAT=y
|
||||||
|
# CONFIG_USB_STV06XX is not set
|
||||||
# CONFIG_USB_STV680 is not set
|
# CONFIG_USB_STV680 is not set
|
||||||
# CONFIG_USB_SUPPORT is not set
|
# CONFIG_USB_SUPPORT is not set
|
||||||
# CONFIG_USB_TEST is not set
|
# CONFIG_USB_TEST is not set
|
||||||
|
@ -2253,6 +2280,7 @@ CONFIG_USB_STORAGE_USBAT=y
|
||||||
# CONFIG_USB_USBNET_MII is not set
|
# CONFIG_USB_USBNET_MII is not set
|
||||||
# CONFIG_USB_VICAM is not set
|
# CONFIG_USB_VICAM is not set
|
||||||
# CONFIG_USB_VIDEO_CLASS is not set
|
# CONFIG_USB_VIDEO_CLASS is not set
|
||||||
|
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
|
||||||
# CONFIG_USB_VST is not set
|
# CONFIG_USB_VST is not set
|
||||||
# CONFIG_USB_W9968CF is not set
|
# CONFIG_USB_W9968CF is not set
|
||||||
# CONFIG_USB_WACOM is not set
|
# CONFIG_USB_WACOM is not set
|
||||||
|
|
|
@ -2111,6 +2111,33 @@ CONFIG_USB_EZUSB=y
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
# CONFIG_USB_GPIO_VBUS is not set
|
# CONFIG_USB_GPIO_VBUS is not set
|
||||||
# CONFIG_USB_GSPCA is not set
|
# CONFIG_USB_GSPCA is not set
|
||||||
|
# CONFIG_USB_GSPCA_CONEX is not set
|
||||||
|
# CONFIG_USB_GSPCA_ETOMS is not set
|
||||||
|
# CONFIG_USB_GSPCA_FINEPIX is not set
|
||||||
|
# CONFIG_USB_GSPCA_MARS is not set
|
||||||
|
# CONFIG_USB_GSPCA_MR97310A is not set
|
||||||
|
# CONFIG_USB_GSPCA_OV519 is not set
|
||||||
|
# CONFIG_USB_GSPCA_OV534 is not set
|
||||||
|
# CONFIG_USB_GSPCA_PAC207 is not set
|
||||||
|
# CONFIG_USB_GSPCA_PAC7311 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SN9C20X is not set
|
||||||
|
CONFIG_USB_GSPCA_SN9C20X_EVDEV=y
|
||||||
|
# CONFIG_USB_GSPCA_SONIXB is not set
|
||||||
|
# CONFIG_USB_GSPCA_SONIXJ is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA500 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA501 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA505 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA506 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA508 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SPCA561 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SQ905 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SQ905C is not set
|
||||||
|
# CONFIG_USB_GSPCA_STK014 is not set
|
||||||
|
# CONFIG_USB_GSPCA_SUNPLUS is not set
|
||||||
|
# CONFIG_USB_GSPCA_T613 is not set
|
||||||
|
# CONFIG_USB_GSPCA_TV8532 is not set
|
||||||
|
# CONFIG_USB_GSPCA_VC032X is not set
|
||||||
|
# CONFIG_USB_GSPCA_ZC3XX is not set
|
||||||
# CONFIG_USB_HIDDEV is not set
|
# CONFIG_USB_HIDDEV is not set
|
||||||
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
||||||
CONFIG_USB_HIDINPUT=y
|
CONFIG_USB_HIDINPUT=y
|
||||||
|
@ -2135,6 +2162,7 @@ CONFIG_USB_HIDINPUT=y
|
||||||
# CONFIG_USB_LED is not set
|
# CONFIG_USB_LED is not set
|
||||||
# CONFIG_USB_LEGOTOWER is not set
|
# CONFIG_USB_LEGOTOWER is not set
|
||||||
# CONFIG_USB_LIBUSUAL is not set
|
# CONFIG_USB_LIBUSUAL is not set
|
||||||
|
# CONFIG_USB_M5602 is not set
|
||||||
# CONFIG_USB_MDC800 is not set
|
# CONFIG_USB_MDC800 is not set
|
||||||
# CONFIG_USB_MICROTEK is not set
|
# CONFIG_USB_MICROTEK is not set
|
||||||
# CONFIG_USB_MON is not set
|
# CONFIG_USB_MON is not set
|
||||||
|
@ -2255,6 +2283,7 @@ CONFIG_USB_STORAGE_SDDR09=y
|
||||||
CONFIG_USB_STORAGE_SDDR55=y
|
CONFIG_USB_STORAGE_SDDR55=y
|
||||||
# CONFIG_USB_STORAGE_SIERRA is not set
|
# CONFIG_USB_STORAGE_SIERRA is not set
|
||||||
CONFIG_USB_STORAGE_USBAT=y
|
CONFIG_USB_STORAGE_USBAT=y
|
||||||
|
# CONFIG_USB_STV06XX is not set
|
||||||
# CONFIG_USB_STV680 is not set
|
# CONFIG_USB_STV680 is not set
|
||||||
# CONFIG_USB_SUPPORT is not set
|
# CONFIG_USB_SUPPORT is not set
|
||||||
# CONFIG_USB_TEST is not set
|
# CONFIG_USB_TEST is not set
|
||||||
|
@ -2266,6 +2295,7 @@ CONFIG_USB_STORAGE_USBAT=y
|
||||||
# CONFIG_USB_USBNET_MII is not set
|
# CONFIG_USB_USBNET_MII is not set
|
||||||
# CONFIG_USB_VICAM is not set
|
# CONFIG_USB_VICAM is not set
|
||||||
# CONFIG_USB_VIDEO_CLASS is not set
|
# CONFIG_USB_VIDEO_CLASS is not set
|
||||||
|
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
|
||||||
# CONFIG_USB_VST is not set
|
# CONFIG_USB_VST is not set
|
||||||
# CONFIG_USB_W9968CF is not set
|
# CONFIG_USB_W9968CF is not set
|
||||||
# CONFIG_USB_WACOM is not set
|
# CONFIG_USB_WACOM is not set
|
||||||
|
|
Loading…
Reference in a new issue