LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   working xorg.conf file for Intel 845G Graphics (https://www.linuxquestions.org/questions/linux-hardware-18/working-xorg-conf-file-for-intel-845g-graphics-393687/)

dizzi 12-16-2005 04:37 PM

working xorg.conf file for Intel 845G Graphics
 
Hi All

After a couple of days with no success trying to get 3D acceleration on the Intel 845G graphics chip - yes, yes I have googled, searched forums, even used a working XF86Config-4 from a live-cd) I have just about had it. Consequently, I would be deeply appreciative if someone would post a working xorg.conf file or suggest a solution.

Relevant Details

OS: Slackware 10.2 Kernels 2.4.31, 2.6.12 (for slmodem) and 2.6.14.3

Chipset: Intel 82845
Graphics: Intel 845G
Driver used: i810

Depths tried 16 and 24

"dri", "glx", "GLcore" and host of other modules are "Loaded"

Thanks

mebrelith 12-16-2005 07:22 PM

Here's mine (for a 845GV mobo), works peachy in my FC4. Enjoy.

Code:

Section "ServerLayout"
        Identifier    "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"

# RgbPath is the location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        FontPath    "unix/:7100"
EndSection

Section "Module"
        Load  "dbe"
        Load  "extmod"
        Load  "fbdevhw"
        Load  "glx"
        Load  "record"
        Load  "freetype"
        Load  "type1"
        Load  "dri"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#        Option        "Xleds"                "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
#        Option        "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#        Option        "XkbModel"        "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#        Option        "XkbModel"        "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#        Option        "XkbLayout"        "de"
# or:
#        Option        "XkbLayout"        "de"
#        Option        "XkbVariant"        "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#        Option        "XkbOptions"        "ctrl:swapcaps"
# Or if you just want both to be control, use:
#        Option        "XkbOptions"        "ctrl:nocaps"
#
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option            "XkbModel" "pc105"
        Option            "XkbLayout" "la"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "IMPS/2"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5"
        Option            "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        VendorName  "Monitor Vendor"
        ModelName    "Q71-9"
        DisplaySize  320        240
        HorizSync    30.0 - 70.0
        VertRefresh  50.0 - 160.0
        Option            "dpms"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "i810"
        VendorName  "Videocard vendor"
        BoardName  "Intel 845"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth    24
        SubSection "Display"
                Viewport  0 0
                Depth    16
                Modes    "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    24
                Modes    "1280x1024" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "DRI"
        Group        0
        Mode        0666
EndSection


dizzi 12-19-2005 04:41 AM

3D Acceleration on the Intel 845G graphics chip - Slackware 10.2
 
Thanks for the reply - however still no success. Incidentally, 3D acceleration works great on the same system using a llgp-0.1pre0 live-cd (based on Knoppix). For some reason though, I cannot get get the same result on Slack 10.2. I would be grateful for solutions from anyone who has had success with that distro and version using the Intel 845G chip and the i810 driver.

Cheers

alpha_hack 11-06-2007 03:18 PM

Quote:

Originally Posted by dizzi (Post 2006220)
Thanks for the reply - however still no success. Incidentally, 3D acceleration works great on the same system using a llgp-0.1pre0 live-cd (based on Knoppix). For some reason though, I cannot get get the same result on Slack 10.2. I would be grateful for solutions from anyone who has had success with that distro and version using the Intel 845G chip and the i810 driver.

Cheers

When I had my Slack 10.2 and 11 I managed to get up 3d acceleration working by compiling the kernel with drivers for i810 and i915 ( As modules ).
After that I just added/changed into xorg.conf this:

Code:

# This loads the GLX module
    Load      "glx"
# This loads the DRI module
    Load      "dri"



Section "Device"
    Identifier  "Name of Monitor"
    Driver      "i810"
    VideoRam    65536
    Option    "XVideo"        "On"
    Option    "DevicePresence"    "On"   
EndSection


#At the end

Section "DRI"
    Mode 0666
EndSection

And everything was working fine.
I'm currently using Intel 845G with Slackware 12... But I haven't yet configured everything...

I hope this helps you!


Kind regards,
Steve


All times are GMT -5. The time now is 09:34 PM.