Redrawing problem with an Intel 82845G/GL video adapter.

Asked by sheree

I am an ubuntu newbie, and need some help troubleshooting a display issue. I did a fresh install of feisty fawn onto a recently acquired system. This system has an onboard graphics card, using shared ram.
The monitor is a Sceptre X5G-Komodo VII (15" LCD). On installation, Ubuntu installed the graphics driver (I did not do any of that myself).
The integrated video card is: 00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 03 (according to lspci).

Here is the problem:

The screen is okay some of the time, but at least half of the time it is not refreshing properly. If I try playing the examples included Mandela video, it only shows black unless I try to resize the window, then it show a frame, then black, etc.
The panel at the top of the screen does not always properly refresh (example, even though a wifi connection has been made, the wifi applet in the upper right still did not update to show the connection). Also, if I open an application, sometimes the window appears correctly, and sometimes it is missing parts of the window (the buttons, text within the window, etc). If I move the window, it still does not draw properly, but if I resize it, it does appear with all it's parts (usually).

The integrated video card is: 00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 03)

Also, this system has only 256MB of RAM.

Question information

Language:
English Edit question
Status:
Answered
For:
Ubuntu xorg Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Andres Mujica (andres.mujica) said :
#1

Hi, this could be a video memory issue. How much is assigned for your card?

could you paste the contents off this file?

/etc/X11/xorg.conf

Thanks.

Revision history for this message
Cesare Tirabassi (norsetto) said :
#2

Yes, I also believe this is a video memory problem:

1) We can try to force an higher allocation adding a VideoRam entry in your Device section, but this will lower memory for your other applications to use.

2) We can also try adding a CacheLines entry to reduce memory dedicated to 3D and increase that dedicated to 2D.

3) We can also try adding a LinearAlloc entry to increase the allocated off-screen memory.

But first we need to see how much memory is taken up by Xorg and how much by the kernel/other applications.

For the first one, we need you to copy and paste here the content of the /var/log/Xorg.0.log file.
You can do that editing that file (for instance in a terminal with sudo gedit /var/log/Xorg.0.log).

For the second one we need to download a little utility. Still from the terminal run these 2 commands:

sudo apt-get install procinfo
procinfo memory > memory.log

You can then cut the content of the file memory.log and paste it here.
Try to do the second operation with a typical set of application you normally use running (also with the mandela video running or not running).

Revision history for this message
sheree (sah18) said :
#3

Here is the contents of the /etc/X11/xorg.conf file:
-----
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf(5) manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
 FontPath "/usr/share/fonts/X11/misc"
 FontPath "/usr/share/fonts/X11/cyrillic"
 FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
 FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
 FontPath "/usr/share/fonts/X11/Type1"
 FontPath "/usr/share/fonts/X11/100dpi"
 FontPath "/usr/share/fonts/X11/75dpi"
 # path to defoma fonts
 FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
 Load "i2c"
 Load "bitmap"
# Load "ddc"
 Load "dri"
 Load "extmod"
 Load "freetype"
 Load "glx"
 Load "int10"
 Load "vbe"
EndSection

Section "InputDevice"
 Identifier "Generic Keyboard"
 Driver "kbd"
 Option "CoreKeyboard"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "us"
EndSection

Section "InputDevice"
 Identifier "Configured Mouse"
 Driver "mouse"
 Option "CorePointer"
 Option "Device" "/dev/input/mice"
 Option "Protocol" "ImPS/2"
 Option "ZAxisMapping" "4 5"
 Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
 Driver "wacom"
 Identifier "stylus"
 Option "Device" "/dev/input/wacom"
 Option "Type" "stylus"
 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
 Driver "wacom"
 Identifier "eraser"
 Option "Device" "/dev/input/wacom"
 Option "Type" "eraser"
 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
 Driver "wacom"
 Identifier "cursor"
 Option "Device" "/dev/input/wacom"
 Option "Type" "cursor"
 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "Device"
 Identifier "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
 Driver "i810"
 BusID "PCI:0:2:0"
EndSection

Section "Monitor"
 Identifier "X-5G"
 Option "DPMS"
 HorizSync 31.5-60
 VertRefresh 56-75
 Option "DDC" "False"
EndSection

Section "Screen"
 Identifier "Default Screen"
 Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
 Monitor "X-5G"
 DefaultDepth 24
 SubSection "Display"
  Depth 1
  Modes "1024x768" "832x624" "800x600" "720x540" "720x400" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 4
  Modes "1024x768" "832x624" "800x600" "720x540" "720x400" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 8
  Modes "1024x768" "832x624" "800x600" "720x540" "720x400" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 15
  Modes "1024x768" "832x624" "800x600" "720x540" "720x400" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 16
  Modes "1024x768" "832x624" "800x600" "720x540" "720x400" "640x480"
 EndSubSection
 SubSection "Display"
  Depth 24
  Modes "1024x768" "832x624" "800x600" "720x540" "720x400" "640x480"
 EndSubSection
EndSection

Section "ServerLayout"
 Identifier "Default Layout"
 Screen "Default Screen"
 InputDevice "Generic Keyboard"
 InputDevice "Configured Mouse"
 InputDevice "stylus" "SendCoreEvents"
 InputDevice "cursor" "SendCoreEvents"
 InputDevice "eraser" "SendCoreEvents"
EndSection

Section "DRI"
 Mode 0666
EndSection
-----

Revision history for this message
sheree (sah18) said :
#4

And here is the contents of the /var/log/Xorg.0.log file:
-----

X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: Linux Ubuntu
Current Operating System: Linux s-desktop 2.6.20-15-generic #2 SMP Sun Apr 15 07:36:31 UTC 2007 i686
Build Date: 04 April 2007
 Before reporting problems, check http://wiki.x.org
 to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun May 6 06:20:26 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "X-5G"
(**) | |-->Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "stylus"
(**) |-->Input Device "cursor"
(**) |-->Input Device "eraser"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
 Entry deleted from font path.
(**) FontPath set to:
 /usr/share/fonts/X11/misc,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
 /usr/share/fonts/X11/misc,
 /usr/X11R6/lib/X11/fonts/misc,
 /usr/share/fonts/X11/cyrillic,
 /usr/share/fonts/X11/100dpi/:unscaled,
 /usr/share/fonts/X11/75dpi/:unscaled,
 /usr/share/fonts/X11/Type1,
 /usr/X11R6/lib/X11/fonts/Type1,
 /usr/share/fonts/X11/100dpi,
 /usr/share/fonts/X11/75dpi,
 /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81c92e0
(II) Module ABI versions:
 X.Org ANSI C Emulation: 0.3
 X.Org Video Driver: 1.1
 X.Org XInput driver : 0.7
 X.Org Server Extension : 0.3
 X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2560 card 14c2,1650 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,2562 card 8086,2562 rev 03 class 03,00,00 hdr 00
(II) PCI: 00:1d:0: chip 8086,24c2 card 8086,24c2 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 8086,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 8086,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 14c2,24cd rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 8086,24c2 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 8086,24c2 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 14c2,1650 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:0d:0: chip 10ec,8139 card 14c2,8100 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:0e:0: chip 11c1,5811 card 14c2,0301 rev 61 class 0c,00,10 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:30:0), (0,1,1), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 1 I/O range:
 [0] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [1] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B]
 [2] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
 [3] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
 [0] -1 0 0xec000000 - 0xec0fffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(0:2:0) Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device rev 3, Mem @ 0xe0000000/27, 0xec100000/19
(II) Addressable bus resource ranges are
 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
 [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe8000000 from 0xebffffff to 0xe7ffffff
(II) Active PCI resource ranges:
 [0] -1 0 0xec001000 - 0xec001fff (0x1000) MX[B]
 [1] -1 0 0xec000000 - 0xec0000ff (0x100) MX[B]
 [2] -1 0 0xec182000 - 0xec1820ff (0x100) MX[B]
 [3] -1 0 0xec181000 - 0xec1811ff (0x200) MX[B]
 [4] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
 [5] -1 0 0xec180000 - 0xec1803ff (0x400) MX[B]
 [6] -1 0 0xe8000000 - 0xe7ffffff (0x0) MX[B]O
 [7] -1 0 0xec100000 - 0xec17ffff (0x80000) MX[B](B)
 [8] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
 [9] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [10] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
 [11] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
 [12] -1 0 0x00000500 - 0x0000051f (0x20) IX[B]
 [13] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [14] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [15] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [16] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [17] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [18] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
 [19] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[B]
 [20] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
 [0] -1 0 0xec001000 - 0xec001fff (0x1000) MX[B]
 [1] -1 0 0xec000000 - 0xec0000ff (0x100) MX[B]
 [2] -1 0 0xec182000 - 0xec1820ff (0x100) MX[B]
 [3] -1 0 0xec181000 - 0xec1811ff (0x200) MX[B]
 [4] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
 [5] -1 0 0xec180000 - 0xec1803ff (0x400) MX[B]
 [6] -1 0 0xe8000000 - 0xe7ffffff (0x0) MX[B]O
 [7] -1 0 0xec100000 - 0xec17ffff (0x80000) MX[B](B)
 [8] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
 [9] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [10] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
 [11] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
 [12] -1 0 0x00000500 - 0x0000051f (0x20) IX[B]
 [13] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [14] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [15] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [16] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [17] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [18] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
 [19] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[B]
 [20] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
 [0] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
 [0] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xec001000 - 0xec001fff (0x1000) MX[B]
 [5] -1 0 0xec000000 - 0xec0000ff (0x100) MX[B]
 [6] -1 0 0xec182000 - 0xec1820ff (0x100) MX[B]
 [7] -1 0 0xec181000 - 0xec1811ff (0x200) MX[B]
 [8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
 [9] -1 0 0xec180000 - 0xec1803ff (0x400) MX[B]
 [10] -1 0 0xe8000000 - 0xe7ffffff (0x0) MX[B]O
 [11] -1 0 0xec100000 - 0xec17ffff (0x80000) MX[B](B)
 [12] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
 [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [15] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [16] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
 [17] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
 [18] -1 0 0x00000500 - 0x0000051f (0x20) IX[B]
 [19] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [20] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [21] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [22] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [23] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [24] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
 [25] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[B]
 [26] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules//libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.2.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
 compiled for 7.2.0, module version = 2.1.0
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "i810"
(II) Loading /usr/lib/xorg/modules/drivers//i810_drv.so
(II) Module i810: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.7.4
 Module class: X.Org Video Driver
 ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.1
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "wacom"
(II) Loading /usr/lib/xorg/modules/input//wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
 compiled for 4.3.99.902, module version = 1.0.0
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.7
(II) Wacom driver level: 47-0.7.7-7 $
(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
 i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915),
 915GM, 945G, 945GM, 965G, 965G, 965Q, 946GZ
(II) Primary Device is: PCI 00:02:0
(--) Chipset 845G found
(II) resource ranges after xf86ClaimFixedResources() call:
 [0] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xec001000 - 0xec001fff (0x1000) MX[B]
 [5] -1 0 0xec000000 - 0xec0000ff (0x100) MX[B]
 [6] -1 0 0xec182000 - 0xec1820ff (0x100) MX[B]
 [7] -1 0 0xec181000 - 0xec1811ff (0x200) MX[B]
 [8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
 [9] -1 0 0xec180000 - 0xec1803ff (0x400) MX[B]
 [10] -1 0 0xe8000000 - 0xe7ffffff (0x0) MX[B]O
 [11] -1 0 0xec100000 - 0xec17ffff (0x80000) MX[B](B)
 [12] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
 [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [15] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [16] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
 [17] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
 [18] -1 0 0x00000500 - 0x0000051f (0x20) IX[B]
 [19] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [20] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [21] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [22] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [23] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [24] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
 [25] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[B]
 [26] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(II) resource ranges after probing:
 [0] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [4] -1 0 0xec001000 - 0xec001fff (0x1000) MX[B]
 [5] -1 0 0xec000000 - 0xec0000ff (0x100) MX[B]
 [6] -1 0 0xec182000 - 0xec1820ff (0x100) MX[B]
 [7] -1 0 0xec181000 - 0xec1811ff (0x200) MX[B]
 [8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
 [9] -1 0 0xec180000 - 0xec1803ff (0x400) MX[B]
 [10] -1 0 0xe8000000 - 0xe7ffffff (0x0) MX[B]O
 [11] -1 0 0xec100000 - 0xec17ffff (0x80000) MX[B](B)
 [12] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
 [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
 [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
 [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
 [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [18] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [19] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
 [20] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
 [21] -1 0 0x00000500 - 0x0000051f (0x20) IX[B]
 [22] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [23] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [24] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [25] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [26] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [27] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
 [28] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[B]
 [29] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
 [30] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
 [31] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Reloading /usr/lib/xorg/modules//libvbe.so
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules//libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 0.1.0
 ABI class: X.Org Video Driver, version 1.1
(**) I810(0): Depth 24, (--) framebuffer bpp 32
(==) I810(0): RGB weight 888
(==) I810(0): Default visual is TrueColor
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) I810(0): initializing int10
(II) Loading sub module "vm86"
(II) LoadModule: "vm86"
(II) Loading /usr/lib/xorg/modules//libvm86.so
(II) Module vm86: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(WW) I810(0): Bad V_BIOS checksum
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 8000 kB
(II) I810(0): VESA VBE OEM: Brookdale-G Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Brookdale-G Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Integrated Graphics Chipset: Intel(R) 845G
(--) I810(0): Chipset: "845G"
(--) I810(0): Linear framebuffer at 0xE0000000
(--) I810(0): IO registers at addr 0xEC100000
(II) I810(0): 1 display pipe available.
(II) I810(0): detected 8060 kB stolen memory.
(II) I810(0): Kernel reported 50176 total, 1 used
(II) I810(0): I830CheckAvailableMemory: 200700 kB available
(II) I810(0): Will try to reserve 32768 kiB of AGP aperture space
 for the DRM memory manager.
(II) I810(0): Will attempt to tell the BIOS that there is 12288 kB VideoRAM
(WW) I810(0): Extended BIOS function 0x5f11 not supported.
(II) I810(0): Before: SWF1 is 0x00000108
(II) I810(0): After: SWF1 is 0x00000108
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) I810(0): initializing int10
(WW) I810(0): Bad V_BIOS checksum
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 8000 kB
(II) I810(0): VESA VBE OEM: Brookdale-G Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Brookdale-G Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): BIOS now sees 8000 kB VideoRAM
(--) I810(0): Pre-allocated VideoRAM: 8060 kByte
(==) I810(0): VideoRAM: 65536 kByte
(==) I810(0): video overlay key set to 0x101fe
(**) I810(0): page flipping disabled
(==) I810(0): Using gamma correction (1.0, 1.0, 1.0)
(II) I810(0): BIOS Build: 2607
(==) I810(0): Device Presence: disabled.
(==) I810(0): Display Info: enabled.
(II) I810(0): Broken BIOSes cause the system to hang here.
       If you encounter this problem please add
   Option "DisplayInfo" "FALSE"
       to the Device section of your XF86Config file.
(II) I810(0): Display Info: CRT: attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: TV: attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: DFP (digital flat panel): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: LFP (local flat panel): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: Second (second CRT): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: TV2 (second TV): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: DFP2 (second digital flat panel): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: LFP2 (second local flat panel): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Currently active displays on Pipe A:
(II) I810(0): CRT
(==) I810(0): Display is using Pipe A
(--) I810(0): Maximum frambuffer space: 65368 kByte
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules//libddc.so
(II) Module ddc: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 1.1
(**) I810(0): Option "ddc" "False"
(II) I810(0): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
(--) I810(0): Maximum space available for video modes: 8000 kByte
Mode: 20 (132x25)
 ModeAttributes: 0xf
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 594
 XResolution: 132
 YResolution: 25
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0x0
 LinBytesPerScanLine: 0
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 0
Mode: 21 (132x43)
 ModeAttributes: 0xf
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 594
 XResolution: 132
 YResolution: 43
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0x0
 LinBytesPerScanLine: 0
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 0
Mode: 22 (132x50)
 ModeAttributes: 0xf
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 594
 XResolution: 132
 YResolution: 50
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0x0
 LinBytesPerScanLine: 0
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 0
Mode: 23 (132x60)
 ModeAttributes: 0xf
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 594
 XResolution: 132
 YResolution: 60
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 4
 NumberOfBanks: 1
 MemoryModel: 0
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0x0
 LinBytesPerScanLine: 0
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 0
Mode: 30 (640x480)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 640
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 25
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 640
 BnkNumberOfImagePages: 25
 LinNumberOfImagePages: 25
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 31 (640x400)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 640
 XResolution: 640
 YResolution: 400
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 31
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 640
 BnkNumberOfImagePages: 31
 LinNumberOfImagePages: 31
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 32 (800x600)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 800
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 16
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 800
 BnkNumberOfImagePages: 16
 LinNumberOfImagePages: 16
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 34 (1024x768)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1024
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 9
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1024
 BnkNumberOfImagePages: 9
 LinNumberOfImagePages: 9
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 38 (1280x1024)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1280
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 5
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1280
 BnkNumberOfImagePages: 5
 LinNumberOfImagePages: 5
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 3a (1600x1200)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1600
 XResolution: 1600
 YResolution: 1200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 3
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1600
 BnkNumberOfImagePages: 3
 LinNumberOfImagePages: 3
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 3c (1920x1440)
 ModeAttributes: 0x1b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1920
 XResolution: 1920
 YResolution: 1440
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 8
 NumberOfBanks: 1
 MemoryModel: 4
 BankSize: 0
 NumberOfImages: 1
 RedMaskSize: 0
 RedFieldPosition: 0
 GreenMaskSize: 0
 GreenFieldPosition: 0
 BlueMaskSize: 0
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0x0
 LinBytesPerScanLine: 0
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 0
 LinRedFieldPosition: 0
 LinGreenMaskSize: 0
 LinGreenFieldPosition: 0
 LinBlueMaskSize: 0
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 0
Mode: 40 (640x480)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1280
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 15
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 12
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1280
 BnkNumberOfImagePages: 12
 LinNumberOfImagePages: 12
 LinRedMaskSize: 5
 LinRedFieldPosition: 10
 LinGreenMaskSize: 5
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 41 (640x480)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1280
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 12
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1280
 BnkNumberOfImagePages: 12
 LinNumberOfImagePages: 12
 LinRedMaskSize: 5
 LinRedFieldPosition: 11
 LinGreenMaskSize: 6
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 42 (800x600)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1600
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 15
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 7
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1600
 BnkNumberOfImagePages: 7
 LinNumberOfImagePages: 7
 LinRedMaskSize: 5
 LinRedFieldPosition: 10
 LinGreenMaskSize: 5
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 43 (800x600)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 1600
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 7
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 1600
 BnkNumberOfImagePages: 7
 LinNumberOfImagePages: 7
 LinRedMaskSize: 5
 LinRedFieldPosition: 11
 LinGreenMaskSize: 6
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 44 (1024x768)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 2048
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 15
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 4
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 2048
 BnkNumberOfImagePages: 4
 LinNumberOfImagePages: 4
 LinRedMaskSize: 5
 LinRedFieldPosition: 10
 LinGreenMaskSize: 5
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 45 (1024x768)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 2048
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 4
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 2048
 BnkNumberOfImagePages: 4
 LinNumberOfImagePages: 4
 LinRedMaskSize: 5
 LinRedFieldPosition: 11
 LinGreenMaskSize: 6
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 48 (1280x1024)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 2560
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 15
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 2
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 2560
 BnkNumberOfImagePages: 2
 LinNumberOfImagePages: 2
 LinRedMaskSize: 5
 LinRedFieldPosition: 10
 LinGreenMaskSize: 5
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 49 (1280x1024)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 2560
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 2
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 2560
 BnkNumberOfImagePages: 2
 LinNumberOfImagePages: 2
 LinRedMaskSize: 5
 LinRedFieldPosition: 11
 LinGreenMaskSize: 6
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 4a (1600x1200)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 3200
 XResolution: 1600
 YResolution: 1200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 15
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 1
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 3200
 BnkNumberOfImagePages: 1
 LinNumberOfImagePages: 1
 LinRedMaskSize: 5
 LinRedFieldPosition: 10
 LinGreenMaskSize: 5
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 4b (1600x1200)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 3200
 XResolution: 1600
 YResolution: 1200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 1
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 3200
 BnkNumberOfImagePages: 1
 LinNumberOfImagePages: 1
 LinRedMaskSize: 5
 LinRedFieldPosition: 11
 LinGreenMaskSize: 6
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 4c (1920x1440)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 3840
 XResolution: 1920
 YResolution: 1440
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 15
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 5
 RedFieldPosition: 10
 GreenMaskSize: 5
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 3840
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 5
 LinRedFieldPosition: 10
 LinGreenMaskSize: 5
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
Mode: 4d (1920x1440)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 3840
 XResolution: 1920
 YResolution: 1440
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 16
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 5
 RedFieldPosition: 11
 GreenMaskSize: 6
 GreenFieldPosition: 5
 BlueMaskSize: 5
 BlueFieldPosition: 0
 RsvdMaskSize: 0
 RsvdFieldPosition: 0
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 3840
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 5
 LinRedFieldPosition: 11
 LinGreenMaskSize: 6
 LinGreenFieldPosition: 5
 LinBlueMaskSize: 5
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 0
 LinRsvdFieldPosition: 0
 MaxPixelClock: 230000000
*(II) I810(0): Not using mode "640x480" (vrefresh out of range)
Mode: 50 (640x480)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 2560
 XResolution: 640
 YResolution: 480
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 5
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 8
 RsvdFieldPosition: 24
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 2560
 BnkNumberOfImagePages: 5
 LinNumberOfImagePages: 5
 LinRedMaskSize: 8
 LinRedFieldPosition: 16
 LinGreenMaskSize: 8
 LinGreenFieldPosition: 8
 LinBlueMaskSize: 8
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 8
 LinRsvdFieldPosition: 24
 MaxPixelClock: 230000000
*(II) I810(0): Not using mode "800x600" (vrefresh out of range)
Mode: 52 (800x600)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 3200
 XResolution: 800
 YResolution: 600
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 3
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 8
 RsvdFieldPosition: 24
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 3200
 BnkNumberOfImagePages: 3
 LinNumberOfImagePages: 3
 LinRedMaskSize: 8
 LinRedFieldPosition: 16
 LinGreenMaskSize: 8
 LinGreenFieldPosition: 8
 LinBlueMaskSize: 8
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 8
 LinRsvdFieldPosition: 24
 MaxPixelClock: 230000000
*(II) I810(0): Not using mode "1024x768" (hsync out of range)
Mode: 54 (1024x768)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 4096
 XResolution: 1024
 YResolution: 768
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 1
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 8
 RsvdFieldPosition: 24
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 4096
 BnkNumberOfImagePages: 1
 LinNumberOfImagePages: 1
 LinRedMaskSize: 8
 LinRedFieldPosition: 16
 LinGreenMaskSize: 8
 LinGreenFieldPosition: 8
 LinBlueMaskSize: 8
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 8
 LinRsvdFieldPosition: 24
 MaxPixelClock: 230000000
*(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
(II) I810(0): Not using mode "1280x1024" (hsync out of range)
Mode: 58 (1280x1024)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 5120
 XResolution: 1280
 YResolution: 1024
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 8
 RsvdFieldPosition: 24
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 5120
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 8
 LinRedFieldPosition: 16
 LinGreenMaskSize: 8
 LinGreenFieldPosition: 8
 LinBlueMaskSize: 8
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 8
 LinRsvdFieldPosition: 24
 MaxPixelClock: 230000000
*(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
(II) I810(0): Not using mode "1600x1200" (hsync out of range)
Mode: 5a (1600x1200)
 ModeAttributes: 0x9b
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 6400
 XResolution: 1600
 YResolution: 1200
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 8
 RsvdFieldPosition: 24
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 6400
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 8
 LinRedFieldPosition: 16
 LinGreenMaskSize: 8
 LinGreenFieldPosition: 8
 LinBlueMaskSize: 8
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 8
 LinRsvdFieldPosition: 24
 MaxPixelClock: 230000000
Mode: 5c (1920x1440)
 ModeAttributes: 0x9a
 WinAAttributes: 0x7
 WinBAttributes: 0x0
 WinGranularity: 64
 WinSize: 64
 WinASegment: 0xa000
 WinBSegment: 0x0
 WinFuncPtr: 0xc0005793
 BytesPerScanline: 7680
 XResolution: 1920
 YResolution: 1440
 XCharSize: 8
 YCharSize: 16
 NumberOfPlanes: 1
 BitsPerPixel: 32
 NumberOfBanks: 1
 MemoryModel: 6
 BankSize: 0
 NumberOfImages: 0
 RedMaskSize: 8
 RedFieldPosition: 16
 GreenMaskSize: 8
 GreenFieldPosition: 8
 BlueMaskSize: 8
 BlueFieldPosition: 0
 RsvdMaskSize: 8
 RsvdFieldPosition: 24
 DirectColorModeInfo: 0
 PhysBasePtr: 0xe0000000
 LinBytesPerScanLine: 7680
 BnkNumberOfImagePages: 0
 LinNumberOfImagePages: 0
 LinRedMaskSize: 8
 LinRedFieldPosition: 16
 LinGreenMaskSize: 8
 LinGreenFieldPosition: 8
 LinBlueMaskSize: 8
 LinBlueFieldPosition: 0
 LinRsvdMaskSize: 8
 LinRsvdFieldPosition: 24
 MaxPixelClock: 230000000
(II) I810(0): X-5G: Using hsync range of 31.50-60.00 kHz
(II) I810(0): X-5G: Using vrefresh range of 56.00-75.00 Hz
(II) I810(0): Not using mode "832x624" (no mode of this name)
(II) I810(0): Not using mode "720x540" (no mode of this name)
(II) I810(0): Not using mode "720x400" (no mode of this name)
(II) I810(0): Not using built-in mode "1280x1024" (width too large for virtual size)
(--) I810(0): Virtual size is 1024x768 (pitch 1024)
(**) I810(0): *Built-in mode "1024x768"
(**) I810(0): *Built-in mode "800x600"
(**) I810(0): *Built-in mode "640x480"
(II) I810(0): Attempting to use 75.03Hz refresh for mode "1024x768" (854)
(II) I810(0): Attempting to use 75.00Hz refresh for mode "800x600" (852)
(II) I810(0): Attempting to use 75.00Hz refresh for mode "640x480" (850)
(==) I810(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.0.0
 ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules//libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.2.0
 ABI class: X.Org Video Driver, version 1.1
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules//libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 0.1.0
 ABI class: X.Org Video Driver, version 1.1
(==) I810(0): VBE Restore workaround: enabled.
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/xorg/modules//libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
 compiled for 7.2.0, module version = 1.1.0
 ABI class: X.Org ANSI C Emulation, version 0.3
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
 [0] 0 0 0xec100000 - 0xec17ffff (0x80000) MS[B]
 [1] 0 0 0xe0000000 - 0xe7ffffff (0x8000000) MS[B]
 [2] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
 [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [6] -1 0 0xec001000 - 0xec001fff (0x1000) MX[B]
 [7] -1 0 0xec000000 - 0xec0000ff (0x100) MX[B]
 [8] -1 0 0xec182000 - 0xec1820ff (0x100) MX[B]
 [9] -1 0 0xec181000 - 0xec1811ff (0x200) MX[B]
 [10] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
 [11] -1 0 0xec180000 - 0xec1803ff (0x400) MX[B]
 [12] -1 0 0xe8000000 - 0xe7ffffff (0x0) MX[B]O
 [13] -1 0 0xec100000 - 0xec17ffff (0x80000) MX[B](B)
 [14] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
 [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
 [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
 [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
 [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [20] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
 [21] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
 [22] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
 [23] -1 0 0x00000500 - 0x0000051f (0x20) IX[B]
 [24] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [25] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [26] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [27] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
 [28] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
 [29] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
 [30] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[B]
 [31] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
 [32] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
 [33] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) I810(0): initializing int10
(WW) I810(0): Bad V_BIOS checksum
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 8000 kB
(II) I810(0): VESA VBE OEM: Brookdale-G Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Brookdale-G Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Before: SWF1 is 0x00000108
(II) I810(0): After: SWF1 is 0x00000108
(II) I810(0): Allocated 128 kB for the ring buffer at 0x0
(II) I810(0): Allocating at least 512 scanlines for pixmap cache
(II) I810(0): Initial framebuffer allocation size: 6144 kByte
(II) I810(0): Allocated 4 kB for HW cursor at 0x5fff000
(II) I810(0): Allocated 16 kB for HW (ARGB) cursor at 0x5ffb000
(II) I810(0): Allocated 4 kB for Overlay registers at 0x5ffa000 (0x0ef66000).
(II) I810(0): Allocated 64 kB for the scratch buffer at 0x5fea000
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) I810(0): [drm] loaded kernel module for "i915" driver
(II) I810(0): [drm] DRM interface version 1.3
(II) I810(0): [drm] created "i915" driver at busid "pci:0000:00:02.0"
(II) I810(0): [drm] added 8192 byte SAREA at 0xd0485000
(II) I810(0): [drm] mapped SAREA 0xd0485000 to 0xb7abf000
(II) I810(0): [drm] framebuffer handle = 0xe0020000
(II) I810(0): [drm] added 1 reserved context for kernel
(II) I810(0): Allocated 32 kB for the logical context at 0x5fe2000.
(II) I810(0): Allocated 3072 kB for the back buffer at 0x5800000.
(II) I810(0): Allocated 3072 kB for the depth buffer at 0x5400000.
(II) I810(0): Allocated 52992 kB for textures at 0x620000
(II) I810(0): 0x81f5320: Memory at offset 0x00020000, size 6144 kBytes
(II) I810(0): 0x81f61b0: Memory at offset 0x05fff000, size 4 kBytes
(II) I810(0): 0x81f6210: Memory at offset 0x05ffb000, size 16 kBytes
(II) I810(0): 0x81f6284: Memory at offset 0x00000000, size 128 kBytes
(II) I810(0): 0x81f5360: Memory at offset 0x05fea000, size 64 kBytes
(II) I810(0): 0x81f6520: Memory at offset 0x05ffa000, size 4 kBytes
(II) I810(0): 0x81f54f8: Memory at offset 0x05fe2000, size 32 kBytes
(II) I810(0): 0x81f5518: Memory at offset 0x05800000, size 3072 kBytes
(II) I810(0): 0x81f5538: Memory at offset 0x05400000, size 3072 kBytes
(II) I810(0): 0x81f5558: Memory at offset 0x00620000, size 52992 kBytes
(II) I810(0): Activating tiled memory for the back buffer.
(II) I810(0): Activating tiled memory for the depth buffer.
(II) I810(0): [drm] Registers = 0xec100000
(II) I810(0): [drm] ring buffer = 0xe0000000
(II) I810(0): [drm] init sarea width,height = 1024 x 768 (pitch 1024)
(II) I810(0): [drm] Mapping front buffer
(II) I810(0): [drm] Front Buffer = 0x2c004000
(II) I810(0): [drm] Back Buffer = 0xe5800000
(II) I810(0): [drm] Depth Buffer = 0xe5400000
(II) I810(0): [drm] textures = 0xe0620000
(II) I810(0): [drm] Initialized kernel agp heap manager, 54263808
(II) I810(0): [dri] visual configs initialized
(==) I810(0): Write-combining range (0xe0000000,0x8000000)
(II) I810(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(WW) I810(0): Extended BIOS function 0x5f05 failed.
(II) I810(0): xf86BindGARTMemory: bind key 7 at 0x007df000 (pgoffset 2015)
(II) I810(0): xf86BindGARTMemory: bind key 0 at 0x05fff000 (pgoffset 24575)
(II) I810(0): xf86BindGARTMemory: bind key 1 at 0x05ffb000 (pgoffset 24571)
(II) I810(0): xf86BindGARTMemory: bind key 3 at 0x05fea000 (pgoffset 24554)
(II) I810(0): xf86BindGARTMemory: bind key 2 at 0x05ffa000 (pgoffset 24570)
(II) I810(0): xf86BindGARTMemory: bind key 4 at 0x05fe2000 (pgoffset 24546)
(II) I810(0): xf86BindGARTMemory: bind key 5 at 0x05800000 (pgoffset 22528)
(II) I810(0): xf86BindGARTMemory: bind key 6 at 0x05400000 (pgoffset 21504)
(II) I810(0): Before: SWF1 is 0x00001108
(II) I810(0): After: SWF1 is 0x00001108
(II) I810(0): Setting refresh with VBE 3 method.
(II) I810(0): Display plane A is enabled and connected to Pipe A.
(II) I810(0): Enabling plane A.
(II) I810(0): Display plane A is now enabled and connected to Pipe A.
(II) I810(0): PIPEACONF is 0x80000000
(II) I810(0): Mode bandwidth is 47 Mpixel/s
(II) I810(0): maxBandwidth is 640 Mbyte/s, pipe bandwidths are 252 Mbyte/s, 0 Mbyte/s
(II) I810(0): Using XFree86 Acceleration Architecture (XAA)
 Screen to screen bit blits
 Solid filled rectangles
 8x8 mono pattern filled rectangles
 Indirect CPU to Screen color expansion
 Solid Horizontal and Vertical Lines
 Offscreen Pixmaps
 Setting up tile and stipple cache:
  16 128x128 slots
  4 256x256 slots
(==) I810(0): Backing store disabled
(==) I810(0): Silken mouse enabled
(II) I810(0): Initializing HW Cursor
(**) Option "dpms"
(**) I810(0): DPMS enabled
(II) I810(0): Set up overlay video
(II) I810(0): X context handle = 0x1
(II) I810(0): [drm] installed DRM signal handler
(II) I810(0): [DRI] installation complete
(II) I810(0): [drm] dma control initialized, using IRQ 16
(II) I810(0): direct rendering: Enabled
(II) I810(0): RandR enabled, ignore the following RandR disabled message.
(II) I810(0): Rotating to 0 degrees
(--) RandR disabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension XAccessControlExtension
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(WW) AIGLX: 3D driver claims to not support visual 0x23
(WW) AIGLX: 3D driver claims to not support visual 0x24
(WW) AIGLX: 3D driver claims to not support visual 0x25
(WW) AIGLX: 3D driver claims to not support visual 0x26
(WW) AIGLX: 3D driver claims to not support visual 0x27
(WW) AIGLX: 3D driver claims to not support visual 0x28
(WW) AIGLX: 3D driver claims to not support visual 0x29
(WW) AIGLX: 3D driver claims to not support visual 0x2a
(WW) AIGLX: 3D driver claims to not support visual 0x2b
(WW) AIGLX: 3D driver claims to not support visual 0x2c
(WW) AIGLX: 3D driver claims to not support visual 0x2d
(WW) AIGLX: 3D driver claims to not support visual 0x2e
(WW) AIGLX: 3D driver claims to not support visual 0x2f
(WW) AIGLX: 3D driver claims to not support visual 0x30
(WW) AIGLX: 3D driver claims to not support visual 0x31
(WW) AIGLX: 3D driver claims to not support visual 0x32
(II) AIGLX: Loaded and initialized /usr/lib/dri/i915_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Generic Keyboard: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Generic Keyboard: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) Option "Protocol" "ImPS/2"
(**) Configured Mouse: Device: "/dev/input/mice"
(**) Configured Mouse: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Configured Mouse: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "true"
(**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 9
(**) Option "SendCoreEvents"
(**) stylus: always reports core events
(**) stylus device is /dev/input/wacom
(**) stylus is in absolute mode
(**) stylus: forcing TabletPC ISD V4 protocol
(**) WACOM: suppress value is 2
(**) Option "BaudRate" "9600"
(**) stylus: serial speed 9600
(**) Option "SendCoreEvents"
(**) cursor: always reports core events
(**) cursor device is /dev/input/wacom
(**) cursor is in relative mode
(**) cursor: forcing TabletPC ISD V4 protocol
(**) WACOM: suppress value is 2
(**) Option "BaudRate" "9600"
(**) cursor: serial speed 9600
(**) Option "SendCoreEvents"
(**) eraser: always reports core events
(**) eraser device is /dev/input/wacom
(**) eraser is in absolute mode
(**) eraser: forcing TabletPC ISD V4 protocol
(**) WACOM: suppress value is 2
(**) Option "BaudRate" "9600"
(**) eraser: serial speed 9600
(II) XINPUT: Adding extended input device "eraser" (type: Wacom Eraser)
(II) XINPUT: Adding extended input device "cursor" (type: Wacom Cursor)
(II) XINPUT: Adding extended input device "stylus" (type: Wacom Stylus)
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(**) Option "Device" "/dev/input/wacom"
(EE) xf86OpenSerial: Cannot open device /dev/input/wacom
 No such file or directory.
Error opening /dev/input/wacom : Success
(**) Option "Device" "/dev/input/wacom"
(EE) xf86OpenSerial: Cannot open device /dev/input/wacom
 No such file or directory.
Error opening /dev/input/wacom : Success
(**) Option "Device" "/dev/input/wacom"
(EE) xf86OpenSerial: Cannot open device /dev/input/wacom
 No such file or directory.
Error opening /dev/input/wacom : Success
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Could not init font path element /usr/X11R6/lib/X11/fonts/misc, removing from list!
Could not init font path element /usr/share/fonts/X11/cyrillic, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/Type1, removing from list!
(II) XAA: Evicting pixmaps
-----

Revision history for this message
sheree (sah18) said :
#5

And here is the memory.log file (with firefox and terminal running):
-----
Linux 2.6.20-15-generic (root@palmer) (gcc 4.1.2 ) #2 1CPU [s-desktop.(none)]

Memory: Total Used Free Shared Buffers
Mem: 247968 225604 22364 0 1232
Swap: 722884 98092 624792

Bootup: Sun May 6 06:19:56 2007 Load average: 1.22 0.90 0.45 1/119 5853

user : 0:01:23.40 16.3% page in : 402137 disk 1: 29620r 3576w
nice : 0:00:07.43 1.5% page out: 150576
system: 0:00:19.20 3.8% page act: 47068
IOwait: 0:01:59.65 23.4% page dea: 53483
hw irq: 0:00:01.40 0.3% page flt: 1006355
sw irq: 0:00:01.26 0.2% swap in : 3836
idle : 0:04:39.29 54.6% swap out: 26234
uptime: 0:08:31.67 context : 412135

irq 0: 127914 timer irq 14: 33201 libata
irq 1: 489 i8042 irq 15: 5462 libata
irq 3: 2 irq 16: 62838 uhci_hcd:usb1, i915@
irq 4: 2 irq 17: 0 uhci_hcd:usb2
irq 6: 5 floppy [2] irq 18: 2 uhci_hcd:usb3, ohci1
irq 7: 0 parport0 irq 19: 715 eth0, Intel 82801DB-
irq 8: 3 rtc irq 20: 11151 ehci_hcd:usb4
irq 9: 1 acpi
-----

Revision history for this message
sheree (sah18) said :
#6

And here is the memory.log file with the mandela video running (in Totem Movie Player), plus still Firefox and terminal open:
-----
Linux 2.6.20-15-generic (root@palmer) (gcc 4.1.2 ) #2 1CPU [s-desktop.(none)]

Memory: Total Used Free Shared Buffers
Mem: 247968 239384 8584 0 856
Swap: 722884 121380 601504

Bootup: Sun May 6 06:19:56 2007 Load average: 0.78 0.77 0.49 1/135 6001

user : 0:01:57.34 15.4% page in : 482337 disk 1: 34421r 4318w
nice : 0:00:07.43 1.0% page out: 181108
system: 0:00:24.06 3.2% page act: 56942
IOwait: 0:02:20.27 18.5% page dea: 75415
hw irq: 0:00:02.35 0.3% page flt: 1113466
sw irq: 0:00:01.61 0.2% swap in : 8417
idle : 0:07:47.14 61.4% swap out: 32704
uptime: 0:12:40.21 context : 628291

irq 0: 190048 timer irq 14: 38744 libata
irq 1: 883 i8042 irq 15: 8190 libata
irq 3: 2 irq 16: 98341 uhci_hcd:usb1, i915@
irq 4: 2 irq 17: 0 uhci_hcd:usb2
irq 6: 5 floppy [2] irq 18: 2 uhci_hcd:usb3, ohci1
irq 7: 0 parport0 irq 19: 4785 eth0, Intel 82801DB-
irq 8: 3 rtc irq 20: 15171 ehci_hcd:usb4
irq 9: 1 acpi

-----

Revision history for this message
Cesare Tirabassi (norsetto) said :
#7

OK, not surprisingly looks like you have already topped your physical memory and already using the swap.
Unfortunately here you have to do a bit of trying to see what is optimum for you.
You have 4 options that you can add to your xorg.conf file. Try with either of these 4 alone, and then combining them and see if you still have a rendering problem and/or you have performance (or even stability) problems.
I would suggest:

add a VideoRAM entry in your Device section (the one with the Identifier "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"):

Option "VideoRam" "64"

As a first try, but I guess 64 should be reduced. Try.

Add these entries to your Device section:

(If you don care about 3D)
Option "DRI" "false"
and comment out the whole section DRI

(If you don care about 3D)
Option "CacheLines" "256"

Try also lower numbers (128 or even 64)

Option "LinearAlloc" "6144"

Other than that, perhaps installing a ligther desktop (for instance Xfce) may help your memory issue.

Revision history for this message
Cesare Tirabassi (norsetto) said :
#8

I forgot to mention, try also switching to a lower resolution/refresh video mode when you play videos (I know, its not nice but .....).

Revision history for this message
sheree (sah18) said :
#9

Thank you for your suggestions.

I placed an order for more memory (1GB) a couple of days ago, but I won't receive it until a few days from now. Do you think that this problem might correct itself after I've added more ram, or will adjustments still be necessary? I'm tempted to not change anything until I've installed the new memory but wondered what you thought.

Also, even with the added ram, would it be best for me to purchase a video adapter to use instead of the onboard adapter?

Revision history for this message
Cesare Tirabassi (norsetto) said :
#10

Concerning your first question, the additional memory should indeed help you. The driver will automatically see the amount of memory available and change some of the settings.
A video card could also help you to have better performance, especially in 3d applications. It all depends on what you are using for your computer.

Can you help with this problem?

Provide an answer of your own, or ask sheree for more information if necessary.

To post a message you must log in.