diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-20 07:31:06 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-20 07:31:06 +0000 |
commit | 092021f69babdcb6d6975fa2d7df0365bca03d0d (patch) | |
tree | 003fe76e9f43a8cdf3b617531ec01dbcea8e8836 /package/qc-usb/Makefile | |
parent | 7ba4e5c3c0b2d30c99ff1b6fbc6c7eca9c7cf471 (diff) | |
download | mtk-20170518-092021f69babdcb6d6975fa2d7df0365bca03d0d.zip mtk-20170518-092021f69babdcb6d6975fa2d7df0365bca03d0d.tar.gz mtk-20170518-092021f69babdcb6d6975fa2d7df0365bca03d0d.tar.bz2 |
video modules changes: change dependency on kmod-video-core from select to depends, cleanup
SVN-Revision: 8856
Diffstat (limited to 'package/qc-usb/Makefile')
-rw-r--r-- | package/qc-usb/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/package/qc-usb/Makefile b/package/qc-usb/Makefile index a1a16b3..57f6394 100644 --- a/package/qc-usb/Makefile +++ b/package/qc-usb/Makefile @@ -38,8 +38,8 @@ endef define KernelPackage/video-quickcam $(call Package/qc-usb/Default) SUBMENU:=Video Support - TITLE:=USB QuickCam Express webcam support - DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core +kmod-video-core + TITLE:=QuickCam Express USB webcam support + DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core FILES:=$(PKG_BUILD_DIR)/quickcam.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,90,quickcam) endef @@ -52,14 +52,9 @@ endef ifneq ($(CONFIG_PACKAGE_kmod-video-quickcam),) define Build/Compile/kmod $(MAKE) -C $(LINUX_DIR) \ - PATH="$(TARGET_PATH)" \ - KVER="$(LINUX_VERSION)" \ - KERNELRELEASE="$(LINUX_VERSION)" \ - KSRC="$(LINUX_DIR)" \ - SUBDIRS="$(PKG_BUILD_DIR)" \ - KERNEL_DIR="$(KERNEL_DIR)" \ - ARCH="$(LINUX_KARCH)" \ - CROSS_COMPILE="$(TARGET_CROSS)" \ + ARCH="$(LINUX_KARCH)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + SUBDIRS="$(PKG_BUILD_DIR)" \ modules endef endif |