View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 104 posts ] 
Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next

Print view Previous topic   Next topic  
Author Message
Search for:
 Post subject:
PostPosted: Fri Sep 15, 2006 6:32 pm 
Offline
Joined: Sat Sep 02, 2006 9:24 pm
Posts: 11
I'm having the same problem. First time installing KM (downloaded R5D1).
I've never used MythTV and can't wait to see it.

Waiting patiently.
-- omnivore


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 15, 2006 6:58 pm 
Offline
Joined: Wed Nov 09, 2005 8:45 pm
Posts: 76
omnivore,

Download R5C7 for now and use that. Once this is sorted out you can upgrade which is fairly painless.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 15, 2006 7:42 pm 
Offline
Joined: Thu Sep 14, 2006 3:41 pm
Posts: 14
R5C7 isn't working for me. I can't get the 350 to find any channels when I setup the card. Also when I start myth it complains the backend server isn't running.
R5D1 had not of these problems but just won't work after rebooting...


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 15, 2006 8:36 pm 
Offline
Joined: Sat Sep 02, 2006 9:24 pm
Posts: 11
symcha wrote:
Download R5C7 for now and use that. Once this is sorted out you can upgrade which is fairly painless.
After reading this thread I tried R5C7. Unfortunately, on reboot R5C7 locked up while loading some ivtv driver.

I seem to get further with R5D1. At least I can ssh in and poke around.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 16, 2006 4:07 am 
Offline
Joined: Thu Sep 14, 2006 3:41 pm
Posts: 14
Make sure you have your TV on and hooked up to the TV out on the PVR-350. I rebooted twice until I realized it wasn't locked up.

Still isn't working but hey..


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 22, 2006 7:35 am 
Offline
Joined: Sat Sep 02, 2006 9:24 pm
Posts: 11
eqnox1 wrote:
Make sure you have your TV on and hooked up to the TV out on the PVR-350. I rebooted twice until I realized it wasn't locked up.
Still isn't working but hey..

You think R5C7 didn't boot properly because my tv wasn't on?
If that is the case, perhaps I'll try loading it again.


Top
 Profile  
 
 Post subject: Tv
PostPosted: Fri Sep 22, 2006 7:39 am 
Offline
Joined: Tue Jun 21, 2005 6:09 pm
Posts: 57
I think what he meant is that the monitor looks like it freezes up once you have rebooted machine and really the output is on the tv screen.
I had the same issue it looked like the monitor locked up and I could SSH into the box but all the output was running on my TV


Top
 Profile  
 
 Post subject: Re: Tv
PostPosted: Fri Sep 22, 2006 8:31 am 
Offline
Joined: Sat Sep 02, 2006 9:24 pm
Posts: 11
connollyr12 wrote:
I think what he meant is that the monitor looks like it freezes up once you have rebooted machine and really the output is on the tv screen.
I had the same issue it looked like the monitor locked up and I could SSH into the box but all the output was running on my TV
Cool! Can't wait to try that this weekend.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 22, 2006 8:32 am 
Offline
Joined: Sat Sep 02, 2006 9:24 pm
Posts: 11
Has anyone made any progress with the R5D1 and first reboot problem?


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 22, 2006 10:24 am 
Offline
Joined: Thu Sep 14, 2006 4:16 am
Posts: 3
afraid not. But hoping to get at go at it thus weekend. I suspect that it's only a matter of the script containing the framebuffer module of the ivtv driver, not being run after first reboot when answering "yes" to "use pvr-350 tv out" during installation.

Either it's not being executed, or it's beeing executed at the wrong time.

Well, just some thoughts. Anyone having done any elimination by trail, pls note it in this tread. Successful or not, dosen't matter, no reason we should all make the same mistakes :)

oh, btw. you will have to excuse my poor english. doing my best really :)


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 22, 2006 8:58 pm 
Offline
Joined: Sat Feb 11, 2006 10:40 am
Posts: 14
Location: Louisville, KY USA
Good news, everyone! I've solved my problem and got tv-out on the 350 working in R5D1. Here's how:

root@mythtv:~# nano /etc/init.d/local

This file should look like:
Code:
#! /bin/sh

modprobe ivtv-fb


Then

root@mythtv:~# chmod +x /etc/init.d/local
root@mythtv:~# update-rc.d local start 95 2 3 4 5 .

Finally, the crucial part was in XF86Config-4:
Code:
Section "Device"
        Identifier      "Hauppauge PVR 350 iTVC15 Framebuffer"
        Driver          "ivtvdev"

        ### change fb0 to whatever number you got in the previous section
        Option          "fbdev" "/dev/fb1"
        Option          "ivtv" "/dev/fb1"
        Option          "VideoOverlay" "on"
        Option          "XVideo" "1"

        ### change the busid to whatever is reported by lspci. Note that
        ### output of lspci is hex, so add a preceding "0x" to the BusID
        BusID "PCI:0:20:0"

        Screen          0
EndSection


Restart X and all should be well.

The fbdev line turned out to be the important part that was missing. I believe someone else got it working earlier by adding that line but for some reason it didn't work for me at the time. The 'local' startup script is a bit of a cheat to get the ivtv-fb module loaded but I couldn't find another way to get it to load correctly. My system has bootsplash enabled which is why I'm using 'fb1' above. If you don't have bootsplash then you should use 'fb0'.

My system will now bootup and the frontend will come up on the 350's tv-out without any sort of manual intervention just like it did in previous releases. I suspect the above steps may be the solution for others as well. Will some other people try this and post their results?


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 23, 2006 12:20 pm 
Offline
Joined: Sat Sep 02, 2006 9:24 pm
Posts: 11
zaroff1967 wrote:
Option "fbdev" "/dev/fb1"

Restart X and all should be well.

The fbdev line turned out to be the important part that was missing.


I installed R5D1 again and made the changes your described.
Now when I reboot the computer crashes when it tries to output video to the tv.
What can I do to prevent the crash so I can ssh in?


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 23, 2006 1:34 pm 
Offline
Joined: Sat Feb 11, 2006 10:40 am
Posts: 14
Location: Louisville, KY USA
omnivore, you could try booting with the install CD or any live CD for that matter. Once you get the system up and running, mount the KnoppMyth root partition. Try removing the 'local' script that loads ivtv-fb. Previously, I experience similar crashes because of that module. After you've removed the script, reboot into KnoppMyth and see if you can ssh in. Once you're logged in you can play with manually inserting the ivtv-fb module and see if that gets you anywhere. Good luck.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 23, 2006 2:35 pm 
Offline
Joined: Thu Sep 14, 2006 3:41 pm
Posts: 14
It didn't work for me.
It booted and appeared if X was going to start with the 350 output. However the screen went black and nothing appeared to start.

I can ssh into the machine but that is about it.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 23, 2006 3:01 pm 
Offline
Joined: Sat Feb 11, 2006 10:40 am
Posts: 14
Location: Louisville, KY USA
eqnox1, you say it appeared that X was going to start and then the screen went black. Did both the output from your video card and the 350 go black? I ask because if you're watching the system bootup, ie on your computer monitor, you will see the screen go black and stay that way. At the same time, you should see X and mythfrontend start on the 350's output. Also, if you're using the S-video output of the 350, try switching to the composite output which is the default I think.


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 104 posts ] 
Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next



All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 24 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu