X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/157f1fad33e13c5b01c2dc5fbc674e107605f866..8cfceab612ec83d1d3e3602ca5d3dec3dbb7ecc6:/package/kernel/modules/video.mk diff --git a/package/kernel/modules/video.mk b/package/kernel/modules/video.mk index 4a3603164..086bbde91 100644 --- a/package/kernel/modules/video.mk +++ b/package/kernel/modules/video.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -11,6 +11,7 @@ VIDEO_MENU:=Video Support define KernelPackage/video-core SUBMENU:=$(VIDEO_MENU) TITLE=Video4Linux support + DEPENDS:=@PCI_SUPPORT||USB_SUPPORT KCONFIG:= \ CONFIG_VIDEO_DEV \ CONFIG_VIDEO_V4L1=y \ @@ -47,7 +48,7 @@ $(eval $(call KernelPackage,video-core)) define KernelPackage/video-cpia2 SUBMENU:=$(VIDEO_MENU) TITLE:=CPIA2 video driver - DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core +kmod-video-core KCONFIG:=CONFIG_VIDEO_CPIA2 FILES:=$(LINUX_DIR)/drivers/media/video/cpia2/cpia2.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,70,cpia2) @@ -60,10 +61,62 @@ endef $(eval $(call KernelPackage,video-cpia2)) +define KernelPackage/video-konica + SUBMENU:=$(VIDEO_MENU) + TITLE:=Konica USB webcam support + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-video +kmod-video-core + KCONFIG:=CONFIG_USB_KONICAWC + FILES:=$(LINUX_DIR)/drivers/media/video/usbvideo/konicawc.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,70,konicawc) +endef + +define KernelPackage/video-konica/description + Kernel support for webcams based on a Konica chipset. This is known to + work with the Intel YC76 webcam. +endef + +$(eval $(call KernelPackage,video-konica)) + + +define KernelPackage/video-ov511 + SUBMENU:=$(VIDEO_MENU) + TITLE:=OV511 USB webcam support + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core +kmod-video-core + KCONFIG:=CONFIG_VIDEO_OV511 + FILES:=$(LINUX_DIR)/drivers/media/video/ov511.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,70,ov511) +endef + + +define KernelPackage/video-ov511/description + Kernel modules for supporting OmniVision OV511 USB webcams. +endef + +$(eval $(call KernelPackage,video-ov511)) + + +define KernelPackage/video-ovcamchip + SUBMENU:=$(VIDEO_MENU) + TITLE:=OV6xxx/OV7xxx Camera Chip support + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-i2c-core +kmod-video-core + KCONFIG:=CONFIG_VIDEO_OVCAMCHIP + FILES:=$(LINUX_DIR)/drivers/media/video/ovcamchip/ovcamchip.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,70,ovcamchip) +endef + + +define KernelPackage/video-ovcamchip/description + Kernel modules for supporting OmniVision OV6xxx and OV7xxx series of + camera chips. +endef + +$(eval $(call KernelPackage,video-ovcamchip)) + + define KernelPackage/video-pwc SUBMENU:=$(VIDEO_MENU) TITLE:=Philips USB webcam support - DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core +kmod-video-core KCONFIG:= \ CONFIG_USB_PWC \ CONFIG_USB_PWC_DEBUG=n @@ -78,3 +131,20 @@ endef $(eval $(call KernelPackage,video-pwc)) +define KernelPackage/video-uvc + SUBMENU:=$(VIDEO_MENU) + 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 + KCONFIG:= \ + CONFIG_USB_VIDEO_CLASS \ + CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y + FILES:=$(LINUX_DIR)/drivers/media/video/uvc/uvcvideo.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,90,uvcvideo) +endef + + +define KernelPackage/video-uvc/description + Kernel modules for supporting USB Video Class (UVC) devices. +endef + +$(eval $(call KernelPackage,video-uvc))