Hola lista Estoy intentado compilar un driver para una webcam, una con chip Sun Plus, y al hacer make, éste me dice:
Building SPCA5XX driver for 2.5/2.6 kernel. PLEASE IGNORE THE "Overriding SUBDIRS" WARNING Remember: you must have read/write access to your kernel source tree. make -C /lib/modules/`uname -r`/build SUBDIRS=/home/diego/Desktop/Descargas/spca5xx-20041224 modules make[1]: Entering directory `/lib/modules/2.6.8-1-686/build' make[1]: *** No hay ninguna regla para construir el objetivo `modules'. Alto. make[1]: Leaving directory `/lib/modules/2.6.8-1-686/build' make: *** [default] Error 2 Tengo el kernel 2.6.8.1-686 que viene precompilado y he instalado las fuentes del kernel 2.6.8, todo esto en una Sarge. El Makefile lo mando adjunto. Si podeis ayudarme os lo agradecería. Saludos y Feliz Año. Diego Bote -- ************************************************************************* Diego Bote Barco Escuela de Ingenierías Industriales Área de Matemática Aplicada Avda. de Elvas s/nº Departamento de Matemáticas C.P.: 06071 BADAJOZ Universidad de Extremadura Tlf.: 924 289600 ext 6754 Fax: 924 289601 correo-e: dbote (en) unex (punto) es *************************************************************************
VERSION = 0.56 CVSVERSION = "$Experimental work Michel Xhaard && Reza Jelveh 03/02/2004" DEFINES = ### # The following flags enable experimental features. # By default, these are enabled for development versions of the driver, and # disabled for release versions. # Optional: Enable driver debugging DEFINES += -DSPCA50X_ENABLE_DEBUG # Optional: Enable some experimental brightness control on internal CCD # DEFINES += -DSPCA50X_ENABLE_EXP_BRIGHTNESS # Optional: Enable some miscellaneous experimental code # DEFINES += -DSPCA50X_ENABLE_EXPERIMENTAL # Optional: Enable some experimental brightness fixes for spca505/506 DEFINES += -DSPCA50X_ENABLE_EXP_505_BRIGHTNESS # Optional: Enable On-Screen Display (see README file) # DEFINES += -DSPCA50X_ENABLE_OSD # Optional: Enable raw proc entry support # DEFINES += -DSPCA50X_ENABLE_RAWPROCENTRY ### # The following flags enable features that aren't yet implemented, and # therefore are disabled by default. # Optional: Enable checks for number of cameras # DEFINES += -DSPCA50X_ENABLE_CAMS # Optional: Enable compression # DEFINES += -DSPCA50X_ENABLE_COMPRESSION # Optional: Enable test pattern # DEFINES += -DSPCA50X_ENABLE_TESTPATTERN ### # Rest of Makefile follows here. You probably won't need to touch this. # Setup defines DEFINES += -DCONFIG_USB_SPCA50X_MODULE=1 -DMODULE -D__KERNEL__ DEFINES += -DVID_HARDWARE_SPCA50X=0xFF -DSPCA50X_VERSION=\"$(VERSION)\" ifneq ($(shell uname -r | cut -d. -f1,2), 2.4) ifneq ($(KERNELRELEASE),) # We were called by kbuild CFLAGS += $(DEFINES) obj-m += spca50x.o spca50x-objs := drivers/usb/spca50x.o drivers/usb/spcadecoder.o else # We were called from command line KERNEL_VERSION = `uname -r` KERNELDIR := /lib/modules/$(KERNEL_VERSION)/build PWD := $(shell pwd) MODULE_INSTALLDIR = /lib/modules/$(KERNEL_VERSION)/kernel/drivers/usb/media/ # Targets, don't change! default: @echo ' Building SPCA5XX driver for 2.5/2.6 kernel.' @echo ' PLEASE IGNORE THE "Overriding SUBDIRS" WARNING' @echo ' Remember: you must have read/write access to your kernel source tree.' $(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) modules install: mkdir -p $(MODULE_INSTALLDIR) install -c -m 0644 spca50x.ko $(MODULE_INSTALLDIR) /sbin/depmod -ae uninstall: rm -f $(MODULE_INSTALLDIR)/spca50x.ko /sbin/depmod -aq endif else # kernel version test ############################################################################# # For Linux 2.4 users. # Change the following lines according to your system configuration. # It is important to configure your particular source tree ("make dep") before # compiling this module! ############################################################################# ### # This makefile will build the spca50x driver module external to the kernel # source tree. It makes it easier to swap kernels. KERNEL_VERSION = `uname -r` ### # Location of the header files (most importantly the config files) # for the kernel you want to build the module against. # This should be correct for the currently installed kernel on your machine. KINCLUDE = /lib/modules/$(KERNEL_VERSION)/build/include KERNEL_ACFILE = $(KINCLUDE)/linux/autoconf.h KERNEL_MODVERSIONSFILE = $(KINCLUDE)/linux/modversions.h MODULE_INSTALLDIR = /lib/modules/$(KERNEL_VERSION)/kernel/drivers/usb/ # Detect module versioning support ifneq ($(strip $(shell grep 'define CONFIG_MODVERSIONS 1' $(KERNEL_ACFILE))),) DEFINES += -DMODVERSIONS -include $(KERNEL_MODVERSIONSFILE) endif # Detect SMP support ifneq ($(strip $(shell grep 'define CONFIG_SMP 1' $(KERNEL_ACFILE))),) DEFINES += -D__SMP__ -DSMP endif # Setup the tools CC = gcc LD = ld # Setup compiler warnings WARNINGS = -Wall -Wpointer-arith WARNINGS += -Wcast-align -Wwrite-strings -Wstrict-prototypes WARNINGS += -Wuninitialized -Wreturn-type -Wunused -Wparentheses # Setup compiler flags CFLAGS = -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe CFLAGS += -mpreferred-stack-boundary=2 CFLAGS += -I$(KINCLUDE) -Idrivers/usb # Setup link flags LDFLAGS = --strip-debug -r # Setup the list of files to be included in a distribution DIST_FILES = CHANGELOG \ README \ Makefile \ drivers/usb/Config.in \ drivers/usb/spcadecoder.c \ drivers/usb/spcadecoder.h \ drivers/usb/jpeg_header.h \ drivers/usb/spcagamma.h \ drivers/usb/spcaCompat.h \ drivers/usb/spcausb.h \ drivers/usb/raw.c \ drivers/usb/spca500_init.h \ drivers/usb/spca501_init.h \ drivers/usb/spca504_init.h \ drivers/usb/spca505_init.h \ drivers/usb/spca506.h \ drivers/usb/spca508_init.h \ drivers/usb/spca561_init.h \ drivers/usb/sonix.h \ drivers/usb/spca50x.c \ drivers/usb/spca50x.h \ drivers/usb/spcai2c_init.h OBJS = drivers/usb/spcadecoder.o \ drivers/usb/spca50x.o BINARY = spca50x.o ### # Targets follow here binary: $(OBJS) @echo Linking $(BINARY) @$(LD) $(LDFLAGS) -o $(BINARY) $(OBJS) install: binary @echo Installing.. Your root password may be required. su -c "make install-root" install-root: @echo Installing.. @mkdir -p /lib/modules/`uname -r`/kernel/drivers/usb @cp spca50x.o /lib/modules/`uname -r`/kernel/drivers/usb/spca50x.o @/sbin/depmod dist: clean binary @echo Making distributable archives @rm -f spca50x-src-$(VERSION).tar.gz @tar zcf spca50x-src-$(VERSION).tar.gz $(DIST_FILES) @rm -f spca50x-module-$(VERSION).tar.gz @cp $(BINARY) spca50x-$(VERSION).o @tar zcf spca50x-module-$(VERSION).tar.gz spca50x-$(VERSION).o README @rm spca50x-$(VERSION).o .c.o: Makefile $*.c @echo Compiling $*.c @$(CC) $(CFLAGS) $(WARNINGS) $(DEFINES) -c $*.c -o $*.o ### # Dependencies follow here drivers/usb/spca50x.o: drivers/usb/spca50x.h \ drivers/usb/spcaCompat.h \ drivers/usb/spcausb.h \ drivers/usb/sonix.h \ drivers/usb/spca500_init.h \ drivers/usb/spca501_init.h \ drivers/usb/spca504_init.h \ drivers/usb/spca505_init.h \ drivers/usb/spca506.h \ drivers/usb/spca508_init.h \ drivers/usb/spca561_init.h \ drivers/usb/spcai2c_init.h drivers/usb/spcadecoder.o: drivers/usb/spcadecoder.h \ drivers/usb/spcagamma.h \ drivers/usb/jpeg_header.h endif # End kernel version test ############################################################################## # OTHER TARGETS ############################################################################## clean: rm -r -f drivers/usb/*.o drivers/usb/.spcadecoder.o.cmd \ drivers/usb/.spca50x.o.cmd *.o *.ko *.mod.* .[a-z]* core *.i ##############################################################################