You are not logged in.
Pages: 1
So searching and seeing what's up in this (http://bbs.archlinux.org/viewtopic.php?id=30653) thread I have the xf86-video-i810 package via pacman and hwd still gives me an xorg.conf that doesn't really function. It doesn't detect my monitor appropriately, uses intelfb as the driver, etc.The monitor's native resolution is 1280x800 and the driver should be i810. Everything else works perfectly, I just can't get this to work. What do I need to do?
Last edited by nonorganon (2007-04-12 16:59:51)
Offline
I had no success from that either. Thankfully I had ubuntu generated xorg.conf which works.
So maybe this helps you get started:
Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
EndSection
Section "Module"
Load "i2c"
Load "dbe"
Load "ddc"
Load "glx"
Load "dri"
Load "extmod"
Load "freetype"
Load "int10"
Load "vbe"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "fi"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSection
Section "Device"
Identifier "Intel Corporation 82830 CGC [Chipset Graphics Controller]"
Driver "i810"
BusID "PCI:0:2:0"
VideoRam 64800
Option "XAANoOffscreenPixmaps" "true"
Option "DRI" "true"
EndSection
Section "Monitor"
Identifier "LCD Monitor"
Option "DPMS" "true"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82830 CGC [Chipset Graphics Controller]"
Monitor "LCD Monitor"
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
Option "DRI" "true"
Option "StandbyTime" "5"
Option "SuspendTime" "5"
Option "OffTime" "5"
EndSection
Section "DRI"
Mode 0666
EndSection
Section "Extensions"
Option "Composite" "true"
EndSection
Offline
i just use X --configure.. seems to work better and creates a much cleaner xorg.conf
Offline
No matter which method of configuration I am using I seem to get one of these errors:
(EE) module ABL major verison (0) doesn't match the server's verison (1)
(EE) Failed to load module "i810" (module requirement mismatch, 0)
(EE) No drivers available
(EE) AIGLX: Screen 0 is not DRI capable
"FATAL ERROR:
No screen"
I even tried the Ubuntu generated xorg.conf from a livecd and the same thing happened. Google isn't helping me too much on these.
Offline
Sorry, fixed, x running perfectly, problem was EBKAC.
Offline
Pages: 1