You are not logged in.

#26 2011-07-29 12:52:24

Scott M
Member
Registered: 2008-09-05
Posts: 6

Re: Kernel crash 2.6.39 - is there a fix?

Hey guys.  I just had a crash this morning.  I was clicking buttons in a flash app in Firefox and suddenly a fan speed shifted (probably the video fan) and the screen went to black (character mode).  I tried to do a Ctrl-Alt-F1 to get a prompt and see what was what, but every keyboard key press presented a garbage character on the screen as if typing in a terminal window.  I update my packages pretty much every day so I'm running the latest kernel, xorg, etc.  My card is an nvidia card so I don't think this is driver specific.  I've only seen this one crash so far.  I thought maybe it had something to do with hardware acceleration in the flash player, but it sounds like it is happening without the use of flash as well.

Offline

#27 2011-07-29 19:58:45

Fuzzo
Member
Registered: 2010-11-07
Posts: 27

Re: Kernel crash 2.6.39 - is there a fix?

Something like this has happened to me several times in the last while. For now I'm using the kernel from testing to see if it works any better. Using intel graphics.

I'll come back in a few days and let everyone know if my system is any more stable.


.....####...................####........####
....#*#*##...............##*#*#.....#*#*##
.....#~##...................##~#.......#~##
I'm not as fuzzy as these creatures but I'm close

Offline

#28 2011-07-30 12:51:38

edenyard
Member
From: East Anglia, UK
Registered: 2011-05-09
Posts: 23

Re: Kernel crash 2.6.39 - is there a fix?

Lone_Wolf wrote:
[    18.933] (WW) xf86OpenConsole: setpgid failed: Operation not permitted
[    18.933] (WW) xf86OpenConsole: setsid failed: Operation not permitted

A search makes me think that this points to a problem between X11 and a graphical login manager . What method are you using to start X ?

In /etc/rc.local, I have this line: ''usr/bin/xdm' to start the X display manager.

In /etc/X11/xinit, I have a file xinitrc, the content of which is as follows:

#!/bin/sh
###
### New GDP 13/4/2011 - for Arch Linux & Icewm 1.2.37
### Mods GDP 27/6/2011 26/7/2011.

# set mouse speed
xset m 1 20

# setup background
xsetroot -solid '#056'

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

icewmtray &
icewmbg &
hp-systray &

### numlockx off
exec icewm

That gives me the graphical log-in box on VT7.

Lone_Wolf wrote:

Vesa is nowadays mainly useful as  a backup option incase of problems.
try putting something like this this in /etc/X11/xorg.conf.d/20-monitor.conf file (create it if necessary) :

Section "Screen"
    Identifier     "Default Screen"
    Device         "Generic Video Card"
    Monitor        "screen"
    SubSection     "Display"
        Depth       24
        Modes      "1920x1080" "1680x1050" "1600x1200" "1440x900" "1280x1024" "1280x960" "1280x720" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Modes      "1920x1080" "1680x1050" "1600x1200" "1440x900" "1280x1024" "1280x960" "1280x720" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       8
        Modes      "1920x1200" "1680x1050" "1600x1200" "1440x900" "1280x1024" "1280x960" "1280x720" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    EndSubSection
EndSection

You ARE using the radeon open source drivers, and there is another option then switching back to Vesa or buying another videocard :

I removed the xf86-video-ati package from the system, leaving just xf86-video-vesa. I added the file as you suggested above. X starts up and works but I can't persuade it to switch to the 16:9 modes (I have a widescreen monitor). Is the VESA driver unable to do anything other than 4:3 aspect ratios?

I tried modifying your file like this, in an attempt to get a 16:9 display:

###
### Mods GDP 30/7/2011.
###


Section "Monitor"
    # HorizSync source: xconfig, VertRefresh source: xconfig
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "CRT-0"
    HorizSync       30 - 83
    VertRefresh     56 - 75
    Option         "DPMS"
    # 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
    Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
    # 1280x720 59.86 Hz (CVT 0.92M9) hsync: 44.77 kHz; pclk: 74.50 MHz
    Modeline "1280x720_60.00"   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync
EndSection

Section "Device"
    Identifier     "Videocard0"
    Driver         "vesa"
    VendorName     "ATI"
    BoardName      "HD5570"

###    Option "DPI" "85 x 85"
###    Option "DPI" "102 x 102"

EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Videocard0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    Modes      "1280x720_60.00" "1920x1080_60.00"
    EndSubSection
EndSection

That still doesn't give me what I want (16:9 aspect ratio). According to the monitor, it runs at 1280x1024 and stays at that, no matter what. I know that the monitor will do 1920x1080 (that's its native resolution) because it'll run at that using the ATI driver. But for some reason, the VESA driver doesn't want to do that.

Here's my /var/log/Xorg.0.log, using the VESA driver and my modified 20-monitor.conf:

[  1246.835] _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
[  1246.835] _XSERVTransOpen: transport open failed for inet6/GDP2:0
[  1246.835] _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
[  1246.835] 
X.Org X Server 1.10.3
Release Date: 2011-07-08
[  1246.835] X Protocol Version 11, Revision 0
[  1246.835] Build Operating System: Linux 2.6.39-ARCH x86_64 
[  1246.835] Current Operating System: Linux GDP2 2.6.39-ARCH #1 SMP PREEMPT Sat Jul 9 14:57:41 CEST 2011 x86_64
[  1246.835] Kernel command line: root=/dev/sda11 ro vga=773
[  1246.835] Build Date: 09 July 2011  07:52:32AM
[  1246.835]  
[  1246.835] Current version of pixman: 0.22.2
[  1246.835]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[  1246.835] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1246.835] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jul 30 13:33:09 2011
[  1246.835] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1246.836] (==) No Layout section.  Using the first Screen section.
[  1246.836] (**) |-->Screen "Screen0" (0)
[  1246.836] (**) |   |-->Monitor "Monitor0"
[  1246.836] (**) |   |-->Device "Videocard0"
[  1246.836] (==) Automatically adding devices
[  1246.836] (==) Automatically enabling devices
[  1246.836] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1246.836]     Entry deleted from font path.
[  1246.836] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
[  1246.836] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1246.836] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1246.836] (II) Loader magic: 0x7d3440
[  1246.836] (II) Module ABI versions:
[  1246.836]     X.Org ANSI C Emulation: 0.4
[  1246.836]     X.Org Video Driver: 10.0
[  1246.836]     X.Org XInput driver : 12.2
[  1246.836]     X.Org Server Extension : 5.0
[  1246.837] (--) PCI:*(0:6:0:0) 1002:68d9:1043:035c rev 0, Mem @ 0xd0000000/268435456, 0xfe9c0000/131072, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
[  1246.837] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1246.837] (II) LoadModule: "extmod"
[  1246.837] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[  1246.837] (II) Module extmod: vendor="X.Org Foundation"
[  1246.837]     compiled for 1.10.3, module version = 1.0.0
[  1246.837]     Module class: X.Org Server Extension
[  1246.837]     ABI class: X.Org Server Extension, version 5.0
[  1246.837] (II) Loading extension MIT-SCREEN-SAVER
[  1246.837] (II) Loading extension XFree86-VidModeExtension
[  1246.837] (II) Loading extension XFree86-DGA
[  1246.837] (II) Loading extension DPMS
[  1246.837] (II) Loading extension XVideo
[  1246.837] (II) Loading extension XVideo-MotionCompensation
[  1246.837] (II) Loading extension X-Resource
[  1246.837] (II) LoadModule: "dbe"
[  1246.837] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[  1246.837] (II) Module dbe: vendor="X.Org Foundation"
[  1246.837]     compiled for 1.10.3, module version = 1.0.0
[  1246.837]     Module class: X.Org Server Extension
[  1246.837]     ABI class: X.Org Server Extension, version 5.0
[  1246.837] (II) Loading extension DOUBLE-BUFFER
[  1246.837] (II) LoadModule: "glx"
[  1246.837] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1246.837] (II) Module glx: vendor="X.Org Foundation"
[  1246.837]     compiled for 1.10.3, module version = 1.0.0
[  1246.837]     ABI class: X.Org Server Extension, version 5.0
[  1246.837] (==) AIGLX enabled
[  1246.837] (II) Loading extension GLX
[  1246.837] (II) LoadModule: "record"
[  1246.837] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[  1246.837] (II) Module record: vendor="X.Org Foundation"
[  1246.837]     compiled for 1.10.3, module version = 1.13.0
[  1246.837]     Module class: X.Org Server Extension
[  1246.837]     ABI class: X.Org Server Extension, version 5.0
[  1246.837] (II) Loading extension RECORD
[  1246.837] (II) LoadModule: "dri"
[  1246.837] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[  1246.838] (II) Module dri: vendor="X.Org Foundation"
[  1246.838]     compiled for 1.10.3, module version = 1.0.0
[  1246.838]     ABI class: X.Org Server Extension, version 5.0
[  1246.838] (II) Loading extension XFree86-DRI
[  1246.838] (II) LoadModule: "dri2"
[  1246.838] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  1246.838] (II) Module dri2: vendor="X.Org Foundation"
[  1246.838]     compiled for 1.10.3, module version = 1.2.0
[  1246.838]     ABI class: X.Org Server Extension, version 5.0
[  1246.838] (II) Loading extension DRI2
[  1246.838] (II) LoadModule: "vesa"
[  1246.838] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  1246.838] (II) Module vesa: vendor="X.Org Foundation"
[  1246.838]     compiled for 1.10.0, module version = 2.3.0
[  1246.838]     Module class: X.Org Video Driver
[  1246.838]     ABI class: X.Org Video Driver, version 10.0
[  1246.838] (II) VESA: driver for VESA chipsets: vesa
[  1246.838] (--) using VT number 7

[  1246.838] (WW) xf86OpenConsole: setpgid failed: Operation not permitted
[  1246.838] (WW) xf86OpenConsole: setsid failed: Operation not permitted
[  1246.844] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  1246.844] (II) Loading sub module "vbe"
[  1246.844] (II) LoadModule: "vbe"
[  1246.844] (II) Loading /usr/lib/xorg/modules/libvbe.so
[  1246.844] (II) Module vbe: vendor="X.Org Foundation"
[  1246.844]     compiled for 1.10.3, module version = 1.1.0
[  1246.844]     ABI class: X.Org Video Driver, version 10.0
[  1246.844] (II) Loading sub module "int10"
[  1246.844] (II) LoadModule: "int10"
[  1246.844] (II) Loading /usr/lib/xorg/modules/libint10.so
[  1246.844] (II) Module int10: vendor="X.Org Foundation"
[  1246.844]     compiled for 1.10.3, module version = 1.0.0
[  1246.844]     ABI class: X.Org Video Driver, version 10.0
[  1246.844] (II) VESA(0): initializing int10
[  1246.849] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[  1246.849] (II) VESA(0): VESA BIOS detected
[  1246.849] (II) VESA(0): VESA VBE Version 3.0
[  1246.849] (II) VESA(0): VESA VBE Total Mem: 16384 kB
[  1246.849] (II) VESA(0): VESA VBE OEM: ATI ATOMBIOS
[  1246.849] (II) VESA(0): VESA VBE OEM Software Rev: 12.17
[  1246.849] (II) VESA(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc. 
[  1246.849] (II) VESA(0): VESA VBE OEM Product: REDWOOD
[  1246.849] (II) VESA(0): VESA VBE OEM Product Rev: 01.00
[  1246.912] (**) VESA(0): Depth 24, (--) framebuffer bpp 32
[  1246.912] (==) VESA(0): RGB weight 888
[  1246.912] (==) VESA(0): Default visual is TrueColor
[  1246.912] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[  1246.912] (II) Loading sub module "ddc"
[  1246.912] (II) LoadModule: "ddc"
[  1246.912] (II) Module "ddc" already built-in
[  1246.912] (II) VESA(0): VESA VBE DDC supported
[  1246.912] (II) VESA(0): VESA VBE DDC Level 2
[  1246.912] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
[  1247.080] (II) VESA(0): VESA VBE DDC read successfully
[  1247.080] (II) VESA(0): Manufacturer: GSM  Model: 56cd  Serial#: 17607
[  1247.080] (II) VESA(0): Year: 2010  Week: 2
[  1247.080] (II) VESA(0): EDID Version: 1.3
[  1247.080] (II) VESA(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[  1247.080] (II) VESA(0): Sync:  Separate  SyncOnGreen
[  1247.080] (II) VESA(0): Max Image Size [cm]: horiz.: 48  vert.: 27
[  1247.080] (II) VESA(0): Gamma: 2.20
[  1247.080] (II) VESA(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
[  1247.080] (II) VESA(0): First detailed timing is preferred mode
[  1247.080] (II) VESA(0): redX: 0.648 redY: 0.339   greenX: 0.292 greenY: 0.603
[  1247.080] (II) VESA(0): blueX: 0.143 blueY: 0.070   whiteX: 0.313 whiteY: 0.329
[  1247.080] (II) VESA(0): Supported established timings:
[  1247.080] (II) VESA(0): 720x400@70Hz
[  1247.080] (II) VESA(0): 640x480@60Hz
[  1247.080] (II) VESA(0): 640x480@75Hz
[  1247.080] (II) VESA(0): 800x600@56Hz
[  1247.080] (II) VESA(0): 800x600@60Hz
[  1247.080] (II) VESA(0): 800x600@75Hz
[  1247.080] (II) VESA(0): 832x624@75Hz
[  1247.080] (II) VESA(0): 1024x768@60Hz
[  1247.080] (II) VESA(0): 1024x768@75Hz
[  1247.080] (II) VESA(0): 1280x1024@75Hz
[  1247.080] (II) VESA(0): 1152x864@75Hz
[  1247.080] (II) VESA(0): Manufacturer's mask: 0
[  1247.080] (II) VESA(0): Supported standard timings:
[  1247.080] (II) VESA(0): #0: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[  1247.080] (II) VESA(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[  1247.080] (II) VESA(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[  1247.080] (II) VESA(0): #3: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[  1247.080] (II) VESA(0): Supported detailed timing:
[  1247.080] (II) VESA(0): clock: 148.5 MHz   Image Size:  477 x 268 mm
[  1247.080] (II) VESA(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[  1247.080] (II) VESA(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[  1247.080] (II) VESA(0): Supported detailed timing:
[  1247.080] (II) VESA(0): clock: 146.2 MHz   Image Size:  477 x 268 mm
[  1247.080] (II) VESA(0): h_active: 1680  h_sync: 1784  h_sync_end 1960 h_blank_end 2240 h_border: 0
[  1247.080] (II) VESA(0): v_active: 1050  v_sync: 1053  v_sync_end 1059 v_blanking: 1089 v_border: 0
[  1247.080] (II) VESA(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
[  1247.080] (II) VESA(0): Monitor name: W2261
[  1247.080] (II) VESA(0): EDID (in hex):
[  1247.080] (II) VESA(0):     00ffffffffffff001e6dcd56c7440000
[  1247.080] (II) VESA(0):     021401036a301b78ea3d85a6564a9a24
[  1247.080] (II) VESA(0):     125054a76b80b30081808140714f0101
[  1247.080] (II) VESA(0):     010101010101023a801871382d40582c
[  1247.080] (II) VESA(0):     4500dd0c1100001a21399030621a2740
[  1247.080] (II) VESA(0):     68b03600dd0c1100001c000000fd0038
[  1247.080] (II) VESA(0):     4b1e530f000a202020202020000000fc
[  1247.080] (II) VESA(0):     0057323236310a2020202020202000d7
[  1247.080] (II) VESA(0): EDID vendor "GSM", prod id 22221
[  1247.080] (II) VESA(0): Using hsync ranges from config file
[  1247.080] (II) VESA(0): Using vrefresh ranges from config file
[  1247.080] (II) VESA(0): Printing DDC gathered Modelines:
[  1247.080] (II) VESA(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz)
[  1247.080] (II) VESA(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
[  1247.080] (II) VESA(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[  1247.080] (II) VESA(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[  1247.080] (II) VESA(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[  1247.080] (II) VESA(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[  1247.080] (II) VESA(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[  1247.080] (II) VESA(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[  1247.080] (II) VESA(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[  1247.080] (II) VESA(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[  1247.080] (II) VESA(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[  1247.080] (II) VESA(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[  1247.080] (II) VESA(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[  1247.080] (II) VESA(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[  1247.080] (II) VESA(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[  1247.080] (II) VESA(0): Searching for matching VESA mode(s):
[  1247.081] Mode: 100 (640x400)
[  1247.081]     ModeAttributes: 0xbb
[  1247.081]     WinAAttributes: 0x7
[  1247.081]     WinBAttributes: 0x0
[  1247.081]     WinGranularity: 64
[  1247.081]     WinSize: 64
[  1247.081]     WinASegment: 0xa000
[  1247.081]     WinBSegment: 0x0
[  1247.081]     WinFuncPtr: 0xc0005283
[  1247.081]     BytesPerScanline: 640
[  1247.081]     XResolution: 640
[  1247.081]     YResolution: 400
[  1247.081]     XCharSize: 8
[  1247.081]     YCharSize: 16
[  1247.081]     NumberOfPlanes: 1
[  1247.081]     BitsPerPixel: 8
[  1247.081]     NumberOfBanks: 1
[  1247.081]     MemoryModel: 4
[  1247.081]     BankSize: 0
[  1247.081]     NumberOfImages: 63
[  1247.081]     RedMaskSize: 0
[  1247.081]     RedFieldPosition: 0
[  1247.081]     GreenMaskSize: 0
[  1247.081]     GreenFieldPosition: 0
[  1247.081]     BlueMaskSize: 0
[  1247.081]     BlueFieldPosition: 0
[  1247.081]     RsvdMaskSize: 0
[  1247.081]     RsvdFieldPosition: 0
[  1247.081]     DirectColorModeInfo: 0
[  1247.081]     PhysBasePtr: 0xd0000000
[  1247.081]     LinBytesPerScanLine: 640
[  1247.081]     BnkNumberOfImagePages: 63
[  1247.081]     LinNumberOfImagePages: 63
[  1247.081]     LinRedMaskSize: 0
[  1247.081]     LinRedFieldPosition: 0
[  1247.081]     LinGreenMaskSize: 0
[  1247.081]     LinGreenFieldPosition: 0
[  1247.081]     LinBlueMaskSize: 0
[  1247.081]     LinBlueFieldPosition: 0
[  1247.081]     LinRsvdMaskSize: 0
[  1247.081]     LinRsvdFieldPosition: 0
[  1247.081]     MaxPixelClock: 400000000
[  1247.082] Mode: 101 (640x480)
[  1247.082]     ModeAttributes: 0xbb
[  1247.082]     WinAAttributes: 0x7
[  1247.082]     WinBAttributes: 0x0
[  1247.082]     WinGranularity: 64
[  1247.082]     WinSize: 64
[  1247.082]     WinASegment: 0xa000
[  1247.082]     WinBSegment: 0x0
[  1247.082]     WinFuncPtr: 0xc0005283
[  1247.082]     BytesPerScanline: 640
[  1247.082]     XResolution: 640
[  1247.082]     YResolution: 480
[  1247.082]     XCharSize: 8
[  1247.082]     YCharSize: 16
[  1247.082]     NumberOfPlanes: 1
[  1247.082]     BitsPerPixel: 8
[  1247.082]     NumberOfBanks: 1
[  1247.082]     MemoryModel: 4
[  1247.082]     BankSize: 0
[  1247.082]     NumberOfImages: 50
[  1247.082]     RedMaskSize: 0
[  1247.082]     RedFieldPosition: 0
[  1247.082]     GreenMaskSize: 0
[  1247.082]     GreenFieldPosition: 0
[  1247.082]     BlueMaskSize: 0
[  1247.082]     BlueFieldPosition: 0
[  1247.082]     RsvdMaskSize: 0
[  1247.082]     RsvdFieldPosition: 0
[  1247.082]     DirectColorModeInfo: 0
[  1247.083]     PhysBasePtr: 0xd0000000
[  1247.083]     LinBytesPerScanLine: 640
[  1247.083]     BnkNumberOfImagePages: 50
[  1247.083]     LinNumberOfImagePages: 50
[  1247.083]     LinRedMaskSize: 0
[  1247.083]     LinRedFieldPosition: 0
[  1247.083]     LinGreenMaskSize: 0
[  1247.083]     LinGreenFieldPosition: 0
[  1247.083]     LinBlueMaskSize: 0
[  1247.083]     LinBlueFieldPosition: 0
[  1247.083]     LinRsvdMaskSize: 0
[  1247.083]     LinRsvdFieldPosition: 0
[  1247.083]     MaxPixelClock: 400000000
[  1247.084] Mode: 103 (800x600)
[  1247.084]     ModeAttributes: 0xbb
[  1247.084]     WinAAttributes: 0x7
[  1247.084]     WinBAttributes: 0x0
[  1247.084]     WinGranularity: 64
[  1247.084]     WinSize: 64
[  1247.084]     WinASegment: 0xa000
[  1247.084]     WinBSegment: 0x0
[  1247.084]     WinFuncPtr: 0xc0005283
[  1247.084]     BytesPerScanline: 832
[  1247.084]     XResolution: 800
[  1247.084]     YResolution: 600
[  1247.084]     XCharSize: 8
[  1247.084]     YCharSize: 14
[  1247.084]     NumberOfPlanes: 1
[  1247.084]     BitsPerPixel: 8
[  1247.084]     NumberOfBanks: 1
[  1247.084]     MemoryModel: 4
[  1247.084]     BankSize: 0
[  1247.084]     NumberOfImages: 31
[  1247.084]     RedMaskSize: 0
[  1247.084]     RedFieldPosition: 0
[  1247.084]     GreenMaskSize: 0
[  1247.084]     GreenFieldPosition: 0
[  1247.084]     BlueMaskSize: 0
[  1247.084]     BlueFieldPosition: 0
[  1247.084]     RsvdMaskSize: 0
[  1247.084]     RsvdFieldPosition: 0
[  1247.084]     DirectColorModeInfo: 0
[  1247.084]     PhysBasePtr: 0xd0000000
[  1247.084]     LinBytesPerScanLine: 832
[  1247.084]     BnkNumberOfImagePages: 31
[  1247.084]     LinNumberOfImagePages: 31
[  1247.084]     LinRedMaskSize: 0
[  1247.084]     LinRedFieldPosition: 0
[  1247.084]     LinGreenMaskSize: 0
[  1247.084]     LinGreenFieldPosition: 0
[  1247.084]     LinBlueMaskSize: 0
[  1247.084]     LinBlueFieldPosition: 0
[  1247.084]     LinRsvdMaskSize: 0
[  1247.084]     LinRsvdFieldPosition: 0
[  1247.084]     MaxPixelClock: 400000000
[  1247.085] Mode: 105 (1024x768)
[  1247.085]     ModeAttributes: 0xbb
[  1247.085]     WinAAttributes: 0x7
[  1247.085]     WinBAttributes: 0x0
[  1247.085]     WinGranularity: 64
[  1247.085]     WinSize: 64
[  1247.085]     WinASegment: 0xa000
[  1247.085]     WinBSegment: 0x0
[  1247.085]     WinFuncPtr: 0xc0005283
[  1247.085]     BytesPerScanline: 1024
[  1247.085]     XResolution: 1024
[  1247.085]     YResolution: 768
[  1247.085]     XCharSize: 8
[  1247.085]     YCharSize: 16
[  1247.085]     NumberOfPlanes: 1
[  1247.085]     BitsPerPixel: 8
[  1247.085]     NumberOfBanks: 1
[  1247.085]     MemoryModel: 4
[  1247.085]     BankSize: 0
[  1247.085]     NumberOfImages: 18
[  1247.085]     RedMaskSize: 0
[  1247.085]     RedFieldPosition: 0
[  1247.085]     GreenMaskSize: 0
[  1247.085]     GreenFieldPosition: 0
[  1247.085]     BlueMaskSize: 0
[  1247.085]     BlueFieldPosition: 0
[  1247.085]     RsvdMaskSize: 0
[  1247.085]     RsvdFieldPosition: 0
[  1247.085]     DirectColorModeInfo: 0
[  1247.085]     PhysBasePtr: 0xd0000000
[  1247.085]     LinBytesPerScanLine: 1024
[  1247.085]     BnkNumberOfImagePages: 18
[  1247.085]     LinNumberOfImagePages: 18
[  1247.085]     LinRedMaskSize: 0
[  1247.085]     LinRedFieldPosition: 0
[  1247.085]     LinGreenMaskSize: 0
[  1247.085]     LinGreenFieldPosition: 0
[  1247.085]     LinBlueMaskSize: 0
[  1247.085]     LinBlueFieldPosition: 0
[  1247.085]     LinRsvdMaskSize: 0
[  1247.085]     LinRsvdFieldPosition: 0
[  1247.085]     MaxPixelClock: 400000000
[  1247.086] Mode: 107 (1280x1024)
[  1247.086]     ModeAttributes: 0xbb
[  1247.086]     WinAAttributes: 0x7
[  1247.086]     WinBAttributes: 0x0
[  1247.086]     WinGranularity: 64
[  1247.086]     WinSize: 64
[  1247.086]     WinASegment: 0xa000
[  1247.086]     WinBSegment: 0x0
[  1247.086]     WinFuncPtr: 0xc0005283
[  1247.086]     BytesPerScanline: 1280
[  1247.086]     XResolution: 1280
[  1247.086]     YResolution: 1024
[  1247.086]     XCharSize: 8
[  1247.086]     YCharSize: 16
[  1247.086]     NumberOfPlanes: 1
[  1247.086]     BitsPerPixel: 8
[  1247.086]     NumberOfBanks: 1
[  1247.086]     MemoryModel: 4
[  1247.086]     BankSize: 0
[  1247.086]     NumberOfImages: 11
[  1247.086]     RedMaskSize: 0
[  1247.086]     RedFieldPosition: 0
[  1247.086]     GreenMaskSize: 0
[  1247.086]     GreenFieldPosition: 0
[  1247.086]     BlueMaskSize: 0
[  1247.086]     BlueFieldPosition: 0
[  1247.086]     RsvdMaskSize: 0
[  1247.086]     RsvdFieldPosition: 0
[  1247.086]     DirectColorModeInfo: 0
[  1247.086]     PhysBasePtr: 0xd0000000
[  1247.086]     LinBytesPerScanLine: 1280
[  1247.086]     BnkNumberOfImagePages: 11
[  1247.086]     LinNumberOfImagePages: 11
[  1247.086]     LinRedMaskSize: 0
[  1247.086]     LinRedFieldPosition: 0
[  1247.086]     LinGreenMaskSize: 0
[  1247.086]     LinGreenFieldPosition: 0
[  1247.086]     LinBlueMaskSize: 0
[  1247.086]     LinBlueFieldPosition: 0
[  1247.086]     LinRsvdMaskSize: 0
[  1247.086]     LinRsvdFieldPosition: 0
[  1247.086]     MaxPixelClock: 400000000
[  1247.088] Mode: 110 (640x480)
[  1247.088]     ModeAttributes: 0xbb
[  1247.088]     WinAAttributes: 0x7
[  1247.088]     WinBAttributes: 0x0
[  1247.088]     WinGranularity: 64
[  1247.088]     WinSize: 64
[  1247.088]     WinASegment: 0xa000
[  1247.088]     WinBSegment: 0x0
[  1247.088]     WinFuncPtr: 0xc0005283
[  1247.088]     BytesPerScanline: 1280
[  1247.088]     XResolution: 640
[  1247.088]     YResolution: 480
[  1247.088]     XCharSize: 8
[  1247.088]     YCharSize: 16
[  1247.088]     NumberOfPlanes: 1
[  1247.088]     BitsPerPixel: 16
[  1247.088]     NumberOfBanks: 1
[  1247.088]     MemoryModel: 6
[  1247.088]     BankSize: 0
[  1247.088]     NumberOfImages: 24
[  1247.088]     RedMaskSize: 5
[  1247.088]     RedFieldPosition: 10
[  1247.088]     GreenMaskSize: 5
[  1247.088]     GreenFieldPosition: 5
[  1247.088]     BlueMaskSize: 5
[  1247.088]     BlueFieldPosition: 0
[  1247.088]     RsvdMaskSize: 0
[  1247.088]     RsvdFieldPosition: 0
[  1247.088]     DirectColorModeInfo: 0
[  1247.088]     PhysBasePtr: 0xd0000000
[  1247.088]     LinBytesPerScanLine: 1280
[  1247.088]     BnkNumberOfImagePages: 24
[  1247.088]     LinNumberOfImagePages: 24
[  1247.088]     LinRedMaskSize: 5
[  1247.088]     LinRedFieldPosition: 10
[  1247.088]     LinGreenMaskSize: 5
[  1247.088]     LinGreenFieldPosition: 5
[  1247.088]     LinBlueMaskSize: 5
[  1247.088]     LinBlueFieldPosition: 0
[  1247.088]     LinRsvdMaskSize: 0
[  1247.088]     LinRsvdFieldPosition: 0
[  1247.088]     MaxPixelClock: 400000000
[  1247.089] Mode: 111 (640x480)
[  1247.089]     ModeAttributes: 0xbb
[  1247.089]     WinAAttributes: 0x7
[  1247.089]     WinBAttributes: 0x0
[  1247.089]     WinGranularity: 64
[  1247.089]     WinSize: 64
[  1247.089]     WinASegment: 0xa000
[  1247.089]     WinBSegment: 0x0
[  1247.089]     WinFuncPtr: 0xc0005283
[  1247.089]     BytesPerScanline: 1280
[  1247.089]     XResolution: 640
[  1247.089]     YResolution: 480
[  1247.089]     XCharSize: 8
[  1247.089]     YCharSize: 16
[  1247.089]     NumberOfPlanes: 1
[  1247.089]     BitsPerPixel: 16
[  1247.089]     NumberOfBanks: 1
[  1247.089]     MemoryModel: 6
[  1247.089]     BankSize: 0
[  1247.089]     NumberOfImages: 24
[  1247.089]     RedMaskSize: 5
[  1247.089]     RedFieldPosition: 11
[  1247.089]     GreenMaskSize: 6
[  1247.089]     GreenFieldPosition: 5
[  1247.089]     BlueMaskSize: 5
[  1247.089]     BlueFieldPosition: 0
[  1247.089]     RsvdMaskSize: 0
[  1247.089]     RsvdFieldPosition: 0
[  1247.089]     DirectColorModeInfo: 0
[  1247.089]     PhysBasePtr: 0xd0000000
[  1247.089]     LinBytesPerScanLine: 1280
[  1247.089]     BnkNumberOfImagePages: 24
[  1247.089]     LinNumberOfImagePages: 24
[  1247.089]     LinRedMaskSize: 5
[  1247.089]     LinRedFieldPosition: 11
[  1247.089]     LinGreenMaskSize: 6
[  1247.089]     LinGreenFieldPosition: 5
[  1247.089]     LinBlueMaskSize: 5
[  1247.089]     LinBlueFieldPosition: 0
[  1247.089]     LinRsvdMaskSize: 0
[  1247.089]     LinRsvdFieldPosition: 0
[  1247.089]     MaxPixelClock: 400000000
[  1247.090] Mode: 113 (800x600)
[  1247.090]     ModeAttributes: 0xbb
[  1247.090]     WinAAttributes: 0x7
[  1247.090]     WinBAttributes: 0x0
[  1247.090]     WinGranularity: 64
[  1247.090]     WinSize: 64
[  1247.090]     WinASegment: 0xa000
[  1247.090]     WinBSegment: 0x0
[  1247.090]     WinFuncPtr: 0xc0005283
[  1247.090]     BytesPerScanline: 1600
[  1247.090]     XResolution: 800
[  1247.090]     YResolution: 600
[  1247.090]     XCharSize: 8
[  1247.090]     YCharSize: 14
[  1247.090]     NumberOfPlanes: 1
[  1247.090]     BitsPerPixel: 16
[  1247.090]     NumberOfBanks: 1
[  1247.090]     MemoryModel: 6
[  1247.090]     BankSize: 0
[  1247.090]     NumberOfImages: 16
[  1247.090]     RedMaskSize: 5
[  1247.090]     RedFieldPosition: 10
[  1247.090]     GreenMaskSize: 5
[  1247.090]     GreenFieldPosition: 5
[  1247.090]     BlueMaskSize: 5
[  1247.090]     BlueFieldPosition: 0
[  1247.090]     RsvdMaskSize: 0
[  1247.090]     RsvdFieldPosition: 0
[  1247.090]     DirectColorModeInfo: 0
[  1247.090]     PhysBasePtr: 0xd0000000
[  1247.090]     LinBytesPerScanLine: 1600
[  1247.090]     BnkNumberOfImagePages: 16
[  1247.090]     LinNumberOfImagePages: 16
[  1247.090]     LinRedMaskSize: 5
[  1247.090]     LinRedFieldPosition: 10
[  1247.090]     LinGreenMaskSize: 5
[  1247.090]     LinGreenFieldPosition: 5
[  1247.090]     LinBlueMaskSize: 5
[  1247.090]     LinBlueFieldPosition: 0
[  1247.090]     LinRsvdMaskSize: 0
[  1247.090]     LinRsvdFieldPosition: 0
[  1247.090]     MaxPixelClock: 400000000
[  1247.091] Mode: 114 (800x600)
[  1247.091]     ModeAttributes: 0xbb
[  1247.091]     WinAAttributes: 0x7
[  1247.091]     WinBAttributes: 0x0
[  1247.091]     WinGranularity: 64
[  1247.091]     WinSize: 64
[  1247.091]     WinASegment: 0xa000
[  1247.091]     WinBSegment: 0x0
[  1247.091]     WinFuncPtr: 0xc0005283
[  1247.091]     BytesPerScanline: 1600
[  1247.091]     XResolution: 800
[  1247.091]     YResolution: 600
[  1247.091]     XCharSize: 8
[  1247.091]     YCharSize: 14
[  1247.091]     NumberOfPlanes: 1
[  1247.091]     BitsPerPixel: 16
[  1247.091]     NumberOfBanks: 1
[  1247.091]     MemoryModel: 6
[  1247.091]     BankSize: 0
[  1247.091]     NumberOfImages: 16
[  1247.091]     RedMaskSize: 5
[  1247.091]     RedFieldPosition: 11
[  1247.091]     GreenMaskSize: 6
[  1247.091]     GreenFieldPosition: 5
[  1247.091]     BlueMaskSize: 5
[  1247.091]     BlueFieldPosition: 0
[  1247.091]     RsvdMaskSize: 0
[  1247.091]     RsvdFieldPosition: 0
[  1247.091]     DirectColorModeInfo: 0
[  1247.091]     PhysBasePtr: 0xd0000000
[  1247.091]     LinBytesPerScanLine: 1600
[  1247.092]     BnkNumberOfImagePages: 16
[  1247.092]     LinNumberOfImagePages: 16
[  1247.092]     LinRedMaskSize: 5
[  1247.092]     LinRedFieldPosition: 11
[  1247.092]     LinGreenMaskSize: 6
[  1247.092]     LinGreenFieldPosition: 5
[  1247.092]     LinBlueMaskSize: 5
[  1247.092]     LinBlueFieldPosition: 0
[  1247.092]     LinRsvdMaskSize: 0
[  1247.092]     LinRsvdFieldPosition: 0
[  1247.092]     MaxPixelClock: 400000000
[  1247.093] Mode: 116 (1024x768)
[  1247.093]     ModeAttributes: 0xbb
[  1247.093]     WinAAttributes: 0x7
[  1247.093]     WinBAttributes: 0x0
[  1247.093]     WinGranularity: 64
[  1247.093]     WinSize: 64
[  1247.093]     WinASegment: 0xa000
[  1247.093]     WinBSegment: 0x0
[  1247.093]     WinFuncPtr: 0xc0005283
[  1247.093]     BytesPerScanline: 2048
[  1247.093]     XResolution: 1024
[  1247.093]     YResolution: 768
[  1247.093]     XCharSize: 8
[  1247.093]     YCharSize: 16
[  1247.093]     NumberOfPlanes: 1
[  1247.093]     BitsPerPixel: 16
[  1247.093]     NumberOfBanks: 1
[  1247.093]     MemoryModel: 6
[  1247.093]     BankSize: 0
[  1247.093]     NumberOfImages: 9
[  1247.093]     RedMaskSize: 5
[  1247.093]     RedFieldPosition: 10
[  1247.093]     GreenMaskSize: 5
[  1247.093]     GreenFieldPosition: 5
[  1247.093]     BlueMaskSize: 5
[  1247.093]     BlueFieldPosition: 0
[  1247.093]     RsvdMaskSize: 0
[  1247.093]     RsvdFieldPosition: 0
[  1247.093]     DirectColorModeInfo: 0
[  1247.093]     PhysBasePtr: 0xd0000000
[  1247.093]     LinBytesPerScanLine: 2048
[  1247.093]     BnkNumberOfImagePages: 9
[  1247.093]     LinNumberOfImagePages: 9
[  1247.093]     LinRedMaskSize: 5
[  1247.093]     LinRedFieldPosition: 10
[  1247.093]     LinGreenMaskSize: 5
[  1247.093]     LinGreenFieldPosition: 5
[  1247.093]     LinBlueMaskSize: 5
[  1247.093]     LinBlueFieldPosition: 0
[  1247.093]     LinRsvdMaskSize: 0
[  1247.093]     LinRsvdFieldPosition: 0
[  1247.093]     MaxPixelClock: 400000000
[  1247.094] Mode: 117 (1024x768)
[  1247.094]     ModeAttributes: 0xbb
[  1247.094]     WinAAttributes: 0x7
[  1247.094]     WinBAttributes: 0x0
[  1247.094]     WinGranularity: 64
[  1247.094]     WinSize: 64
[  1247.094]     WinASegment: 0xa000
[  1247.094]     WinBSegment: 0x0
[  1247.094]     WinFuncPtr: 0xc0005283
[  1247.094]     BytesPerScanline: 2048
[  1247.094]     XResolution: 1024
[  1247.094]     YResolution: 768
[  1247.094]     XCharSize: 8
[  1247.094]     YCharSize: 16
[  1247.094]     NumberOfPlanes: 1
[  1247.094]     BitsPerPixel: 16
[  1247.094]     NumberOfBanks: 1
[  1247.094]     MemoryModel: 6
[  1247.094]     BankSize: 0
[  1247.094]     NumberOfImages: 9
[  1247.094]     RedMaskSize: 5
[  1247.094]     RedFieldPosition: 11
[  1247.094]     GreenMaskSize: 6
[  1247.094]     GreenFieldPosition: 5
[  1247.094]     BlueMaskSize: 5
[  1247.094]     BlueFieldPosition: 0
[  1247.094]     RsvdMaskSize: 0
[  1247.094]     RsvdFieldPosition: 0
[  1247.094]     DirectColorModeInfo: 0
[  1247.094]     PhysBasePtr: 0xd0000000
[  1247.094]     LinBytesPerScanLine: 2048
[  1247.094]     BnkNumberOfImagePages: 9
[  1247.094]     LinNumberOfImagePages: 9
[  1247.094]     LinRedMaskSize: 5
[  1247.094]     LinRedFieldPosition: 11
[  1247.094]     LinGreenMaskSize: 6
[  1247.094]     LinGreenFieldPosition: 5
[  1247.094]     LinBlueMaskSize: 5
[  1247.094]     LinBlueFieldPosition: 0
[  1247.094]     LinRsvdMaskSize: 0
[  1247.094]     LinRsvdFieldPosition: 0
[  1247.094]     MaxPixelClock: 400000000
[  1247.095] Mode: 119 (1280x1024)
[  1247.095]     ModeAttributes: 0xbb
[  1247.095]     WinAAttributes: 0x7
[  1247.095]     WinBAttributes: 0x0
[  1247.095]     WinGranularity: 64
[  1247.095]     WinSize: 64
[  1247.095]     WinASegment: 0xa000
[  1247.095]     WinBSegment: 0x0
[  1247.095]     WinFuncPtr: 0xc0005283
[  1247.095]     BytesPerScanline: 2560
[  1247.095]     XResolution: 1280
[  1247.095]     YResolution: 1024
[  1247.095]     XCharSize: 8
[  1247.095]     YCharSize: 16
[  1247.095]     NumberOfPlanes: 1
[  1247.095]     BitsPerPixel: 16
[  1247.095]     NumberOfBanks: 1
[  1247.095]     MemoryModel: 6
[  1247.095]     BankSize: 0
[  1247.095]     NumberOfImages: 5
[  1247.095]     RedMaskSize: 5
[  1247.095]     RedFieldPosition: 10
[  1247.095]     GreenMaskSize: 5
[  1247.095]     GreenFieldPosition: 5
[  1247.095]     BlueMaskSize: 5
[  1247.095]     BlueFieldPosition: 0
[  1247.095]     RsvdMaskSize: 0
[  1247.095]     RsvdFieldPosition: 0
[  1247.095]     DirectColorModeInfo: 0
[  1247.095]     PhysBasePtr: 0xd0000000
[  1247.095]     LinBytesPerScanLine: 2560
[  1247.095]     BnkNumberOfImagePages: 5
[  1247.095]     LinNumberOfImagePages: 5
[  1247.095]     LinRedMaskSize: 5
[  1247.095]     LinRedFieldPosition: 10
[  1247.095]     LinGreenMaskSize: 5
[  1247.095]     LinGreenFieldPosition: 5
[  1247.095]     LinBlueMaskSize: 5
[  1247.095]     LinBlueFieldPosition: 0
[  1247.095]     LinRsvdMaskSize: 0
[  1247.095]     LinRsvdFieldPosition: 0
[  1247.095]     MaxPixelClock: 400000000
[  1247.097] Mode: 11a (1280x1024)
[  1247.097]     ModeAttributes: 0xbb
[  1247.097]     WinAAttributes: 0x7
[  1247.097]     WinBAttributes: 0x0
[  1247.097]     WinGranularity: 64
[  1247.097]     WinSize: 64
[  1247.097]     WinASegment: 0xa000
[  1247.097]     WinBSegment: 0x0
[  1247.097]     WinFuncPtr: 0xc0005283
[  1247.097]     BytesPerScanline: 2560
[  1247.097]     XResolution: 1280
[  1247.097]     YResolution: 1024
[  1247.097]     XCharSize: 8
[  1247.097]     YCharSize: 16
[  1247.097]     NumberOfPlanes: 1
[  1247.097]     BitsPerPixel: 16
[  1247.097]     NumberOfBanks: 1
[  1247.097]     MemoryModel: 6
[  1247.097]     BankSize: 0
[  1247.097]     NumberOfImages: 5
[  1247.097]     RedMaskSize: 5
[  1247.097]     RedFieldPosition: 11
[  1247.097]     GreenMaskSize: 6
[  1247.097]     GreenFieldPosition: 5
[  1247.097]     BlueMaskSize: 5
[  1247.097]     BlueFieldPosition: 0
[  1247.097]     RsvdMaskSize: 0
[  1247.097]     RsvdFieldPosition: 0
[  1247.097]     DirectColorModeInfo: 0
[  1247.097]     PhysBasePtr: 0xd0000000
[  1247.097]     LinBytesPerScanLine: 2560
[  1247.097]     BnkNumberOfImagePages: 5
[  1247.097]     LinNumberOfImagePages: 5
[  1247.097]     LinRedMaskSize: 5
[  1247.097]     LinRedFieldPosition: 11
[  1247.097]     LinGreenMaskSize: 6
[  1247.097]     LinGreenFieldPosition: 5
[  1247.097]     LinBlueMaskSize: 5
[  1247.097]     LinBlueFieldPosition: 0
[  1247.097]     LinRsvdMaskSize: 0
[  1247.097]     LinRsvdFieldPosition: 0
[  1247.097]     MaxPixelClock: 400000000
[  1247.098] Mode: 10d (320x200)
[  1247.098]     ModeAttributes: 0xbb
[  1247.098]     WinAAttributes: 0x7
[  1247.098]     WinBAttributes: 0x0
[  1247.098]     WinGranularity: 64
[  1247.098]     WinSize: 64
[  1247.098]     WinASegment: 0xa000
[  1247.098]     WinBSegment: 0x0
[  1247.098]     WinFuncPtr: 0xc0005283
[  1247.098]     BytesPerScanline: 640
[  1247.098]     XResolution: 320
[  1247.098]     YResolution: 200
[  1247.098]     XCharSize: 8
[  1247.098]     YCharSize: 8
[  1247.098]     NumberOfPlanes: 1
[  1247.098]     BitsPerPixel: 16
[  1247.098]     NumberOfBanks: 1
[  1247.098]     MemoryModel: 6
[  1247.098]     BankSize: 0
[  1247.098]     NumberOfImages: 127
[  1247.098]     RedMaskSize: 5
[  1247.098]     RedFieldPosition: 10
[  1247.098]     GreenMaskSize: 5
[  1247.098]     GreenFieldPosition: 5
[  1247.098]     BlueMaskSize: 5
[  1247.098]     BlueFieldPosition: 0
[  1247.098]     RsvdMaskSize: 0
[  1247.098]     RsvdFieldPosition: 0
[  1247.098]     DirectColorModeInfo: 0
[  1247.098]     PhysBasePtr: 0xd0000000
[  1247.098]     LinBytesPerScanLine: 640
[  1247.098]     BnkNumberOfImagePages: 127
[  1247.098]     LinNumberOfImagePages: 127
[  1247.098]     LinRedMaskSize: 5
[  1247.098]     LinRedFieldPosition: 10
[  1247.098]     LinGreenMaskSize: 5
[  1247.098]     LinGreenFieldPosition: 5
[  1247.098]     LinBlueMaskSize: 5
[  1247.098]     LinBlueFieldPosition: 0
[  1247.098]     LinRsvdMaskSize: 0
[  1247.098]     LinRsvdFieldPosition: 0
[  1247.098]     MaxPixelClock: 400000000
[  1247.099] Mode: 10e (320x200)
[  1247.099]     ModeAttributes: 0xbb
[  1247.099]     WinAAttributes: 0x7
[  1247.099]     WinBAttributes: 0x0
[  1247.099]     WinGranularity: 64
[  1247.099]     WinSize: 64
[  1247.099]     WinASegment: 0xa000
[  1247.099]     WinBSegment: 0x0
[  1247.099]     WinFuncPtr: 0xc0005283
[  1247.099]     BytesPerScanline: 640
[  1247.099]     XResolution: 320
[  1247.099]     YResolution: 200
[  1247.099]     XCharSize: 8
[  1247.099]     YCharSize: 8
[  1247.099]     NumberOfPlanes: 1
[  1247.099]     BitsPerPixel: 16
[  1247.099]     NumberOfBanks: 1
[  1247.099]     MemoryModel: 6
[  1247.099]     BankSize: 0
[  1247.099]     NumberOfImages: 127
[  1247.099]     RedMaskSize: 5
[  1247.099]     RedFieldPosition: 11
[  1247.099]     GreenMaskSize: 6
[  1247.099]     GreenFieldPosition: 5
[  1247.099]     BlueMaskSize: 5
[  1247.099]     BlueFieldPosition: 0
[  1247.099]     RsvdMaskSize: 0
[  1247.099]     RsvdFieldPosition: 0
[  1247.099]     DirectColorModeInfo: 0
[  1247.099]     PhysBasePtr: 0xd0000000
[  1247.099]     LinBytesPerScanLine: 640
[  1247.099]     BnkNumberOfImagePages: 127
[  1247.099]     LinNumberOfImagePages: 127
[  1247.099]     LinRedMaskSize: 5
[  1247.099]     LinRedFieldPosition: 11
[  1247.099]     LinGreenMaskSize: 6
[  1247.099]     LinGreenFieldPosition: 5
[  1247.099]     LinBlueMaskSize: 5
[  1247.099]     LinBlueFieldPosition: 0
[  1247.099]     LinRsvdMaskSize: 0
[  1247.099]     LinRsvdFieldPosition: 0
[  1247.099]     MaxPixelClock: 400000000
[  1247.101] *Mode: 120 (320x200)
[  1247.101]     ModeAttributes: 0xbb
[  1247.101]     WinAAttributes: 0x7
[  1247.101]     WinBAttributes: 0x0
[  1247.101]     WinGranularity: 64
[  1247.101]     WinSize: 64
[  1247.101]     WinASegment: 0xa000
[  1247.101]     WinBSegment: 0x0
[  1247.101]     WinFuncPtr: 0xc0005283
[  1247.101]     BytesPerScanline: 1280
[  1247.101]     XResolution: 320
[  1247.101]     YResolution: 200
[  1247.101]     XCharSize: 8
[  1247.101]     YCharSize: 8
[  1247.101]     NumberOfPlanes: 1
[  1247.101]     BitsPerPixel: 32
[  1247.101]     NumberOfBanks: 1
[  1247.101]     MemoryModel: 6
[  1247.101]     BankSize: 0
[  1247.101]     NumberOfImages: 63
[  1247.101]     RedMaskSize: 8
[  1247.101]     RedFieldPosition: 16
[  1247.101]     GreenMaskSize: 8
[  1247.101]     GreenFieldPosition: 8
[  1247.101]     BlueMaskSize: 8
[  1247.101]     BlueFieldPosition: 0
[  1247.101]     RsvdMaskSize: 0
[  1247.101]     RsvdFieldPosition: 0
[  1247.101]     DirectColorModeInfo: 0
[  1247.101]     PhysBasePtr: 0xd0000000
[  1247.101]     LinBytesPerScanLine: 1280
[  1247.101]     BnkNumberOfImagePages: 63
[  1247.101]     LinNumberOfImagePages: 63
[  1247.101]     LinRedMaskSize: 8
[  1247.101]     LinRedFieldPosition: 16
[  1247.101]     LinGreenMaskSize: 8
[  1247.101]     LinGreenFieldPosition: 8
[  1247.101]     LinBlueMaskSize: 8
[  1247.101]     LinBlueFieldPosition: 0
[  1247.101]     LinRsvdMaskSize: 0
[  1247.101]     LinRsvdFieldPosition: 0
[  1247.101]     MaxPixelClock: 400000000
[  1247.102] Mode: 193 (320x240)
[  1247.102]     ModeAttributes: 0xbb
[  1247.102]     WinAAttributes: 0x7
[  1247.102]     WinBAttributes: 0x0
[  1247.102]     WinGranularity: 64
[  1247.102]     WinSize: 64
[  1247.102]     WinASegment: 0xa000
[  1247.102]     WinBSegment: 0x0
[  1247.102]     WinFuncPtr: 0xc0005283
[  1247.102]     BytesPerScanline: 320
[  1247.102]     XResolution: 320
[  1247.102]     YResolution: 240
[  1247.102]     XCharSize: 8
[  1247.102]     YCharSize: 8
[  1247.102]     NumberOfPlanes: 1
[  1247.102]     BitsPerPixel: 8
[  1247.102]     NumberOfBanks: 1
[  1247.102]     MemoryModel: 4
[  1247.102]     BankSize: 0
[  1247.102]     NumberOfImages: 127
[  1247.102]     RedMaskSize: 0
[  1247.102]     RedFieldPosition: 0
[  1247.102]     GreenMaskSize: 0
[  1247.102]     GreenFieldPosition: 0
[  1247.102]     BlueMaskSize: 0
[  1247.102]     BlueFieldPosition: 0
[  1247.102]     RsvdMaskSize: 0
[  1247.102]     RsvdFieldPosition: 0
[  1247.102]     DirectColorModeInfo: 0
[  1247.102]     PhysBasePtr: 0xd0000000
[  1247.102]     LinBytesPerScanLine: 320
[  1247.102]     BnkNumberOfImagePages: 127
[  1247.102]     LinNumberOfImagePages: 127
[  1247.102]     LinRedMaskSize: 0
[  1247.102]     LinRedFieldPosition: 0
[  1247.102]     LinGreenMaskSize: 0
[  1247.102]     LinGreenFieldPosition: 0
[  1247.102]     LinBlueMaskSize: 0
[  1247.102]     LinBlueFieldPosition: 0
[  1247.102]     LinRsvdMaskSize: 0
[  1247.102]     LinRsvdFieldPosition: 0
[  1247.102]     MaxPixelClock: 400000000
[  1247.103] Mode: 195 (320x240)
[  1247.103]     ModeAttributes: 0xbb
[  1247.103]     WinAAttributes: 0x7
[  1247.103]     WinBAttributes: 0x0
[  1247.103]     WinGranularity: 64
[  1247.103]     WinSize: 64
[  1247.103]     WinASegment: 0xa000
[  1247.103]     WinBSegment: 0x0
[  1247.103]     WinFuncPtr: 0xc0005283
[  1247.103]     BytesPerScanline: 640
[  1247.103]     XResolution: 320
[  1247.103]     YResolution: 240
[  1247.103]     XCharSize: 8
[  1247.103]     YCharSize: 8
[  1247.103]     NumberOfPlanes: 1
[  1247.103]     BitsPerPixel: 16
[  1247.103]     NumberOfBanks: 1
[  1247.103]     MemoryModel: 6
[  1247.103]     BankSize: 0
[  1247.103]     NumberOfImages: 84
[  1247.103]     RedMaskSize: 5
[  1247.103]     RedFieldPosition: 11
[  1247.103]     GreenMaskSize: 6
[  1247.103]     GreenFieldPosition: 5
[  1247.103]     BlueMaskSize: 5
[  1247.103]     BlueFieldPosition: 0
[  1247.103]     RsvdMaskSize: 0
[  1247.103]     RsvdFieldPosition: 0
[  1247.103]     DirectColorModeInfo: 0
[  1247.103]     PhysBasePtr: 0xd0000000
[  1247.103]     LinBytesPerScanLine: 640
[  1247.103]     BnkNumberOfImagePages: 84
[  1247.103]     LinNumberOfImagePages: 84
[  1247.103]     LinRedMaskSize: 5
[  1247.103]     LinRedFieldPosition: 11
[  1247.103]     LinGreenMaskSize: 6
[  1247.103]     LinGreenFieldPosition: 5
[  1247.103]     LinBlueMaskSize: 5
[  1247.103]     LinBlueFieldPosition: 0
[  1247.103]     LinRsvdMaskSize: 0
[  1247.103]     LinRsvdFieldPosition: 0
[  1247.103]     MaxPixelClock: 400000000
[  1247.104] *Mode: 196 (320x240)
[  1247.104]     ModeAttributes: 0xbb
[  1247.104]     WinAAttributes: 0x7
[  1247.104]     WinBAttributes: 0x0
[  1247.104]     WinGranularity: 64
[  1247.104]     WinSize: 64
[  1247.104]     WinASegment: 0xa000
[  1247.104]     WinBSegment: 0x0
[  1247.104]     WinFuncPtr: 0xc0005283
[  1247.104]     BytesPerScanline: 1280
[  1247.104]     XResolution: 320
[  1247.104]     YResolution: 240
[  1247.104]     XCharSize: 8
[  1247.104]     YCharSize: 8
[  1247.104]     NumberOfPlanes: 1
[  1247.104]     BitsPerPixel: 32
[  1247.104]     NumberOfBanks: 1
[  1247.104]     MemoryModel: 6
[  1247.105]     BankSize: 0
[  1247.105]     NumberOfImages: 50
[  1247.105]     RedMaskSize: 8
[  1247.105]     RedFieldPosition: 16
[  1247.105]     GreenMaskSize: 8
[  1247.105]     GreenFieldPosition: 8
[  1247.105]     BlueMaskSize: 8
[  1247.105]     BlueFieldPosition: 0
[  1247.105]     RsvdMaskSize: 0
[  1247.105]     RsvdFieldPosition: 0
[  1247.105]     DirectColorModeInfo: 0
[  1247.105]     PhysBasePtr: 0xd0000000
[  1247.105]     LinBytesPerScanLine: 1280
[  1247.105]     BnkNumberOfImagePages: 50
[  1247.105]     LinNumberOfImagePages: 50
[  1247.105]     LinRedMaskSize: 8
[  1247.105]     LinRedFieldPosition: 16
[  1247.105]     LinGreenMaskSize: 8
[  1247.105]     LinGreenFieldPosition: 8
[  1247.105]     LinBlueMaskSize: 8
[  1247.105]     LinBlueFieldPosition: 0
[  1247.105]     LinRsvdMaskSize: 0
[  1247.105]     LinRsvdFieldPosition: 0
[  1247.105]     MaxPixelClock: 400000000
[  1247.106] Mode: 1b3 (512x384)
[  1247.106]     ModeAttributes: 0xbb
[  1247.106]     WinAAttributes: 0x7
[  1247.106]     WinBAttributes: 0x0
[  1247.106]     WinGranularity: 64
[  1247.106]     WinSize: 64
[  1247.106]     WinASegment: 0xa000
[  1247.106]     WinBSegment: 0x0
[  1247.106]     WinFuncPtr: 0xc0005283
[  1247.106]     BytesPerScanline: 512
[  1247.106]     XResolution: 512
[  1247.106]     YResolution: 384
[  1247.106]     XCharSize: 8
[  1247.106]     YCharSize: 16
[  1247.106]     NumberOfPlanes: 1
[  1247.106]     BitsPerPixel: 8
[  1247.106]     NumberOfBanks: 1
[  1247.106]     MemoryModel: 4
[  1247.106]     BankSize: 0
[  1247.106]     NumberOfImages: 63
[  1247.106]     RedMaskSize: 0
[  1247.106]     RedFieldPosition: 0
[  1247.106]     GreenMaskSize: 0
[  1247.106]     GreenFieldPosition: 0
[  1247.106]     BlueMaskSize: 0
[  1247.106]     BlueFieldPosition: 0
[  1247.106]     RsvdMaskSize: 0
[  1247.106]     RsvdFieldPosition: 0
[  1247.106]     DirectColorModeInfo: 0
[  1247.106]     PhysBasePtr: 0xd0000000
[  1247.106]     LinBytesPerScanLine: 512
[  1247.106]     BnkNumberOfImagePages: 63
[  1247.106]     LinNumberOfImagePages: 63
[  1247.106]     LinRedMaskSize: 0
[  1247.106]     LinRedFieldPosition: 0
[  1247.106]     LinGreenMaskSize: 0
[  1247.106]     LinGreenFieldPosition: 0
[  1247.106]     LinBlueMaskSize: 0
[  1247.106]     LinBlueFieldPosition: 0
[  1247.106]     LinRsvdMaskSize: 0
[  1247.106]     LinRsvdFieldPosition: 0
[  1247.106]     MaxPixelClock: 400000000
[  1247.107] Mode: 1b5 (512x384)
[  1247.107]     ModeAttributes: 0xbb
[  1247.107]     WinAAttributes: 0x7
[  1247.107]     WinBAttributes: 0x0
[  1247.107]     WinGranularity: 64
[  1247.107]     WinSize: 64
[  1247.107]     WinASegment: 0xa000
[  1247.107]     WinBSegment: 0x0
[  1247.107]     WinFuncPtr: 0xc0005283
[  1247.107]     BytesPerScanline: 1024
[  1247.107]     XResolution: 512
[  1247.107]     YResolution: 384
[  1247.107]     XCharSize: 8
[  1247.107]     YCharSize: 16
[  1247.107]     NumberOfPlanes: 1
[  1247.107]     BitsPerPixel: 16
[  1247.107]     NumberOfBanks: 1
[  1247.107]     MemoryModel: 6
[  1247.107]     BankSize: 0
[  1247.107]     NumberOfImages: 35
[  1247.107]     RedMaskSize: 5
[  1247.107]     RedFieldPosition: 11
[  1247.107]     GreenMaskSize: 6
[  1247.107]     GreenFieldPosition: 5
[  1247.107]     BlueMaskSize: 5
[  1247.107]     BlueFieldPosition: 0
[  1247.107]     RsvdMaskSize: 0
[  1247.107]     RsvdFieldPosition: 0
[  1247.107]     DirectColorModeInfo: 0
[  1247.107]     PhysBasePtr: 0xd0000000
[  1247.107]     LinBytesPerScanLine: 1024
[  1247.107]     BnkNumberOfImagePages: 35
[  1247.107]     LinNumberOfImagePages: 35
[  1247.107]     LinRedMaskSize: 5
[  1247.107]     LinRedFieldPosition: 11
[  1247.107]     LinGreenMaskSize: 6
[  1247.107]     LinGreenFieldPosition: 5
[  1247.107]     LinBlueMaskSize: 5
[  1247.107]     LinBlueFieldPosition: 0
[  1247.107]     LinRsvdMaskSize: 0
[  1247.107]     LinRsvdFieldPosition: 0
[  1247.107]     MaxPixelClock: 400000000
[  1247.108] *Mode: 1b6 (512x384)
[  1247.108]     ModeAttributes: 0xbb
[  1247.108]     WinAAttributes: 0x7
[  1247.108]     WinBAttributes: 0x0
[  1247.108]     WinGranularity: 64
[  1247.108]     WinSize: 64
[  1247.108]     WinASegment: 0xa000
[  1247.108]     WinBSegment: 0x0
[  1247.108]     WinFuncPtr: 0xc0005283
[  1247.108]     BytesPerScanline: 2048
[  1247.108]     XResolution: 512
[  1247.108]     YResolution: 384
[  1247.108]     XCharSize: 8
[  1247.108]     YCharSize: 16
[  1247.108]     NumberOfPlanes: 1
[  1247.108]     BitsPerPixel: 32
[  1247.108]     NumberOfBanks: 1
[  1247.108]     MemoryModel: 6
[  1247.108]     BankSize: 0
[  1247.108]     NumberOfImages: 18
[  1247.108]     RedMaskSize: 8
[  1247.108]     RedFieldPosition: 16
[  1247.108]     GreenMaskSize: 8
[  1247.108]     GreenFieldPosition: 8
[  1247.108]     BlueMaskSize: 8
[  1247.108]     BlueFieldPosition: 0
[  1247.108]     RsvdMaskSize: 0
[  1247.108]     RsvdFieldPosition: 0
[  1247.109]     DirectColorModeInfo: 0
[  1247.109]     PhysBasePtr: 0xd0000000
[  1247.109]     LinBytesPerScanLine: 2048
[  1247.109]     BnkNumberOfImagePages: 18
[  1247.109]     LinNumberOfImagePages: 18
[  1247.109]     LinRedMaskSize: 8
[  1247.109]     LinRedFieldPosition: 16
[  1247.109]     LinGreenMaskSize: 8
[  1247.109]     LinGreenFieldPosition: 8
[  1247.109]     LinBlueMaskSize: 8
[  1247.109]     LinBlueFieldPosition: 0
[  1247.109]     LinRsvdMaskSize: 0
[  1247.109]     LinRsvdFieldPosition: 0
[  1247.109]     MaxPixelClock: 400000000
[  1247.110] Mode: 1c3 (640x350)
[  1247.110]     ModeAttributes: 0xbb
[  1247.110]     WinAAttributes: 0x7
[  1247.110]     WinBAttributes: 0x0
[  1247.110]     WinGranularity: 64
[  1247.110]     WinSize: 64
[  1247.110]     WinASegment: 0xa000
[  1247.110]     WinBSegment: 0x0
[  1247.110]     WinFuncPtr: 0xc0005283
[  1247.110]     BytesPerScanline: 640
[  1247.110]     XResolution: 640
[  1247.110]     YResolution: 350
[  1247.110]     XCharSize: 8
[  1247.110]     YCharSize: 14
[  1247.110]     NumberOfPlanes: 1
[  1247.110]     BitsPerPixel: 8
[  1247.110]     NumberOfBanks: 1
[  1247.110]     MemoryModel: 4
[  1247.110]     BankSize: 0
[  1247.110]     NumberOfImages: 63
[  1247.110]     RedMaskSize: 0
[  1247.110]     RedFieldPosition: 0
[  1247.110]     GreenMaskSize: 0
[  1247.110]     GreenFieldPosition: 0
[  1247.110]     BlueMaskSize: 0
[  1247.110]     BlueFieldPosition: 0
[  1247.110]     RsvdMaskSize: 0
[  1247.110]     RsvdFieldPosition: 0
[  1247.110]     DirectColorModeInfo: 0
[  1247.110]     PhysBasePtr: 0xd0000000
[  1247.110]     LinBytesPerScanLine: 640
[  1247.110]     BnkNumberOfImagePages: 63
[  1247.110]     LinNumberOfImagePages: 63
[  1247.110]     LinRedMaskSize: 0
[  1247.110]     LinRedFieldPosition: 0
[  1247.110]     LinGreenMaskSize: 0
[  1247.110]     LinGreenFieldPosition: 0
[  1247.110]     LinBlueMaskSize: 0
[  1247.110]     LinBlueFieldPosition: 0
[  1247.110]     LinRsvdMaskSize: 0
[  1247.110]     LinRsvdFieldPosition: 0
[  1247.110]     MaxPixelClock: 400000000
[  1247.111] Mode: 1c5 (640x350)
[  1247.111]     ModeAttributes: 0xbb
[  1247.111]     WinAAttributes: 0x7
[  1247.111]     WinBAttributes: 0x0
[  1247.111]     WinGranularity: 64
[  1247.111]     WinSize: 64
[  1247.111]     WinASegment: 0xa000
[  1247.111]     WinBSegment: 0x0
[  1247.111]     WinFuncPtr: 0xc0005283
[  1247.111]     BytesPerScanline: 1280
[  1247.111]     XResolution: 640
[  1247.111]     YResolution: 350
[  1247.111]     XCharSize: 8
[  1247.111]     YCharSize: 14
[  1247.111]     NumberOfPlanes: 1
[  1247.111]     BitsPerPixel: 16
[  1247.111]     NumberOfBanks: 1
[  1247.111]     MemoryModel: 6
[  1247.111]     BankSize: 0
[  1247.111]     NumberOfImages: 35
[  1247.111]     RedMaskSize: 5
[  1247.111]     RedFieldPosition: 11
[  1247.111]     GreenMaskSize: 6
[  1247.111]     GreenFieldPosition: 5
[  1247.111]     BlueMaskSize: 5
[  1247.111]     BlueFieldPosition: 0
[  1247.111]     RsvdMaskSize: 0
[  1247.111]     RsvdFieldPosition: 0
[  1247.111]     DirectColorModeInfo: 0
[  1247.111]     PhysBasePtr: 0xd0000000
[  1247.111]     LinBytesPerScanLine: 1280
[  1247.111]     BnkNumberOfImagePages: 35
[  1247.111]     LinNumberOfImagePages: 35
[  1247.111]     LinRedMaskSize: 5
[  1247.111]     LinRedFieldPosition: 11
[  1247.111]     LinGreenMaskSize: 6
[  1247.111]     LinGreenFieldPosition: 5
[  1247.111]     LinBlueMaskSize: 5
[  1247.111]     LinBlueFieldPosition: 0
[  1247.111]     LinRsvdMaskSize: 0
[  1247.111]     LinRsvdFieldPosition: 0
[  1247.111]     MaxPixelClock: 400000000
[  1247.112] *Mode: 1c6 (640x350)
[  1247.112]     ModeAttributes: 0xbb
[  1247.112]     WinAAttributes: 0x7
[  1247.112]     WinBAttributes: 0x0
[  1247.112]     WinGranularity: 64
[  1247.112]     WinSize: 64
[  1247.112]     WinASegment: 0xa000
[  1247.112]     WinBSegment: 0x0
[  1247.112]     WinFuncPtr: 0xc0005283
[  1247.112]     BytesPerScanline: 2560
[  1247.112]     XResolution: 640
[  1247.112]     YResolution: 350
[  1247.112]     XCharSize: 8
[  1247.112]     YCharSize: 14
[  1247.112]     NumberOfPlanes: 1
[  1247.112]     BitsPerPixel: 32
[  1247.112]     NumberOfBanks: 1
[  1247.112]     MemoryModel: 6
[  1247.112]     BankSize: 0
[  1247.112]     NumberOfImages: 17
[  1247.112]     RedMaskSize: 8
[  1247.112]     RedFieldPosition: 16
[  1247.112]     GreenMaskSize: 8
[  1247.112]     GreenFieldPosition: 8
[  1247.112]     BlueMaskSize: 8
[  1247.112]     BlueFieldPosition: 0
[  1247.112]     RsvdMaskSize: 0
[  1247.113]     RsvdFieldPosition: 0
[  1247.113]     DirectColorModeInfo: 0
[  1247.113]     PhysBasePtr: 0xd0000000
[  1247.113]     LinBytesPerScanLine: 2560
[  1247.113]     BnkNumberOfImagePages: 17
[  1247.113]     LinNumberOfImagePages: 17
[  1247.113]     LinRedMaskSize: 8
[  1247.113]     LinRedFieldPosition: 16
[  1247.113]     LinGreenMaskSize: 8
[  1247.113]     LinGreenFieldPosition: 8
[  1247.113]     LinBlueMaskSize: 8
[  1247.113]     LinBlueFieldPosition: 0
[  1247.113]     LinRsvdMaskSize: 0
[  1247.113]     LinRsvdFieldPosition: 0
[  1247.113]     MaxPixelClock: 400000000
[  1247.114] Mode: 133 (720x400)
[  1247.114]     ModeAttributes: 0xbb
[  1247.114]     WinAAttributes: 0x7
[  1247.114]     WinBAttributes: 0x0
[  1247.114]     WinGranularity: 64
[  1247.114]     WinSize: 64
[  1247.114]     WinASegment: 0xa000
[  1247.114]     WinBSegment: 0x0
[  1247.114]     WinFuncPtr: 0xc0005283
[  1247.114]     BytesPerScanline: 768
[  1247.114]     XResolution: 720
[  1247.114]     YResolution: 400
[  1247.114]     XCharSize: 8
[  1247.114]     YCharSize: 16
[  1247.114]     NumberOfPlanes: 1
[  1247.114]     BitsPerPixel: 8
[  1247.114]     NumberOfBanks: 1
[  1247.114]     MemoryModel: 4
[  1247.114]     BankSize: 0
[  1247.114]     NumberOfImages: 50
[  1247.114]     RedMaskSize: 0
[  1247.114]     RedFieldPosition: 0
[  1247.114]     GreenMaskSize: 0
[  1247.114]     GreenFieldPosition: 0
[  1247.114]     BlueMaskSize: 0
[  1247.114]     BlueFieldPosition: 0
[  1247.114]     RsvdMaskSize: 0
[  1247.114]     RsvdFieldPosition: 0
[  1247.114]     DirectColorModeInfo: 0
[  1247.114]     PhysBasePtr: 0xd0000000
[  1247.114]     LinBytesPerScanLine: 768
[  1247.114]     BnkNumberOfImagePages: 50
[  1247.114]     LinNumberOfImagePages: 50
[  1247.114]     LinRedMaskSize: 0
[  1247.114]     LinRedFieldPosition: 0
[  1247.114]     LinGreenMaskSize: 0
[  1247.114]     LinGreenFieldPosition: 0
[  1247.114]     LinBlueMaskSize: 0
[  1247.114]     LinBlueFieldPosition: 0
[  1247.114]     LinRsvdMaskSize: 0
[  1247.114]     LinRsvdFieldPosition: 0
[  1247.114]     MaxPixelClock: 400000000
[  1247.115] Mode: 135 (720x400)
[  1247.115]     ModeAttributes: 0xbb
[  1247.115]     WinAAttributes: 0x7
[  1247.115]     WinBAttributes: 0x0
[  1247.115]     WinGranularity: 64
[  1247.115]     WinSize: 64
[  1247.115]     WinASegment: 0xa000
[  1247.115]     WinBSegment: 0x0
[  1247.115]     WinFuncPtr: 0xc0005283
[  1247.115]     BytesPerScanline: 1472
[  1247.115]     XResolution: 720
[  1247.115]     YResolution: 400
[  1247.115]     XCharSize: 8
[  1247.115]     YCharSize: 16
[  1247.115]     NumberOfPlanes: 1
[  1247.115]     BitsPerPixel: 16
[  1247.115]     NumberOfBanks: 1
[  1247.115]     MemoryModel: 6
[  1247.115]     BankSize: 0
[  1247.115]     NumberOfImages: 27
[  1247.115]     RedMaskSize: 5
[  1247.115]     RedFieldPosition: 11
[  1247.115]     GreenMaskSize: 6
[  1247.115]     GreenFieldPosition: 5
[  1247.115]     BlueMaskSize: 5
[  1247.115]     BlueFieldPosition: 0
[  1247.115]     RsvdMaskSize: 0
[  1247.115]     RsvdFieldPosition: 0
[  1247.115]     DirectColorModeInfo: 0
[  1247.115]     PhysBasePtr: 0xd0000000
[  1247.115]     LinBytesPerScanLine: 1472
[  1247.115]     BnkNumberOfImagePages: 27
[  1247.115]     LinNumberOfImagePages: 27
[  1247.115]     LinRedMaskSize: 5
[  1247.115]     LinRedFieldPosition: 11
[  1247.115]     LinGreenMaskSize: 6
[  1247.115]     LinGreenFieldPosition: 5
[  1247.115]     LinBlueMaskSize: 5
[  1247.115]     LinBlueFieldPosition: 0
[  1247.115]     LinRsvdMaskSize: 0
[  1247.115]     LinRsvdFieldPosition: 0
[  1247.115]     MaxPixelClock: 400000000
[  1247.116] *Mode: 136 (720x400)
[  1247.116]     ModeAttributes: 0xbb
[  1247.116]     WinAAttributes: 0x7
[  1247.116]     WinBAttributes: 0x0
[  1247.116]     WinGranularity: 64
[  1247.116]     WinSize: 64
[  1247.116]     WinASegment: 0xa000
[  1247.116]     WinBSegment: 0x0
[  1247.116]     WinFuncPtr: 0xc0005283
[  1247.116]     BytesPerScanline: 2944
[  1247.116]     XResolution: 720
[  1247.116]     YResolution: 400
[  1247.117]     XCharSize: 8
[  1247.117]     YCharSize: 16
[  1247.117]     NumberOfPlanes: 1
[  1247.117]     BitsPerPixel: 32
[  1247.117]     NumberOfBanks: 1
[  1247.117]     MemoryModel: 6
[  1247.117]     BankSize: 0
[  1247.117]     NumberOfImages: 13
[  1247.117]     RedMaskSize: 8
[  1247.117]     RedFieldPosition: 16
[  1247.117]     GreenMaskSize: 8
[  1247.117]     GreenFieldPosition: 8
[  1247.117]     BlueMaskSize: 8
[  1247.117]     BlueFieldPosition: 0
[  1247.117]     RsvdMaskSize: 0
[  1247.117]     RsvdFieldPosition: 0
[  1247.117]     DirectColorModeInfo: 0
[  1247.117]     PhysBasePtr: 0xd0000000
[  1247.117]     LinBytesPerScanLine: 2944
[  1247.117]     BnkNumberOfImagePages: 13
[  1247.117]     LinNumberOfImagePages: 13
[  1247.117]     LinRedMaskSize: 8
[  1247.117]     LinRedFieldPosition: 16
[  1247.117]     LinGreenMaskSize: 8
[  1247.117]     LinGreenFieldPosition: 8
[  1247.117]     LinBlueMaskSize: 8
[  1247.117]     LinBlueFieldPosition: 0
[  1247.117]     LinRsvdMaskSize: 0
[  1247.117]     LinRsvdFieldPosition: 0
[  1247.117]     MaxPixelClock: 400000000
[  1247.118] Mode: 153 (1152x864)
[  1247.118]     ModeAttributes: 0xbb
[  1247.118]     WinAAttributes: 0x7
[  1247.118]     WinBAttributes: 0x0
[  1247.118]     WinGranularity: 64
[  1247.118]     WinSize: 64
[  1247.118]     WinASegment: 0xa000
[  1247.118]     WinBSegment: 0x0
[  1247.118]     WinFuncPtr: 0xc0005283
[  1247.118]     BytesPerScanline: 1152
[  1247.118]     XResolution: 1152
[  1247.118]     YResolution: 864
[  1247.118]     XCharSize: 8
[  1247.118]     YCharSize: 16
[  1247.118]     NumberOfPlanes: 1
[  1247.118]     BitsPerPixel: 8
[  1247.118]     NumberOfBanks: 1
[  1247.118]     MemoryModel: 4
[  1247.118]     BankSize: 0
[  1247.118]     NumberOfImages: 15
[  1247.118]     RedMaskSize: 0
[  1247.118]     RedFieldPosition: 0
[  1247.118]     GreenMaskSize: 0
[  1247.118]     GreenFieldPosition: 0
[  1247.118]     BlueMaskSize: 0
[  1247.118]     BlueFieldPosition: 0
[  1247.118]     RsvdMaskSize: 0
[  1247.118]     RsvdFieldPosition: 0
[  1247.118]     DirectColorModeInfo: 0
[  1247.118]     PhysBasePtr: 0xd0000000
[  1247.118]     LinBytesPerScanLine: 1152
[  1247.118]     BnkNumberOfImagePages: 15
[  1247.118]     LinNumberOfImagePages: 15
[  1247.118]     LinRedMaskSize: 0
[  1247.118]     LinRedFieldPosition: 0
[  1247.118]     LinGreenMaskSize: 0
[  1247.118]     LinGreenFieldPosition: 0
[  1247.118]     LinBlueMaskSize: 0
[  1247.118]     LinBlueFieldPosition: 0
[  1247.118]     LinRsvdMaskSize: 0
[  1247.118]     LinRsvdFieldPosition: 0
[  1247.118]     MaxPixelClock: 400000000
[  1247.119] Mode: 155 (1152x864)
[  1247.119]     ModeAttributes: 0xbb
[  1247.119]     WinAAttributes: 0x7
[  1247.119]     WinBAttributes: 0x0
[  1247.119]     WinGranularity: 64
[  1247.119]     WinSize: 64
[  1247.119]     WinASegment: 0xa000
[  1247.119]     WinBSegment: 0x0
[  1247.119]     WinFuncPtr: 0xc0005283
[  1247.119]     BytesPerScanline: 2304
[  1247.119]     XResolution: 1152
[  1247.119]     YResolution: 864
[  1247.119]     XCharSize: 8
[  1247.119]     YCharSize: 16
[  1247.119]     NumberOfPlanes: 1
[  1247.119]     BitsPerPixel: 16
[  1247.119]     NumberOfBanks: 1
[  1247.119]     MemoryModel: 6
[  1247.119]     BankSize: 0
[  1247.119]     NumberOfImages: 7
[  1247.119]     RedMaskSize: 5
[  1247.119]     RedFieldPosition: 11
[  1247.119]     GreenMaskSize: 6
[  1247.119]     GreenFieldPosition: 5
[  1247.119]     BlueMaskSize: 5
[  1247.119]     BlueFieldPosition: 0
[  1247.119]     RsvdMaskSize: 0
[  1247.119]     RsvdFieldPosition: 0
[  1247.119]     DirectColorModeInfo: 0
[  1247.119]     PhysBasePtr: 0xd0000000
[  1247.119]     LinBytesPerScanLine: 2304
[  1247.119]     BnkNumberOfImagePages: 7
[  1247.119]     LinNumberOfImagePages: 7
[  1247.119]     LinRedMaskSize: 5
[  1247.119]     LinRedFieldPosition: 11
[  1247.119]     LinGreenMaskSize: 6
[  1247.119]     LinGreenFieldPosition: 5
[  1247.119]     LinBlueMaskSize: 5
[  1247.119]     LinBlueFieldPosition: 0
[  1247.119]     LinRsvdMaskSize: 0
[  1247.119]     LinRsvdFieldPosition: 0
[  1247.119]     MaxPixelClock: 400000000
[  1247.121] *Mode: 156 (1152x864)
[  1247.121]     ModeAttributes: 0xbb
[  1247.121]     WinAAttributes: 0x7
[  1247.121]     WinBAttributes: 0x0
[  1247.121]     WinGranularity: 64
[  1247.121]     WinSize: 64
[  1247.121]     WinASegment: 0xa000
[  1247.121]     WinBSegment: 0x0
[  1247.121]     WinFuncPtr: 0xc0005283
[  1247.121]     BytesPerScanline: 4608
[  1247.121]     XResolution: 1152
[  1247.121]     YResolution: 864
[  1247.121]     XCharSize: 8
[  1247.121]     YCharSize: 16
[  1247.121]     NumberOfPlanes: 1
[  1247.121]     BitsPerPixel: 32
[  1247.121]     NumberOfBanks: 1
[  1247.121]     MemoryModel: 6
[  1247.121]     BankSize: 0
[  1247.121]     NumberOfImages: 3
[  1247.121]     RedMaskSize: 8
[  1247.121]     RedFieldPosition: 16
[  1247.121]     GreenMaskSize: 8
[  1247.121]     GreenFieldPosition: 8
[  1247.121]     BlueMaskSize: 8
[  1247.121]     BlueFieldPosition: 0
[  1247.121]     RsvdMaskSize: 0
[  1247.121]     RsvdFieldPosition: 0
[  1247.121]     DirectColorModeInfo: 0
[  1247.121]     PhysBasePtr: 0xd0000000
[  1247.121]     LinBytesPerScanLine: 4608
[  1247.121]     BnkNumberOfImagePages: 3
[  1247.121]     LinNumberOfImagePages: 3
[  1247.121]     LinRedMaskSize: 8
[  1247.121]     LinRedFieldPosition: 16
[  1247.121]     LinGreenMaskSize: 8
[  1247.121]     LinGreenFieldPosition: 8
[  1247.121]     LinBlueMaskSize: 8
[  1247.121]     LinBlueFieldPosition: 0
[  1247.121]     LinRsvdMaskSize: 0
[  1247.121]     LinRsvdFieldPosition: 0
[  1247.121]     MaxPixelClock: 400000000
[  1247.122] Mode: 163 (1280x960)
[  1247.122]     ModeAttributes: 0xbb
[  1247.122]     WinAAttributes: 0x7
[  1247.122]     WinBAttributes: 0x0
[  1247.122]     WinGranularity: 64
[  1247.122]     WinSize: 64
[  1247.122]     WinASegment: 0xa000
[  1247.122]     WinBSegment: 0x0
[  1247.122]     WinFuncPtr: 0xc0005283
[  1247.122]     BytesPerScanline: 1280
[  1247.122]     XResolution: 1280
[  1247.122]     YResolution: 960
[  1247.122]     XCharSize: 8
[  1247.122]     YCharSize: 16
[  1247.122]     NumberOfPlanes: 1
[  1247.122]     BitsPerPixel: 8
[  1247.122]     NumberOfBanks: 1
[  1247.122]     MemoryModel: 4
[  1247.122]     BankSize: 0
[  1247.122]     NumberOfImages: 12
[  1247.122]     RedMaskSize: 0
[  1247.122]     RedFieldPosition: 0
[  1247.122]     GreenMaskSize: 0
[  1247.122]     GreenFieldPosition: 0
[  1247.122]     BlueMaskSize: 0
[  1247.122]     BlueFieldPosition: 0
[  1247.122]     RsvdMaskSize: 0
[  1247.122]     RsvdFieldPosition: 0
[  1247.122]     DirectColorModeInfo: 0
[  1247.122]     PhysBasePtr: 0xd0000000
[  1247.122]     LinBytesPerScanLine: 1280
[  1247.122]     BnkNumberOfImagePages: 12
[  1247.122]     LinNumberOfImagePages: 12
[  1247.122]     LinRedMaskSize: 0
[  1247.122]     LinRedFieldPosition: 0
[  1247.122]     LinGreenMaskSize: 0
[  1247.122]     LinGreenFieldPosition: 0
[  1247.122]     LinBlueMaskSize: 0
[  1247.122]     LinBlueFieldPosition: 0
[  1247.122]     LinRsvdMaskSize: 0
[  1247.122]     LinRsvdFieldPosition: 0
[  1247.122]     MaxPixelClock: 400000000
[  1247.123] Mode: 165 (1280x960)
[  1247.123]     ModeAttributes: 0xbb
[  1247.123]     WinAAttributes: 0x7
[  1247.123]     WinBAttributes: 0x0
[  1247.123]     WinGranularity: 64
[  1247.123]     WinSize: 64
[  1247.123]     WinASegment: 0xa000
[  1247.123]     WinBSegment: 0x0
[  1247.123]     WinFuncPtr: 0xc0005283
[  1247.123]     BytesPerScanline: 2560
[  1247.123]     XResolution: 1280
[  1247.123]     YResolution: 960
[  1247.123]     XCharSize: 8
[  1247.123]     YCharSize: 16
[  1247.123]     NumberOfPlanes: 1
[  1247.123]     BitsPerPixel: 16
[  1247.123]     NumberOfBanks: 1
[  1247.123]     MemoryModel: 6
[  1247.123]     BankSize: 0
[  1247.123]     NumberOfImages: 5
[  1247.123]     RedMaskSize: 5
[  1247.123]     RedFieldPosition: 11
[  1247.123]     GreenMaskSize: 6
[  1247.123]     GreenFieldPosition: 5
[  1247.123]     BlueMaskSize: 5
[  1247.123]     BlueFieldPosition: 0
[  1247.123]     RsvdMaskSize: 0
[  1247.123]     RsvdFieldPosition: 0
[  1247.123]     DirectColorModeInfo: 0
[  1247.123]     PhysBasePtr: 0xd0000000
[  1247.123]     LinBytesPerScanLine: 2560
[  1247.123]     BnkNumberOfImagePages: 5
[  1247.123]     LinNumberOfImagePages: 5
[  1247.123]     LinRedMaskSize: 5
[  1247.123]     LinRedFieldPosition: 11
[  1247.123]     LinGreenMaskSize: 6
[  1247.123]     LinGreenFieldPosition: 5
[  1247.123]     LinBlueMaskSize: 5
[  1247.123]     LinBlueFieldPosition: 0
[  1247.123]     LinRsvdMaskSize: 0
[  1247.123]     LinRsvdFieldPosition: 0
[  1247.123]     MaxPixelClock: 400000000
[  1247.125] *Mode: 166 (1280x960)
[  1247.125]     ModeAttributes: 0xbb
[  1247.125]     WinAAttributes: 0x7
[  1247.125]     WinBAttributes: 0x0
[  1247.125]     WinGranularity: 64
[  1247.125]     WinSize: 64
[  1247.125]     WinASegment: 0xa000
[  1247.125]     WinBSegment: 0x0
[  1247.125]     WinFuncPtr: 0xc0005283
[  1247.125]     BytesPerScanline: 5120
[  1247.125]     XResolution: 1280
[  1247.125]     YResolution: 960
[  1247.125]     XCharSize: 8
[  1247.125]     YCharSize: 16
[  1247.125]     NumberOfPlanes: 1
[  1247.125]     BitsPerPixel: 32
[  1247.125]     NumberOfBanks: 1
[  1247.125]     MemoryModel: 6
[  1247.125]     BankSize: 0
[  1247.125]     NumberOfImages: 2
[  1247.125]     RedMaskSize: 8
[  1247.125]     RedFieldPosition: 16
[  1247.125]     GreenMaskSize: 8
[  1247.125]     GreenFieldPosition: 8
[  1247.125]     BlueMaskSize: 8
[  1247.125]     BlueFieldPosition: 0
[  1247.125]     RsvdMaskSize: 0
[  1247.125]     RsvdFieldPosition: 0
[  1247.125]     DirectColorModeInfo: 0
[  1247.125]     PhysBasePtr: 0xd0000000
[  1247.125]     LinBytesPerScanLine: 5120
[  1247.125]     BnkNumberOfImagePages: 2
[  1247.125]     LinNumberOfImagePages: 2
[  1247.125]     LinRedMaskSize: 8
[  1247.125]     LinRedFieldPosition: 16
[  1247.125]     LinGreenMaskSize: 8
[  1247.125]     LinGreenFieldPosition: 8
[  1247.125]     LinBlueMaskSize: 8
[  1247.125]     LinBlueFieldPosition: 0
[  1247.125]     LinRsvdMaskSize: 0
[  1247.125]     LinRsvdFieldPosition: 0
[  1247.125]     MaxPixelClock: 400000000
[  1247.126] *Mode: 121 (640x480)
[  1247.126]     ModeAttributes: 0xbb
[  1247.126]     WinAAttributes: 0x7
[  1247.126]     WinBAttributes: 0x0
[  1247.126]     WinGranularity: 64
[  1247.126]     WinSize: 64
[  1247.126]     WinASegment: 0xa000
[  1247.126]     WinBSegment: 0x0
[  1247.126]     WinFuncPtr: 0xc0005283
[  1247.126]     BytesPerScanline: 2560
[  1247.126]     XResolution: 640
[  1247.126]     YResolution: 480
[  1247.126]     XCharSize: 8
[  1247.126]     YCharSize: 16
[  1247.126]     NumberOfPlanes: 1
[  1247.126]     BitsPerPixel: 32
[  1247.126]     NumberOfBanks: 1
[  1247.126]     MemoryModel: 6
[  1247.126]     BankSize: 0
[  1247.126]     NumberOfImages: 12
[  1247.126]     RedMaskSize: 8
[  1247.126]     RedFieldPosition: 16
[  1247.126]     GreenMaskSize: 8
[  1247.126]     GreenFieldPosition: 8
[  1247.126]     BlueMaskSize: 8
[  1247.126]     BlueFieldPosition: 0
[  1247.126]     RsvdMaskSize: 0
[  1247.126]     RsvdFieldPosition: 0
[  1247.126]     DirectColorModeInfo: 0
[  1247.126]     PhysBasePtr: 0xd0000000
[  1247.126]     LinBytesPerScanLine: 2560
[  1247.126]     BnkNumberOfImagePages: 12
[  1247.126]     LinNumberOfImagePages: 12
[  1247.126]     LinRedMaskSize: 8
[  1247.126]     LinRedFieldPosition: 16
[  1247.126]     LinGreenMaskSize: 8
[  1247.126]     LinGreenFieldPosition: 8
[  1247.126]     LinBlueMaskSize: 8
[  1247.126]     LinBlueFieldPosition: 0
[  1247.126]     LinRsvdMaskSize: 0
[  1247.126]     LinRsvdFieldPosition: 0
[  1247.126]     MaxPixelClock: 400000000
[  1247.127] *Mode: 122 (800x600)
[  1247.127]     ModeAttributes: 0xbb
[  1247.127]     WinAAttributes: 0x7
[  1247.127]     WinBAttributes: 0x0
[  1247.127]     WinGranularity: 64
[  1247.127]     WinSize: 64
[  1247.127]     WinASegment: 0xa000
[  1247.128]     WinBSegment: 0x0
[  1247.128]     WinFuncPtr: 0xc0005283
[  1247.128]     BytesPerScanline: 3200
[  1247.128]     XResolution: 800
[  1247.128]     YResolution: 600
[  1247.128]     XCharSize: 8
[  1247.128]     YCharSize: 14
[  1247.128]     NumberOfPlanes: 1
[  1247.128]     BitsPerPixel: 32
[  1247.128]     NumberOfBanks: 1
[  1247.128]     MemoryModel: 6
[  1247.128]     BankSize: 0
[  1247.128]     NumberOfImages: 7
[  1247.128]     RedMaskSize: 8
[  1247.128]     RedFieldPosition: 16
[  1247.128]     GreenMaskSize: 8
[  1247.128]     GreenFieldPosition: 8
[  1247.128]     BlueMaskSize: 8
[  1247.128]     BlueFieldPosition: 0
[  1247.128]     RsvdMaskSize: 0
[  1247.128]     RsvdFieldPosition: 0
[  1247.128]     DirectColorModeInfo: 0
[  1247.128]     PhysBasePtr: 0xd0000000
[  1247.128]     LinBytesPerScanLine: 3200
[  1247.128]     BnkNumberOfImagePages: 7
[  1247.128]     LinNumberOfImagePages: 7
[  1247.128]     LinRedMaskSize: 8
[  1247.128]     LinRedFieldPosition: 16
[  1247.128]     LinGreenMaskSize: 8
[  1247.128]     LinGreenFieldPosition: 8
[  1247.128]     LinBlueMaskSize: 8
[  1247.128]     LinBlueFieldPosition: 0
[  1247.128]     LinRsvdMaskSize: 0
[  1247.128]     LinRsvdFieldPosition: 0
[  1247.128]     MaxPixelClock: 400000000
[  1247.129] *Mode: 123 (1024x768)
[  1247.129]     ModeAttributes: 0xbb
[  1247.129]     WinAAttributes: 0x7
[  1247.129]     WinBAttributes: 0x0
[  1247.129]     WinGranularity: 64
[  1247.129]     WinSize: 64
[  1247.129]     WinASegment: 0xa000
[  1247.129]     WinBSegment: 0x0
[  1247.129]     WinFuncPtr: 0xc0005283
[  1247.129]     BytesPerScanline: 4096
[  1247.129]     XResolution: 1024
[  1247.129]     YResolution: 768
[  1247.129]     XCharSize: 8
[  1247.129]     YCharSize: 16
[  1247.129]     NumberOfPlanes: 1
[  1247.129]     BitsPerPixel: 32
[  1247.129]     NumberOfBanks: 1
[  1247.129]     MemoryModel: 6
[  1247.129]     BankSize: 0
[  1247.129]     NumberOfImages: 4
[  1247.129]     RedMaskSize: 8
[  1247.129]     RedFieldPosition: 16
[  1247.129]     GreenMaskSize: 8
[  1247.129]     GreenFieldPosition: 8
[  1247.129]     BlueMaskSize: 8
[  1247.129]     BlueFieldPosition: 0
[  1247.129]     RsvdMaskSize: 0
[  1247.129]     RsvdFieldPosition: 0
[  1247.129]     DirectColorModeInfo: 0
[  1247.129]     PhysBasePtr: 0xd0000000
[  1247.129]     LinBytesPerScanLine: 4096
[  1247.129]     BnkNumberOfImagePages: 4
[  1247.129]     LinNumberOfImagePages: 4
[  1247.129]     LinRedMaskSize: 8
[  1247.129]     LinRedFieldPosition: 16
[  1247.129]     LinGreenMaskSize: 8
[  1247.129]     LinGreenFieldPosition: 8
[  1247.129]     LinBlueMaskSize: 8
[  1247.129]     LinBlueFieldPosition: 0
[  1247.129]     LinRsvdMaskSize: 0
[  1247.129]     LinRsvdFieldPosition: 0
[  1247.129]     MaxPixelClock: 400000000
[  1247.130] *Mode: 124 (1280x1024)
[  1247.130]     ModeAttributes: 0xbb
[  1247.130]     WinAAttributes: 0x7
[  1247.130]     WinBAttributes: 0x0
[  1247.130]     WinGranularity: 64
[  1247.130]     WinSize: 64
[  1247.130]     WinASegment: 0xa000
[  1247.130]     WinBSegment: 0x0
[  1247.130]     WinFuncPtr: 0xc0005283
[  1247.130]     BytesPerScanline: 5120
[  1247.130]     XResolution: 1280
[  1247.130]     YResolution: 1024
[  1247.130]     XCharSize: 8
[  1247.130]     YCharSize: 16
[  1247.130]     NumberOfPlanes: 1
[  1247.130]     BitsPerPixel: 32
[  1247.130]     NumberOfBanks: 1
[  1247.130]     MemoryModel: 6
[  1247.130]     BankSize: 0
[  1247.130]     NumberOfImages: 2
[  1247.130]     RedMaskSize: 8
[  1247.130]     RedFieldPosition: 16
[  1247.130]     GreenMaskSize: 8
[  1247.130]     GreenFieldPosition: 8
[  1247.130]     BlueMaskSize: 8
[  1247.130]     BlueFieldPosition: 0
[  1247.130]     RsvdMaskSize: 0
[  1247.130]     RsvdFieldPosition: 0
[  1247.130]     DirectColorModeInfo: 0
[  1247.130]     PhysBasePtr: 0xd0000000
[  1247.130]     LinBytesPerScanLine: 5120
[  1247.130]     BnkNumberOfImagePages: 2
[  1247.130]     LinNumberOfImagePages: 2
[  1247.130]     LinRedMaskSize: 8
[  1247.130]     LinRedFieldPosition: 16
[  1247.130]     LinGreenMaskSize: 8
[  1247.130]     LinGreenFieldPosition: 8
[  1247.130]     LinBlueMaskSize: 8
[  1247.130]     LinBlueFieldPosition: 0
[  1247.130]     LinRsvdMaskSize: 0
[  1247.130]     LinRsvdFieldPosition: 0
[  1247.130]     MaxPixelClock: 400000000
[  1247.132] Mode: 143 (1400x1050)
[  1247.132]     ModeAttributes: 0xbb
[  1247.132]     WinAAttributes: 0x7
[  1247.132]     WinBAttributes: 0x0
[  1247.132]     WinGranularity: 64
[  1247.132]     WinSize: 64
[  1247.132]     WinASegment: 0xa000
[  1247.132]     WinBSegment: 0x0
[  1247.132]     WinFuncPtr: 0xc0005283
[  1247.132]     BytesPerScanline: 1408
[  1247.132]     XResolution: 1400
[  1247.132]     YResolution: 1050
[  1247.132]     XCharSize: 8
[  1247.132]     YCharSize: 16
[  1247.132]     NumberOfPlanes: 1
[  1247.132]     BitsPerPixel: 8
[  1247.132]     NumberOfBanks: 1
[  1247.132]     MemoryModel: 4
[  1247.132]     BankSize: 0
[  1247.132]     NumberOfImages: 10
[  1247.132]     RedMaskSize: 0
[  1247.132]     RedFieldPosition: 0
[  1247.132]     GreenMaskSize: 0
[  1247.132]     GreenFieldPosition: 0
[  1247.132]     BlueMaskSize: 0
[  1247.132]     BlueFieldPosition: 0
[  1247.132]     RsvdMaskSize: 0
[  1247.132]     RsvdFieldPosition: 0
[  1247.132]     DirectColorModeInfo: 0
[  1247.132]     PhysBasePtr: 0xd0000000
[  1247.132]     LinBytesPerScanLine: 1408
[  1247.132]     BnkNumberOfImagePages: 10
[  1247.132]     LinNumberOfImagePages: 10
[  1247.132]     LinRedMaskSize: 0
[  1247.132]     LinRedFieldPosition: 0
[  1247.132]     LinGreenMaskSize: 0
[  1247.132]     LinGreenFieldPosition: 0
[  1247.132]     LinBlueMaskSize: 0
[  1247.132]     LinBlueFieldPosition: 0
[  1247.132]     LinRsvdMaskSize: 0
[  1247.132]     LinRsvdFieldPosition: 0
[  1247.132]     MaxPixelClock: 400000000
[  1247.133] Mode: 145 (1400x1050)
[  1247.133]     ModeAttributes: 0xbb
[  1247.133]     WinAAttributes: 0x7
[  1247.133]     WinBAttributes: 0x0
[  1247.133]     WinGranularity: 64
[  1247.133]     WinSize: 64
[  1247.133]     WinASegment: 0xa000
[  1247.133]     WinBSegment: 0x0
[  1247.133]     WinFuncPtr: 0xc0005283
[  1247.133]     BytesPerScanline: 2816
[  1247.133]     XResolution: 1400
[  1247.133]     YResolution: 1050
[  1247.133]     XCharSize: 8
[  1247.133]     YCharSize: 16
[  1247.133]     NumberOfPlanes: 1
[  1247.133]     BitsPerPixel: 16
[  1247.133]     NumberOfBanks: 1
[  1247.133]     MemoryModel: 6
[  1247.133]     BankSize: 0
[  1247.133]     NumberOfImages: 4
[  1247.133]     RedMaskSize: 5
[  1247.133]     RedFieldPosition: 11
[  1247.133]     GreenMaskSize: 6
[  1247.133]     GreenFieldPosition: 5
[  1247.133]     BlueMaskSize: 5
[  1247.133]     BlueFieldPosition: 0
[  1247.133]     RsvdMaskSize: 0
[  1247.133]     RsvdFieldPosition: 0
[  1247.133]     DirectColorModeInfo: 0
[  1247.133]     PhysBasePtr: 0xd0000000
[  1247.133]     LinBytesPerScanLine: 2816
[  1247.133]     BnkNumberOfImagePages: 4
[  1247.133]     LinNumberOfImagePages: 4
[  1247.133]     LinRedMaskSize: 5
[  1247.133]     LinRedFieldPosition: 11
[  1247.133]     LinGreenMaskSize: 6
[  1247.133]     LinGreenFieldPosition: 5
[  1247.133]     LinBlueMaskSize: 5
[  1247.133]     LinBlueFieldPosition: 0
[  1247.133]     LinRsvdMaskSize: 0
[  1247.133]     LinRsvdFieldPosition: 0
[  1247.133]     MaxPixelClock: 400000000
[  1247.134] *Mode: 146 (1400x1050)
[  1247.134]     ModeAttributes: 0xbb
[  1247.134]     WinAAttributes: 0x7
[  1247.135]     WinBAttributes: 0x0
[  1247.135]     WinGranularity: 64
[  1247.135]     WinSize: 64
[  1247.135]     WinASegment: 0xa000
[  1247.135]     WinBSegment: 0x0
[  1247.135]     WinFuncPtr: 0xc0005283
[  1247.135]     BytesPerScanline: 5632
[  1247.135]     XResolution: 1400
[  1247.135]     YResolution: 1050
[  1247.135]     XCharSize: 8
[  1247.135]     YCharSize: 16
[  1247.135]     NumberOfPlanes: 1
[  1247.135]     BitsPerPixel: 32
[  1247.135]     NumberOfBanks: 1
[  1247.135]     MemoryModel: 6
[  1247.135]     BankSize: 0
[  1247.135]     NumberOfImages: 1
[  1247.135]     RedMaskSize: 8
[  1247.135]     RedFieldPosition: 16
[  1247.135]     GreenMaskSize: 8
[  1247.135]     GreenFieldPosition: 8
[  1247.135]     BlueMaskSize: 8
[  1247.135]     BlueFieldPosition: 0
[  1247.135]     RsvdMaskSize: 0
[  1247.135]     RsvdFieldPosition: 0
[  1247.135]     DirectColorModeInfo: 0
[  1247.135]     PhysBasePtr: 0xd0000000
[  1247.135]     LinBytesPerScanLine: 5632
[  1247.135]     BnkNumberOfImagePages: 1
[  1247.135]     LinNumberOfImagePages: 1
[  1247.135]     LinRedMaskSize: 8
[  1247.135]     LinRedFieldPosition: 16
[  1247.135]     LinGreenMaskSize: 8
[  1247.135]     LinGreenFieldPosition: 8
[  1247.135]     LinBlueMaskSize: 8
[  1247.135]     LinBlueFieldPosition: 0
[  1247.135]     LinRsvdMaskSize: 0
[  1247.135]     LinRsvdFieldPosition: 0
[  1247.135]     MaxPixelClock: 400000000
[  1247.136] Mode: 173 (1600x1200)
[  1247.136]     ModeAttributes: 0xbb
[  1247.136]     WinAAttributes: 0x7
[  1247.136]     WinBAttributes: 0x0
[  1247.136]     WinGranularity: 64
[  1247.136]     WinSize: 64
[  1247.136]     WinASegment: 0xa000
[  1247.136]     WinBSegment: 0x0
[  1247.136]     WinFuncPtr: 0xc0005283
[  1247.136]     BytesPerScanline: 1600
[  1247.136]     XResolution: 1600
[  1247.136]     YResolution: 1200
[  1247.136]     XCharSize: 8
[  1247.136]     YCharSize: 16
[  1247.136]     NumberOfPlanes: 1
[  1247.136]     BitsPerPixel: 8
[  1247.136]     NumberOfBanks: 1
[  1247.136]     MemoryModel: 4
[  1247.136]     BankSize: 0
[  1247.136]     NumberOfImages: 7
[  1247.136]     RedMaskSize: 0
[  1247.136]     RedFieldPosition: 0
[  1247.136]     GreenMaskSize: 0
[  1247.136]     GreenFieldPosition: 0
[  1247.136]     BlueMaskSize: 0
[  1247.136]     BlueFieldPosition: 0
[  1247.136]     RsvdMaskSize: 0
[  1247.136]     RsvdFieldPosition: 0
[  1247.136]     DirectColorModeInfo: 0
[  1247.136]     PhysBasePtr: 0xd0000000
[  1247.136]     LinBytesPerScanLine: 1600
[  1247.136]     BnkNumberOfImagePages: 7
[  1247.136]     LinNumberOfImagePages: 7
[  1247.136]     LinRedMaskSize: 0
[  1247.136]     LinRedFieldPosition: 0
[  1247.136]     LinGreenMaskSize: 0
[  1247.136]     LinGreenFieldPosition: 0
[  1247.136]     LinBlueMaskSize: 0
[  1247.136]     LinBlueFieldPosition: 0
[  1247.136]     LinRsvdMaskSize: 0
[  1247.136]     LinRsvdFieldPosition: 0
[  1247.136]     MaxPixelClock: 400000000
[  1247.137] Mode: 175 (1600x1200)
[  1247.137]     ModeAttributes: 0xbb
[  1247.137]     WinAAttributes: 0x7
[  1247.137]     WinBAttributes: 0x0
[  1247.137]     WinGranularity: 64
[  1247.137]     WinSize: 64
[  1247.137]     WinASegment: 0xa000
[  1247.137]     WinBSegment: 0x0
[  1247.137]     WinFuncPtr: 0xc0005283
[  1247.137]     BytesPerScanline: 3200
[  1247.137]     XResolution: 1600
[  1247.137]     YResolution: 1200
[  1247.137]     XCharSize: 8
[  1247.137]     YCharSize: 16
[  1247.137]     NumberOfPlanes: 1
[  1247.137]     BitsPerPixel: 16
[  1247.137]     NumberOfBanks: 1
[  1247.137]     MemoryModel: 6
[  1247.137]     BankSize: 0
[  1247.137]     NumberOfImages: 3
[  1247.137]     RedMaskSize: 5
[  1247.137]     RedFieldPosition: 11
[  1247.137]     GreenMaskSize: 6
[  1247.137]     GreenFieldPosition: 5
[  1247.137]     BlueMaskSize: 5
[  1247.137]     BlueFieldPosition: 0
[  1247.137]     RsvdMaskSize: 0
[  1247.137]     RsvdFieldPosition: 0
[  1247.137]     DirectColorModeInfo: 0
[  1247.137]     PhysBasePtr: 0xd0000000
[  1247.137]     LinBytesPerScanLine: 3200
[  1247.137]     BnkNumberOfImagePages: 3
[  1247.137]     LinNumberOfImagePages: 3
[  1247.137]     LinRedMaskSize: 5
[  1247.137]     LinRedFieldPosition: 11
[  1247.137]     LinGreenMaskSize: 6
[  1247.137]     LinGreenFieldPosition: 5
[  1247.137]     LinBlueMaskSize: 5
[  1247.137]     LinBlueFieldPosition: 0
[  1247.137]     LinRsvdMaskSize: 0
[  1247.138]     LinRsvdFieldPosition: 0
[  1247.138]     MaxPixelClock: 400000000
[  1247.139] *Mode: 176 (1600x1200)
[  1247.139]     ModeAttributes: 0xbb
[  1247.139]     WinAAttributes: 0x7
[  1247.139]     WinBAttributes: 0x0
[  1247.139]     WinGranularity: 64
[  1247.139]     WinSize: 64
[  1247.139]     WinASegment: 0xa000
[  1247.139]     WinBSegment: 0x0
[  1247.139]     WinFuncPtr: 0xc0005283
[  1247.139]     BytesPerScanline: 6400
[  1247.139]     XResolution: 1600
[  1247.139]     YResolution: 1200
[  1247.139]     XCharSize: 8
[  1247.139]     YCharSize: 16
[  1247.139]     NumberOfPlanes: 1
[  1247.139]     BitsPerPixel: 32
[  1247.139]     NumberOfBanks: 1
[  1247.139]     MemoryModel: 6
[  1247.139]     BankSize: 0
[  1247.139]     NumberOfImages: 1
[  1247.139]     RedMaskSize: 8
[  1247.139]     RedFieldPosition: 16
[  1247.139]     GreenMaskSize: 8
[  1247.139]     GreenFieldPosition: 8
[  1247.139]     BlueMaskSize: 8
[  1247.139]     BlueFieldPosition: 0
[  1247.139]     RsvdMaskSize: 0
[  1247.139]     RsvdFieldPosition: 0
[  1247.139]     DirectColorModeInfo: 0
[  1247.139]     PhysBasePtr: 0xd0000000
[  1247.139]     LinBytesPerScanLine: 6400
[  1247.139]     BnkNumberOfImagePages: 1
[  1247.139]     LinNumberOfImagePages: 1
[  1247.139]     LinRedMaskSize: 8
[  1247.139]     LinRedFieldPosition: 16
[  1247.139]     LinGreenMaskSize: 8
[  1247.139]     LinGreenFieldPosition: 8
[  1247.139]     LinBlueMaskSize: 8
[  1247.139]     LinBlueFieldPosition: 0
[  1247.139]     LinRsvdMaskSize: 0
[  1247.139]     LinRsvdFieldPosition: 0
[  1247.139]     MaxPixelClock: 400000000
[  1247.140] Mode: 183 (1792x1344)
[  1247.140]     ModeAttributes: 0xbb
[  1247.140]     WinAAttributes: 0x7
[  1247.140]     WinBAttributes: 0x0
[  1247.140]     WinGranularity: 64
[  1247.140]     WinSize: 64
[  1247.140]     WinASegment: 0xa000
[  1247.140]     WinBSegment: 0x0
[  1247.140]     WinFuncPtr: 0xc0005283
[  1247.140]     BytesPerScanline: 1792
[  1247.140]     XResolution: 1792
[  1247.140]     YResolution: 1344
[  1247.140]     XCharSize: 8
[  1247.140]     YCharSize: 16
[  1247.140]     NumberOfPlanes: 1
[  1247.140]     BitsPerPixel: 8
[  1247.140]     NumberOfBanks: 1
[  1247.140]     MemoryModel: 4
[  1247.140]     BankSize: 0
[  1247.140]     NumberOfImages: 5
[  1247.140]     RedMaskSize: 0
[  1247.140]     RedFieldPosition: 0
[  1247.140]     GreenMaskSize: 0
[  1247.140]     GreenFieldPosition: 0
[  1247.140]     BlueMaskSize: 0
[  1247.140]     BlueFieldPosition: 0
[  1247.140]     RsvdMaskSize: 0
[  1247.140]     RsvdFieldPosition: 0
[  1247.140]     DirectColorModeInfo: 0
[  1247.140]     PhysBasePtr: 0xd0000000
[  1247.140]     LinBytesPerScanLine: 1792
[  1247.140]     BnkNumberOfImagePages: 5
[  1247.140]     LinNumberOfImagePages: 5
[  1247.140]     LinRedMaskSize: 0
[  1247.140]     LinRedFieldPosition: 0
[  1247.140]     LinGreenMaskSize: 0
[  1247.140]     LinGreenFieldPosition: 0
[  1247.140]     LinBlueMaskSize: 0
[  1247.140]     LinBlueFieldPosition: 0
[  1247.140]     LinRsvdMaskSize: 0
[  1247.140]     LinRsvdFieldPosition: 0
[  1247.140]     MaxPixelClock: 400000000
[  1247.142] Mode: 185 (1792x1344)
[  1247.142]     ModeAttributes: 0xbb
[  1247.142]     WinAAttributes: 0x7
[  1247.142]     WinBAttributes: 0x0
[  1247.142]     WinGranularity: 64
[  1247.142]     WinSize: 64
[  1247.142]     WinASegment: 0xa000
[  1247.142]     WinBSegment: 0x0
[  1247.142]     WinFuncPtr: 0xc0005283
[  1247.142]     BytesPerScanline: 3584
[  1247.142]     XResolution: 1792
[  1247.142]     YResolution: 1344
[  1247.142]     XCharSize: 8
[  1247.142]     YCharSize: 16
[  1247.142]     NumberOfPlanes: 1
[  1247.142]     BitsPerPixel: 16
[  1247.142]     NumberOfBanks: 1
[  1247.142]     MemoryModel: 6
[  1247.142]     BankSize: 0
[  1247.142]     NumberOfImages: 2
[  1247.142]     RedMaskSize: 5
[  1247.142]     RedFieldPosition: 11
[  1247.142]     GreenMaskSize: 6
[  1247.142]     GreenFieldPosition: 5
[  1247.142]     BlueMaskSize: 5
[  1247.142]     BlueFieldPosition: 0
[  1247.142]     RsvdMaskSize: 0
[  1247.142]     RsvdFieldPosition: 0
[  1247.142]     DirectColorModeInfo: 0
[  1247.142]     PhysBasePtr: 0xd0000000
[  1247.142]     LinBytesPerScanLine: 3584
[  1247.142]     BnkNumberOfImagePages: 2
[  1247.142]     LinNumberOfImagePages: 2
[  1247.142]     LinRedMaskSize: 5
[  1247.142]     LinRedFieldPosition: 11
[  1247.142]     LinGreenMaskSize: 6
[  1247.142]     LinGreenFieldPosition: 5
[  1247.142]     LinBlueMaskSize: 5
[  1247.142]     LinBlueFieldPosition: 0
[  1247.142]     LinRsvdMaskSize: 0
[  1247.142]     LinRsvdFieldPosition: 0
[  1247.142]     MaxPixelClock: 400000000
[  1247.143] *Mode: 186 (1792x1344)
[  1247.143]     ModeAttributes: 0xbb
[  1247.143]     WinAAttributes: 0x7
[  1247.143]     WinBAttributes: 0x0
[  1247.143]     WinGranularity: 64
[  1247.143]     WinSize: 64
[  1247.143]     WinASegment: 0xa000
[  1247.143]     WinBSegment: 0x0
[  1247.143]     WinFuncPtr: 0xc0005283
[  1247.143]     BytesPerScanline: 7168
[  1247.143]     XResolution: 1792
[  1247.143]     YResolution: 1344
[  1247.143]     XCharSize: 8
[  1247.143]     YCharSize: 16
[  1247.143]     NumberOfPlanes: 1
[  1247.143]     BitsPerPixel: 32
[  1247.143]     NumberOfBanks: 1
[  1247.143]     MemoryModel: 6
[  1247.143]     BankSize: 0
[  1247.143]     NumberOfImages: 1
[  1247.143]     RedMaskSize: 8
[  1247.143]     RedFieldPosition: 16
[  1247.143]     GreenMaskSize: 8
[  1247.143]     GreenFieldPosition: 8
[  1247.143]     BlueMaskSize: 8
[  1247.143]     BlueFieldPosition: 0
[  1247.143]     RsvdMaskSize: 0
[  1247.143]     RsvdFieldPosition: 0
[  1247.143]     DirectColorModeInfo: 0
[  1247.143]     PhysBasePtr: 0xd0000000
[  1247.143]     LinBytesPerScanLine: 7168
[  1247.143]     BnkNumberOfImagePages: 1
[  1247.143]     LinNumberOfImagePages: 1
[  1247.143]     LinRedMaskSize: 8
[  1247.143]     LinRedFieldPosition: 16
[  1247.143]     LinGreenMaskSize: 8
[  1247.143]     LinGreenFieldPosition: 8
[  1247.143]     LinBlueMaskSize: 8
[  1247.143]     LinBlueFieldPosition: 0
[  1247.143]     LinRsvdMaskSize: 0
[  1247.143]     LinRsvdFieldPosition: 0
[  1247.143]     MaxPixelClock: 400000000
[  1247.145] Mode: 1d3 (1856x1392)
[  1247.145]     ModeAttributes: 0xbb
[  1247.145]     WinAAttributes: 0x7
[  1247.145]     WinBAttributes: 0x0
[  1247.145]     WinGranularity: 64
[  1247.145]     WinSize: 64
[  1247.145]     WinASegment: 0xa000
[  1247.145]     WinBSegment: 0x0
[  1247.145]     WinFuncPtr: 0xc0005283
[  1247.145]     BytesPerScanline: 1856
[  1247.145]     XResolution: 1856
[  1247.145]     YResolution: 1392
[  1247.145]     XCharSize: 8
[  1247.145]     YCharSize: 16
[  1247.145]     NumberOfPlanes: 1
[  1247.145]     BitsPerPixel: 8
[  1247.145]     NumberOfBanks: 1
[  1247.145]     MemoryModel: 4
[  1247.145]     BankSize: 0
[  1247.145]     NumberOfImages: 5
[  1247.145]     RedMaskSize: 0
[  1247.145]     RedFieldPosition: 0
[  1247.145]     GreenMaskSize: 0
[  1247.145]     GreenFieldPosition: 0
[  1247.145]     BlueMaskSize: 0
[  1247.145]     BlueFieldPosition: 0
[  1247.145]     RsvdMaskSize: 0
[  1247.145]     RsvdFieldPosition: 0
[  1247.145]     DirectColorModeInfo: 0
[  1247.145]     PhysBasePtr: 0xd0000000
[  1247.145]     LinBytesPerScanLine: 1856
[  1247.145]     BnkNumberOfImagePages: 5
[  1247.145]     LinNumberOfImagePages: 5
[  1247.145]     LinRedMaskSize: 0
[  1247.145]     LinRedFieldPosition: 0
[  1247.145]     LinGreenMaskSize: 0
[  1247.145]     LinGreenFieldPosition: 0
[  1247.145]     LinBlueMaskSize: 0
[  1247.145]     LinBlueFieldPosition: 0
[  1247.145]     LinRsvdMaskSize: 0
[  1247.145]     LinRsvdFieldPosition: 0
[  1247.145]     MaxPixelClock: 400000000
[  1247.146] Mode: 1d5 (1856x1392)
[  1247.146]     ModeAttributes: 0xbb
[  1247.146]     WinAAttributes: 0x7
[  1247.146]     WinBAttributes: 0x0
[  1247.146]     WinGranularity: 64
[  1247.146]     WinSize: 64
[  1247.146]     WinASegment: 0xa000
[  1247.146]     WinBSegment: 0x0
[  1247.146]     WinFuncPtr: 0xc0005283
[  1247.146]     BytesPerScanline: 3712
[  1247.146]     XResolution: 1856
[  1247.146]     YResolution: 1392
[  1247.146]     XCharSize: 8
[  1247.146]     YCharSize: 16
[  1247.146]     NumberOfPlanes: 1
[  1247.146]     BitsPerPixel: 16
[  1247.146]     NumberOfBanks: 1
[  1247.146]     MemoryModel: 6
[  1247.146]     BankSize: 0
[  1247.146]     NumberOfImages: 2
[  1247.146]     RedMaskSize: 5
[  1247.146]     RedFieldPosition: 11
[  1247.146]     GreenMaskSize: 6
[  1247.146]     GreenFieldPosition: 5
[  1247.146]     BlueMaskSize: 5
[  1247.146]     BlueFieldPosition: 0
[  1247.146]     RsvdMaskSize: 0
[  1247.146]     RsvdFieldPosition: 0
[  1247.146]     DirectColorModeInfo: 0
[  1247.146]     PhysBasePtr: 0xd0000000
[  1247.146]     LinBytesPerScanLine: 3712
[  1247.146]     BnkNumberOfImagePages: 2
[  1247.146]     LinNumberOfImagePages: 2
[  1247.146]     LinRedMaskSize: 5
[  1247.146]     LinRedFieldPosition: 11
[  1247.146]     LinGreenMaskSize: 6
[  1247.146]     LinGreenFieldPosition: 5
[  1247.146]     LinBlueMaskSize: 5
[  1247.146]     LinBlueFieldPosition: 0
[  1247.146]     LinRsvdMaskSize: 0
[  1247.146]     LinRsvdFieldPosition: 0
[  1247.146]     MaxPixelClock: 400000000
[  1247.147] *Mode: 1d6 (1856x1392)
[  1247.147]     ModeAttributes: 0xbb
[  1247.147]     WinAAttributes: 0x7
[  1247.147]     WinBAttributes: 0x0
[  1247.147]     WinGranularity: 64
[  1247.147]     WinSize: 64
[  1247.147]     WinASegment: 0xa000
[  1247.147]     WinBSegment: 0x0
[  1247.147]     WinFuncPtr: 0xc0005283
[  1247.147]     BytesPerScanline: 7424
[  1247.147]     XResolution: 1856
[  1247.147]     YResolution: 1392
[  1247.147]     XCharSize: 8
[  1247.147]     YCharSize: 16
[  1247.147]     NumberOfPlanes: 1
[  1247.147]     BitsPerPixel: 32
[  1247.147]     NumberOfBanks: 1
[  1247.147]     MemoryModel: 6
[  1247.147]     BankSize: 0
[  1247.147]     NumberOfImages: 1
[  1247.147]     RedMaskSize: 8
[  1247.147]     RedFieldPosition: 16
[  1247.147]     GreenMaskSize: 8
[  1247.147]     GreenFieldPosition: 8
[  1247.147]     BlueMaskSize: 8
[  1247.148]     BlueFieldPosition: 0
[  1247.148]     RsvdMaskSize: 0
[  1247.148]     RsvdFieldPosition: 0
[  1247.148]     DirectColorModeInfo: 0
[  1247.148]     PhysBasePtr: 0xd0000000
[  1247.148]     LinBytesPerScanLine: 7424
[  1247.148]     BnkNumberOfImagePages: 1
[  1247.148]     LinNumberOfImagePages: 1
[  1247.148]     LinRedMaskSize: 8
[  1247.148]     LinRedFieldPosition: 16
[  1247.148]     LinGreenMaskSize: 8
[  1247.148]     LinGreenFieldPosition: 8
[  1247.148]     LinBlueMaskSize: 8
[  1247.148]     LinBlueFieldPosition: 0
[  1247.148]     LinRsvdMaskSize: 0
[  1247.148]     LinRsvdFieldPosition: 0
[  1247.148]     MaxPixelClock: 400000000
[  1247.149] Mode: 1e3 (1920x1440)
[  1247.149]     ModeAttributes: 0xbb
[  1247.149]     WinAAttributes: 0x7
[  1247.149]     WinBAttributes: 0x0
[  1247.149]     WinGranularity: 64
[  1247.149]     WinSize: 64
[  1247.149]     WinASegment: 0xa000
[  1247.149]     WinBSegment: 0x0
[  1247.149]     WinFuncPtr: 0xc0005283
[  1247.149]     BytesPerScanline: 1920
[  1247.149]     XResolution: 1920
[  1247.149]     YResolution: 1440
[  1247.149]     XCharSize: 8
[  1247.149]     YCharSize: 16
[  1247.149]     NumberOfPlanes: 1
[  1247.149]     BitsPerPixel: 8
[  1247.149]     NumberOfBanks: 1
[  1247.149]     MemoryModel: 4
[  1247.149]     BankSize: 0
[  1247.149]     NumberOfImages: 4
[  1247.149]     RedMaskSize: 0
[  1247.149]     RedFieldPosition: 0
[  1247.149]     GreenMaskSize: 0
[  1247.149]     GreenFieldPosition: 0
[  1247.149]     BlueMaskSize: 0
[  1247.149]     BlueFieldPosition: 0
[  1247.149]     RsvdMaskSize: 0
[  1247.149]     RsvdFieldPosition: 0
[  1247.149]     DirectColorModeInfo: 0
[  1247.149]     PhysBasePtr: 0xd0000000
[  1247.149]     LinBytesPerScanLine: 1920
[  1247.149]     BnkNumberOfImagePages: 4
[  1247.149]     LinNumberOfImagePages: 4
[  1247.149]     LinRedMaskSize: 0
[  1247.149]     LinRedFieldPosition: 0
[  1247.149]     LinGreenMaskSize: 0
[  1247.149]     LinGreenFieldPosition: 0
[  1247.149]     LinBlueMaskSize: 0
[  1247.149]     LinBlueFieldPosition: 0
[  1247.149]     LinRsvdMaskSize: 0
[  1247.149]     LinRsvdFieldPosition: 0
[  1247.149]     MaxPixelClock: 400000000
[  1247.150] Mode: 1e5 (1920x1440)
[  1247.150]     ModeAttributes: 0xbb
[  1247.150]     WinAAttributes: 0x7
[  1247.150]     WinBAttributes: 0x0
[  1247.150]     WinGranularity: 64
[  1247.150]     WinSize: 64
[  1247.150]     WinASegment: 0xa000
[  1247.150]     WinBSegment: 0x0
[  1247.150]     WinFuncPtr: 0xc0005283
[  1247.150]     BytesPerScanline: 3840
[  1247.150]     XResolution: 1920
[  1247.150]     YResolution: 1440
[  1247.150]     XCharSize: 8
[  1247.150]     YCharSize: 16
[  1247.150]     NumberOfPlanes: 1
[  1247.150]     BitsPerPixel: 16
[  1247.150]     NumberOfBanks: 1
[  1247.150]     MemoryModel: 6
[  1247.150]     BankSize: 0
[  1247.150]     NumberOfImages: 2
[  1247.150]     RedMaskSize: 5
[  1247.150]     RedFieldPosition: 11
[  1247.150]     GreenMaskSize: 6
[  1247.150]     GreenFieldPosition: 5
[  1247.150]     BlueMaskSize: 5
[  1247.150]     BlueFieldPosition: 0
[  1247.150]     RsvdMaskSize: 0
[  1247.150]     RsvdFieldPosition: 0
[  1247.150]     DirectColorModeInfo: 0
[  1247.150]     PhysBasePtr: 0xd0000000
[  1247.150]     LinBytesPerScanLine: 3840
[  1247.150]     BnkNumberOfImagePages: 2
[  1247.150]     LinNumberOfImagePages: 2
[  1247.150]     LinRedMaskSize: 5
[  1247.150]     LinRedFieldPosition: 11
[  1247.150]     LinGreenMaskSize: 6
[  1247.150]     LinGreenFieldPosition: 5
[  1247.150]     LinBlueMaskSize: 5
[  1247.150]     LinBlueFieldPosition: 0
[  1247.150]     LinRsvdMaskSize: 0
[  1247.150]     LinRsvdFieldPosition: 0
[  1247.150]     MaxPixelClock: 400000000
[  1247.152] *Mode: 1e6 (1920x1440)
[  1247.152]     ModeAttributes: 0xbb
[  1247.152]     WinAAttributes: 0x7
[  1247.152]     WinBAttributes: 0x0
[  1247.152]     WinGranularity: 64
[  1247.152]     WinSize: 64
[  1247.152]     WinASegment: 0xa000
[  1247.152]     WinBSegment: 0x0
[  1247.152]     WinFuncPtr: 0xc0005283
[  1247.152]     BytesPerScanline: 7680
[  1247.152]     XResolution: 1920
[  1247.152]     YResolution: 1440
[  1247.152]     XCharSize: 8
[  1247.152]     YCharSize: 16
[  1247.152]     NumberOfPlanes: 1
[  1247.152]     BitsPerPixel: 32
[  1247.152]     NumberOfBanks: 1
[  1247.152]     MemoryModel: 6
[  1247.152]     BankSize: 0
[  1247.152]     NumberOfImages: 1
[  1247.152]     RedMaskSize: 8
[  1247.152]     RedFieldPosition: 16
[  1247.152]     GreenMaskSize: 8
[  1247.152]     GreenFieldPosition: 8
[  1247.152]     BlueMaskSize: 8
[  1247.152]     BlueFieldPosition: 0
[  1247.152]     RsvdMaskSize: 0
[  1247.152]     RsvdFieldPosition: 0
[  1247.152]     DirectColorModeInfo: 0
[  1247.152]     PhysBasePtr: 0xd0000000
[  1247.152]     LinBytesPerScanLine: 7680
[  1247.152]     BnkNumberOfImagePages: 1
[  1247.152]     LinNumberOfImagePages: 1
[  1247.152]     LinRedMaskSize: 8
[  1247.152]     LinRedFieldPosition: 16
[  1247.152]     LinGreenMaskSize: 8
[  1247.152]     LinGreenFieldPosition: 8
[  1247.152]     LinBlueMaskSize: 8
[  1247.152]     LinBlueFieldPosition: 0
[  1247.152]     LinRsvdMaskSize: 0
[  1247.152]     LinRsvdFieldPosition: 0
[  1247.152]     MaxPixelClock: 400000000
[  1247.152] 
[  1247.152] (II) VESA(0): Total Memory: 256 64KB banks (16384kB)
[  1247.152] (II) VESA(0): Monitor0: Using hsync range of 30.00-83.00 kHz
[  1247.152] (II) VESA(0): Monitor0: Using vrefresh range of 56.00-75.00 Hz
[  1247.152] (II) VESA(0): Monitor0: Using maximum pixel clock of 155.00 MHz
[  1247.152] (II) VESA(0): Not using mode "1280x720_60.00" (no mode of this name)
[  1247.152] (II) VESA(0): Not using mode "1920x1080_60.00" (no mode of this name)
[  1247.152] (II) VESA(0): Not using built-in mode "1920x1440" (no mode of this name)
[  1247.152] (II) VESA(0): Not using built-in mode "1856x1392" (no mode of this name)
[  1247.152] (II) VESA(0): Not using built-in mode "1792x1344" (no mode of this name)
[  1247.152] (II) VESA(0): Not using built-in mode "1600x1200" (no mode of this name)
[  1247.152] (II) VESA(0): Not using built-in mode "1400x1050" (no mode of this name)
[  1247.153] (II) VESA(0): Not using built-in mode "640x350" (no mode of this name)
[  1247.153] (II) VESA(0): Not using built-in mode "512x384" (no mode of this name)
[  1247.153] (II) VESA(0): Not using built-in mode "320x240" (no mode of this name)
[  1247.153] (II) VESA(0): Not using built-in mode "320x200" (no mode of this name)
[  1247.153] (--) VESA(0): Virtual size is 1280x1024 (pitch 1280)
[  1247.153] (**) VESA(0):  Built-in mode "1280x1024"
[  1247.153] (**) VESA(0):  Built-in mode "1280x960"
[  1247.153] (**) VESA(0):  Built-in mode "1152x864"
[  1247.153] (**) VESA(0):  Built-in mode "1024x768"
[  1247.153] (**) VESA(0):  Built-in mode "800x600"
[  1247.153] (**) VESA(0):  Built-in mode "640x480"
[  1247.153] (**) VESA(0):  Built-in mode "720x400"
[  1247.153] (**) VESA(0): Display dimensions: (480, 270) mm
[  1247.153] (**) VESA(0): DPI set to (67, 96)
[  1247.153] (**) VESA(0): Using "Shadow Framebuffer"
[  1247.153] (II) Loading sub module "shadow"
[  1247.153] (II) LoadModule: "shadow"
[  1247.153] (II) Loading /usr/lib/xorg/modules/libshadow.so
[  1247.153] (II) Module shadow: vendor="X.Org Foundation"
[  1247.153]     compiled for 1.10.3, module version = 1.1.0
[  1247.153]     ABI class: X.Org ANSI C Emulation, version 0.4
[  1247.153] (II) Loading sub module "fb"
[  1247.153] (II) LoadModule: "fb"
[  1247.153] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1247.153] (II) Module fb: vendor="X.Org Foundation"
[  1247.153]     compiled for 1.10.3, module version = 1.0.0
[  1247.153]     ABI class: X.Org ANSI C Emulation, version 0.4
[  1247.153] (==) Depth 24 pixmap format is 32 bpp
[  1247.153] (II) Loading sub module "int10"
[  1247.153] (II) LoadModule: "int10"
[  1247.153] (II) Loading /usr/lib/xorg/modules/libint10.so
[  1247.153] (II) Module int10: vendor="X.Org Foundation"
[  1247.153]     compiled for 1.10.3, module version = 1.0.0
[  1247.153]     ABI class: X.Org Video Driver, version 10.0
[  1247.153] (II) VESA(0): initializing int10
[  1247.158] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[  1247.158] (II) VESA(0): VESA BIOS detected
[  1247.158] (II) VESA(0): VESA VBE Version 3.0
[  1247.158] (II) VESA(0): VESA VBE Total Mem: 16384 kB
[  1247.158] (II) VESA(0): VESA VBE OEM: ATI ATOMBIOS
[  1247.158] (II) VESA(0): VESA VBE OEM Software Rev: 12.17
[  1247.158] (II) VESA(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc. 
[  1247.158] (II) VESA(0): VESA VBE OEM Product: REDWOOD
[  1247.158] (II) VESA(0): VESA VBE OEM Product Rev: 01.00
[  1247.160] (II) VESA(0): virtual address = 0x7fc6d18a8000,
    physical address = 0xd0000000, size = 16777216
[  1247.172] (II) VESA(0): Setting up VESA Mode 0x124 (1280x1024)
[  1247.173] (II) VESA(0): VBESetVBEMode failed, mode set without customized refresh.
[  1247.456] (==) VESA(0): Default visual is TrueColor
[  1247.457] (==) VESA(0): Backing store disabled
[  1247.457] (**) VESA(0): DPMS enabled
[  1247.457] (==) RandR enabled
[  1247.457] (II) Initializing built-in extension Generic Event Extension
[  1247.457] (II) Initializing built-in extension SHAPE
[  1247.457] (II) Initializing built-in extension MIT-SHM
[  1247.457] (II) Initializing built-in extension XInputExtension
[  1247.457] (II) Initializing built-in extension XTEST
[  1247.457] (II) Initializing built-in extension BIG-REQUESTS
[  1247.457] (II) Initializing built-in extension SYNC
[  1247.457] (II) Initializing built-in extension XKEYBOARD
[  1247.457] (II) Initializing built-in extension XC-MISC
[  1247.457] (II) Initializing built-in extension SECURITY
[  1247.457] (II) Initializing built-in extension XINERAMA
[  1247.457] (II) Initializing built-in extension XFIXES
[  1247.457] (II) Initializing built-in extension RENDER
[  1247.457] (II) Initializing built-in extension RANDR
[  1247.457] (II) Initializing built-in extension COMPOSITE
[  1247.457] (II) Initializing built-in extension DAMAGE
[  1247.461] (II) AIGLX: Screen 0 is not DRI2 capable
[  1247.461] (II) AIGLX: Screen 0 is not DRI capable
[  1247.463] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
[  1247.463] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[  1247.552] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[  1247.552] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1247.552] (II) LoadModule: "evdev"
[  1247.552] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1247.552] (II) Module evdev: vendor="X.Org Foundation"
[  1247.552]     compiled for 1.10.0, module version = 2.6.0
[  1247.552]     Module class: X.Org XInput Driver
[  1247.552]     ABI class: X.Org XInput driver, version 12.2
[  1247.552] (II) Using input driver 'evdev' for 'Power Button'
[  1247.552] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1247.552] (**) Power Button: always reports core events
[  1247.552] (**) Power Button: Device: "/dev/input/event2"
[  1247.583] (--) Power Button: Found keys
[  1247.583] (II) Power Button: Configuring as keyboard
[  1247.583] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[  1247.583] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[  1247.583] (**) Option "xkb_rules" "evdev"
[  1247.583] (**) Option "xkb_model" "evdev"
[  1247.583] (**) Option "xkb_layout" "gb"
[  1247.583] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1247.603] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  1247.603] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1247.603] (II) Using input driver 'evdev' for 'Power Button'
[  1247.603] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1247.603] (**) Power Button: always reports core events
[  1247.603] (**) Power Button: Device: "/dev/input/event1"
[  1247.626] (--) Power Button: Found keys
[  1247.626] (II) Power Button: Configuring as keyboard
[  1247.626] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
[  1247.626] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[  1247.626] (**) Option "xkb_rules" "evdev"
[  1247.626] (**) Option "xkb_model" "evdev"
[  1247.626] (**) Option "xkb_layout" "gb"
[  1247.626] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1247.634] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[  1247.634] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  1247.634] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  1247.634] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1247.634] (**) AT Translated Set 2 keyboard: always reports core events
[  1247.634] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[  1247.653] (--) AT Translated Set 2 keyboard: Found keys
[  1247.653] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[  1247.653] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[  1247.653] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[  1247.653] (**) Option "xkb_rules" "evdev"
[  1247.653] (**) Option "xkb_model" "evdev"
[  1247.653] (**) Option "xkb_layout" "gb"
[  1247.653] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1247.653] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/event4)
[  1247.653] (**) ImPS/2 Generic Wheel Mouse: Applying InputClass "evdev pointer catchall"
[  1247.653] (II) Using input driver 'evdev' for 'ImPS/2 Generic Wheel Mouse'
[  1247.653] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1247.653] (**) ImPS/2 Generic Wheel Mouse: always reports core events
[  1247.653] (**) ImPS/2 Generic Wheel Mouse: Device: "/dev/input/event4"
[  1247.679] (--) ImPS/2 Generic Wheel Mouse: Found 3 mouse buttons
[  1247.679] (--) ImPS/2 Generic Wheel Mouse: Found scroll wheel(s)
[  1247.679] (--) ImPS/2 Generic Wheel Mouse: Found relative axes
[  1247.679] (--) ImPS/2 Generic Wheel Mouse: Found x and y relative axes
[  1247.679] (II) ImPS/2 Generic Wheel Mouse: Configuring as mouse
[  1247.679] (II) ImPS/2 Generic Wheel Mouse: Adding scrollwheel support
[  1247.679] (**) ImPS/2 Generic Wheel Mouse: YAxisMapping: buttons 4 and 5
[  1247.679] (**) ImPS/2 Generic Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  1247.679] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input4/event4"
[  1247.679] (II) XINPUT: Adding extended input device "ImPS/2 Generic Wheel Mouse" (type: MOUSE)
[  1247.680] (II) ImPS/2 Generic Wheel Mouse: initialized for relative axes.
[  1247.680] (**) ImPS/2 Generic Wheel Mouse: (accel) keeping acceleration scheme 1
[  1247.680] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration profile 0
[  1247.680] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration factor: 2.000
[  1247.680] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration threshold: 4
[  1247.680] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/mouse0)
[  1247.680] (II) No input driver/identifier specified (ignoring)
[  1247.680] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
[  1247.680] (II) No input driver/identifier specified (ignoring)

I don't seem to be getting anywhere with this ATI card. I think I'll buy an Nvidia card. Does that seem like a sensible proposition?

Cheers,
Gerald.

Offline

#29 2011-08-05 13:28:09

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 13,373

Re: Kernel crash 2.6.39 - is there a fix?

Since ScottM and Fuzzo had similar problems with different video cars then you ( intel / nividia ) i'm not so sure the problem is with the ati card / drivers.

Mesa 7.11 has finally landed in the repos, and it has lots of improvements over 7.10 .
Edenyard, I suggest you do a full upgrade, switch back to the radeon driver and tell us if the problem persists.


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#30 2011-08-06 09:38:49

edenyard
Member
From: East Anglia, UK
Registered: 2011-05-09
Posts: 23

Re: Kernel crash 2.6.39 - is there a fix?

Well - so far as my version of the problem is concerned, it's all come to a head: the PC wouldn't boot at all from cold in the morning. The 2-digit display on the Asrock mobo was just cycling round the first few codes continuously. Eventually (after several minutes) it did break out of that loop and boot Arch. Then I just happened to tap the top of the CPU heatsink while glxgears was running and it crashed spectacularly.

I unclipped the heatsink and tried to lift it out but it was stuck fast to the top of the CPU. Eventually the heatsink dragged the CPU out with it, even though the CPU socket was still locked. I managed to prise the CPU from the heatsink - the grey goo supplied on the heatsink had set rock solid. Bear in mind that this was an AMD heatsink supplied with the AMD CPU. I cleaned the grey goo from the heatsink and CPU using some IPA and then used ordinary heatsink compound in reassembly.

I powered it up and and it booted without any trouble. Tapping the heatsink doesn't appear to provoke any problems now. I've kept a close eye on the CPU temperature but it seems normal. I reinstated the xf86-video-ati driver and, so far, it's run for 2 days without any problems at all....

I suspect that the heatsink may have been slightly crooked on its mounting clip when first installed from new and the grey goo had set hard with it in that position, which possibly put a lateral force on the CPU. Hopefully the compound I've used won't set hard, so it will allow the heatsink to settle down into a comfortable position without trying to drag the CPU with it. Time will undoubtedly tell!

Moral of the story: if the PC crashes spuriously and memtest86 doesn't reveal any problems, try tapping around the mobo assembly (main board, CPU, plug-in cards, etc.) while a program is running and see whether that provokes a crash. If so, it's a hardware problem - maybe a dodgy connection somewhere.

Cheers,
Gerald.

Offline

Board footer

Powered by FluxBB