diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-16 16:39:18 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-16 16:39:18 +0000 |
commit | fb26b7b36990236ce1e1a524f8efbb2cef0d510e (patch) | |
tree | c33ad6fead665d6d230ddde3853349c3fc841be1 /package/spca5xx-le | |
parent | c275a5c648b24195e3af47738fb194f16ddf3bfe (diff) | |
download | upstream-fb26b7b36990236ce1e1a524f8efbb2cef0d510e.tar.gz upstream-fb26b7b36990236ce1e1a524f8efbb2cef0d510e.tar.bz2 upstream-fb26b7b36990236ce1e1a524f8efbb2cef0d510e.zip |
various changes for kernel video support:
* move kernel video related modules to a separate "Video Support" submenu and video.mk file
* rename kmod-videodev to kmod-video-core
* prefix all video modules with kmod-video-
* add missing dependencies on USB support
* rename kmod-usb-qc to kmod-video-quickcam
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8806 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/spca5xx-le')
-rw-r--r-- | package/spca5xx-le/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/spca5xx-le/Makefile b/package/spca5xx-le/Makefile index 9807c2c1e6..e3c0d285ca 100644 --- a/package/spca5xx-le/Makefile +++ b/package/spca5xx-le/Makefile @@ -20,10 +20,10 @@ PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME) include $(INCLUDE_DIR)/package.mk -define KernelPackage/spca5xx-le - SUBMENU:=Other modules - DEPENDS:=@LINUX_2_6 kmod-videodev - TITLE:=Driver for SPCA5xx based USB cameras (Light Edition) +define KernelPackage/video-spca5xx-le + SUBMENU:=Video Support + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core +kmod-video-core + TITLE:=SPCA5xx based USB webcam support (Light Edition) URL:=http://mxhaard.free.fr/ FILES:=$(PKG_BUILD_DIR)/spca5xx.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,90,spca5xx) @@ -40,4 +40,4 @@ define Build/Compile modules endef -$(eval $(call KernelPackage,spca5xx-le)) +$(eval $(call KernelPackage,video-spca5xx-le)) |