On Thu, Jan 10, 2008 at 02:29:58PM +0100, serge pecher wrote: > Thanks for the info. > Could you have a look at > http://dvbkivabien2.info/viewtopic.php?f=7&t=12943&p=121435#p121435 where a > gave more explanation about my problem. Its seems that the tuner of the > S2-3200 is not detected, but I don?t know what to do. Well, it don't seems you have a guest access to read it ? I don't have a S2-3200, but I think the first revision has a problem (that was the main reason not to buy one) the best place to seek for information is vdrportal.de in which there are a few topics about this card. But honestly, if you did a ./scripts/rmmod.pl load from the v4l dir of the http://jusst.de/hg/multiproto it should work out of the box :-) I use this small script in order to update/compil it (p=4000.diff is just a patch to enable support for my card which for an unknow reason isn't included sofar in multiproto). By the way, I have no idea if your card need a firmware or not... mine even if it's a budget one need one. Good luck, -- Grégoire FAVRE http://gregoire.favre.googlepages.com http://www.gnupg.org http://picasaweb.google.com/Gregoire.Favre
#!/bin/bash p=4000.diff MAKE='nice -n 4 make -j3' OPTIONS="show update dry-run apply undry-run unapply compile install log exit" select opt in $OPTIONS; do if [ "$opt" = "show" ]; then vi $p elif [ "$opt" = "update" ]; then hg pull -u http://jusst.de/hg/multiproto elif [ "$opt" = "dry-run" ]; then patch --dry-run -p1 < $p elif [ "$opt" = "apply" ]; then patch -p1 < $p elif [ "$opt" = "undry-run" ]; then patch --dry-run -p1 -R < $p elif [ "$opt" = "unapply" ]; then patch -p1 -R < $p elif [ "$opt" = "compile" ]; then cd v4l && $MAKE distclean && \ $MAKE allmodconfig && $MAKE elif [ "$opt" = "install" ]; then sudo $MAKE install && cd .. elif [ "$opt" = "log" ]; then hg log|less elif [ "$opt" = "exit" ]; then exit else echo bad option fi done
_______________________________________________ vdr mailing list vdr@xxxxxxxxxxx http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr