Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] Re: VP-1020



Grant Totten wrote:
Hi Jamie & Manu,

Last night I tried to get the DST working as well. I've got a VP-1020 DVB-S card. This is my first time playing with kernel modules, so please check my sanity/order-of-operations:

1. Downloaded and configured linux-2.6.0-test9 kernel
2. Did a CVS checkout of dvb-kernel
3. Ran the "makelinks.sh" script and pointed it at my kernel
4. Ran "make xconfig" and selected pretty much everything in the video4linux / DVB section (specifically enabled DST).
5. Compiled the kernel with "make bzImage ; make modules ; make modules_install"
For linux-2.6.0-test9 I simply use
make && make modules_install

6.  Configured grub with a menu option to select the new kernel
7.  Booted into the new kernel.

How does that sound?  Am I missing any steps?
I'm not sure about the build procedures for the new kernel, but a simple make builds it all correctly for me.

Where I'm at right now is if I try "modprobe bttv", it'll hang my system.
Yep.. modprobe bttv card=0x68 will stop it hanging

I have 2 cards, a dst and a flyvideo98

My driver load script that works with 2.4 or 2.6 is..

modprobe bttv card=0x68,0x38 i2c_hw=1
modprobe dvb-core dvb_shutdown_timeout=0
modprobe bt878
modprobe dst
modprobe dvb-bt8xx

my dodgy script for watching telly and recording shows is

#!/bin/sh
SZAP=/home/brad/dvb/DVB/apps/szap/szap
DVB=/home/brad/dvb/dvbstream/dvbstream
CHANFILE=/root/chan.new
let count=0
TMP1=""
for i in `cat $CHANFILE | cut -f1 -d: | sed 's/\ /_/g;s/^/"/;s/$/"/'` ;

do TMP1="$TMP1 $i $count";
let count++ ;
done

#echo $TMP1
CHAN=`dialog --stdout --menu "Sat Channel Menu" 48 128 40 $TMP1`
reset
CHAN2=`echo $CHAN | sed 's/_/ /g;s/"//g'`
#echo $CHAN2
TMP1=`cat $CHANFILE | grep "$CHAN2"`
#echo $TMP1
$SZAP -x "$CHAN2"
VID=`echo $TMP1 | cut -f6 -d:`
AID=`echo $TMP1 | cut -f7 -d:`
#echo $VID $AID
aumix -L
FILE=`echo $CHAN | sed 's/"//g'`
FILE=$FILE-`date +%d%m%y-%H%M`.mpg
$DVB -o -ps $VID $AID > /raid/tmp/$FILE &
sleep 10
mplayer -vo fbdev -vop scale=1024:768,pp=0x20000 -framedrop -ao oss /raid/tmp/$FILE
killall dvbstream

Good luck
Brad..


--
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index