Hello,
I'm having a heck of a time trying to get my second screen to come up properly.... Right now I just get my Widescreen LCD connected to DVI to display while the second LCD connected via VGA displays a distorted clone... Below is my Xorg.conf
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" LeftOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama" "on"
Option "Clone" "off"
EndSection
Section "ServerFlags"
Option "Xinerama"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Module"
Load "record"
Load "extmod"
Load "dbe"
Load "GLcore"
Load "vbe"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
BusID "PCI:4:0:0"
Option "monitorlayout" "lvdm,crt"
Screen 0
EndSection
Section "Device"
Identifier "Videocard1"
Driver "radeon"
BusID "PCI:4:0:1"
Option "monitorlayout" "lvdm,crt"
Screen 1
EndSection
Section "Monitor"
Identifier "Monitor0"
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Monitor1"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1680x1050"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
EndSection
Has anyone been able to get dual head working with the radeon driver?