2007-07-26 12:08:23 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-09-20 10:31:06 +03:00
|
|
|
# $Id$
|
2007-07-26 12:08:23 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=linux-uvc
|
|
|
|
PKG_VERSION:=r111
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://naaa.de/programme/linux-uvc/
|
|
|
|
PKG_MD5SUM:=36c742d9dd1cf533fa059a1eeffa3e32
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2007-09-16 19:39:18 +03:00
|
|
|
define KernelPackage/video-uvc
|
|
|
|
SUBMENU:=Video Support
|
2007-09-20 10:31:06 +03:00
|
|
|
TITLE:=USB Video Class (UVC) support
|
2007-07-26 12:08:23 +03:00
|
|
|
URL:=http://linux-uvc.berlios.de/
|
2007-09-20 10:31:06 +03:00
|
|
|
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
|
2007-07-26 12:08:23 +03:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/uvcvideo.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,uvcvideo)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(LINUX_DIR) \
|
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
|
|
|
modules
|
|
|
|
endef
|
|
|
|
|
2007-09-16 19:39:18 +03:00
|
|
|
$(eval $(call KernelPackage,video-uvc))
|