diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-08-11 17:00:01 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-08-11 17:00:01 +0000 |
commit | b36a1274bb97647bd5d457a8f35e54ab8d4d2f14 (patch) | |
tree | 1a12a4ebe3ad726e82f4fb6c29bb760dbd240c3d | |
parent | d823419da8a0d559645d6dcc611db0afdacebe87 (diff) | |
download | upstream-b36a1274bb97647bd5d457a8f35e54ab8d4d2f14.tar.gz upstream-b36a1274bb97647bd5d457a8f35e54ab8d4d2f14.tar.bz2 upstream-b36a1274bb97647bd5d457a8f35e54ab8d4d2f14.zip |
package/kernel: video: add missing dependencies (closes: #6497, #7542) * kmod-i2c-core to kmod-video-core * kmod-input-core to kmod-video-uvc
SVN-Revision: 22597
-rw-r--r-- | package/kernel/modules/video.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/kernel/modules/video.mk b/package/kernel/modules/video.mk index 50d3501fa3..6091989dd3 100644 --- a/package/kernel/modules/video.mk +++ b/package/kernel/modules/video.mk @@ -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 |