1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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
This commit is contained in:
nico
2007-09-16 16:39:18 +00:00
parent d5ec78aae9
commit 22348e0a56
7 changed files with 102 additions and 87 deletions

View File

@@ -19,10 +19,10 @@ PKG_MD5SUM:=e18a21b80e1728c6b51b799d1e671f8c
include $(INCLUDE_DIR)/package.mk
define KernelPackage/gspca
SUBMENU:=Other modules
DEPENDS:=@LINUX_2_6 kmod-usb-core kmod-videodev
TITLE:=Driver for SPCA5xx based USB cameras
define KernelPackage/video-gspca
SUBMENU:=Video Support
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core +kmod-video-core
TITLE:=SPCA5xx based USB webcam support
URL:=http://mxhaard.free.fr/
FILES:=$(PKG_BUILD_DIR)/gspca.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,90,gspca)
@@ -39,4 +39,4 @@ define Build/Compile
modules
endef
$(eval $(call KernelPackage,gspca))
$(eval $(call KernelPackage,video-gspca))