Michel Dänzer wrote:
On Fri, 2004-02-20 at 20:10, Tom Epperly wrote:
I just apt-get upgrade'd to 4.3.0-2 from 4.2. Now my X11 server is
coming up in a ridiculously low resolution. It's either 640x480 or
320x240 when the LCD display can do 1400x1050.
By looking at /var/log/XFree86.0.log, it appears that it is ignoring
my HorizSync and VertRefresh from my XF86Config-4 file.
[...]
(II) RADEON(0): Clone modes validation --
(WW) RADEON(0): Generic Monitor: Using default hsync range of 28.00-33.00kHz
(WW) RADEON(0): Generic Monitor: using default vrefresh range of 43.00-72.00Hz
The Monitor Section only applies to the primary head. For the second
head, see the radeon manpage about the "Clone..." options.
Thanks for the suggestion. I was able to get it working with the following:
Section "Device"
Identifier "Radeon Mobility M6"
Driver "radeon"
VideoRam 16384
BusID "PCI:01:00:00"
Option "dpms" "on"
Option "CloneHSync" "31.5-80"
Option "CloneVRefresh" "56-76"
Option "CloneMode" "1600x1200"
Option "PanelOff" "true"
EndSection
Tom