I mayhave got a little further with this (well, not further, but identified part of my problem).
I may have misunderstood the part about the camera driver and been using ov511 when what I actually needed was SN9C102.
I've downloaded the .tar file and extracted it but it wants me to compile it. I'm following the instructions in the readme but I'm not getting a lot of joy.
The first command is MAKE CLEAN. This fails with
make -C /lib/modules/uname -r/build M=/root/sn9c102-1.24 clean
make: *** /lib/modules/2.4.20-18.7/build: No such file or directory. Stop.
make: *** [clean] Error 2
Now, I've been looking at the structure a bit here (little knowledge, dangerous, I know). I opened the makefile and there's a reference to KDIR = /lib/modules/$(KVERSION)/build
If I look in /lib/modules there is a directory there called build, or at least I think it's actually a pointer to a different directory as using ls -l
I get build -> ../../../usr/src/linux-2.4.20-18.7 but here's a catch, under /usr/src/ I don't have a linux-2.4.20-18.7 but I do have a redhat, and under redhat I do have BUILD.
Do I need to edit the makefile file so that instead of
/lib/modules/$(KVERSION)/build it has /usr/src/redhat/BUILD instead? Or do I need to do something that makes the /lib/modules/$(KVERSION)/build point to ../../../usr/src/redhat or ../../../usr/src/redhat/BUILD instead? If so, how
do I do that?
Cheers
David