[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force xresprobe SVN commit: r17 - in vendor: . ddcprobe debian tests



Author: otavio
Date: 2005-03-23 19:56:11 -0500 (Wed, 23 Mar 2005)
New Revision: 17

Added:
   vendor/bitdepth.sh
   vendor/svn-commit.tmp
   vendor/svn-commit.tmp~
   vendor/tests/log-i810-no24bpp
Modified:
   vendor/COPYING
   vendor/Makefile
   vendor/ddcprobe.sh
   vendor/ddcprobe/of.c
   vendor/debian/changelog
   vendor/debian/rules
   vendor/lcdsize.sh
   vendor/xprobe.sh
   vendor/xresprobe
Log:
Load . into vendor/.


Modified: vendor/COPYING
===================================================================
--- vendor/COPYING	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/COPYING	2005-03-24 00:56:11 UTC (rev 17)
@@ -1,4 +1,4 @@
-Copyright (C) 2004 Canonical Ltd, written by
+Copyright (C) 2004-2005 Canonical Ltd, written by
 Daniel Stone <daniel.stone@ubuntu.com>, and Fabio M. Di Nitto
 <fabio.massimo.di.nitto@ubuntu.com>
 

Modified: vendor/Makefile
===================================================================
--- vendor/Makefile	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/Makefile	2005-03-24 00:56:11 UTC (rev 17)
@@ -15,4 +15,5 @@
 	install -m755 xprobe.sh $(DESTDIR)$(DATADIR)/
 	install -m755 ddcprobe.sh $(DESTDIR)$(DATADIR)/
 	install -m755 lcdsize.sh $(DESTDIR)$(DATADIR)/
+	install -m755 bitdepth.sh $(DESTDIR)$(DATADIR)/
 	install -m644 xorg.conf $(DESTDIR)$(DATADIR)/

Added: vendor/bitdepth.sh
===================================================================
--- vendor/bitdepth.sh	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/bitdepth.sh	2005-03-24 00:56:11 UTC (rev 17)
@@ -0,0 +1,47 @@
+#!/bin/sh
+# usage: bitdepth.sh driver logfile [stdout]
+# Copyright (C) 2005 Canonical Ltd.
+# Author: Daniel Stone <daniel.stone@ubuntu.com>
+# 
+#  This program is free software; you can redistribute it and/or modify
+#  it under the terms of the GNU General Public License as published by
+#  the Free Software Foundation; version 2 of the License.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License with
+#  the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
+#  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+#  Suite 330, Boston, MA  02111-1307  USA
+#
+# On Debian systems, the complete text of the GNU General Public
+# License, version 2, can be found in /usr/share/common-licenses/GPL-2.
+
+DRIVER="$1"
+LOGFILE="$2"
+# stdout is, for now, unused
+STDOUT="$3"
+
+if [ -z "$DRIVER" -o -z "$LOGFILE" ]; then
+  echo "Driver name and logfile must be specified on the command line."
+  exit 1
+fi
+
+if [ "$DRIVER" = "i810" ]; then
+  if egrep -q "\(EE\) I810\(.*\): No Video BIOS modes for chosen depth." \
+           "$LOGFILE"; then
+    # broken bios!  word.  if we don't have any 24bpp modes, just hope like
+    # hell that 16bpp will work; some vendors ship bioses without 24bpp modes
+    # in their vesa mode table.
+    FORCEDEPTH=16
+  fi
+else
+  exit 1
+fi
+
+if [ -n "$FORCEDEPTH" ]; then
+  echo $FORCEDEPTH
+fi


Property changes on: vendor/bitdepth.sh
___________________________________________________________________
Name: svn:executable
   + *

Modified: vendor/ddcprobe/of.c
===================================================================
--- vendor/ddcprobe/of.c	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/ddcprobe/of.c	2005-03-24 00:56:11 UTC (rev 17)
@@ -76,6 +76,14 @@
 	for (n = list->result->next; n != list->result; n = n->next)
 		ret = 1;
 
+	/* If there is no EDID in /proc/device-tree provided by the OF, maybe
+	 * some fbdev driver (like radeonfb) provides the info in /sys */
+	if (ret == 0) {
+        	minifind("/sys", "edid1", list);
+		for (n = list->result->next; n != list->result; n = n->next)
+			ret = 1;
+	}
+
 	/* Clean up and return. */
 	return ret;
 }
@@ -105,6 +113,18 @@
 		break;
 	}
 
+	/* If there is no EDID in /proc/device-tree provided by the OF, maybe
+	 * some fbdev driver (like radeonfb) provides the info in /sys */
+	if (!path) {
+        	minifind("/sys", "edid1", list);
+		for (n = list->result->next; n != list->result; n = n->next)
+		{
+			path = n->path;
+			break;
+		}
+	}
+
+
 	if (path)
 		edid_file = fopen(path, "rb" );
 


Property changes on: vendor/ddcprobe.sh
___________________________________________________________________
Name: svn:executable
   - 
   + *

Modified: vendor/debian/changelog
===================================================================
--- vendor/debian/changelog	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/debian/changelog	2005-03-24 00:56:11 UTC (rev 17)
@@ -1,3 +1,19 @@
+xresprobe (0.4.15) hoary; urgency=low
+
+  * Add patch from Sven Luther to walk /sys looking for EDID data exported by
+    (e.g.) radeonfb on alpha and powerpc, as well as checking the OF device
+    tree (partially mitigates Ubuntu#7144).
+  * Unconditionally fork X on i810, and grep the log to see if the card breaks
+    with 'no modes supported at the current depth' (i.e. the BIOS authors
+    didn't think 24bpp was a good idea), and output 'depth: 16' in this case
+    to hint the X server in the direction of something that may work.  Yes,
+    this is an awful hack, but it (closes: Ubuntu#6675).
+    + Added bitdepth.sh; refactored xresprobe code to separate code to fork
+      Xorg and capture the log into a forkx() function, which dodepthcheck()
+      and doprobe() call.
+
+ -- Daniel Stone <daniel.stone@ubuntu.com>  Wed, 16 Mar 2005 23:09:28 +1100
+
 xresprobe (0.4.14) hoary; urgency=low
 
   * Add magic strings for siliconmotion (tested), trident (untested), and


Property changes on: vendor/debian/rules
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: vendor/lcdsize.sh
___________________________________________________________________
Name: svn:executable
   - 
   + *

Added: vendor/svn-commit.tmp
===================================================================
--- vendor/svn-commit.tmp	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/svn-commit.tmp	2005-03-24 00:56:11 UTC (rev 17)
@@ -0,0 +1,4 @@
+Import 0.4.15 source
+--Esta linha, e as abaixo, ser�ignoradas--
+
+A    .

Added: vendor/svn-commit.tmp~
===================================================================
--- vendor/svn-commit.tmp~	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/svn-commit.tmp~	2005-03-24 00:56:11 UTC (rev 17)
@@ -0,0 +1,4 @@
+
+--Esta linha, e as abaixo, ser�ignoradas--
+
+A    .

Added: vendor/tests/log-i810-no24bpp
===================================================================
--- vendor/tests/log-i810-no24bpp	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/tests/log-i810-no24bpp	2005-03-24 00:56:11 UTC (rev 17)
@@ -0,0 +1,1413 @@
+
+This is a pre-release version of the The X.Org Foundation X11.
+It is not supported in any way.
+Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
+Select the "xorg" product for bugs you find in this release.
+Before reporting bugs in pre-release versions please check the
+latest version in the The X.Org Foundation "monolithic tree" CVS
+repository hosted at http://www.freedesktop.org/Software/xorg/
+X Window System Version 6.8.1.902 (6.8.2 RC 2) (Ubuntu 6.8.1-1ubuntu16 20050209180945 root@rockhopper.warthogs.hbd.com)
+Release Date: 12 January 2005
+X Protocol Version 11, Revision 0, Release 6.8.1.902
+Build Operating System: Linux 2.6.8.1 i686 [ELF] 
+Current Operating System: Linux ubuntu 2.6.10-3-386 #1 Tue Feb 15 21:18:07 UTC 2005 i686
+Build Date: 09 February 2005
+	Before reporting problems, check http://wiki.X.Org
+	to make sure that you have the latest version.
+Module Loader present
+OS Kernel: Linux version 2.6.10-3-386 (buildd@mcmurdo) (gcc version 3.3.5 (Debian 1:3.3.5-8ubuntu2)) #1 Tue Feb 15 21:18:07 UTC 2005 
+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: Thu Feb 17 10:10:48 2005
+(==) Using config file: "/etc/X11/xorg.conf"
+(==) ServerLayout "Default Layout"
+(**) |-->Screen "Default Screen" (0)
+(**) |   |-->Monitor "DELL 1703FP"
+(**) |   |-->Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
+(**) |-->Input Device "Generic Keyboard"
+(**) Option "XkbRules" "xorg"
+(**) XKB: rules: "xorg"
+(**) Option "XkbModel" "pc104"
+(**) XKB: model: "pc104"
+(**) Option "XkbLayout" "us"
+(**) XKB: layout: "us"
+(==) Keyboard: CustomKeycode disabled
+(**) |-->Input Device "Configured Mouse"
+(WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
+	Entry deleted from font path.
+(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
+	Entry deleted from font path.
+(WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID".
+	Entry deleted from font path.
+	(Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID").
+(**) FontPath set to "unix/:7100,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
+(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
+(==) ModulePath set to "/usr/X11R6/lib/modules"
+(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
+(II) Module ABI versions:
+	X.Org ANSI C Emulation: 0.2
+	X.Org Video Driver: 0.7
+	X.Org XInput driver : 0.4
+	X.Org Server Extension : 0.2
+	X.Org Font Renderer : 0.4
+(II) Loader running on linux
+(II) LoadModule: "bitmap"
+(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
+(II) Module bitmap: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	Module class: X.Org Font Renderer
+	ABI class: X.Org Font Renderer, version 0.4
+(II) Loading font Bitmap
+(II) LoadModule: "pcidata"
+(II) Loading /usr/X11R6/lib/modules/libpcidata.a
+(II) Module pcidata: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Video Driver, version 0.7
+(++) using VT number 7
+
+(II) PCI: PCI scan (all values are in hex)
+(II) PCI: 00:00:0: chip 8086,2560 card 1028,0126 rev 01 class 06,00,00 hdr 00
+(II) PCI: 00:02:0: chip 8086,2562 card 1028,0126 rev 01 class 03,00,00 hdr 00
+(II) PCI: 00:1d:0: chip 8086,24c2 card 1028,0126 rev 01 class 0c,03,00 hdr 80
+(II) PCI: 00:1d:1: chip 8086,24c4 card 1028,0126 rev 01 class 0c,03,00 hdr 00
+(II) PCI: 00:1d:2: chip 8086,24c7 card 1028,0126 rev 01 class 0c,03,00 hdr 00
+(II) PCI: 00:1d:7: chip 8086,24cd card 1028,0126 rev 01 class 0c,03,20 hdr 00
+(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 81 class 06,04,00 hdr 01
+(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 01 class 06,01,00 hdr 80
+(II) PCI: 00:1f:1: chip 8086,24cb card 1028,0126 rev 01 class 01,01,8a hdr 00
+(II) PCI: 00:1f:3: chip 8086,24c3 card 1028,0126 rev 01 class 0c,05,00 hdr 00
+(II) PCI: 00:1f:5: chip 8086,24c5 card 1028,0126 rev 01 class 04,01,00 hdr 00
+(II) PCI: 01:0c:0: chip 8086,100e card 1028,002e rev 02 class 02,00,00 hdr 00
+(II) PCI: End of PCI scan
+(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) 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	0x0000e000 - 0x0000e0ff (0x100) IX[B]
+	[1] -1	0	0x0000e400 - 0x0000e4ff (0x100) IX[B]
+	[2] -1	0	0x0000e800 - 0x0000e8ff (0x100) IX[B]
+	[3] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
+(II) Bus 1 non-prefetchable memory range:
+	[0] -1	0	0xff800000 - 0xff9fffff (0x200000) 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 Corp. 82845G/GL [Brookdale-G] Chipset Integrated Graphics Device rev 1, Mem @ 0xe8000000/27, 0xff680000/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	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
+	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
+	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
+	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
+	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
+	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
+	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
+(II) PCI Memory resource overlap reduced 0xf0000000 from 0xf7ffffff to 0xefffffff
+(II) Active PCI resource ranges:
+	[0] -1	0	0xff8e0000 - 0xff8fffff (0x20000) MX[B]
+	[1] -1	0	0xffa00000 - 0xffa000ff (0x100) MX[B]
+	[2] -1	0	0xffa00400 - 0xffa005ff (0x200) MX[B]
+	[3] -1	0	0x3ff00000 - 0x3ff003ff (0x400) MX[B]
+	[4] -1	0	0xffa00800 - 0xffa00bff (0x400) MX[B]
+	[5] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
+	[6] -1	0	0xff680000 - 0xff6fffff (0x80000) MX[B](B)
+	[7] -1	0	0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
+	[8] -1	0	0x0000ecc0 - 0x0000ecff (0x40) IX[B]
+	[9] -1	0	0x0000dc40 - 0x0000dc7f (0x40) IX[B]
+	[10] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
+	[11] -1	0	0x0000dc80 - 0x0000dc9f (0x20) IX[B]
+	[12] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
+	[13] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
+	[14] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
+	[15] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
+(II) Active PCI resource ranges after removing overlaps:
+	[0] -1	0	0xff8e0000 - 0xff8fffff (0x20000) MX[B]
+	[1] -1	0	0xffa00000 - 0xffa000ff (0x100) MX[B]
+	[2] -1	0	0xffa00400 - 0xffa005ff (0x200) MX[B]
+	[3] -1	0	0x3ff00000 - 0x3ff003ff (0x400) MX[B]
+	[4] -1	0	0xffa00800 - 0xffa00bff (0x400) MX[B]
+	[5] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
+	[6] -1	0	0xff680000 - 0xff6fffff (0x80000) MX[B](B)
+	[7] -1	0	0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
+	[8] -1	0	0x0000ecc0 - 0x0000ecff (0x40) IX[B]
+	[9] -1	0	0x0000dc40 - 0x0000dc7f (0x40) IX[B]
+	[10] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
+	[11] -1	0	0x0000dc80 - 0x0000dc9f (0x20) IX[B]
+	[12] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
+	[13] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
+	[14] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
+	[15] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
+(II) OS-reported resource ranges after removing overlaps with PCI:
+	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
+	[1] -1	0	0x00100000 - 0x3fefffff (0x3fe00000) MX[B]E(B)
+	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
+	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
+	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
+	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
+	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
+(II) All system resource ranges:
+	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
+	[1] -1	0	0x00100000 - 0x3fefffff (0x3fe00000) MX[B]E(B)
+	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
+	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
+	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
+	[5] -1	0	0xff8e0000 - 0xff8fffff (0x20000) MX[B]
+	[6] -1	0	0xffa00000 - 0xffa000ff (0x100) MX[B]
+	[7] -1	0	0xffa00400 - 0xffa005ff (0x200) MX[B]
+	[8] -1	0	0x3ff00000 - 0x3ff003ff (0x400) MX[B]
+	[9] -1	0	0xffa00800 - 0xffa00bff (0x400) MX[B]
+	[10] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
+	[11] -1	0	0xff680000 - 0xff6fffff (0x80000) MX[B](B)
+	[12] -1	0	0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
+	[13] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
+	[14] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
+	[15] -1	0	0x0000ecc0 - 0x0000ecff (0x40) IX[B]
+	[16] -1	0	0x0000dc40 - 0x0000dc7f (0x40) IX[B]
+	[17] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
+	[18] -1	0	0x0000dc80 - 0x0000dc9f (0x20) IX[B]
+	[19] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
+	[20] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
+	[21] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
+	[22] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
+(II) LoadModule: "bitmap"
+(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
+(II) Loading font Bitmap
+(II) LoadModule: "dbe"
+(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
+(II) Module dbe: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	Module class: X.Org Server Extension
+	ABI class: X.Org Server Extension, version 0.2
+(II) Loading extension DOUBLE-BUFFER
+(II) LoadModule: "ddc"
+(II) Loading /usr/X11R6/lib/modules/libddc.a
+(II) Module ddc: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Video Driver, version 0.7
+(II) LoadModule: "dri"
+(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
+(II) Module dri: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Server Extension, version 0.2
+(II) Loading sub module "drm"
+(II) LoadModule: "drm"
+(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
+(II) Module drm: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Server Extension, version 0.2
+(II) Loading extension XFree86-DRI
+(II) LoadModule: "extmod"
+(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
+(II) Module extmod: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	Module class: X.Org Server Extension
+	ABI class: X.Org Server Extension, version 0.2
+(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 FontCache
+(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/X11R6/lib/modules/fonts/libfreetype.a
+(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
+	compiled for 6.8.1.902, module version = 2.1.0
+	Module class: X.Org Font Renderer
+	ABI class: X.Org Font Renderer, version 0.4
+(II) Loading font FreeType
+(II) LoadModule: "glx"
+(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
+(II) Module glx: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Server Extension, version 0.2
+(II) Loading sub module "GLcore"
+(II) LoadModule: "GLcore"
+(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
+Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":  No symbols found
+Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":  No symbols found
+Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o":  No symbols found
+(II) Module GLcore: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Server Extension, version 0.2
+(II) Loading extension GLX
+(II) LoadModule: "int10"
+(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
+(II) Module int10: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	ABI class: X.Org Video Driver, version 0.7
+(II) LoadModule: "record"
+(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
+(II) Module record: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.13.0
+	Module class: X.Org Server Extension
+	ABI class: X.Org Server Extension, version 0.2
+(II) Loading extension RECORD
+(II) LoadModule: "type1"
+(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
+(II) Module type1: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.2
+	Module class: X.Org Font Renderer
+	ABI class: X.Org Font Renderer, version 0.4
+(II) Loading font Type1
+(II) Loading font CID
+(II) LoadModule: "vbe"
+(II) Loading /usr/X11R6/lib/modules/libvbe.a
+(II) Module vbe: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.1.0
+	ABI class: X.Org Video Driver, version 0.7
+(II) LoadModule: "i810"
+(II) Loading /usr/X11R6/lib/modules/drivers/i810_drv.o
+(II) Module i810: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.3.0
+	Module class: X.Org Video Driver
+	ABI class: X.Org Video Driver, version 0.7
+(II) LoadModule: "keyboard"
+(II) Loading /usr/X11R6/lib/modules/input/keyboard_drv.o
+(II) Module keyboard: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	Module class: X.Org XInput Driver
+	ABI class: X.Org XInput driver, version 0.4
+(II) LoadModule: "mouse"
+(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
+(II) Module mouse: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 1.0.0
+	Module class: X.Org XInput Driver
+	ABI class: X.Org XInput driver, version 0.4
+(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
+	i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, 915GM
+(II) Primary Device is: PCI 00:02:0
+(--) Chipset 845G found
+(II) resource ranges after xf86ClaimFixedResources() call:
+	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
+	[1] -1	0	0x00100000 - 0x3fefffff (0x3fe00000) MX[B]E(B)
+	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
+	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
+	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
+	[5] -1	0	0xff8e0000 - 0xff8fffff (0x20000) MX[B]
+	[6] -1	0	0xffa00000 - 0xffa000ff (0x100) MX[B]
+	[7] -1	0	0xffa00400 - 0xffa005ff (0x200) MX[B]
+	[8] -1	0	0x3ff00000 - 0x3ff003ff (0x400) MX[B]
+	[9] -1	0	0xffa00800 - 0xffa00bff (0x400) MX[B]
+	[10] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
+	[11] -1	0	0xff680000 - 0xff6fffff (0x80000) MX[B](B)
+	[12] -1	0	0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
+	[13] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
+	[14] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
+	[15] -1	0	0x0000ecc0 - 0x0000ecff (0x40) IX[B]
+	[16] -1	0	0x0000dc40 - 0x0000dc7f (0x40) IX[B]
+	[17] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
+	[18] -1	0	0x0000dc80 - 0x0000dc9f (0x20) IX[B]
+	[19] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
+	[20] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
+	[21] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
+	[22] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
+(II) resource ranges after probing:
+	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
+	[1] -1	0	0x00100000 - 0x3fefffff (0x3fe00000) MX[B]E(B)
+	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
+	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
+	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
+	[5] -1	0	0xff8e0000 - 0xff8fffff (0x20000) MX[B]
+	[6] -1	0	0xffa00000 - 0xffa000ff (0x100) MX[B]
+	[7] -1	0	0xffa00400 - 0xffa005ff (0x200) MX[B]
+	[8] -1	0	0x3ff00000 - 0x3ff003ff (0x400) MX[B]
+	[9] -1	0	0xffa00800 - 0xffa00bff (0x400) MX[B]
+	[10] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
+	[11] -1	0	0xff680000 - 0xff6fffff (0x80000) MX[B](B)
+	[12] -1	0	0xe8000000 - 0xefffffff (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	0x0000ecc0 - 0x0000ecff (0x40) IX[B]
+	[19] -1	0	0x0000dc40 - 0x0000dc7f (0x40) IX[B]
+	[20] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
+	[21] -1	0	0x0000dc80 - 0x0000dc9f (0x20) IX[B]
+	[22] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
+	[23] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
+	[24] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
+	[25] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
+	[26] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
+	[27] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
+(II) Setting vga for screen 0.
+(II) Loading sub module "int10"
+(II) LoadModule: "int10"
+(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
+(II) Loading sub module "vbe"
+(II) LoadModule: "vbe"
+(II) Reloading /usr/X11R6/lib/modules/libvbe.a
+(II) Loading sub module "vgahw"
+(II) LoadModule: "vgahw"
+(II) Loading /usr/X11R6/lib/modules/libvgahw.a
+(II) Module vgahw: vendor="X.Org Foundation"
+	compiled for 6.8.1.902, module version = 0.1.0
+	ABI class: X.Org Video Driver, version 0.7
+(**) 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/X11R6/lib/modules/linux/libint10.a
+(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: 832 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 0xE8000000
+(--) I810(0): IO registers at addr 0xFF680000
+(II) I810(0): 1 display pipe available.
+(II) I810(0): detected 892 kB stolen memory.
+(II) I810(0): I830CheckAvailableMemory: 835580 kB available
+(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 0x00000001
+(II) I810(0): After: SWF1 is 0x00000008
+(II) Loading sub module "int10"
+(II) LoadModule: "int10"
+(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
+(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: 832 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 832 kB VideoRAM
+(--) I810(0): Pre-allocated VideoRAM: 892 kByte
+(==) I810(0): VideoRAM: 32768 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: 2833
+(==) 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: CRT2 (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): Currently active displays on Pipe A:
+(II) I810(0): 	CRT
+(==) I810(0): Display is using Pipe A
+(--) I810(0): Maximum frambuffer space: 32600 kByte
+(II) Loading sub module "ddc"
+(II) LoadModule: "ddc"
+(II) Reloading /usr/X11R6/lib/modules/libddc.a
+(II) I810(0): VESA VBE DDC supported
+(II) I810(0): VESA VBE DDC Level 2
+(II) I810(0): VESA VBE DDC transfer in appr. 1 sec.
+(II) I810(0): VESA VBE DDC read successfully
+(II) I810(0): Manufacturer: DEL  Model: 3010  Serial#: 1095645490
+(II) I810(0): Year: 2004  Week: 41
+(II) I810(0): EDID Version: 1.3
+(II) I810(0): Analog Display Input,  Input Voltage Level: 0.700/0.300 V
+(II) I810(0): Sync:  Separate  Composite  SyncOnGreen
+(II) I810(0): Max H-Image Size [cm]: horiz.: 34  vert.: 27
+(II) I810(0): Gamma: 2.20
+(II) I810(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
+(II) I810(0): Default color space is primary color space
+(II) I810(0): First detailed timing is preferred mode
+(II) I810(0): redX: 0.634 redY: 0.354   greenX: 0.304 greenY: 0.581
+(II) I810(0): blueX: 0.143 blueY: 0.102   whiteX: 0.310 whiteY: 0.330
+(II) I810(0): Supported VESA Video Modes:
+(II) I810(0): 720x400@70Hz
+(II) I810(0): 640x480@60Hz
+(II) I810(0): 640x480@75Hz
+(II) I810(0): 800x600@60Hz
+(II) I810(0): 800x600@75Hz
+(II) I810(0): 1024x768@60Hz
+(II) I810(0): 1024x768@75Hz
+(II) I810(0): 1280x1024@75Hz
+(II) I810(0): Manufacturer's mask: 0
+(II) I810(0): Supported Future Video Modes:
+(II) I810(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
+(II) I810(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
+(II) I810(0): Supported additional Video Mode:
+(II) I810(0): clock: 108.0 MHz   Image Size:  338 x 270 mm
+(II) I810(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
+(II) I810(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
+(II) I810(0): Serial No: 4Y2794A6AN92
+(II) I810(0): Monitor name: DELL 1703FP
+(II) I810(0): Ranges: V min: 56  V max: 76 Hz, H min: 30  H max: 80 kHz, PixClock max 140 MHz
+(II) I810(0): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
+(--) I810(0): Maximum space available for video modes: 832 kByte
+Mode: 20 (132x25)
+	ModeAttributes: 0xf
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 528
+	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: 0xc0005aef
+	BytesPerScanline: 528
+	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: 0xc0005aef
+	BytesPerScanline: 528
+	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: 0xc0005aef
+	BytesPerScanline: 528
+	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: 0xc0005aef
+	BytesPerScanline: 640
+	XResolution: 640
+	YResolution: 480
+	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: 0xe8000000
+	LinBytesPerScanLine: 640
+	BnkNumberOfImagePages: 1
+	LinNumberOfImagePages: 1
+	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: 0xc0005aef
+	BytesPerScanline: 800
+	XResolution: 800
+	YResolution: 600
+	XCharSize: 8
+	YCharSize: 16
+	NumberOfPlanes: 1
+	BitsPerPixel: 8
+	NumberOfBanks: 1
+	MemoryModel: 4
+	BankSize: 0
+	NumberOfImages: 0
+	RedMaskSize: 0
+	RedFieldPosition: 0
+	GreenMaskSize: 0
+	GreenFieldPosition: 0
+	BlueMaskSize: 0
+	BlueFieldPosition: 0
+	RsvdMaskSize: 0
+	RsvdFieldPosition: 0
+	DirectColorModeInfo: 0
+	PhysBasePtr: 0xe8000000
+	LinBytesPerScanLine: 800
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	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: 0xc0005aef
+	BytesPerScanline: 1024
+	XResolution: 1024
+	YResolution: 768
+	XCharSize: 8
+	YCharSize: 16
+	NumberOfPlanes: 1
+	BitsPerPixel: 8
+	NumberOfBanks: 1
+	MemoryModel: 4
+	BankSize: 0
+	NumberOfImages: 0
+	RedMaskSize: 0
+	RedFieldPosition: 0
+	GreenMaskSize: 0
+	GreenFieldPosition: 0
+	BlueMaskSize: 0
+	BlueFieldPosition: 0
+	RsvdMaskSize: 0
+	RsvdFieldPosition: 0
+	DirectColorModeInfo: 0
+	PhysBasePtr: 0xe8000000
+	LinBytesPerScanLine: 1024
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 0
+	LinRedFieldPosition: 0
+	LinGreenMaskSize: 0
+	LinGreenFieldPosition: 0
+	LinBlueMaskSize: 0
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 38 (1280x1024)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 1280
+	XResolution: 1280
+	YResolution: 1024
+	XCharSize: 8
+	YCharSize: 16
+	NumberOfPlanes: 1
+	BitsPerPixel: 8
+	NumberOfBanks: 1
+	MemoryModel: 4
+	BankSize: 0
+	NumberOfImages: 0
+	RedMaskSize: 0
+	RedFieldPosition: 0
+	GreenMaskSize: 0
+	GreenFieldPosition: 0
+	BlueMaskSize: 0
+	BlueFieldPosition: 0
+	RsvdMaskSize: 0
+	RsvdFieldPosition: 0
+	DirectColorModeInfo: 0
+	PhysBasePtr: 0xe8000000
+	LinBytesPerScanLine: 1280
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 0
+	LinRedFieldPosition: 0
+	LinGreenMaskSize: 0
+	LinGreenFieldPosition: 0
+	LinBlueMaskSize: 0
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 3a (1600x1200)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 1600
+	XResolution: 1600
+	YResolution: 1200
+	XCharSize: 8
+	YCharSize: 16
+	NumberOfPlanes: 1
+	BitsPerPixel: 8
+	NumberOfBanks: 1
+	MemoryModel: 4
+	BankSize: 0
+	NumberOfImages: 0
+	RedMaskSize: 0
+	RedFieldPosition: 0
+	GreenMaskSize: 0
+	GreenFieldPosition: 0
+	BlueMaskSize: 0
+	BlueFieldPosition: 0
+	RsvdMaskSize: 0
+	RsvdFieldPosition: 0
+	DirectColorModeInfo: 0
+	PhysBasePtr: 0xe8000000
+	LinBytesPerScanLine: 1600
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 0
+	LinRedFieldPosition: 0
+	LinGreenMaskSize: 0
+	LinGreenFieldPosition: 0
+	LinBlueMaskSize: 0
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 3c (1920x1440)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 1920
+	XResolution: 1920
+	YResolution: 1440
+	XCharSize: 8
+	YCharSize: 16
+	NumberOfPlanes: 1
+	BitsPerPixel: 8
+	NumberOfBanks: 1
+	MemoryModel: 4
+	BankSize: 0
+	NumberOfImages: 0
+	RedMaskSize: 0
+	RedFieldPosition: 0
+	GreenMaskSize: 0
+	GreenFieldPosition: 0
+	BlueMaskSize: 0
+	BlueFieldPosition: 0
+	RsvdMaskSize: 0
+	RsvdFieldPosition: 0
+	DirectColorModeInfo: 0
+	PhysBasePtr: 0xe8000000
+	LinBytesPerScanLine: 1920
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 0
+	LinRedFieldPosition: 0
+	LinGreenMaskSize: 0
+	LinGreenFieldPosition: 0
+	LinBlueMaskSize: 0
+	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: 0xc0005aef
+	BytesPerScanline: 1280
+	XResolution: 640
+	YResolution: 480
+	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: 0xe8000000
+	LinBytesPerScanLine: 1280
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 5
+	LinRedFieldPosition: 11
+	LinGreenMaskSize: 6
+	LinGreenFieldPosition: 5
+	LinBlueMaskSize: 5
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 43 (800x600)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 1600
+	XResolution: 800
+	YResolution: 600
+	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: 0xe8000000
+	LinBytesPerScanLine: 1600
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 5
+	LinRedFieldPosition: 11
+	LinGreenMaskSize: 6
+	LinGreenFieldPosition: 5
+	LinBlueMaskSize: 5
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 45 (1024x768)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 2048
+	XResolution: 1024
+	YResolution: 768
+	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: 0xe8000000
+	LinBytesPerScanLine: 2048
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 5
+	LinRedFieldPosition: 11
+	LinGreenMaskSize: 6
+	LinGreenFieldPosition: 5
+	LinBlueMaskSize: 5
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 49 (1280x1024)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 2560
+	XResolution: 1280
+	YResolution: 1024
+	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: 0xe8000000
+	LinBytesPerScanLine: 2560
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 5
+	LinRedFieldPosition: 11
+	LinGreenMaskSize: 6
+	LinGreenFieldPosition: 5
+	LinBlueMaskSize: 5
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 4b (1600x1200)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 3200
+	XResolution: 1600
+	YResolution: 1200
+	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: 0xe8000000
+	LinBytesPerScanLine: 3200
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 5
+	LinRedFieldPosition: 11
+	LinGreenMaskSize: 6
+	LinGreenFieldPosition: 5
+	LinBlueMaskSize: 5
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 4d (1920x1440)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	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: 0xe8000000
+	LinBytesPerScanLine: 3840
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 5
+	LinRedFieldPosition: 11
+	LinGreenMaskSize: 6
+	LinGreenFieldPosition: 5
+	LinBlueMaskSize: 5
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 0
+	LinRsvdFieldPosition: 0
+	MaxPixelClock: 230000000
+Mode: 50 (640x480)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 2560
+	XResolution: 640
+	YResolution: 480
+	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: 0xe8000000
+	LinBytesPerScanLine: 2560
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 8
+	LinRedFieldPosition: 16
+	LinGreenMaskSize: 8
+	LinGreenFieldPosition: 8
+	LinBlueMaskSize: 8
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 8
+	LinRsvdFieldPosition: 24
+	MaxPixelClock: 230000000
+Mode: 52 (800x600)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 3200
+	XResolution: 800
+	YResolution: 600
+	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: 0xe8000000
+	LinBytesPerScanLine: 3200
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 8
+	LinRedFieldPosition: 16
+	LinGreenMaskSize: 8
+	LinGreenFieldPosition: 8
+	LinBlueMaskSize: 8
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 8
+	LinRsvdFieldPosition: 24
+	MaxPixelClock: 230000000
+Mode: 54 (1024x768)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	BytesPerScanline: 4096
+	XResolution: 1024
+	YResolution: 768
+	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: 0xe8000000
+	LinBytesPerScanLine: 4096
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 8
+	LinRedFieldPosition: 16
+	LinGreenMaskSize: 8
+	LinGreenFieldPosition: 8
+	LinBlueMaskSize: 8
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 8
+	LinRsvdFieldPosition: 24
+	MaxPixelClock: 230000000
+Mode: 58 (1280x1024)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	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: 0xe8000000
+	LinBytesPerScanLine: 5120
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 8
+	LinRedFieldPosition: 16
+	LinGreenMaskSize: 8
+	LinGreenFieldPosition: 8
+	LinBlueMaskSize: 8
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 8
+	LinRsvdFieldPosition: 24
+	MaxPixelClock: 230000000
+Mode: 5a (1600x1200)
+	ModeAttributes: 0x9a
+	WinAAttributes: 0x7
+	WinBAttributes: 0x0
+	WinGranularity: 64
+	WinSize: 64
+	WinASegment: 0xa000
+	WinBSegment: 0x0
+	WinFuncPtr: 0xc0005aef
+	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: 0xe8000000
+	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: 0xc0005aef
+	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: 0xe8000000
+	LinBytesPerScanLine: 7680
+	BnkNumberOfImagePages: 0
+	LinNumberOfImagePages: 0
+	LinRedMaskSize: 8
+	LinRedFieldPosition: 16
+	LinGreenMaskSize: 8
+	LinGreenFieldPosition: 8
+	LinBlueMaskSize: 8
+	LinBlueFieldPosition: 0
+	LinRsvdMaskSize: 8
+	LinRsvdFieldPosition: 24
+	MaxPixelClock: 230000000
+(EE) I810(0): No Video BIOS modes for chosen depth.
+(II) UnloadModule: "i810"
+(II) UnloadModule: "ddc"
+(II) UnloadModule: "int10"
+(II) UnloadModule: "int10"
+(II) UnloadModule: "vgahw"
+(II) Unloading /usr/X11R6/lib/modules/libvgahw.a
+(II) UnloadModule: "vbe"
+(II) UnloadModule: "int10"
+(EE) Screen(s) found, but none have a usable configuration.
+
+Fatal server error:
+no screens found
+
+Please consult the The X.Org Foundation support 
+	 at http://wiki.X.Org
+ for help. 
+Please also check the log file at "/var/log/Xorg.0.log" for additional information.
+


Property changes on: vendor/xprobe.sh
___________________________________________________________________
Name: svn:executable
   - 
   + *

Modified: vendor/xresprobe
===================================================================
--- vendor/xresprobe	2005-03-24 00:38:30 UTC (rev 16)
+++ vendor/xresprobe	2005-03-24 00:56:11 UTC (rev 17)
@@ -77,22 +77,58 @@
   fi
 }
 
+forkx() {
+  if [ -z "$FORKEDX" ]; then
+    if [ -n "$XRESPROBE_DEBUG" ]; then
+      echo "forking Xorg" >&2
+    fi
+    XPROBEDIR="$("$DATADIR/xprobe.sh" "$DRIVER")"
+    RETCODE="$?"
+    LOGFILE="$XPROBEDIR/xorg.log"
+    FORKEDX="yes"
+  else
+    if [ -n "$XRESPROBE_DEBUG" ]; then
+      echo "X has already been forked; not reforking" >&2
+    fi
+  fi
+}
+
+cleanx() {
+  if [ -n "$FORKEDX" ]; then
+    if [ -n "$XRESPROBE_DEBUG" ]; then
+      echo "not removing temporary xprobe directory $XPROBEDIR; please do this \
+            by hand" >&2
+    else
+      rm -rf "$XPROBEDIR"
+    fi
+    FORKEDX=""
+  else
+    if [ -n "$XRESPROBE_DEBUG" ]; then
+      echo "not cleaning up after Xorg; not forked" >&2
+    fi
+  fi
+}
+
 doprobe() {
   if [ -n "$XRESPROBE_DEBUG" ]; then
     echo "attempting an X probe" >&2
   fi
-  XPROBEDIR="$("$DATADIR/xprobe.sh" "$DRIVER")"
-  RETCODE="$?"
-  LOGFILE="$XPROBEDIR/xorg.log"
+  forkx
   RES="$("$DATADIR/lcdsize.sh" $DRIVER $LOGFILE)"
+}
+
+dodepthcheck() {
   if [ -n "$XRESPROBE_DEBUG" ]; then
-    echo "not removing temporary xprobe directory $XPROBEDIR; please do this \
-          by hand" >&2
-  else
-    rm -rf "$XPROBEDIR"
+    echo "checking for broken i8xx BIOS with no 24bpp modes" >&2
   fi
+  forkx
+  FORCEDEPTH="$("$DATADIR/bitdepth.sh" $DRIVER $LOGFILE)"
 }
 
+if [ "$DRIVER" = "i810" ]; then
+  dodepthcheck
+fi
+
 if [ "x$LAPTOP" = "xyes" ]; then
   if [ "$(uname -m)" = "ppc" ] || [ "$(uname -m)" = "ppc64" ]; then
     doddc
@@ -110,10 +146,18 @@
   echo "res: $RES" >&2
   echo "freq: $FREQ" >&2
   echo "disptype: $DISPTYPE" >&2
+  if [ -n "$FORCEDEPTH" ]; then
+    echo "depth: $FORCEDEPTH" >&2
+  fi
 fi
 
 echo "id: $IDENTIFIER"
 echo "res: $RES"
 echo "freq: $FREQ"
 echo "disptype: $DISPTYPE"
+if [ -n "$FORCEDEPTH" ]; then
+  echo "depth: $FORCEDEPTH"
+fi
+
+cleanx
 exit $RETCODE


Property changes on: vendor/xresprobe
___________________________________________________________________
Name: svn:executable
   - 
   + *



Reply to: