You are not logged in.

#1 2009-06-13 06:01:33

DarksideEE7
Member
From: Arkansas, United States
Registered: 2009-06-06
Posts: 356

optimized and/or working xorg.conf for 945GME

Well I've never really configured a xorg.conf manually, and I ran the Xorg -configure script to generate a test xorg.conf.  When I test the file it locks X up and I have to revert to the console using ctrl+alt+F1
I would like to see if anyone could post their xorg.conf for an Intel 945GME (or just GM) so I can test for performance.  This is on an ASUS eee pc 1002HA.
I'm currently running the legacy Intel xf86 driver on KDE, as the latest 2.7.1.1 causes some graphical corruption with compositing enabled.

Thanks in advance smile

I also noticed that the eee pc wiki has grown tremendously since I installed Arch (which was still very recent), and I see some info on configuring xorg.conf using a tool called hwd...however when I run the following command I don't see the package:
sudo pacman -Sy hwd
or even
sudo pacman -Ss hwd
I'm not sure why I can't get it using pacman....I added the eee pc repo to my pacman.conf and synced before search also.

Last edited by DarksideEE7 (2009-06-13 08:08:20)

Offline

#2 2009-06-13 19:37:52

superchango
Member
From: Tenochtitlan
Registered: 2009-01-22
Posts: 133

Re: optimized and/or working xorg.conf for 945GME

I have a  Lanix netbook (mexican netbook xD) with intel 945 GME video chip. My xorg.conf works very well, with KMS and latest intel driver  activated:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

#Section "ServerFlags"
#     Option "AutoAddDevices" "False"
#EndSection


Section "Files"
    #RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "dbe"
    Load  "GLcore"
    Load  "glx"
    Load  "extmod"
    Load  "record"
    Load  "xtrap"
    Load  "dri"
    Load  "freetype"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option        "XkbModel" "pc105"
         Option      "XkbLayout" "latam"
EndSection

Section "InputDevice"
     Identifier "Synaptics Mouse"
         Driver     "synaptics"
         Option     "Device" "/dev/psaux"
         Option     "Protocol" "auto-dev"
     Option       "LeftEdge"  "1700"
       Option    "RightEdge"     "5300"
       Option    "TopEdge"       "1700"
       Option    "BottomEdge"    "4200"
       Option    "FingerLow"    "25"
       Option    "FingerHigh"    "30"
       Option    "MaxTapTime"    "180"
       Option    "MaxTapMove"    "220"
       Option    "VertScrollDelta" "100"
       Option    "MinSpeed"    "0.09"
       Option    "MaxSpeed"    "0.18"
       Option    "AccelFactor"    "0.0015"
       Option    "SHMConfig"    "on"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    #DisplaySize      230   140    # mm
    Identifier   "Monitor0"
    VendorName   "CPT"
    ModelName    "4c4"
    #Modeline    "1024x600"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"                # [<bool>]
        #Option     "SWcursor"               # [<bool>]
        #Option     "ColorKey"               # <i>
        #Option     "CacheLines"             # <i>
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "DRI"                    # [<bool>]
        #Option     "NoDDC"                  # [<bool>]
        #Option     "ShowCache"              # [<bool>]
        #Option     "XvMCSurfaces"           # <i>
        #Option     "PageFlip"               # [<bool>]
    Option      "DRI"                    "True"
    Option      "NoDDC"                  "True"
    Option      "XAANoOffscreenPixmaps"  "True"
    Option      "EnablePageFlip"         "True"
    Option      "RenderAccel"            "True"
    Option        "AccelMethod" "uxa"
    #Option        "MigrationHeuristic" "greedy"
    #Option      "ExaNoComposite" "false"
    Identifier  "VideoCard0"
    Driver      "intel"
    VendorName  "Intel Corporation"
    BoardName   "Mobile 945GME Express Integrated Graphics Controller"
    BusID       "PCI:0:2:0"
EndSection

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

Section "Screen"
    Identifier "Screen0"
    Device     "VideoCard0"
    Monitor    "Monitor0"
    DefaultDepth     24
    Virtual 1024 600
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes "1024x600"
    EndSubSection
#    SubSection "Display"
#        Viewport   0 0
#        Depth     32
#        Modes "1024x600"
#    EndSubSection
EndSection

Section "DRI"
     Group        "video"
     Mode        0666
 EndSection

I use Gnome and Compiz, and  the system is very fluid.  With KDEmod woks good, but not so fluid when i use Kwin effects (i prefer use compiz with Kde).

Bye


"Yo creo que los muertos son tiernos. ¿Nos besamos?"

Offline

#3 2009-06-14 03:43:54

DarksideEE7
Member
From: Arkansas, United States
Registered: 2009-06-06
Posts: 356

Re: optimized and/or working xorg.conf for 945GME

Thank you!  I will give it a shot.  Someone mentioned that the problem may be that udev is managing the input devices....however I'm not sure how to divert that to X.  I've never configured it manually, on other distros it just works (however I like having to manually configure everything in Arch because it adds more control.)

Offline

#4 2009-06-14 04:14:59

DarksideEE7
Member
From: Arkansas, United States
Registered: 2009-06-06
Posts: 356

Re: optimized and/or working xorg.conf for 945GME

Ok I tested yours and got the same results...........I bet it's due to udev handling the input devices.  I'm not really sure how to change this so I'll have to look into it.  Any advice would be greatly appreciated.

Offline

#5 2009-06-15 12:39:13

NeOnsKuLL
Member
From: Havana, Cuba
Registered: 2005-03-29
Posts: 117

Re: optimized and/or working xorg.conf for 945GME

This is my "ServerFlags" section, maybe it make the thing more clear to you

Section "ServerFlags"
    Option "AllowMouseOpenFail"  "true"
    Option "AllowEmptyInput"     "false"
    Option "AutoAddDevices"      "false"
    Option "DontZap"         "false"
EndSection

Anyway, in the xorg.conf file superchango posted, you have the key, just uncomment the "ServerFlags" section, the "AutoAddDevices" option setted "false" do the trick. Remember to configure sections for your devices.

See you


Intel Core 2 Duo E8400 3.0 GHz | 2x1GB 667MHz | 250+750GB Seageate SATAII | Samsung 19" TFT 1440x900
Openbox + obmenugen + PyTyle | bmpanel2 | oblogout | conky | pyBgSetter (with Esetroot as backend)
Projects: obmenugen, pyBgSetter

Offline

#6 2009-06-15 16:14:44

DarksideEE7
Member
From: Arkansas, United States
Registered: 2009-06-06
Posts: 356

Re: optimized and/or working xorg.conf for 945GME

I'll give that a shot.............thank you for the info.

Offline

#7 2009-06-15 16:56:11

Trent
Member
From: Baltimore, MD (US)
Registered: 2009-04-16
Posts: 990

Re: optimized and/or working xorg.conf for 945GME

I have a 945GM and it is working fine with no xorg.conf whatsoever.

Offline

#8 2009-06-15 18:53:44

DarksideEE7
Member
From: Arkansas, United States
Registered: 2009-06-06
Posts: 356

Re: optimized and/or working xorg.conf for 945GME

Trent wrote:

I have a 945GM and it is working fine with no xorg.conf whatsoever.

Mine works decently without a xorg.conf, but I wondered if I could get better performance with one.  It may not...........
Interestingly I tried the latest Intel driver and I don't see the bug that I experienced previously (screen flickers with different windows images while using alt+tab with the 'present windows' desktop effect.)

Offline

#9 2009-06-16 14:02:20

Trent
Member
From: Baltimore, MD (US)
Registered: 2009-04-16
Posts: 990

Re: optimized and/or working xorg.conf for 945GME

DarksideEE7 wrote:
Trent wrote:

I have a 945GM and it is working fine with no xorg.conf whatsoever.

Mine works decently without a xorg.conf, but I wondered if I could get better performance with one.  It may not...........

Oh, okay... well, fwiw, I did at one point have this hardware working rather well with a customized xorg.conf, UXA enabled among other things.  But the difference just isn't noticeable for me (wmii/urxvt/uzbl) so I didn't save it when I last reinstalled.

Offline

#10 2009-07-20 03:37:26

izmeh
Member
Registered: 2009-07-20
Posts: 3

Re: optimized and/or working xorg.conf for 945GME

I'm trying to get compositing to run on my Acer Aspire One D150. Superchango's xorg.conf posted above is showing the best performance for me at the moment. However, Gnome Do still reports that compositing isn't running.

Wiki states that compositing for 945gme is activated by default...what gives?

Last edited by izmeh (2009-07-20 03:37:55)

Offline

#11 2009-07-20 03:38:45

DarksideEE7
Member
From: Arkansas, United States
Registered: 2009-06-06
Posts: 356

Re: optimized and/or working xorg.conf for 945GME

Yea I don't even run a xorg.conf on my netbook in KDE and compositing works fine.

Offline

#12 2009-07-20 03:43:49

izmeh
Member
Registered: 2009-07-20
Posts: 3

Re: optimized and/or working xorg.conf for 945GME

i can run it fine w/o a conf file, but compisiting is needed for gnome do and awn i believe.

Offline

#13 2009-07-20 04:17:44

izmeh
Member
Registered: 2009-07-20
Posts: 3

Re: optimized and/or working xorg.conf for 945GME

[solved]

Offline

Board footer

Powered by FluxBB