Good morning/afternoon/evening everyone! I've seen a number of related threads over the years, but now that I need to find the same solution, I'm finding the answers that work for others aren't doing so for me. My setup is as follows:
* Dell Inspiron 700m -- Intel i810 chipset with integrated 1280x800 display.
* Slackware 12.1 (xorg and related packages upgraded to what was in -current)
* Visio VU42L 1080p-enabled LCD equipped with RGB connector
I am attempting to get the external display, which functions correctly when plugged into a projector, secondary monitor, or the like (cloned desktop mode), functional while using the LCD. I am unable to get any sort of secondary display to appear on the LCD television. A signal is being sent (the TV automatically shuts off in RGB mode if it doesn't detect a signal), but a floating "Not Support!" is the only message I see outputted on the LCD.
When I change my xorg.conf file to present an extended desktop via Xinerama, as suggested with several other changes, I receive errors which I will post below, and X fails to start. Here is the "updated" xorg.conf file:
Code:
Section "Module"
Load "dbe"
SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
Load "freetype"
Load "glx"
Load "dri"
EndSection
Section "Monitor"
Identifier "700m"
HorizSync 30-60
VertRefresh 50-100
Modeline "1280x800" 83.46 1280 1344 1480 1680
800 801 804 848 -hsync +vsync
EndSection
Section "Monitor"
Identifier "VGA Out"
ModelName "Visio"
Option "DPMS"
HorizSync 31.5 - 90.0
VertRefresh 59.9 - 60.1
ModeLine "1920x1200" 154.0 1920 1968 2000 2080 1200 1203 1209 1235
EndSection
Section "Device"
Identifier "VGA Out"
Driver "i810"
BusID "PCI:0:2:0"
Screen 1
Option "MonitorLayout" "CRT,LFP"
Option "DevicePresence" "yes"
EndSection
Section "Device"
Identifier "700m"
Driver "i810"
Screen 0
EndSection
Section "Screen"
Identifier "Screen 1"
Device "700m"
Monitor "700m"
DefaultDepth 24
Subsection "Display"
Depth 8
Modes "1280x800" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x800" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x800" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
Section "Screen"
Identifier "External Screen"
Device "VGA Out"
Monitor "VGA Out"
DefaultDepth 24
SubSection "Display"
Depth 16
Modes "1920x1200" "1600x1200" "1280x1024" "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1920x1200" "1600x1200" "1280x1024" "1024x768"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Dual"
Screen 0 "Screen 1" 0 0
Screen 1 "External Screen" RightOf "Screen 1"
Option "Xinerama" "On"
InputDevice "Keyboard1" "Generic Keyboard"
InputDevice "Mouse1" "CorePointer"
EndSection
Section "DRI"
Mode 0666
EndSection
Section "ServerFlags"
Option "AIGLX" "false"
EndSection
So there we have it. The error is seemingly common:
intel(0): [dri] DRIScreenInit failed. Disabling DRI. I am returned to my prompt and my television goes dark for lack of signal.
The AIGLX and 'CRT,LFP' were both suggested for users on other forums, which in some cases did work, in others didn't.
I greatly appreciate any ideas!
-- Poetics