2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=@SF/qce-ga
18 PKG_MD5SUM:=6f6787e1dda11ca3b936ad434154f426
20 include $(INCLUDE_DIR)/package.mk
22 define Package/qc-usb/Default
23 URL:=http://qce-ga.sourceforge.net/
26 define Package/qc-usb-utils
27 $(call Package/qc-usb/Default)
30 TITLE:=Utility programs for the qc-usb kernel module
33 define Package/qc-usb-utils/description
34 Utilities to tweak parameters of your QuickCam Express or similar webcam.
35 These programs are completely useless without a qc-usb-modules package.
38 define KernelPackage/video-quickcam
39 $(call Package/qc-usb/Default)
40 SUBMENU:=Video Support
41 TITLE:=QuickCam Express USB webcam support
42 DEPENDS:=@USB_SUPPORT +kmod-usb-core kmod-video-core
43 FILES:=$(PKG_BUILD_DIR)/quickcam.$(LINUX_KMOD_SUFFIX)
44 AUTOLOAD:=$(call AutoLoad,90,quickcam)
47 define KernelPackage/video-quickcam/description
48 Kernel support for Logitech's QuickCam Express webcam and other webcams
49 with similar chipsets.
53 ifeq ($(LINUX_KARCH),i386)
54 KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
56 ifeq ($(LINUX_KARCH),mips)
57 KERNEL_C_OPTS:= -Os -G 0 -mlong-calls -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap
61 ifneq ($(CONFIG_PACKAGE_kmod-video-quickcam),)
62 define Build/Compile/kmod
63 $(MAKE) -C $(PKG_BUILD_DIR) \
64 LINUX_DIR="$(LINUX_DIR)" \
65 ARCH="$(LINUX_KARCH)" \
66 CROSS_COMPILE="$(TARGET_CROSS)" \
68 LD="$(TARGET_CC) -nodefaultlibs -nostartfiles" \
69 USER_OPT="$(KERNEL_C_OPTS)" \
70 quickcam.$(LINUX_KMOD_SUFFIX)
75 $(call Build/Compile/kmod)
76 $(MAKE) -C $(PKG_BUILD_DIR) \
77 CFLAGS="$(TARGET_CFLAGS)" \
81 define Package/qc-usb-utils/install
82 $(INSTALL_DIR) $(1)/usr/bin
83 $(INSTALL_BIN) $(PKG_BUILD_DIR)/qcset $(1)/usr/bin/
86 $(eval $(call BuildPackage,qc-usb-utils))
87 $(eval $(call KernelPackage,video-quickcam))