PDA

View Full Version : Intel 82852 TV-Out


jaxmalta
10-10-2007, 09:14 AM
Hello,

I am evaluating some OSes because I want to move away from windows and I must say that I like BSD. I am not an expert but I know how to find my way round in Unix.

One glitch I found with PC-BSD and other Linux systems I tried (Kubuntu, OpenSuse, PCLOS) is that I cannot enable my TV-Out (svideo) on my laptop Travelmate 4050. My graphics card is Intel 82852/855GM. I found this entry on the ubuntu forums and I played around with xorg.conf. With my current configuration (see below) I can log into X but only my laptop monitor shows the image. However on when I boot in windows it works (extended desktop & clone) so it is not a HW/cable problem. Is there anyone who can help me please?

Section "Monitor"
Identifier "LapMon"
VendorName "Generic Monitor"
ModelName "Generic"
EndSection

Section "Monitor"
Identifier "TVMon"
HorizSync 30-50
VertRefresh 60
EndSection

Section "Device"
### Available Driver options are:-
### Values: [i]: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "SWcursor" # [<bool>]
#Option "HWcursor" "True" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "UseFBDev" # [<bool>]
#Option "Rotate" # [<str>]
#Option "VideoKey" # [i]
#Option "FlatPanel" # [<bool>]
#Option "FPDither" # [<bool>]
#Option "CrtcNumber" # [i]
#Option "FPScale" # [<bool>]
#Option "FPTweak" # [i]
Option "NoDDC" "Yes"
Identifier "LapDev"
Driver "i810"
VendorName "Intel Video Driver"
Screen 0
BusID "PCI:0:2:0"
EndSection

Section "Device"
Identifier "TVDev"
Driver "i810"
Option "MonitorLayout" "TV,LFP"
Option "TVStandard" "NTSC"
Option "TVOutFormat" "SVIDEO" # "COMPOSITE"
Option "ConnectedMonitor" "TVMon"
Screen 1
BusID "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "LapScr"
Device "LapDev"
Monitor "LapMon"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection

SubSection "Display"
Depth 24
Modes "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "TVScr"
Device "TVDev"
Monitor "TVMon"
DefaultDepth 24

SubSection "Display"
Depth 24
Modes "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "LapOnly"
Screen 0 "LapScr" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "ServerLayout"
Identifier "LapTV"
Screen 0 "LapScr"
Screen 1 "TVScr" RightOf "LapScr"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

# Section "ServerLayout"
# Identifier "XFree86 Configured"
# Screen 0 "LapScr" 0 0
# InputDevice "Mouse0" "CorePointer"
# InputDevice "Keyboard0" "CoreKeyboard"
# Option "Clone" "off"
# EndSections

Section "ServerFlags"
Option "DefaultServerLayout" "LapTV"
EndSection


Thanks