From: Nicolas Thill Date: Fri, 9 Dec 2005 10:00:28 +0000 (+0000) Subject: fix 2.6 module build when compiling on a 2.4 host system X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=7dc26fb372551403043adcb947dfca2d1cf2dcf8;hp=57861f0f6d86ba52ccf8e3c1b799d135c8230ab5 fix 2.6 module build when compiling on a 2.4 host system SVN-Revision: 2606 --- diff --git a/openwrt/target/linux/package/spca5xx/Makefile b/openwrt/target/linux/package/spca5xx/Makefile index a2b43e997d..95a48a9a30 100644 --- a/openwrt/target/linux/package/spca5xx/Makefile +++ b/openwrt/target/linux/package/spca5xx/Makefile @@ -28,6 +28,9 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.built: $(MAKE) -C $(KERNEL_DIR) \ + ARCH="$(LINUX_KARCH)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + KERNELVERSION="$(KERNEL_VERSION)" \ SUBDIRS="$(PKG_BUILD_DIR)" \ modules touch $@ diff --git a/openwrt/target/linux/package/spca5xx/patches/01-kmod-build.patch b/openwrt/target/linux/package/spca5xx/patches/01-kmod-build.patch index 5aeca16d66..f69caf8b91 100644 --- a/openwrt/target/linux/package/spca5xx/patches/01-kmod-build.patch +++ b/openwrt/target/linux/package/spca5xx/patches/01-kmod-build.patch @@ -1,7 +1,18 @@ diff -ruN spca5xx-20051105-old/Makefile spca5xx-20051105-new/Makefile --- spca5xx-20051105-old/Makefile 2005-11-05 19:18:26.000000000 +0100 -+++ spca5xx-20051105-new/Makefile 2005-12-08 21:50:20.000000000 +0100 -@@ -68,157 +68,18 @@ ++++ spca5xx-20051105-new/Makefile 2005-12-09 10:34:47.000000000 +0100 +@@ -33,7 +33,9 @@ + DEFINES += -DCONFIG_USB_SPCA5XX_MODULE=1 -DMODULE -D__KERNEL__ + DEFINES += -DVID_HARDWARE_SPCA5XX=0xFF -DSPCA5XX_VERSION=\"$(VERSION)\" + +-ifneq ($(shell uname -r | cut -d. -f1,2), 2.4) ++KERNELVERSION=$(shell uname -r | cut -d. -f1,2) ++ ++ifneq ($(KERNELVERSION), 2.4) + + ifneq ($(KERNELRELEASE),) # We were called by kbuild + CFLAGS += $(DEFINES) +@@ -68,158 +70,19 @@ else # kernel version test @@ -15,9 +26,11 @@ diff -ruN spca5xx-20051105-old/Makefile spca5xx-20051105-new/Makefile -# This makefile will build the spca50x driver module external to the kernel -# source tree. It makes it easier to swap kernels. - -- ++CFLAGS += $(DEFINES) + -KERNEL_VERSION = `uname -r` -- ++spca5xx-objs := drivers/usb/spca5xx.o drivers/usb/spcadecoder.o + -### -# Location of the header files (most importantly the config files) -# for the kernel you want to build the module against. @@ -31,12 +44,15 @@ diff -ruN spca5xx-20051105-old/Makefile spca5xx-20051105-new/Makefile -ifneq ($(strip $(shell grep 'define CONFIG_MODVERSIONS 1' $(KERNEL_ACFILE))),) - DEFINES += -DMODVERSIONS -include $(KERNEL_MODVERSIONSFILE) -endif -- ++obj-m += spca5xx.o ++obj-y := $(spca5xx-objs) + -# Detect SMP support -ifneq ($(strip $(shell grep 'define CONFIG_SMP 1' $(KERNEL_ACFILE))),) - DEFINES += -D__SMP__ -DSMP -endif -- ++O_TARGET := $(obj-m) + -# Setup the tools -CC = gcc -LD = ld @@ -153,19 +169,11 @@ diff -ruN spca5xx-20051105-old/Makefile spca5xx-20051105-new/Makefile -drivers/usb/spcadecoder.o: drivers/usb/spcadecoder.h \ - drivers/usb/spcagamma.h \ - drivers/usb/jpeg_header.h -+EXTRA_CFLAGS += $(DEFINES) - --endif # End kernel version test -+spca5xx-objs := drivers/usb/spca5xx.o drivers/usb/spcadecoder.o -+ -+obj-m += spca5xx.o -+obj-y := $(spca5xx-objs) -+ -+O_TARGET := $(obj-m) - +-include $(TOPDIR)/Rules.make -+ -+endif # End kernel version test + endif # End kernel version test + +- ############################################################################## # OTHER TARGETS + ##############################################################################