Quote:
At the root prompt, I type
modprobe saa7134 card=4
|
just use the command
modprobe saa7134
Along with this, you will need to load the bttv and tuner modules for you to view TV properly
The commands will be as follows
1. for bttv
modprobe bttv card=x radio=y pll=2
Note:
x - will be a value between 1 to 80 ( see bttv documentation in
/usr/src/linux-*/v4linux/bttv/ )
you can try and experiment bttv card= values from 1 to 80 and find out which value works with your card.
y - will be either 1 for enabling, or 0 for disabling radio.
2. for tuner
modprobe tuner type=5 audiomux=2 debug=1
type=5 is basically the phillips PAL tuner applicable for India
----
FYI, these are the values that I use
modprobe bttv card=63 radio=1 pll=2
modprobe tuner type=5 audiomux=2 debug=1
Once when you get your TV tuner working, you can put all these commands in a shell script, make it executable and put in a directory say (/usr/local/load_tv.sh)
Now, in the file /etc/rc.local, call this script at the end
/usr/local/load_tv.sh
Hope that helps..
Regards,
amit