by andrewmerrill » Tue Oct 26, 2010 6:12 am
by andrewmerrill
Tue Oct 26, 2010 6:12 am
I'm assuming you installed the vortex kernel headers package, probably with a command like this:
- Code: Select all
dpkg -i linux-headers-2.6.34.1-vortex86-sg_1.0_i386.deb
Unfortunately, this package does not create a needed link that the v4l build process is looking for. To create the missing link yourself, enter these commands (as root):
- Code: Select all
cd /lib/modules/2.6.34.1-vortex86-sg
ln -s /usr/src/linux-headers-2.6.34.1-vortex86-sg build
This creates a symbolic link (called 'build') from the kernel headers that you installed into the /lib/modules subdirectory for the current kernel version.
It looks like you already know what you're doing with regard to building the v4l-dvb driver. In case anyone who isn't sure what to do is reading this, here are the steps I used to download and install it:
- Code: Select all
cd /usr/local/src
wget http://linuxtv.org/hg/v4l-dvb/archive/tip.tar.gz
tar xzf tip.tar.gz
cd v4l-dvb-1da5fed5c8b2
make all
make install
modprobe uvcvideo
After doing this, I was able to use uvc based webcams (including a Logitech c500 and Logitech Pro 9000) directly from the RoBoard.
One note - I'm running Debian 5 (lenny) on my Roboard, and I have not tested any of these instructions with other linux distros.
Andrew
I'm assuming you installed the vortex kernel headers package, probably with a command like this:
- Code: Select all
dpkg -i linux-headers-2.6.34.1-vortex86-sg_1.0_i386.deb
Unfortunately, this package does not create a needed link that the v4l build process is looking for. To create the missing link yourself, enter these commands (as root):
- Code: Select all
cd /lib/modules/2.6.34.1-vortex86-sg
ln -s /usr/src/linux-headers-2.6.34.1-vortex86-sg build
This creates a symbolic link (called 'build') from the kernel headers that you installed into the /lib/modules subdirectory for the current kernel version.
It looks like you already know what you're doing with regard to building the v4l-dvb driver. In case anyone who isn't sure what to do is reading this, here are the steps I used to download and install it:
- Code: Select all
cd /usr/local/src
wget http://linuxtv.org/hg/v4l-dvb/archive/tip.tar.gz
tar xzf tip.tar.gz
cd v4l-dvb-1da5fed5c8b2
make all
make install
modprobe uvcvideo
After doing this, I was able to use uvc based webcams (including a Logitech c500 and Logitech Pro 9000) directly from the RoBoard.
One note - I'm running Debian 5 (lenny) on my Roboard, and I have not tested any of these instructions with other linux distros.
Andrew