2 # Copyright (C) 2006-2008 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
:=9eab8fb3a75326d1565d59b0c7256075
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
62 $(MAKE) -C $(PKG_BUILD_DIR) \
63 LINUX_DIR="$(LINUX_DIR)" \
64 ARCH="$(LINUX_KARCH)" \
65 CROSS_COMPILE="$(TARGET_CROSS)" \
67 LD="$(TARGET_CC) -nodefaultlibs -nostartfiles" \
68 USER_OPT="$(KERNEL_C_OPTS)" \
69 quickcam.$(LINUX_KMOD_SUFFIX)
70 $(MAKE) -C $(PKG_BUILD_DIR) \
71 CFLAGS="$(TARGET_CFLAGS)" \
75 define Package/qc-usb-utils/install
76 $(INSTALL_DIR) $(1)/usr/bin
77 $(INSTALL_BIN) $(PKG_BUILD_DIR)/qcset $(1)/usr/bin/
80 $(eval $(call BuildPackage,qc-usb-utils))
81 $(eval $(call KernelPackage,video-quickcam))