Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Well, I've been trying for some time to install a driver for an old webcam I have laying around, but I seem to be having some trouble. I can't get past making it:
Code:
$ sudo make all
make -C "/lib/modules/2.6.26-1-686/build" SUBDIRS="/home/username/qc-usb-0.6.6" modules V=1 USER_OPT="-DHAVE_UTSRELEASE_H=1"
make[1]: Entering directory `/usr/src/linux-headers-2.6.26-1-686'
test -e include/linux/autoconf.h -a -e include/config/auto.conf || ( \
echo; \
echo " ERROR: Kernel configuration is invalid."; \
echo " include/linux/autoconf.h or include/config/auto.conf are missing."; \
echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
echo; \
/bin/false)
mkdir -p /home/username/qc-usb-0.6.6/.tmp_versions ; rm -f /home/username/qc-usb-0.6.6/.tmp_versions/*
make -f scripts/Makefile.build obj=/home/username/qc-usb-0.6.6
gcc-4.1 -Wp,-MD,/home/username/qc-usb-0.6.6/.qc-driver.o.d -nostdinc -isystem /usr/lib/gcc/i486-linux-gnu/4.1.3/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -mpreferred-stack-boundary=2 -march=i686 -ffreestanding -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -DNOKERNEL -DHAVE_UTSRELEASE_H=1 -DMODULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(qc_driver)" -D"KBUILD_MODNAME=KBUILD_STR(quickcam)" -c -o /home/username/qc-usb-0.6.6/.tmp_qc-driver.o /home/username/qc-usb-0.6.6/qc-driver.c
In file included from /home/username/qc-usb-0.6.6/qc-driver.c:47:
/home/username/qc-usb-0.6.6/quickcam.h:129:1: warning: "BIT" redefined
In file included from include/linux/kernel.h:15,
from include/linux/cache.h:4,
from include/linux/time.h:7,
from include/linux/videodev2.h:59,
from include/linux/videodev.h:16,
from /home/username/qc-usb-0.6.6/quickcam.h:95,
from /home/username/qc-usb-0.6.6/qc-driver.c:47:
include/linux/bitops.h:6:1: warning: this is the location of the previous definition
/home/username/qc-usb-0.6.6/qc-driver.c: In function ‘qc_i2c_init’:
/home/username/qc-usb-0.6.6/qc-driver.c:824: error: ‘struct urb’ has no member named ‘lock’
/home/username/qc-usb-0.6.6/qc-driver.c:825: warning: assignment from incompatible pointer type
/home/username/qc-usb-0.6.6/qc-driver.c: In function ‘qc_isoc_start’:
/home/username/qc-usb-0.6.6/qc-driver.c:1867: warning: assignment from incompatible pointer type
/home/username/qc-usb-0.6.6/qc-driver.c: At top level:
/home/username/qc-usb-0.6.6/qc-driver.c:3009: error: unknown field ‘hardware’ specified in initializer
make[2]: *** [/home/username/qc-usb-0.6.6/qc-driver.o] Error 1
make[1]: *** [_module_/home/username/qc-usb-0.6.6] Error 2
make[1]: Leaving directory `/usr/src/linux-headers-2.6.26-1-686'
make: *** [quickcam.ko] Error 2
Unfortunately I haven't gotten much into coding yet, so I'm not really sure what's wrong. Perhaps I need to comment out a line in the makefile or install some additional libraries?
Well, I've been trying for some time to install a driver for an old webcam I have laying around, but I seem to be having some trouble. I can't get past making it:
[ snip compilation list ]
Unfortunately I haven't gotten much into coding yet, so I'm not really sure what's wrong. Perhaps I need to comment out a line in the makefile or install some additional libraries?
Compiler issue: You haven't said whether the source is compatible with the current gcc version. It is not uncommon for revisions to the computer to render a lot of old source code invalid.
Kernel issue: Have you tried locating a compiled version of the driver for your distribution and version? Drivers, in particular if they live in kernel space, tend not to remain compatible for very long without maintenance and upgrades.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.