diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-06 02:12:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-06 02:12:37 +0000 |
commit | 7299761c585d1b59624158b58f620b2bd1de1ccd (patch) | |
tree | b26d95c62e6ca8d486e6f786414f4acc2737bc48 /package/qc-usb | |
parent | 7786d3cf4e7e198e34ee2a2461125bc6fce73b06 (diff) | |
download | upstream-7299761c585d1b59624158b58f620b2bd1de1ccd.tar.gz upstream-7299761c585d1b59624158b58f620b2bd1de1ccd.tar.bz2 upstream-7299761c585d1b59624158b58f620b2bd1de1ccd.zip |
Remove LINUX_2_6 dependency from qc-usb
This patch removes LINUX_2_6 dependency from qc-usb for those of us who
still have broadcom chipsets as qc-usb works fine on LINUX_2_4 too. This
compiles with both 2.4 and 2.6 kernels selected, and although i do not
have a Kamikaze svn system, the same changes (albeit without the new
package name changes in svn vs 7.09) work fine on my running 2.4 system
with a Quickcam Express card (older model).
Signed-off-by: Misha Koshelev <mk144210 at bcm dot edu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10123 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/qc-usb')
-rw-r--r-- | package/qc-usb/Makefile | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/package/qc-usb/Makefile b/package/qc-usb/Makefile index 57f63941f0..ff41469b32 100644 --- a/package/qc-usb/Makefile +++ b/package/qc-usb/Makefile @@ -39,7 +39,7 @@ define KernelPackage/video-quickcam $(call Package/qc-usb/Default) SUBMENU:=Video Support TITLE:=QuickCam Express USB webcam support - DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core + DEPENDS:=@USB_SUPPORT +kmod-usb-core kmod-video-core FILES:=$(PKG_BUILD_DIR)/quickcam.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,90,quickcam) endef @@ -49,13 +49,25 @@ define KernelPackage/video-quickcam/description with similar chipsets. endef +ifeq ($(KERNEL),2.4) + ifeq ($(LINUX_KARCH),i386) + KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time + endif + ifeq ($(LINUX_KARCH),mips) + 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 + endif +endif + ifneq ($(CONFIG_PACKAGE_kmod-video-quickcam),) define Build/Compile/kmod - $(MAKE) -C $(LINUX_DIR) \ + $(MAKE) -C $(PKG_BUILD_DIR) \ + LINUX_DIR="$(LINUX_DIR)" \ ARCH="$(LINUX_KARCH)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ - SUBDIRS="$(PKG_BUILD_DIR)" \ - modules + CC="$(TARGET_CC)" \ + LD="$(TARGET_CC) -nodefaultlibs -nostartfiles" \ + USER_OPT="$(KERNEL_C_OPTS)" \ + quickcam.$(LINUX_KMOD_SUFFIX) endef endif |