You are not logged in.

#1 2007-11-08 14:58:45

bearyblue
Member
Registered: 2007-07-17
Posts: 5

X starts up in 1024x768

Section "ServerLayout"
    Identifier     "Xorg Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "PS/2 Mouse" "CorePointer"
    Option "AIGLX" "true"
EndSection

Section "ServerFlags"
    Option "AllowMouseOpenFail"  "true"
    
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc:unscaled"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/100dpi"
    FontPath     "/usr/share/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
    FontPath     "/usr/share/fonts/cyrillic"
#    FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
#    FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath     "/usr/share/fonts/Type1"
    FontPath     "/usr/share/fonts/ttf/western"
    FontPath     "/usr/share/fonts/ttf/decoratives"
    FontPath     "/usr/share/fonts/truetype"
    FontPath     "/usr/share/fonts/truetype/openoffice"
    FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath     "/usr/share/fonts/latex-ttf-fonts"
    FontPath     "/usr/share/fonts/defoma/CID"
    FontPath     "/usr/share/fonts/defoma/TrueType"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "glx"
        Load  "bitmap" # bitmap-fonts
    Load  "type1"
    Load  "freetype"
    Load  "record"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "keyboard"
        Option      "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" ""
    Option "XkbVariant" ""
EndSection

Section "InputDevice"
    Identifier  "PS/2 Mouse"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option      "ZAxisMapping" "4 5"
    Option      "Device" "/dev/psaux"
    Option      "Emulate3Buttons" "true"
    Option      "Emulate3Timeout" "70"
    Option        "SendCoreEvents"  "true"
EndSection

Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    HorizSync   30.0 - 70.0
    VertRefresh  50.0 - 160.0
    Modeline "1280x1024" 108.00  1280 1328 1440 1688  1024 1025 1028 1068 +hsync +vsync
EndSection

Section "Device"
    Identifier "Radeon9250"                     # your alias
    Driver "radeon"
    Option "XAANoOffscreenPixmaps" "true" #needed for aiglx
    Option "DRI" "true"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Radeon9250"
    Monitor    "Monitor0"
    DefaultDepth 24
    SubSection "Display"
        Depth     1
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     4
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     8
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     15
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     16
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     24
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     32
        Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "DRI"
    Mode 0666
EndSection

Section "Extensions"
    Option "Composite" "Enable"
EndSection

I can't figure out why X starts in 1024x768 resolution. It was all fine before I updated X a couple of days ago. I have tried disabling composite and AIGLX, but the problem is still there. Please help me out. big_smile

Offline

#2 2007-11-08 15:03:41

hacosta
Member
From: Mexico
Registered: 2006-10-22
Posts: 423

Re: X starts up in 1024x768

check for warnings in your Xorg.0.log also, you are using dpms, any readon for having that modeline?

Offline

#3 2007-11-08 15:14:26

bearyblue
Member
Registered: 2007-07-17
Posts: 5

Re: X starts up in 1024x768

I don't know what you mean. But there's a line saying: "Output VGA-0 using initial mode 1024x768
after xf86InitialConfiguration".

Offline

#4 2007-11-09 00:58:45

eric
Member
From: under heaven
Registered: 2004-02-11
Posts: 118

Re: X starts up in 1024x768

It's probably the new video driver that is using the new xrandr.
The video modes in the screen section in xorg.conf are interpreted differently. It is also not possible anymore to "browse" through the video modes (the ones defined in the screen section in xorg.conf) with CTRL+ALT+plus/minus.

You can change the video mode by trying this:

xrandr --output VGA-0 --mode 1280x1024

If you want everything to work as before you have to downgrade the video driver... you probably have to recompile the old video driver yourself.

Also read:
http://bbs.archlinux.org/viewtopic.php?id=39525

Last edited by eric (2007-11-09 01:11:05)

Offline

Board footer

Powered by FluxBB