Am Samstag, 24. September 2005 03:32 schrieb houghi:
> On Fri, Sep 23, 2005 at 02:48:59AM +0200, houghi wrote:
> > On Thu, Sep 22, 2005 at 03:55:54PM +0200, Martin Lasarsch wrote:
> > > check the ivtv wiki ... check if you have the right tuner
> > > setting.
> > I have absolutely no idea wether this is the correct tuner setting
> > or not.
> I am not giving up easily. :-)
> I have now put online what I have done step by step. The moment I run
> `modprobe ivtv` I get a lot of `APIC error on CPU0: 40(40)` in
> /var/log/messages.
Hi houghi,
did you try "noapic" at the boot prompt?
Anyway, I have a "Haupauge WinTV Nova CI PCI" and it only works, if I
remove all tuners that are autoloaded by rcdvb, and load the correct
tuner (stv0299) only. Also SuSE's rcdvb tryed to load the
"budget..."-Modules, but it did not manage load them (Maybe the wrong
order?) So I disable dvb in the runlevel editor and use my own script:
#!/bin/bash
# starts my DVB-S card
# sorry: unload only partially supported
# mdc
BUDGET="budget budget_patch budget_ci budget_av budget_core"
DVB="dvb_ttpci saa7146_vv saa7146 videodev v4l2_common v4l1_compat
video_buf ttpci_eeprom firmware_class dvb_core"
case $1 in
start)
for m in $DVB $BUDGET
do
modprobe $m
done
modprobe stv0299
;;
stop)
rmmod stv0299
for m in $BUDGET $DVB
do
rmmod $m
done
;;
esac
Not nice, but works for me.
-- mdc
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]