Building the IVTV driver for the Hauppauge PVR-350
I followed the guide at //ivtvdriver.org/index.php/Howto:Ubuntu
This guide is not complete and well organized, but should have most of the
information for setting up the IVTV on the HP a1250n AMD64 X2 computer.
Running the following will give the operating system version.
uname -r
I am running Ubuntu Breezy, so this returns the following.
2.6.12-10-amd64-k8-smp
I downloaded and installed linux-source-2.6.12-10 using package manager.
The package linux-headers-2.6.12-10-amd64-k8-smp was already loaded on
my machine. Unpack the source using the following. The ln command
makes a link.
cp /boot/config-`uname -r` /usr/src/linux/.config
make oldconfig
make prepare0
make scripts
Check for latest version of ivtv.
cd /usr/src
wget http://dl.ivtvdriver.org/ivtv/archive/0.4.x/ivtv-0.4.2.tar.gz
tar xvfz ivtv-0.4.2.tar.gz
Compile and install.
cd ivtv-0.4.2
make
make install
I got many errors during the make.
Module /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/msp3400.ko conflicts with the ivtv module of the same name -- please hide or delete it.
To hide: mv /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/msp3400.ko /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/msp3400.ko.HIDE
You will then need to run depmod.
Module /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tda9887.ko conflicts with the ivtv module of the same name -- please hide or delete it.
To hide: mv /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tda9887.ko /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tda9887.ko.HIDE
You will then need to run depmod.
Module /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tuner.ko conflicts with the ivtv module of the same name -- please hide or delete it.
To hide: mv /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tuner.ko /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tuner.ko.HIDE
You will then need to run depmod.
Module /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tveeprom.ko conflicts with the ivtv module of the same name -- please hide or delete it.
To hide: mv /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tveeprom.ko /lib/modules/2.6.12-10-amd64-k8-smp/kernel/drivers/media/video/tveeprom.ko.HIDE
You will then need to run depmod.
They must be hidden as requested. Do something like the following.