Bon, jessaie toujours d'arriver à bout de la config de mythtv avec ma nova-t et j'ai trouvé un tuto intéressant mais je ne trouve pas par exemple /etc/modules.conf, comme quoi je me trouve devant le mur de mon ignorance ...
Voici le texte :
Last time when we were testing the card we manually loaded the DVB driver modules. Now we want them to load each time the machine starts or the DVB card is used. This can either be done by editing the /etc/modules.conf file or by manually running a script to insert the correct modules.
For the moment we'll use a script while we get everything working. If you haven't already done so run make install in the build-2.4 directory where the DVB driver source is located followed by depmod -a.
Now take the insmod.sh script and make a copy of it. Remove all the lines that refer to frontend chips that you don't have on your card(s) or to types of cards you don't have in your system. In my case I'm left with one of the Grundig frontends and the TDA10045 frontend. Both my cards a Nova-T models so I also need the modules for a PCI budget card plus the core DVB modules. One of the cards has a CAM interface connector and needs a slightly different module.
This gives me the following:
#!/bin/sh
#
# Load DVB Modules
#
modprobe v4l1-compat
modprobe v4l2-common
modprobe video-buf
modprobe dvb-core
modprobe grundig_29504-401
modprobe tda1004x
modprobe saa7146
modprobe saa7146_vv
modprobe ttpci-eeprom
modprobe dvb-ttpci-budget
modprobe dvb-ttpci-budget-ci
If you're using the 2.6 kernel the names have changed slightly. The last two lines become:
modprobe budget
modprobe budget-ci
Now arrange for this script to be executed as root towards the end of your boot sequence. It mythbackend is started automatically it needs to be run before the backend starts. Details of how to do this vary according to distribution. In many cases it can be placed in /etc/init.d and symlinked from /etc/rc5.d/S99localdvb. Consult the documentation for your Linux system for the correct way to do this.
Now reboot the machine. Run /sbin/lsmod and check that the modules listed above are present. Also run dmesg and check that they were loaded and the drivers registered adapters and frontends correctly. If everything worked during testing there should be no problems now because the process is essentially the same.
Now start the mythtv backend manually if it doesn't auto start on your setup.
Quelqu'un sait-il ?
Voici le texte :
Last time when we were testing the card we manually loaded the DVB driver modules. Now we want them to load each time the machine starts or the DVB card is used. This can either be done by editing the /etc/modules.conf file or by manually running a script to insert the correct modules.
For the moment we'll use a script while we get everything working. If you haven't already done so run make install in the build-2.4 directory where the DVB driver source is located followed by depmod -a.
Now take the insmod.sh script and make a copy of it. Remove all the lines that refer to frontend chips that you don't have on your card(s) or to types of cards you don't have in your system. In my case I'm left with one of the Grundig frontends and the TDA10045 frontend. Both my cards a Nova-T models so I also need the modules for a PCI budget card plus the core DVB modules. One of the cards has a CAM interface connector and needs a slightly different module.
This gives me the following:
#!/bin/sh
#
# Load DVB Modules
#
modprobe v4l1-compat
modprobe v4l2-common
modprobe video-buf
modprobe dvb-core
modprobe grundig_29504-401
modprobe tda1004x
modprobe saa7146
modprobe saa7146_vv
modprobe ttpci-eeprom
modprobe dvb-ttpci-budget
modprobe dvb-ttpci-budget-ci
If you're using the 2.6 kernel the names have changed slightly. The last two lines become:
modprobe budget
modprobe budget-ci
Now arrange for this script to be executed as root towards the end of your boot sequence. It mythbackend is started automatically it needs to be run before the backend starts. Details of how to do this vary according to distribution. In many cases it can be placed in /etc/init.d and symlinked from /etc/rc5.d/S99localdvb. Consult the documentation for your Linux system for the correct way to do this.
Now reboot the machine. Run /sbin/lsmod and check that the modules listed above are present. Also run dmesg and check that they were loaded and the drivers registered adapters and frontends correctly. If everything worked during testing there should be no problems now because the process is essentially the same.
Now start the mythtv backend manually if it doesn't auto start on your setup.
Quelqu'un sait-il ?