<br><br><div><span class="gmail_quote">On 5/6/07, <b class="gmail_sendername">Denis Papathanasiou</b> <<a href="mailto:denis.papathanasiou@gmail.com">denis.papathanasiou@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
> You'll want to setup your device and screen sections similar to this:<br>><br>> Section "Device"<br>> Identifier "RADEON-TVOut"<br>> Driver "radeon"<br>> Option "AGPMode" "4"
<br>><br>> Option "AGPFastWrite" "yes"<br>> Option "TVOutput" "NTSC"<br>> Option "IgnoreEDID" "true"<br>> Option "MonitorLayout" "NONE, CRT" #here it is!
<br>><br>> EndSection<br>><br>> Section "Monitor"<br>> Identifier "TV Monitor"<br>> HorizSync 30.0 - 40.0<br>> VertRefresh 60<br>> Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628
<br>><br>> EndSection<br>><br>> Section "Screen"<br>> Identifier "TV Screen"<br>> Device "RADEON-TVOut"<br>> Monitor "TV Monitor"<br>> DefaultDepth 16<br>
><br>> SubSection "Display"<br>> Depth 16<br>> Modes "800x600"<br>> EndSubSection<br>> EndSection<br><br>Shawn, thanks for the quick reply and example xorg.conf entries.<br><br><br>
<br>Other than trying random values in horizontal and vertical, what else can I try?<br><br>Is there a way to capture the settings from initial boot (when the TV<br>output is clear) and apply them to my xorg file?</blockquote>
<div><br>Denis,<br><br>Going back in the myth-users archives I found a post from me a while ago where I posted my entire xorg.conf. This was my configuration using a regular CRT Tube RCA television with an Nvidia card. Of course you'll have to modify the driver options to suit your ATI card:
<br><br><pre>Section "Module"<br> Load "dbe"         <br> <br> SubSection "extmod"<br> EndSubSection<br> <br> Load "type1"<br> Load "freetype"
<br> Load "glx"<br>EndSection<br><br>Section "Files"<br> RgbPath        "/usr/X11R6/lib/X11/rgb"<br> FontPath "/usr/X11R6/lib/X11/fonts/local/"<br> FontPath "/usr/X11R6/lib/X11/fonts/misc/"
<br> FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"<br> FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"<br> FontPath "/usr/X11R6/lib/X11/fonts/Type1/"<br> FontPath "/usr/X11R6/lib/X11/fonts/CID/"
<br> FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"<br> FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"<br> FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"<br> FontPath "/usr/X11R6/lib/X11/fonts/cyrillic/"
<br>EndSection<br><br>Section "ServerFlags"<br><br><br>EndSection<br><br>Section "Extensions"<br>#Option "Composite" "Enable"<br>EndSection<br><br>Section "InputDevice"<br>
Identifier        "Keyboard"<br> Driver        "kbd"<br>EndSection<br><br>Section "InputDevice"<br> Identifier        "Mouse"<br> Driver        "mouse"<br> Option "Protocol" "IMPS/2"
<br> Option "Device" "/dev/mouse"<br> Option "ZAxisMapping" "4 5"<br> Option "Resolution" "1600"<br>EndSection<br><br>Section "Monitor"<br>
Identifier "RCA"<br> HorizSync 30-50<br> VertRefresh 60<br>EndSection<br><br>Section "Monitor"<br> Identifier "Acer"<br> HorizSync 22-82<br> VertRefresh 56-76<br>EndSection
<br><br>Section "Device"<br> Identifier "NVidia 5500"<br> Driver "nvidia"<br> Option "NoLogo" "1"<br> Option "RenderAccel" "1"
<br> Option "HWCursor" "1"<br> Option "CursorShadow" "1"<br> Option "AllowGLXWithComposite" "1"<br>EndSection<br><br><br># TV Screen Setup
<br>Section "Screen"<br> Identifier "TV"<br> Device "NVidia 5500"<br> Monitor "RCA"<br> Option "ConnectedMonitor" "TV"<br> Option "TVStandard" "NTSC-M"
<br> Option "TVOutFormat" "SVIDEO"<br> Option "TVOverScan" "1.0"<br> DefaultDepth 24<br> Subsection "Display"<br>        Depth 24<br>        Modes "1024x768" "800x600" "640x480"
<br> EndSubsection<br>EndSection<br><br>Section "Screen"<br> Identifier "LCD"<br> Device "NVidia 5500"<br> Monitor "Acer"<br> DefaultDepth 24<br># DefaultDepth 32
<br> Subsection "Display"<br> Depth 24<br> Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"<br> EndSubsection<br> Subsection "Display"
<br> Depth 32<br> Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"<br> EndSubsection<br>EndSection<br><br>Section "ServerLayout"
<br> Identifier "Simple Layout"<br> Screen "LCD"<br> InputDevice "Mouse" "CorePointer"<br> InputDevice "Keyboard" "CoreKeyboard"<br>EndSection<br><br>
Taken from: <a href="http://www.mythtv.org/pipermail/mythtv-users/2006-March/127849.html">http://www.mythtv.org/pipermail/mythtv-users/2006-March/127849.html</a><br><br>There might be a slight difference in the way that I ran my distro, I didn't use a login manager such as GDM or KDM when booting into X.
<br><br>Most of the time when I needed to switch over to the TV-Output I would change the "Screen" directive under "ServerLayout" to "TV" <br>instead of "LCD" and restart the X Server.
<br><br>Hope this helps.<br><br>-Shawn<br><br></pre><br></div><br></div><br>