1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-26 09:51:05 +02:00

package/kernel: video: add missing dependencies (closes: #6497, #7542)

* kmod-i2c-core to kmod-video-core
 * kmod-input-core to kmod-video-uvc


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22597 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-08-11 17:00:01 +00:00
parent 48ed30fc1b
commit 8715e7dec2

View File

@ -11,7 +11,7 @@ VIDEO_MENU:=Video Support
define KernelPackage/video-core
SUBMENU:=$(VIDEO_MENU)
TITLE=Video4Linux support
DEPENDS:=@PCI_SUPPORT||USB_SUPPORT
DEPENDS:=@PCI_SUPPORT||USB_SUPPORT +!TARGET_etrax:kmod-i2c-core
KCONFIG:= \
CONFIG_MEDIA_SUPPORT=m \
CONFIG_VIDEO_DEV \
@ -162,6 +162,7 @@ define KernelPackage/video-uvc
FILES:=$(LINUX_DIR)/drivers/media/video/uvc/uvcvideo.ko
AUTOLOAD:=$(call AutoLoad,90,uvcvideo)
$(call AddDepends/video)
$(call AddDepends/input)
endef