Re: [linux-dvb] drivers

2008-02-21 Thread Doru Marin
markst tim wrote:
 hi 
 am new to this site. im having NOVA-S-Plus card, and
 re i dont know how to download the drivers for
 this,can u tell me the sites.

   
As I know so far, the Nova-S-Plus cards are supported by actual kernel 
drivers.
You don't need newer ones from here. Just update your kernel.

   
 
 Never miss a thing.  Make Yahoo your home page. 
 http://www.yahoo.com/r/hs


 ___
 linux-dvb mailing list
 linux-dvb@linuxtv.org
 http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
   


___
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb


Re: [linux-dvb] drivers

2008-02-21 Thread Steven Toth
markst tim wrote:
 thank u for the reply. i saw the page you mentioned. but i dont know how 
 to download that and which driver is needed for the card. so please tell 
 me the way.
 
 */Steven Toth [EMAIL PROTECTED]/* wrote:
 
 markst tim wrote:
   hi
   am new to this site. im having NOVA-S-Plus card, and
   re i dont know how to download the drivers for
   this,can u tell me the sites.
 
 Read the wiki at linuxtv.org
 
 - Steve

Please don't drop the mailing list from the cc list, it's rude.

Please don't top post, your replies need to go underneath the original 
comment.

Read my response and please read the wiki instructions available at 
linuxtv.org. This describes how to download, compile and use current and 
development drivers.

Post any new questions back into this thread.

- Steve

___
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb


[linux-dvb] drivers

2008-02-20 Thread markst tim
hi 
am new to this site. im having NOVA-S-Plus card, and
re i dont know how to download the drivers for
this,can u tell me the sites.



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs


___
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb


[linux-dvb] drivers for Freecom rev 4 DVB-T USB Stick

2007-12-20 Thread Stefan Hlustik
Hello,

I would like to know if there is any progress with the drivers for the
RTL2831U Chipset as it is used in the Freecom DVB-T USB-Stick rev 4.

Also i would like to help testing and debugging, if there is need for it.


Steven

___
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb


Re: [linux-dvb] drivers/media/dvb/b2c2/flexcop-dma.c uses PCI DMA API

2007-06-07 Thread Mauro Carvalho Chehab
Hi Geert,

Em Qua, 2007-06-06 às 21:11 +0200, Geert Uytterhoeven escreveu:
   Hi,
 
 drivers/media/dvb/b2c2/flexcop-dma.c uses the PCI DMA API, but 
 DVB_B2C2_FLEXCOP
 doesn't depend on PCI, causing the following problem on PCI-less systems:
 
 | linux/drivers/media/dvb/b2c2/flexcop-dma.c:20: warning: implicit 
 declaration of function 'pci_alloc_consistent'
 | linux/drivers/media/dvb/b2c2/flexcop-dma.c:20: warning: implicit 
 declaration of function 'pci_alloc_consistent'
 
 Apparently this is the flexcop DMA core, which is used by both
 DVB_B2C2_FLEXCOP_PCI and DVB_B2C2_FLEXCOP_USB.
 
 DVB_B2C2_FLEXCOP_PCI depends on PCI.
 DVB_B2C2_FLEXCOP_USB depends on USB.

Thanks for pointing us about this issue. While the usage of the generic
dma is the better way, a simple fix can be applied by simply moving
flexcop-dma to b2c2-flexcop-pci (currently, only the last uses the DMA
stuff). I've committed such patch. It is available at:

http://linuxtv.org/hg/v4l-dvb/rev/c314ec17335a

 
Cheers,
Mauro


___
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

[linux-dvb] drivers/media/dvb/dvb-core/dmxdev.c: dvb_dvr_release

2006-09-12 Thread Simon Arlott
If I have a process open /dev/dvb/adapter0/dvr0 RDONLY and then kill it (^C),
the release function sometimes fails because the lock is still held:

   if (mutex_lock_interruptible(dmxdev-mutex))
   return -ERESTARTSYS;

This means that the dvbdev-readers semaphore is never updated and any future
attempts to open dvr0 will fail:

[ 1103.961000] function : dvb_dvr_open
[ 1106.54] function : dvb_dvr_release
[ 1106.54] dvb_dvr_release : readers++

[ .718000] function : dvb_dvr_open
[ 1115.80] function : dvb_dvr_release

[ 1118.931000] function : dvb_dvr_open
[ 1118.931000] dvb_dvr_open : BUSY (dvbdev-readers=0)

Everything works fine if I replace the mutex_lock_interruptible check with:

   mutex_lock(dmxdev-mutex);

[ 1339.409000] function : dvb_dvr_open
[ 1343.711000] function : dvb_dvr_release
[ 1343.727000] dvb_dvr_release : readers++

[ 1344.441000] function : dvb_dvr_open
[ 1350.618000] function : dvb_dvr_release
[ 1350.618000] dvb_dvr_release : readers++

[ 1351.302000] function : dvb_dvr_open
[ 1356.017000] function : dvb_dvr_release
[ 1356.034000] dvb_dvr_release : readers++

[ 1356.781000] function : dvb_dvr_open
[ 1360.145000] function : dvb_dvr_release
[ 1360.164000] dvb_dvr_release : readers++

[ 1360.837000] function : dvb_dvr_open
[ 1363.773000] function : dvb_dvr_release
[ 1363.773000] dvb_dvr_release : readers++

[ 1498.123000] function : dvb_dvr_open
[ 1501.139000] function : dvb_dvr_release
[ 1501.156000] dvb_dvr_release : readers++

[ 1501.856000] function : dvb_dvr_open
[ 1503.41] function : dvb_dvr_release
[ 1503.427000] dvb_dvr_release : readers++

[ 1503.923000] function : dvb_dvr_open
[ 1511.609000] function : dvb_dvr_release
[ 1511.627000] dvb_dvr_release : readers++

-- 
Simon Arlott



signature.asc
Description: OpenPGP digital signature
___
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

[linux-dvb] Re: Packaging linux-dvb drivers

2004-06-30 Thread Aurelian Pop
On Wednesday 30 June 2004 16:25, Aurelian Pop wrote:
 Hello,

 First of all, let me apologize if I'm a little off-topic.

 I would like to know with who should I talk about the details of including
 the dvb-drivers into a rpm package having other commercial software too.

 If (for any reason) I should not have this discussion on this list, I would
 kindly ask the responsable person(s) of this project to write me an e-mail.

 Thank you!
 Aurelian


Hi again,

I've read my message an it sounds awful :))

What I meant is that I want to post a kind of freeware demo version of a 
commercial Linux application (kind of DVB to IP Gateway) on the web.

However, to ease with the configuration of the application for whoever might 
want to download and install the app, I thought that a nice thing would be if 
the drivers were included in the package and autoinstall too.

Since I don't want to have any copyright infringements problems, I wanted to 
ask permission for this (or check if this is possible) from the guys involved 
in this project (maybe developers??)

BR,
Aurelian





[linux-dvb] Re: Packaging linux-dvb drivers

2004-06-30 Thread Holger Waechtler
Aurelian Pop wrote:
On Wednesday 30 June 2004 16:25, Aurelian Pop wrote:
Hello,
First of all, let me apologize if I'm a little off-topic.
I would like to know with who should I talk about the details of including
the dvb-drivers into a rpm package having other commercial software too.
If (for any reason) I should not have this discussion on this list, I would
kindly ask the responsable person(s) of this project to write me an e-mail.
Thank you!
Aurelian

Hi again,
I've read my message an it sounds awful :))
What I meant is that I want to post a kind of freeware demo version of a 
commercial Linux application (kind of DVB to IP Gateway) on the web.

However, to ease with the configuration of the application for whoever might 
want to download and install the app, I thought that a nice thing would be if 
the drivers were included in the package and autoinstall too.

Since I don't want to have any copyright infringements problems, I wanted to 
ask permission for this (or check if this is possible) from the guys involved 
in this project (maybe developers??)
from the Copyright side it should be no problem -- the source is 
available, thus the GPL explicitly allows redistribution.

Maybe an interesting option for a project like this is to use a Knoppix 
or Morphix CD, we did so too. Contact me off-list if you need the 
relevant image creation scripts.

Holger



[linux-dvb] Is there a list of cards supported by the Linux DVB drivers?

2003-07-07 Thread Amen Ra
Are the TwinHan / VisionPlus VP1020 cards supported by
the Linux DVB drivers ?

There seem to be big differences between the
dvb-kernel drivers that are in the kernel and the CVS
snapshots from http://www.linuxdvb.tv/download/

Thanks

http://mobile.yahoo.com.au - Yahoo! Mobile
- Check  compose your email via SMS on your Telstra or Vodafone mobile.


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.



[linux-dvb] Drivers for Technisat B2C2 FlexCop II PCI card

2003-03-26 Thread John Fremlin
Hi! 

I'm working at an NGO in Israel that wants to install a satellite internet 
link. The ISP is offering us a solution with a TechniSat FlexCop II card. 
We would like the satellite link on our Linux router. Is there any prospect 
of OpenSource drivers for this card?

Or can you recommend another card that would be more suitable? 

The /proc/pci is 

   Network controller: PCI device 13d0:2103 (Techsan Electronics Co Ltd) 
(rev 1).
 IRQ 10.
 Master Capable.  Latency=32.  
 Non-prefetchable 32 bit memory at 0xfc9e [0xfc9e].
 I/O at 0xcf80 [0xcf9f].

I've done a bit of Linux kernel hacking and driver writing in the past - is 
there anybody working on it or are there datasheets etc. for this little 
monster?

We only have the card and dish for a trial period so we'd love a quick 
reply!

Thanks in advance

--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.


[linux-dvb] drivers into the kernel

2003-02-09 Thread Alessio Sangalli
Hi. How is the quality of drivers when integrated into the kernel? 
Reading documentation and files inside DVB/driver directory, I noted the 
makepatch script. It's not that smart but after a couple of tests, I got 
the new menu under multimedia devices. As I can't actually use dvb cards 
by now (they're working on the roof and I can't connect to the satellite 
dish), I was wondering how good the integrated solution is. I think 
monolitic kernels are much better for a settopbox, you get the video out 
sooner etc etc, no insmod problems, simpler startup scripts; however I 
don't know what happens if there is a firmware crash or whatever. VDR 
scripts use to rmmod and insmod all the drivers sometimes to exit from a 
crash-situation.

Any experience?

P.S. is the USB dvb device really supported? Can I use it as a low 
budget card?


--

How to build a lirc receiver
http://www.manoweb.com/alesan/lirc




--
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as subject.



[linux-dvb] drivers for the B2C2 (eg. Technisat SkyStar2) card ready!

2002-10-12 Thread Miernik
I don't know if you all know, that on 2002 March 22, B2C2 has released
Linux drivers for their DVB cards. You can grab them in one of these
places:

http://www.oskom.ru/drivers/b2c2_install_base.tgz
http://www.yansat.page.pl/programy/skystar2/b2c2_install_base.tgz
http://www.esat.pl/files/dvb/technisat/b2c2_install_base.tgz

They are precompiled modules for kernels:

2.4.2
2.4.2-2
2.4.3
2.4.7-10
2.4.8
2.4.9-13
2.4.10
2.4.17

I do not know what the -2  -10  -13 numbers mean.
Does somebody know?

Unfortunately there is no source code. 

Specifications of the card is avialable on:

http://www.b2c2.com/products/pc-specs.html

-- 
Miernik  _
/   /
tel.: +48608233394 /   /  mailto:miernik;ctnet.pl
__/___/  ICQ UIN: 4004001



msg06581/pgp0.pgp
Description: PGP signature


[linux-dvb] drivers for FreeBSD?

2002-10-01 Thread Yury Tarasievich

Hi,

Is anybody working on FreeBSD version of 0.9 drivers?

The only solution I'd found (http://freebsddvb.narod.ru) holds equivalent of 0.7.1 
which doesn't work right with some providers. More, author of this port discontinued 
working on it.

Yury



-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.




[linux-dvb] @drivers developer: CA commands

2001-09-13 Thread Peter Seyringer


Hello driver developers!

Can you tell us witch function are implementet for the ca modul? I have look into the 
dvb.c file and there are some commands. In the documentation are only structures. Is 
there any extended documentation?

Peter


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.




[linux-dvb] @drivers developer: CA commands

2001-09-13 Thread Ralph Metzler

Peter Seyringer writes:
  
  Hello driver developers!
  
  Can you tell us witch function are implementet for the ca modul? I have look into 
 the dvb.c file and there are some commands. In the documentation are only structures. 
 Is there any extended documentation?

No.


Ralph


-- 
Info:
To unsubscribe send a mail to [EMAIL PROTECTED] with unsubscribe linux-dvb as 
subject.