Use Luc Saillard's pwc driver for linux 2.6 only (#522)
SVN-Revision: 5532
This commit is contained in:
parent
e953ce1e61
commit
72855b68de
@ -257,9 +257,6 @@ define KernelPackage/usb-pwc/2.4
|
||||
FILES:=$(MODULES_DIR)/kernel/drivers/usb/pwc.$(LINUX_KMOD_SUFFIX)
|
||||
endef
|
||||
|
||||
define KernelPackage/usb-pwc/2.6
|
||||
FILES:=$(MODULES_DIR)/kernel/drivers/usb/media/pwc.$(LINUX_KMOD_SUFFIX)
|
||||
endef
|
||||
$(eval $(call KernelPackage,usb-pwc))
|
||||
|
||||
|
||||
|
53
package/pwc/Makefile
Normal file
53
package/pwc/Makefile
Normal file
@ -0,0 +1,53 @@
|
||||
#
|
||||
# Copyright (C) 2006 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:=pwc
|
||||
PKG_VERSION:=10.0.12-rc1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=http://www.saillard.org/linux/pwc/files/
|
||||
PKG_MD5SUM:=8763f3d6fd0f9738ef9854de205a126d
|
||||
PKG_CAT:=bzcat
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/kmod-pwc
|
||||
SECTION:=kernel
|
||||
CATEGORY:=Kernel drivers
|
||||
DEPENDS:=@LINUX_2_6
|
||||
TITLE:=USB Philips camera driver
|
||||
URL:=http://www.saillard.org/linux/pwc/
|
||||
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(LINUX_DIR) \
|
||||
PATH="$(TARGET_PATH)" \
|
||||
KVER="$(LINUX_VERSION)" \
|
||||
KSRC="$(LINUX_DIR)" \
|
||||
SUBDIRS="$(PKG_BUILD_DIR)" \
|
||||
KERNEL_DIR="$(KERNEL_DIR)" \
|
||||
ARCH="$(LINUX_KARCH)" \
|
||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||
modules
|
||||
endef
|
||||
|
||||
define Package/kmod-pwc/install
|
||||
mkdir -p $(1)/etc/modules.d
|
||||
install -m0644 ./files/pwc.modules $(1)/etc/modules.d/70-pwc
|
||||
install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION)
|
||||
$(CP) $(PKG_BUILD_DIR)/pwc.$(LINUX_KMOD_SUFFIX) \
|
||||
$(1)/lib/modules/$(LINUX_VERSION)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,kmod-pwc))
|
1
package/pwc/files/pwc.modules
Normal file
1
package/pwc/files/pwc.modules
Normal file
@ -0,0 +1 @@
|
||||
pwc
|
Loading…
Reference in New Issue
Block a user