On 2-Apr-06, at 7:21 AM, 김도현 wrote:

But, I had problem when I executed "/sbin/modprobe ivtv". I can't find
the reason. How can I fix it?
...
ivtv: Unknown symbol tveeprom_read
ivtv: Unknown symbol tveeprom_hauppauge_analog

The last two lines in your dmesg output tell you the problem - ivtv needs those subroutines to be in the tveeprom module but they aren't there. There are two tveeprom drivers, one comes with the kernel and one comes with ivtv. If modprobe finds the non-ivtv version first you will get errors like the ones above. You will have to rename the kernel tveeprom.ko to some other name so that modprobe can only find the ivtv version. This command will show you how many tveeprom drivers you have:

find /lib/modules/$(uname -r) -name tveeprom.ko

You can do the same check for the tda9887, tuner and msp3400 drivers because they're also duplicated.

Another way to get ivtv working on Fedora is to follow the instructions at http://ivtvdriver.org/index.php/Howto:Fedora it sounds like those packages are better for handling conflicts.

- George
_______________________________________________
ivtv-devel mailing list
[email protected]
http://ivtvdriver.org/mailman/listinfo/ivtv-devel

Reply via email to