Fedora Linux Support Community & Resources Center
  #1  
Old 22nd May 2006, 08:33 PM
bakerboy26's Avatar
bakerboy26 Offline
Registered User
 
Join Date: Mar 2005
Location: Manchester
Age: 47
Posts: 50
Wintv DVB-T PCI Nova

Hi All,

I have be trying to get this card to work in FC5 but I have no luck so far. It used to work in FC4 ok. In the KinfoCenter it says it is detected as a SAA7146 (rev 01) but I can't seem to use it.when I type in:

ls -l /dev/dvb/adapter0/
I get a error ls: /dev/dvb/adapter0/: No such file or directory

Anyone else had problems with this card?
How can I get this card to work?

Thanks in advance,

Gordy
Reply With Quote
  #2  
Old 22nd May 2006, 08:53 PM
Skunk Worx's Avatar
Skunk Worx Offline
Registered User
 
Join Date: Apr 2006
Posts: 427
Is your device showing up in lspci or dmesg?
Code:
$ /sbin/lspci
$ dmesg | more
Edit : use spacebar to scan ahead in "more", at the end it will exit.
__________________
registered linux user #192405
Note : i am usually not available in this forum Tuesday-Friday.

My Desktop Smolt

My Notebook Smolt
Small amount of personal info and notes about Fedora
Notes about Fedora, Java, JOGL and NeHe OpenGL Tutorials

Last edited by Skunk Worx; 22nd May 2006 at 08:54 PM. Reason: sp
Reply With Quote
  #3  
Old 23rd May 2006, 07:41 PM
bakerboy26's Avatar
bakerboy26 Offline
Registered User
 
Join Date: Mar 2005
Location: Manchester
Age: 47
Posts: 50
ok I found the device using /sbin/lspci

here is what I get:

00:00.0 Host bridge: VIA Technologies, Inc. VT8377 [KT400/KT600 AGP] Host Bridge
00:01.0 PCI bridge: VIA Technologies, Inc. VT8235 PCI Bridge
00:06.0 Multimedia audio controller: Creative Labs SB Audigy (rev 04)
00:06.1 Input device controller: Creative Labs SB Audigy MIDI/Game port (rev 04)
00:06.2 FireWire (IEEE 1394): Creative Labs SB Audigy FireWire Port (rev 04)
00:07.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01)
00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 80)
00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 80)
00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 80)
00:10.3 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 82)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8235 ISA Bridge
00:11.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 74)
01:00.0 VGA compatible controller: ATI Technologies Inc RV280 [Radeon 9200] (rev 01)
01:00.1 Display controller: ATI Technologies Inc RV280 [Radeon 9200] (Secondary) (rev 01)

it is there but I can't use it... don't know why?

Gordy
Reply With Quote
  #4  
Old 24th May 2006, 04:19 AM
Skunk Worx's Avatar
Skunk Worx Offline
Registered User
 
Join Date: Apr 2006
Posts: 427
Did you see anything in the dmesg output?

For example, my lspci has my video capture card listed as :

00:08.0 Multimedia video controller: Conexant CX23880/1/2/3 PCI Video and Audio Decoder (rev 05)

...and if I dmesg and grep for CX238 I see :

Code:
 $ dmesg | grep 238
cx2388x v4l2 driver version 0.0.5 loaded
$ dmesg | grep v4l
cx2388x v4l2 driver version 0.0.5 loaded
cx88[0]/0: registered device video0 [v4l2]
Maybe if you grep for 714 or v4l you will see which device your kernel is assigning to it.

When you had it working on FC4 did you have to setup udev or upload the firmware to it? A lot of howtos talk about having to do such things.

---
John
__________________
registered linux user #192405
Note : i am usually not available in this forum Tuesday-Friday.

My Desktop Smolt

My Notebook Smolt
Small amount of personal info and notes about Fedora
Notes about Fedora, Java, JOGL and NeHe OpenGL Tutorials
Reply With Quote
  #5  
Old 24th May 2006, 08:27 PM
bakerboy26's Avatar
bakerboy26 Offline
Registered User
 
Join Date: Mar 2005
Location: Manchester
Age: 47
Posts: 50
hi John,

I get this:

[gordy@localhost ~]$ dmesg | grep 714
videodev: "SAA7146A" has no release callback. Please fix your driver for proper sysfs support, see http://lwn.net/Articles/36850/
saa7146: register extension 'budget_ci dvb

I tried /sbin/modprobe buget_ci dvb but does not return with anything. I also can't work out what device this SAA7146A is?

I also loaded the firmware. I did not need to do any of this in FC4 except change the permissions to the device as it would only work in root..

thanks for your help so far,

Gordy
Reply With Quote
  #6  
Old 25th May 2006, 03:47 AM
Skunk Worx's Avatar
Skunk Worx Offline
Registered User
 
Join Date: Apr 2006
Posts: 427
Quote:
Originally Posted by bakerboy26
[gordy@localhost ~]$ dmesg | grep 714
videodev: "SAA7146A" has no release callback. Please fix your driver for proper sysfs support, see http://lwn.net/Articles/36850/
Arrrgh. I can see in google that this driver is having problems in recent kernels. There are only two choices I can think of :

1) attempt to "yum update" the system. This might fix it.
2) try the "blacklist" edit as described at :

http://www.mythtv.org/wiki/index.php..._WinTV-Nexus-S

namely :

This chipset is also used by a video card. You will need to blacklist the stradis module from loading. i.e. With Fedora edit /etc/modprobe.d/blacklist and add a line "blacklist stradis"

The second choice is probably easier and faster than the first...you'll have to be root/administrator to do it.

In fact if you google for "blacklist stradis" you'll see you are not alone

---
John
__________________
registered linux user #192405
Note : i am usually not available in this forum Tuesday-Friday.

My Desktop Smolt

My Notebook Smolt
Small amount of personal info and notes about Fedora
Notes about Fedora, Java, JOGL and NeHe OpenGL Tutorials
Reply With Quote
  #7  
Old 25th May 2006, 07:52 PM
bakerboy26's Avatar
bakerboy26 Offline
Registered User
 
Join Date: Mar 2005
Location: Manchester
Age: 47
Posts: 50
hiya,

Thanks for your advice it worked with no problems this time. I had to edit /etc/modprobe.d/blacklist as you said and it worked fine. I also googled "blacklist stradis" i feel i have learned something from it all.

thanks once again,

Gordy
Reply With Quote
  #8  
Old 26th May 2006, 06:23 AM
Skunk Worx's Avatar
Skunk Worx Offline
Registered User
 
Join Date: Apr 2006
Posts: 427
Great news, and you're welcome. Very strange problemo! I've not heard about blacklist before, good to know.

---
John
__________________
registered linux user #192405
Note : i am usually not available in this forum Tuesday-Friday.

My Desktop Smolt

My Notebook Smolt
Small amount of personal info and notes about Fedora
Notes about Fedora, Java, JOGL and NeHe OpenGL Tutorials
Reply With Quote
Reply

Tags
dvbt, nova, pci, wintv

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Hauppauge WinTV-NOVA-T Stick USB2.0 mafc Hardware & Laptops 6 29th August 2009 11:39 AM
wintv dvb-t pci nova bakerboy26 Using Fedora 9 6th May 2006 10:53 PM
Hauppauge WinTV Nova-T and DVB-Driver Jaus Hardware & Laptops 1 21st May 2005 09:08 AM


Current GMT-time: 23:40 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat