diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-20 10:40:17 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-20 10:40:17 +0000 |
commit | 122e43ea225310d06219f4b173aee65240cbab24 (patch) | |
tree | a1d661d8cd16c7ca7808ab190098a5af82a41cb2 /package/linux-uvc | |
parent | a16666d23be92f7a5efc41e9efd4df84dfc484b1 (diff) | |
download | upstream-122e43ea225310d06219f4b173aee65240cbab24.tar.gz upstream-122e43ea225310d06219f4b173aee65240cbab24.tar.bz2 upstream-122e43ea225310d06219f4b173aee65240cbab24.zip |
rename uvcvideo to linux-uvc (match source name)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8867 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/linux-uvc')
-rw-r--r-- | package/linux-uvc/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/package/linux-uvc/Makefile b/package/linux-uvc/Makefile new file mode 100644 index 0000000000..4aa9834a00 --- /dev/null +++ b/package/linux-uvc/Makefile @@ -0,0 +1,39 @@ +# +# Copyright (C) 2007 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +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 + +define KernelPackage/video-uvc + SUBMENU:=Video Support + TITLE:=USB Video Class (UVC) support + URL:=http://linux-uvc.berlios.de/ + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core + 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 + +$(eval $(call KernelPackage,video-uvc)) |