Luckily on my portable PC I still have SL 3.5.1 (x86_64).
Here is what happens on it:
Before connecting the USB camera:
- Code: Select all
#lsmod | grep gspca
After connecting the USB camera:
- Code: Select all
#lsmod | grep gspca
gspca 626960 0
compat_ioctl32 10112 1 gspca
videodev 34816 2 gspca,compat_ioctl32
On my home PC with SL 4.0 (x86_64) it works but image is odd.
Here is what happens on it:
Before connecting the USB camera:
- Code: Select all
#lsmod | grep gspca
After connecting the USB camera:
- Code: Select all
#lsmod | grep gspca
gspca_zc3xx 50432 0
gspca_main 29568 1 gspca_zc3xx
compat_ioctl32 17408 1 gspca_main
videodev 42752 2 gspca_main,compat_ioctl32
So now the loaded driver are different, it seems that the gspca driver has been splitted in two: the basic driver and the chip driver.
Unfortunately now it doesn't work any more!
Could you/I revert to the previous gspca version?
Thanks.
Mauro
EDIT:
Very strange the installed gspca package is exactly the same version in both systems but on the portable it is for kernel 2.6.25 (gspcav1-20071224#2.6.25-sabayon-r1) and on the home one is for kernel 2.6.26 (gspcav1-20071224#2.6.26-sabayon)!
EDIT:
I found something:
The installed gspca driver is for kernel 2.6.26 but:
- Code: Select all
# uname -r
2.6.27-sabayon
my kernel is 2.6.27!!!
I'm going to recompile the module for 2.6.27...

