add linux-uvc patch from #2842
[openwrt/openwrt.git] / package / linux-uvc / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=linux-uvc
13 PKG_REV:=151
14 PKG_VERSION:=r$(PKG_REV)
15 PKG_RELEASE:=1
16
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_SOURCE_URL:=svn://svn.berlios.de/linux-uvc/linux-uvc/trunk
19 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20 PKG_SOURCE_VERSION:=$(PKG_REV)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define KernelPackage/video-uvc
25 SUBMENU:=Video Support
26 TITLE:=USB Video Class (UVC) support
27 URL:=http://linux-uvc.berlios.de/
28 DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
29 FILES:=$(PKG_BUILD_DIR)/uvcvideo.$(LINUX_KMOD_SUFFIX)
30 AUTOLOAD:=$(call AutoLoad,90,uvcvideo)
31 endef
32
33 define Build/Compile
34 $(MAKE) -C $(LINUX_DIR) \
35 ARCH="$(LINUX_KARCH)" \
36 CROSS_COMPILE="$(TARGET_CROSS)" \
37 SUBDIRS="$(PKG_BUILD_DIR)" \
38 modules
39 endef
40
41 $(eval $(call KernelPackage,video-uvc))