I would like to switch my machine (an IBM R40 laptop with an ATI 7500 Mobility) to X.org (I have it on another computer, and it seems faster and also appears to render fonts better -- or maybe that's just the choice of font packages).
However, I use this machine in a dual-monitor setup with the internal LCD (1400x1050 native) as the primary screen and an external LCD (1024x768 native). Under XFree I have no problems with this. But with X.org, the laptop screen is completely shut off (backlight too!) and the external gets the 14x10 input (which it doesn't like very much).
I've tried several things, including using xorgconfig to set up the initial setup for the internal screen, then adding in the definitions for the second and the extra monitor; using my old XF86Config directly; and reading man xorg.conf to see where the syntax might differ (if it does for this, I can't find it).
Here's my (working) XF86Config (which I've reverted to for now, until I can re-emerge xorg-x11 with an expectation of it working properly):
Code: Select all
Section "ServerLayout"
Identifier "DualHead"
Screen 0 "Screen0" LeftOf "Screen1"
Screen 1 "Screen1" 1400 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama"
EndSection
Section "ServerLayout"
Identifier "UniHead"
Screen 0 "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection
Section "Module"
Load "record"
Load "extmod"
Load "dbe"
Load "dri"
Load "glx"
Load "xtrap"
Load "type1"
Load "speedo"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Laptop Monitor"
ModelName "IBM R40"
HorizSync 31.5 - 48.5
VertRefresh 40.0 - 70.0
Option "dpms"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "IBM"
ModelName "IBM ThinkVision L150"
HorizSync 31.5 - 48.5
VertRefresh 40.0 - 70.0
Option "dpms"
EndSection
Section "Device"
Identifier "Card0"
Driver "radeon"
VendorName "ATI Technologies Inc"
BoardName "Radeon Mobility M7 LW [Radeon Mobility 7500]"
VideoRam 32768
BusID "PCI:1:0:0"
Screen 0
EndSection
Section "Device"
Identifier "Card1"
Driver "radeon"
VendorName "ATI Technologies Inc"
BoardName "Radeon Mobility M7 LW [Radeon Mobility 7500]"
VideoRam 32768
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1400x1050"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
--John


