View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 13 posts ] 
Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Fri May 13, 2005 1:19 am 
Offline
Joined: Fri May 13, 2005 12:37 am
Posts: 5
Here's what I did to get this working...

1. Edit /etc/mythtv/modules/ivtv.

On the install ivtv line, I added:
Code:
; /sbin/modprobe ivtv-fb; /sbin/modprobe lirc_i2c


On the remove ivtv line, I added:
Code:
&& /sbin/modprobe -r ivtv-fb && /sbin/modprobe -r lirc_i2c


For reference, here is what the final version of the file looks like on my system (note that the install & remove are only one line each, formatting is fscked thanks to word wrap...).

Code:
alias char-major-81 videodev
alias char-major-61 lirc_i2c
#options ivtv debug=1
#options tuner type=2
options msp3400 once=1 simple=1
install ivtv /sbin/modprobe tuner; /sbin/modprobe msp3400; /sbin/modprobe saa7115;  /sbin/modprobe --ignore-install  ivtv; /sbin/modprobe ivtv-fb; /sbin/modprobe lirc_i2c
remove ivtv /sbin/modprobe -r --ignore-remove ivtv && /sbin/modprobe -r saa7115 && /sbin/modprobe -r msp3400 && /sbin/modprobe -r tuner && /sbin/modprobe -r ivtv-fb && /sbin/modprobe -r lirc_i2c


2. Turn on the lirc daemon.

Code:
update-rc.d lirc defaults


3. Install the ivtvdev X11 driver.

This driver is bundled with the source of ivtv now, or so the docs seem to say. First, I unpacked the ivtv package.

Code:
tar -zxvf /usr/src/ivtv-0.2.0-rc3j.tgz -C /tmp


Then I installed the driver.

Code:
install -c -m 0444 /tmp/ivtv-0.2.0-rc3j/utils/ivtvdev_drv_o /usr/X11R6/lib/modules/drivers/ivtvdev_drv.o


4. Modify the XF86Config-4 file.

For whatever reason, I like to use links to deal with switching monitor configurations.

First, I made a copy of my (presumably working) XF86Config-4.

Code:
cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.monitor


Next, I made a copy of the sample config for the PVR 350.

Code:
cp /etc/X11/XF86Config-4.pvr350-tvout.sample /etc/X11/XF86Config-4.pvr350


The best way to sum up the changes I made to my copy:

Code:
root@celestial:~# diff /etc/X11/XF86Config-4.pvr350-tvout.sample /etc/X11/XF86Config-4.pvr350
4c4
<         InputDevice    "Mouse0" "CorePointer"
---
>         InputDevice    "PS/2 Mouse" "CorePointer"
110c110
<         Driver      "fbdev"
---
>         Driver      "ivtvdev"
112,113c112,113
<         Option      "fbdev" "/dev/fb1"
---
>         Option      "fbdev" "/dev/fb0"
>         Option      "ivtvdev" "/dev/fb0"
117c117
<         BusID "0:0x08:0"
---
>         BusID "PCI:01:11:0"


The mouse part was necessary because X wouldn't start until I fixed it.

The Driver part specifies that we should use the X driver we just installed.

My PVR 350's fb is /dev/fb0. There've been other posts that outline how to figure out what yours is.

Finally, the BusID. My output from lspci:

Code:
0000:01:0b.0 Multimedia video controller: Internext Compression Inc iTVC15 MPEG-2 Encoder (rev 01)


I simply am too stupid to get it working in hex. Apparently, the PCI prefix allows me to put it in as decimal. Thank $deity. If all the hex business doesn't work for you, try this as a last ditch. Convert the hex to a decimal, and use the PCI prefix.

Last, I removed my (backed up!) XF86Config-4 and linked in the PVR 350 config.

Code:
rm /etc/X11/XF86Config-4
ln -s /etc/X11/XF86Config-4.pvr350 /etc/X11/XF86Config-4


Last, to get the changes to take effect, I had to restart gdm.

Code:
/etc/init.d/gdm restart


If the remote is not working, try restarting lircd and then restarting mythfrontend.

Code:
/etc/init.d/lircd restart


According to the docs, the lircd.conf and lircrc files are already setup for the Hauppage gray remote. If you need to use a different config (I hear later PVR 350s come with different remotes), copy the correct files over before restarting lircd.

I tried the PVR.pl script that came with the Knoppmyth install, but it just hosed my /etc/mythtv/modules/ivtv file. Like a good script, though, it make backups and told me how to recover my files, so no hard feelings.

If your X config is so b0rked that X won't come up on the TV Out, simply remove XF86Config-4 link and replace it with one pointing to the XF86Config-4.monitor file we kept. Restart gdm, then check your X logs to see what caused all the ruckus.

Hope this helps somebody.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 02, 2005 9:57 am 
Offline
Joined: Sat Jul 02, 2005 9:54 am
Posts: 1
Can anyone confirm that these instructions work for r5a16, too?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 07, 2005 2:47 pm 
Offline
Joined: Mon Jun 27, 2005 4:42 pm
Posts: 321
Location: Minneapolis, Minnesota, USA
Yes, they worked fine for me.

_________________
Grant


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 30, 2005 10:05 pm 
Offline
Joined: Sat Feb 28, 2004 10:04 am
Posts: 173
Location: Canton, MI USA
No-go for me. Trying to figure out where I went wrong. Getting the black/white stairstep effect. None of the usual things have fixed it so far. Guess I have not put in the required amount of time to resolve it...


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 02, 2005 2:44 pm 
Offline
Joined: Sat Feb 28, 2004 10:04 am
Posts: 173
Location: Canton, MI USA
By the way, I have found out that the BusID that you get like this:

0000:01:0b.0 from the log file translates to this BusID in Hex:

BusID "0:0x0b:01"

This had me stumped for quite a while, but I'm good at trial and error sometimes.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 07, 2005 8:01 am 
Offline
Joined: Tue Jan 18, 2005 12:11 pm
Posts: 100
Location: MA, USA
The Wiki is pretty much a copy of the above instructions, and seems like a more suitable place to collect the most up-to-date situation... I'd like to suggest that any concrete discoveries or improvements to the process are submitted there.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 16, 2005 1:44 pm 
Offline
Joined: Wed Mar 02, 2005 1:34 pm
Posts: 106
Location: London, UK
I'm getting the black and white effect also. I've not been able to find anything useful via searching the forum. Any tips for me snapperdragon?

Thanks.


Top
 Profile  
 
 Post subject: R5A16
PostPosted: Sat Aug 20, 2005 2:59 pm 
Offline
Joined: Sat Aug 20, 2005 2:56 pm
Posts: 2
Location: Chattanooga
Works for me once I read your excellent instructions, Thank You!
-Got more tweaks to go.. but I thinl you got me over the hump.

_________________
2.6ghz Intel, PVR-350,512MB ram


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 27, 2005 12:05 pm 
Offline
Joined: Tue Dec 07, 2004 11:19 pm
Posts: 15
Okay this is frustraing me too. I am also getting the solid B&W lines on my TV. I think it has something to do with me not having the correct BUSID in my config.

this:
Code:
lspci | grep MPEG

retuned:
Code:
0000:02:09.0 Multimedia video controller: Internext Compression Inc iTVC15 MPEG-2 Encoder (rev 01)


So I'm not really sure how to convert this, but here is my XF86 config file:

Code:

Section "ServerLayout"
        Identifier     "XFree86 Configured"
        Screen  0 "TV Screen"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "ServerFlags"
   Option "AllowMouseOpenFail"  "true"

EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/X11R6/lib/X11/fonts/misc:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/misc"
   FontPath     "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/75dpi"
   FontPath     "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/100dpi"
   FontPath     "/usr/X11R6/lib/X11/fonts/Speedo"
   FontPath     "/usr/X11R6/lib/X11/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
   FontPath     "/usr/X11R6/lib/X11/fonts/cyrillic"
#   FontPath     "/usr/X11R6/lib/X11/fonts/latin2/75dpi"
#   FontPath     "/usr/X11R6/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
   FontPath     "/usr/X11R6/lib/X11/fonts/Type1"
   FontPath     "/usr/share/fonts/ttf/western"
   FontPath     "/usr/share/fonts/ttf/decoratives"
   FontPath     "/usr/share/fonts/truetype"
   FontPath     "/usr/share/fonts/truetype/openoffice"
   FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
   FontPath     "/usr/share/fonts/latex-ttf-fonts"
   FontPath     "/usr/X11R6/lib/X11/fonts/defoma/CID"
   FontPath     "/usr/X11R6/lib/X11/fonts/defoma/TrueType"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
#   Load  "GLcore"
   Load  "dbe"
   Load  "v4l"
   Load  "extmod"
#   Load  "glx"
        Load  "bitmap" # bitmap-fonts
   Load  "speedo"
   Load  "type1"
   Load  "freetype"
   Load  "record"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "keyboard"
        Option      "CoreKeyboard"
   Option "XkbRules" "xfree86"
   Option "XkbModel" "pc105"
   Option "XkbLayout" "us"

EndSection

Section "InputDevice"
   Identifier  "Serial Mouse"
   Driver      "mouse"
   Option      "Protocol" "Microsoft"
   Option      "Device" "/dev/ttyS0"
   Option      "Emulate3Buttons" "true"
   Option      "Emulate3Timeout" "70"
   Option       "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
   Identifier  "PS/2 Mouse"
   Driver      "mouse"
   Option      "Protocol" "auto"
Option          "ZAxisMapping"          "4 5"
   Option      "Device" "/dev/psaux"
   Option      "Emulate3Buttons" "true"
   Option      "Emulate3Timeout" "70"
   Option       "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier      "USB Mouse"
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
   Option      "SendCoreEvents"   "true"
        Option          "Protocol"              "IMPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Buttons"               "5"
EndSection

Section "Monitor"
        Identifier  "NTSC Monitor"
        HorizSync  30-68
        VertRefresh 50-120
        Mode "720x480"
          # D: 34.563 MHz, H: 37.244 kHz, V: 73.897 Hz
          DotClock 34.564
          HTimings 720 752 840 928
          VTimings 480 484 488 504
          Flags    "-HSync" "-VSync"
        EndMode
EndSection

Section "Device"
        Identifier  "Hauppauge PVR 350 iTVC15 Framebuffer"
        Driver      "fbdev"

        ### change fb1 to whatever number you got in the previous section
        Option      "fbdev" "/dev/fb1"

        ### 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:02:09.0"
EndSection

Section "Screen"
        Identifier  "TV Screen"
        Device      "Hauppauge PVR 350 iTVC15 Framebuffer"
        Monitor     "NTSC Monitor"
        DefaultDepth 24
        DefaultFbbpp 32
        Subsection "Display"
          Depth 24
          FbBpp 32
          Modes "720x480"
        EndSubsection
EndSection

Section "DRI"
   Mode 0666
EndSection


Can someone help me out... I can't seem to figure it out. Thanks a bunch in advance!

EDIT: and I am running R5A16


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 28, 2005 6:09 pm 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
Likewise, I'm running to problems getting this script to work... attempting to switch my PVR-350 to the TV screen.. I get a "snow" screen on the TV.. and XFree86 "bails" on my monitor.

First Question.. do I have my device set correctly..

>> Here's the hardware report:

lspci | grep MPEG

0000:02:0c.0 Multimedia video controller: Internext Compression Inc iTVC15 MPEG-2 Encoder (rev 01)

>> Here's my config setting:

BusID "PCI:02:12:0"

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

>> Here are my config changes:

diff /etc/X11/XF86Config-4.pvr350-tvout.sample /etc/X11/XF86Config-4.pvr350


4c4
< InputDevice "Mouse0" "CorePointer"
---
> InputDevice "PS/2 Mouse" "CorePointer"
110c110
< Driver "fbdev"
---
> Driver "ivtvdev"
113c113,114
< Option "fbdev" "/dev/fb1"
---
> Option "fbdev" "/dev/fb0"
> Option "ivtvdev" "/dev/fb1"
117c118
< BusID "0:0x08:0"
---
> BusID "PCI:02:12:0"


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

XFree86.0.log


XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-10.1unichrome30.1 20050205195924 gl
aweh@)
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.10-xenU i686 [ELF]
Build Date: 05 February 2005

This version of XFree86 has been extensively modified by the Debian
Project, and is not supported by the XFree86 Project, Inc., in any
way. Bugs should be reported to the Debian Bug Tracking System; see
<URL: http://www.debian.org/Bugs/Reporting >.

We strongly encourage the use of the "reportbug" package and command
to ensure that bug reports contain as much useful information as
possible.

Before filing a bug report, you may want to consult the Debian X FAQ:
XHTML version: file:///usr/share/doc/xfree86-common/FAQ.xhtml
plain text version: file:///usr/share/doc/xfree86-common/FAQ.gz

Module Loader present
OS Kernel: Linux version 2.6.11.9-chw-2 (root@devonthego.mysettopbox.tv) (gcc ve
rsion 3.3.5 (Debian 1:3.3.5-12)) #1 SMP Sat May 14 12:11:44 CDT 2005 T

Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Sun Aug 28 16:32:16 2005
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "TV Screen" (0)
(**) | |-->Monitor "NTSC Monitor"
(**) | |-->Device "Hauppauge PVR 350 iTVC15 Framebuffer"
(**) |-->Input Device "PS/2 Mouse"
(**) |-->Input Device "Keyboard0"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc105"
(**) XKB: model: "pc105"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(WW) The directory "/usr/X11R6/lib/X11/fonts/PEX" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/fonts/ttf/western" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/fonts/ttf/decoratives" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/truetype".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/share/fonts/truetype").
(WW) The directory "/usr/share/fonts/truetype/openoffice" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/truetype/ttf-bits
tream-vera".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/share/fonts/truetype/ttf-bitstream-vera").
(WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/defoma/CID" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/defoma/TrueType" does not exist.
Entry deleted from font path.
(**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc:unscaled,/usr/X11R6/lib/X11/
fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi:unscaled,/usr/X11R6/lib/X11/fonts/75dp
i,/usr/X11R6/lib/X11/fonts/100dpi:unscaled,/usr/X11R6/lib/X11/fonts/100dpi,/usr/
X11R6/lib/X11/fonts/Speedo,/usr/X11R6/lib/X11/fonts/Type1"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "AllowMouseOpenFail" "true"
(++) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2570 card 1043,80f2 rev 02 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2571 card 0000,0000 rev 02 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24d2 card 1043,80a6 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24d4 card 1043,80a6 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24d7 card 1043,80a6 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,24de card 1043,80a6 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24dd card 1043,80a6 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev c2 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24d0 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24db card 1043,80a6 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:5: chip 8086,24d5 card 1043,8152 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0322 card 107d,290f rev a1 class 03,00,00 hdr 00
(II) PCI: 02:0a:0: chip 1186,1300 card 1186,1301 rev 10 class 02,00,00 hdr 00
(II) PCI: 02:0c:0: chip 4444,0803 card 0070,4000 rev 01 class 04,00,00 hdr 00
(II) PCI: 02:0d:0: chip 104c,8024 card 0000,0000 rev 00 class 0c,00,10 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfa000000 - 0xfbefffff (0x1f00000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xe8000000 - 0xf3ffffff (0xc000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[1] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[2] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[3] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xfbf00000 - 0xfbffffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xf4000000 - 0xf8ffffff (0x5000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV34 [GeForce FX 5200] rev 161, Mem @ 0xfa0
00000/24, 0xe8000000/27, BIOS @ 0xfbee0000/17
(--) PCI: (2:12:0) unknown vendor (0x4444) unknown chipset (0x0803) rev 1, Mem @
0xf4000000/26
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe4000000 from 0xe7ffffff to 0xe3fffff
f
(II) Active PCI resource ranges:
[0] -1 0 0xfbff8000 - 0xfbffbfff (0x4000) MX[B]


(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "v4l"
(II) Loading /usr/X11R6/lib/modules/drivers/linux/v4l_drv.o
(II) Module v4l: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 0.0.1
ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o": No symbols foun
d
(II) Module speedo: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.1
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.2
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 2.0.2
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.13.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "ivtvdev"
(II) Loading /usr/X11R6/lib/modules/drivers/ivtvdev_drv.o
(II) Module ivtv: vendor="The XFree86 Project"
compiled for 4.3.0, module version = 0.8.0
ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 XInput Driver
ABI class: XFree86 XInput driver, version 0.4
(II) v4l driver for Video4Linux
(II) IVTVDEV: driver for framebuffer: PVR-350
(II) Primary Device is: PCI 01:00:0
(--) Chipset PVR-350 found
(EE) (null)(0): ivtvHWProvbe failed to do IVTVFB_IOCTL_GET_STATE for device /dev
/fb0
(EE) Screen 0 deleted because of no matching config section.
(II) UnloadModule: "ivtvdev"

(EE) Device(s) detected, but none match those in the config file.

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file "/var/log/XFree86.0.log".
Please report problems to debian-x@lists.debian.org.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 25, 2005 11:30 am 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
BluesBrian wrote:
(EE) (null)(0): ivtvHWProvbe failed to do IVTVFB_IOCTL_GET_STATE for device /dev
/fb0
(EE) Screen 0 deleted because of no matching config section.
(II) UnloadModule: "ivtvdev"

(EE) Device(s) detected, but none match those in the config file.

Fatal server error:
no screens found


Oh, looks like I got the problem.. the config is pointing the tv-card at /dev/fb0 .. I'll try fixing this to /dev/fb1 and see that happens.. and report my results! (my friend Carl pointed this out to me.)

// Brian


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 01, 2005 11:03 pm 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
BluesBrian wrote:
Oh, looks like I got the problem.. the config is pointing the tv-card at /dev/fb0 .. I'll try fixing this to /dev/fb1 and see that happens.. and report my results!


Yep, that did the trick.. but I also had to run the script through again before it did finally work.. unclear why it just didn't pop when I found the issue.

// Brian


Top
 Profile  
 
PostPosted: Wed Dec 07, 2005 4:18 pm 
Offline
Joined: Thu Jan 13, 2005 8:59 am
Posts: 36
Location: The Netherlands
Worked for me (R5A16). Excellent instructions indeed!!

I had it (almost) all worked out from other posts, but the line about installing the ivtvdev X11 driver (and how to), did the trick! :D
TNX.


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 13 posts ] 


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:  
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu