You are not logged in.

#1 2011-06-22 19:21:44

MatejLach
Member
From: United Kingdom
Registered: 2011-06-22
Posts: 314
Website

[SOLVED] Intel HD GPU Xorg configuration - HP Pavilion DM4

Hallo everybody,

I just dedicated to delete my Windows/Linux Mint dual-boot and switch installed Arch - (it was a bit radical step at first) and I'm loving it!
Everything seems to work fine, (just few tweaks needed), but I am really struggling with Intel HD Graphics Driver support.
I did searched for many topics on Arch forums and on the web, but without any luck.
So here is the situation:

Xorg does not want to use xf86-video-intel ('intel') driver. Instead it is just using VESA.

Laptop Model: HP Pavilion DM4 1150ea Core i5

Here is lspci output:

00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02)
00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02)
00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
00:1a.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05)
00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05)
00:1d.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5)
00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03)
02:00.0 Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01)
ff:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 05)
ff:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 05)
ff:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 05)
ff:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 05)
ff:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 05)
ff:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 05)

Here are tech specs of this laptop:
http://www.equanet.co.uk/catalogue/item/A0577078

And here is my /etc/X11/xorg.conf file:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    Screen      2  "Screen2" RightOf "Screen1"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc/"
    FontPath     "/usr/share/fonts/TTF/"
    FontPath     "/usr/share/fonts/OTF/"
    FontPath     "/usr/share/fonts/Type1/"
    FontPath     "/usr/share/fonts/100dpi/"
    FontPath     "/usr/share/fonts/75dpi/"
EndSection

Section "Module"
    Load  "dri"
    Load  "glx"
    Load  "extmod"
    Load  "record"
    Load  "dbe"
    Load  "dri2"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
    Identifier   "Monitor2"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "DRI"                    # [<bool>]
        #Option     "ColorKey"               # <i>
        #Option     "VideoKey"               # <i>
        #Option     "FallbackDebug"          # [<bool>]
        #Option     "Tiling"                 # [<bool>]
        #Option     "LinearFramebuffer"      # [<bool>]
        #Option     "Shadow"                 # [<bool>]
        #Option     "SwapbuffersWait"        # [<bool>]
        #Option     "XvMC"                   # [<bool>]
        #Option     "XvPreferOverlay"        # [<bool>]
        #Option     "DebugFlushBatches"      # [<bool>]
        #Option     "DebugFlushCaches"       # [<bool>]
        #Option     "DebugWait"              # [<bool>]
        #Option     "HotPlug"                # [<bool>]
        #Option     "RelaxedFencing"         # [<bool>]
    Identifier  "Card0"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"               # [<bool>]
        #Option     "Rotate"                 # <str>
        #Option     "fbdev"                  # <str>
        #Option     "debug"                  # [<bool>]
    Identifier  "Card1"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"               # [<bool>]
        #Option     "DefaultRefresh"         # [<bool>]
        #Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card2"
    Driver      "vesa"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen1"
    Device     "Card1"
    Monitor    "Monitor1"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen2"
    Device     "Card2"
    Monitor    "Monitor2"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Notes:

I've used ARCHBOOT 2011.05 for Arch installation.
I've set i915 modeset to 0, because of black screen at boot when using modeset.

I will be glad for any kind of help,
Thanks,
MTL,

Last edited by MatejLach (2011-06-23 09:51:16)

Offline

#2 2011-06-22 19:44:10

litemotiv
Forum Fellow
Registered: 2008-08-01
Posts: 5,026

Re: [SOLVED] Intel HD GPU Xorg configuration - HP Pavilion DM4

Can you try to move/rename the xorg.conf file and try again?

Oh and welcome to the forums! smile


ᶘ ᵒᴥᵒᶅ

Offline

#3 2011-06-22 19:55:47

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Intel HD GPU Xorg configuration - HP Pavilion DM4

litemotiv wrote:

Can you try to move/rename the xorg.conf file and try again?

+1
If you have further problems, please post some logs.

Offline

#4 2011-06-22 21:01:19

MatejLach
Member
From: United Kingdom
Registered: 2011-06-22
Posts: 314
Website

Re: [SOLVED] Intel HD GPU Xorg configuration - HP Pavilion DM4

Thanks for responses to both of you,

I did updated my kernel to 2.6..39.1 in a hope of better hardware support, but something went wrong.
When I am booting I see MODULES [FAIL] - that's certainly not something that I want to see, (but my laptop will continue to boot normally...).
Any idea on how to fix this?

I have deleted my xorg.conf file and I did pushed Xorg -configure command as root, but I've ended up with an error:

(EE) Open /dev/fb0: No such file or directory...

My Xorg log follows:

[   101.315] 
X.Org X Server 1.10.2
Release Date: 2011-05-28
[   101.315] X Protocol Version 11, Revision 0
[   101.315] Build Operating System: Linux 2.6.38-ARCH x86_64 
[   101.316] Current Operating System: Linux MTLXSys 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011 x86_64
[   101.316] Kernel command line: BOOT_IMAGE=//vmlinuz26 root=/dev/disk/by-uuid/88f35d2d-5020-46df-8b81-66135db5c33f rootfstype=ext4 ro add_efi_memmap i915.modeset=0
[   101.316] Build Date: 30 May 2011  08:47:00AM
[   101.316]  
[   101.316] Current version of pixman: 0.22.0
[   101.316]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[   101.317] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   101.318] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jun 22 22:31:34 2011
[   101.369] (==) Using config file: "/etc/X11/xorg.conf"
[   101.369] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   101.407] (==) ServerLayout "X.org Configured"
[   101.407] (**) |-->Screen "Screen0" (0)
[   101.407] (**) |   |-->Monitor "Monitor0"
[   101.407] (**) |   |-->Device "Card0"
[   101.407] (**) |-->Screen "Screen1" (1)
[   101.407] (**) |   |-->Monitor "Monitor1"
[   101.407] (**) |   |-->Device "Card1"
[   101.407] (**) |-->Screen "Screen2" (2)
[   101.407] (**) |   |-->Monitor "Monitor2"
[   101.407] (**) |   |-->Device "Card2"
[   101.407] (**) |-->Input Device "Mouse0"
[   101.407] (**) |-->Input Device "Keyboard0"
[   101.407] (==) Automatically adding devices
[   101.407] (==) Automatically enabling devices
[   101.431] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[   101.431]     Entry deleted from font path.
[   101.445] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   101.445]     Entry deleted from font path.
[   101.445]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   101.446] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   101.446]     Entry deleted from font path.
[   101.446]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   101.446] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[   101.446]     Entry deleted from font path.
[   101.446] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   101.446]     Entry deleted from font path.
[   101.446]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   101.446] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   101.446]     Entry deleted from font path.
[   101.446]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   101.446] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
[   101.446] (**) ModulePath set to "/usr/lib/xorg/modules"
[   101.446] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   101.446] (WW) Disabling Mouse0
[   101.446] (WW) Disabling Keyboard0
[   101.446] (II) Loader magic: 0x7d3440
[   101.446] (II) Module ABI versions:
[   101.446]     X.Org ANSI C Emulation: 0.4
[   101.446]     X.Org Video Driver: 10.0
[   101.446]     X.Org XInput driver : 12.2
[   101.446]     X.Org Server Extension : 5.0
[   101.446] (--) PCI:*(0:0:2:0) 8086:0046:103c:146a rev 2, Mem @ 0xb0000000/4194304, 0xa0000000/268435456, I/O @ 0x00003050/8
[   101.446] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   101.446] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[   101.446] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[   101.446] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[   101.446] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[   101.446] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[   101.446] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[   101.446] (II) LoadModule: "dri"
[   101.503] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[   101.522] (II) Module dri: vendor="X.Org Foundation"
[   101.522]     compiled for 1.10.2, module version = 1.0.0
[   101.522]     ABI class: X.Org Server Extension, version 5.0
[   101.522] (II) Loading extension XFree86-DRI
[   101.522] (II) LoadModule: "glx"
[   101.522] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   101.532] (II) Module glx: vendor="X.Org Foundation"
[   101.532]     compiled for 1.10.2, module version = 1.0.0
[   101.532]     ABI class: X.Org Server Extension, version 5.0
[   101.532] (==) AIGLX enabled
[   101.532] (II) Loading extension GLX
[   101.532] (II) LoadModule: "extmod"
[   101.532] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[   101.544] (II) Module extmod: vendor="X.Org Foundation"
[   101.544]     compiled for 1.10.2, module version = 1.0.0
[   101.544]     Module class: X.Org Server Extension
[   101.544]     ABI class: X.Org Server Extension, version 5.0
[   101.544] (II) Loading extension MIT-SCREEN-SAVER
[   101.544] (II) Loading extension XFree86-VidModeExtension
[   101.544] (II) Loading extension XFree86-DGA
[   101.544] (II) Loading extension DPMS
[   101.544] (II) Loading extension XVideo
[   101.544] (II) Loading extension XVideo-MotionCompensation
[   101.544] (II) Loading extension X-Resource
[   101.544] (II) LoadModule: "record"
[   101.544] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[   101.545] (II) Module record: vendor="X.Org Foundation"
[   101.545]     compiled for 1.10.2, module version = 1.13.0
[   101.545]     Module class: X.Org Server Extension
[   101.545]     ABI class: X.Org Server Extension, version 5.0
[   101.545] (II) Loading extension RECORD
[   101.545] (II) LoadModule: "dbe"
[   101.545] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[   101.546] (II) Module dbe: vendor="X.Org Foundation"
[   101.546]     compiled for 1.10.2, module version = 1.0.0
[   101.546]     Module class: X.Org Server Extension
[   101.546]     ABI class: X.Org Server Extension, version 5.0
[   101.546] (II) Loading extension DOUBLE-BUFFER
[   101.546] (II) LoadModule: "dri2"
[   101.546] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   101.546] (II) Module dri2: vendor="X.Org Foundation"
[   101.546]     compiled for 1.10.2, module version = 1.2.0
[   101.546]     ABI class: X.Org Server Extension, version 5.0
[   101.546] (II) Loading extension DRI2
[   101.546] (II) LoadModule: "intel"
[   101.546] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   101.562] (II) Module intel: vendor="X.Org Foundation"
[   101.562]     compiled for 1.10.2, module version = 2.15.0
[   101.562]     Module class: X.Org Video Driver
[   101.562]     ABI class: X.Org Video Driver, version 10.0
[   101.562] (II) LoadModule: "vesa"
[   101.562] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[   101.569] (II) Module vesa: vendor="X.Org Foundation"
[   101.569]     compiled for 1.10.0, module version = 2.3.0
[   101.569]     Module class: X.Org Video Driver
[   101.569]     ABI class: X.Org Video Driver, version 10.0
[   101.569] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
[   101.570] (II) VESA: driver for VESA chipsets: vesa
[   101.570] (--) using VT number 7

[   101.575] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[   101.575] (II) Loading sub module "vbe"
[   101.575] (II) LoadModule: "vbe"
[   101.575] (II) Loading /usr/lib/xorg/modules/libvbe.so
[   101.585] (II) Module vbe: vendor="X.Org Foundation"
[   101.585]     compiled for 1.10.2, module version = 1.1.0
[   101.585]     ABI class: X.Org Video Driver, version 10.0
[   101.585] (II) Loading sub module "int10"
[   101.585] (II) LoadModule: "int10"
[   101.585] (II) Loading /usr/lib/xorg/modules/libint10.so
[   101.593] (II) Module int10: vendor="X.Org Foundation"
[   101.593]     compiled for 1.10.2, module version = 1.0.0
[   101.593]     ABI class: X.Org Video Driver, version 10.0
[   101.593] (II) VESA(0): initializing int10
[   101.593] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[   101.593] (II) VESA(0): VESA BIOS detected
[   101.593] (II) VESA(0): VESA VBE Version 3.0
[   101.593] (II) VESA(0): VESA VBE Total Mem: 32704 kB
[   101.593] (II) VESA(0): VESA VBE OEM: Intel(R)Ironlake Mobile Graphics Chipset Accelerated VGA BIOS
[   101.593] (II) VESA(0): VESA VBE OEM Software Rev: 1.0
[   101.593] (II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
[   101.593] (II) VESA(0): VESA VBE OEM Product: Intel(R)Ironlake Mobile Graphics Controller
[   101.593] (II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
[   101.600] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
[   101.600] (==) VESA(0): RGB weight 888
[   101.600] (==) VESA(0): Default visual is TrueColor
[   101.600] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[   101.600] (II) Loading sub module "ddc"
[   101.600] (II) LoadModule: "ddc"
[   101.600] (II) Module "ddc" already built-in
[   101.600] (II) VESA(0): VESA VBE DDC supported
[   101.600] (II) VESA(0): VESA VBE DDC Level 2
[   101.600] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
[   101.612] (II) VESA(0): VESA VBE DDC read successfully
[   101.613] (II) VESA(0): Manufacturer: AUO  Model: 223c  Serial#: 0
[   101.613] (II) VESA(0): Year: 2010  Week: 0
[   101.613] (II) VESA(0): EDID Version: 1.4
[   101.613] (II) VESA(0): Digital Display Input
[   101.613] (II) VESA(0): 6 bits per channel
[   101.613] (II) VESA(0): Digital interface is undefined
[   101.613] (II) VESA(0): Max Image Size [cm]: horiz.: 31  vert.: 17
[   101.613] (II) VESA(0): Gamma: 2.20
[   101.613] (II) VESA(0): No DPMS capabilities specified
[   101.613] (II) VESA(0): Supported color encodings: RGB 4:4:4 
[   101.613] (II) VESA(0): First detailed timing is preferred mode
[   101.613] (II) VESA(0): Preferred mode is native pixel format and refresh rate
[   101.613] (II) VESA(0): redX: 0.607 redY: 0.349   greenX: 0.329 greenY: 0.550
[   101.613] (II) VESA(0): blueX: 0.147 blueY: 0.136   whiteX: 0.313 whiteY: 0.329
[   101.613] (II) VESA(0): Manufacturer's mask: 0
[   101.613] (II) VESA(0): Supported detailed timing:
[   101.613] (II) VESA(0): clock: 69.3 MHz   Image Size:  309 x 173 mm
[   101.613] (II) VESA(0): h_active: 1366  h_sync: 1404  h_sync_end 1426 h_blank_end 1436 h_border: 0
[   101.613] (II) VESA(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 803 v_border: 0
[   101.613] (II) VESA(0): Supported detailed timing:
[   101.613] (II) VESA(0): clock: 46.2 MHz   Image Size:  309 x 173 mm
[   101.613] (II) VESA(0): h_active: 1366  h_sync: 1404  h_sync_end 1426 h_blank_end 1436 h_border: 0
[   101.613] (II) VESA(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 803 v_border: 0
[   101.613] (II) VESA(0): Unknown vendor-specific block 2
[   101.613] (II) VESA(0): EDID (in hex):
[   101.613] (II) VESA(0):     00ffffffffffff0006af3c2200000000
[   101.613] (II) VESA(0):     00140104901f11780297f59b59548c25
[   101.613] (II) VESA(0):     22505400000001010101010101010101
[   101.613] (II) VESA(0):     010101010101121b5646500023302616
[   101.613] (II) VESA(0):     360035ad100000180c12564650002330
[   101.613] (II) VESA(0):     2616360035ad10000018000000000000
[   101.613] (II) VESA(0):     00000000000000000000000000000002
[   101.613] (II) VESA(0):     000c33f90a3c641f14226e202020007d
[   101.613] (II) VESA(0): EDID vendor "AUO", prod id 8764
[   101.613] (II) VESA(0): Printing DDC gathered Modelines:
[   101.613] (II) VESA(0): Modeline "1366x768"x0.0   69.30  1366 1404 1426 1436  768 771 777 803 -hsync -vsync (48.3 kHz)
[   101.613] (II) VESA(0): Modeline "1366x768"x0.0   46.20  1366 1404 1426 1436  768 771 777 803 -hsync -vsync (32.2 kHz)
[   101.613] (II) VESA(0): Searching for matching VESA mode(s):
[   101.613] Mode: 160 (0x0)
[   101.613]     ModeAttributes: 0x0
[   101.613]     WinAAttributes: 0x0
[   101.613]     WinBAttributes: 0x0
[   101.613]     WinGranularity: 0
[   101.613]     WinSize: 0
[   101.613]     WinASegment: 0x0
[   101.613]     WinBSegment: 0x0
[   101.613]     WinFuncPtr: 0x0
[   101.613]     BytesPerScanline: 0
[   101.613]     XResolution: 0
[   101.613]     YResolution: 0
[   101.613]     XCharSize: 0
[   101.613]     YCharSize: 0
[   101.613]     NumberOfPlanes: 0
[   101.613]     BitsPerPixel: 0
[   101.613]     NumberOfBanks: 0
[   101.613]     MemoryModel: 0
[   101.613]     BankSize: 0
[   101.613]     NumberOfImages: 0
[   101.613]     RedMaskSize: 0
[   101.613]     RedFieldPosition: 0
[   101.613]     GreenMaskSize: 0
[   101.613]     GreenFieldPosition: 0
[   101.613]     BlueMaskSize: 0
[   101.613]     BlueFieldPosition: 0
[   101.613]     RsvdMaskSize: 0
[   101.613]     RsvdFieldPosition: 0
[   101.613]     DirectColorModeInfo: 0
[   101.613]     PhysBasePtr: 0x0
[   101.613]     LinBytesPerScanLine: 0
[   101.613]     BnkNumberOfImagePages: 0
[   101.613]     LinNumberOfImagePages: 0
[   101.613]     LinRedMaskSize: 0
[   101.613]     LinRedFieldPosition: 0
[   101.613]     LinGreenMaskSize: 0
[   101.613]     LinGreenFieldPosition: 0
[   101.613]     LinBlueMaskSize: 0
[   101.613]     LinBlueFieldPosition: 0
[   101.613]     LinRsvdMaskSize: 0
[   101.613]     LinRsvdFieldPosition: 0
[   101.613]     MaxPixelClock: 0
[   101.613] Mode: 161 (0x0)
[   101.613]     ModeAttributes: 0x0
[   101.613]     WinAAttributes: 0x0
[   101.613]     WinBAttributes: 0x0
[   101.613]     WinGranularity: 0
[   101.613]     WinSize: 0
[   101.613]     WinASegment: 0x0
[   101.613]     WinBSegment: 0x0
[   101.613]     WinFuncPtr: 0x0
[   101.613]     BytesPerScanline: 0
[   101.613]     XResolution: 0
[   101.613]     YResolution: 0
[   101.613]     XCharSize: 0
[   101.613]     YCharSize: 0
[   101.613]     NumberOfPlanes: 0
[   101.613]     BitsPerPixel: 0
[   101.613]     NumberOfBanks: 0
[   101.613]     MemoryModel: 0
[   101.613]     BankSize: 0
[   101.613]     NumberOfImages: 0
[   101.613]     RedMaskSize: 0
[   101.613]     RedFieldPosition: 0
[   101.613]     GreenMaskSize: 0
[   101.613]     GreenFieldPosition: 0
[   101.613]     BlueMaskSize: 0
[   101.613]     BlueFieldPosition: 0
[   101.613]     RsvdMaskSize: 0
[   101.613]     RsvdFieldPosition: 0
[   101.613]     DirectColorModeInfo: 0
[   101.613]     PhysBasePtr: 0x0
[   101.613]     LinBytesPerScanLine: 0
[   101.613]     BnkNumberOfImagePages: 0
[   101.613]     LinNumberOfImagePages: 0
[   101.613]     LinRedMaskSize: 0
[   101.613]     LinRedFieldPosition: 0
[   101.613]     LinGreenMaskSize: 0
[   101.613]     LinGreenFieldPosition: 0
[   101.613]     LinBlueMaskSize: 0
[   101.613]     LinBlueFieldPosition: 0
[   101.613]     LinRsvdMaskSize: 0
[   101.613]     LinRsvdFieldPosition: 0
[   101.613]     MaxPixelClock: 0
[   101.613] Mode: 162 (0x0)
[   101.613]     ModeAttributes: 0x0
[   101.613]     WinAAttributes: 0x0
[   101.613]     WinBAttributes: 0x0
[   101.613]     WinGranularity: 0
[   101.613]     WinSize: 0
[   101.613]     WinASegment: 0x0
[   101.613]     WinBSegment: 0x0
[   101.613]     WinFuncPtr: 0x0
[   101.613]     BytesPerScanline: 0
[   101.613]     XResolution: 0
[   101.613]     YResolution: 0
[   101.614]     XCharSize: 0
[   101.614]     YCharSize: 0
[   101.614]     NumberOfPlanes: 0
[   101.614]     BitsPerPixel: 0
[   101.614]     NumberOfBanks: 0
[   101.614]     MemoryModel: 0
[   101.614]     BankSize: 0
[   101.614]     NumberOfImages: 0
[   101.614]     RedMaskSize: 0
[   101.614]     RedFieldPosition: 0
[   101.614]     GreenMaskSize: 0
[   101.614]     GreenFieldPosition: 0
[   101.614]     BlueMaskSize: 0
[   101.614]     BlueFieldPosition: 0
[   101.614]     RsvdMaskSize: 0
[   101.614]     RsvdFieldPosition: 0
[   101.614]     DirectColorModeInfo: 0
[   101.614]     PhysBasePtr: 0x0
[   101.614]     LinBytesPerScanLine: 0
[   101.614]     BnkNumberOfImagePages: 0
[   101.614]     LinNumberOfImagePages: 0
[   101.614]     LinRedMaskSize: 0
[   101.614]     LinRedFieldPosition: 0
[   101.614]     LinGreenMaskSize: 0
[   101.614]     LinGreenFieldPosition: 0
[   101.614]     LinBlueMaskSize: 0
[   101.614]     LinBlueFieldPosition: 0
[   101.614]     LinRsvdMaskSize: 0
[   101.614]     LinRsvdFieldPosition: 0
[   101.614]     MaxPixelClock: 0
[   101.614] Mode: 163 (1366x768)
[   101.614]     ModeAttributes: 0x9b
[   101.614]     WinAAttributes: 0x7
[   101.614]     WinBAttributes: 0x0
[   101.614]     WinGranularity: 64
[   101.614]     WinSize: 64
[   101.614]     WinASegment: 0xa000
[   101.614]     WinBSegment: 0x0
[   101.614]     WinFuncPtr: 0xc00082f5
[   101.614]     BytesPerScanline: 1408
[   101.614]     XResolution: 1366
[   101.614]     YResolution: 768
[   101.614]     XCharSize: 8
[   101.614]     YCharSize: 16
[   101.614]     NumberOfPlanes: 1
[   101.614]     BitsPerPixel: 8
[   101.614]     NumberOfBanks: 1
[   101.614]     MemoryModel: 4
[   101.614]     BankSize: 0
[   101.614]     NumberOfImages: 29
[   101.614]     RedMaskSize: 0
[   101.614]     RedFieldPosition: 0
[   101.614]     GreenMaskSize: 0
[   101.614]     GreenFieldPosition: 0
[   101.614]     BlueMaskSize: 0
[   101.614]     BlueFieldPosition: 0
[   101.614]     RsvdMaskSize: 0
[   101.614]     RsvdFieldPosition: 0
[   101.614]     DirectColorModeInfo: 0
[   101.614]     PhysBasePtr: 0xa0000000
[   101.614]     LinBytesPerScanLine: 1408
[   101.614]     BnkNumberOfImagePages: 29
[   101.614]     LinNumberOfImagePages: 29
[   101.614]     LinRedMaskSize: 0
[   101.614]     LinRedFieldPosition: 0
[   101.614]     LinGreenMaskSize: 0
[   101.614]     LinGreenFieldPosition: 0
[   101.614]     LinBlueMaskSize: 0
[   101.614]     LinBlueFieldPosition: 0
[   101.614]     LinRsvdMaskSize: 0
[   101.614]     LinRsvdFieldPosition: 0
[   101.614]     MaxPixelClock: 230000000
[   101.614] Mode: 164 (1366x768)
[   101.614]     ModeAttributes: 0x9b
[   101.614]     WinAAttributes: 0x7
[   101.614]     WinBAttributes: 0x0
[   101.614]     WinGranularity: 64
[   101.614]     WinSize: 64
[   101.614]     WinASegment: 0xa000
[   101.614]     WinBSegment: 0x0
[   101.614]     WinFuncPtr: 0xc00082f5
[   101.615]     BytesPerScanline: 2752
[   101.615]     XResolution: 1366
[   101.615]     YResolution: 768
[   101.615]     XCharSize: 8
[   101.615]     YCharSize: 16
[   101.615]     NumberOfPlanes: 1
[   101.615]     BitsPerPixel: 16
[   101.615]     NumberOfBanks: 1
[   101.615]     MemoryModel: 6
[   101.615]     BankSize: 0
[   101.615]     NumberOfImages: 14
[   101.615]     RedMaskSize: 5
[   101.615]     RedFieldPosition: 11
[   101.615]     GreenMaskSize: 6
[   101.615]     GreenFieldPosition: 5
[   101.615]     BlueMaskSize: 5
[   101.615]     BlueFieldPosition: 0
[   101.615]     RsvdMaskSize: 0
[   101.615]     RsvdFieldPosition: 0
[   101.615]     DirectColorModeInfo: 0
[   101.615]     PhysBasePtr: 0xa0000000
[   101.615]     LinBytesPerScanLine: 2752
[   101.615]     BnkNumberOfImagePages: 14
[   101.615]     LinNumberOfImagePages: 14
[   101.615]     LinRedMaskSize: 5
[   101.615]     LinRedFieldPosition: 11
[   101.615]     LinGreenMaskSize: 6
[   101.615]     LinGreenFieldPosition: 5
[   101.615]     LinBlueMaskSize: 5
[   101.615]     LinBlueFieldPosition: 0
[   101.615]     LinRsvdMaskSize: 0
[   101.615]     LinRsvdFieldPosition: 0
[   101.615]     MaxPixelClock: 230000000
[   101.615] *Mode: 165 (1366x768)
[   101.615]     ModeAttributes: 0x9b
[   101.615]     WinAAttributes: 0x7
[   101.615]     WinBAttributes: 0x0
[   101.615]     WinGranularity: 64
[   101.615]     WinSize: 64
[   101.615]     WinASegment: 0xa000
[   101.615]     WinBSegment: 0x0
[   101.615]     WinFuncPtr: 0xc00082f5
[   101.615]     BytesPerScanline: 5504
[   101.615]     XResolution: 1366
[   101.615]     YResolution: 768
[   101.615]     XCharSize: 8
[   101.615]     YCharSize: 16
[   101.615]     NumberOfPlanes: 1
[   101.615]     BitsPerPixel: 32
[   101.615]     NumberOfBanks: 1
[   101.615]     MemoryModel: 6
[   101.615]     BankSize: 0
[   101.615]     NumberOfImages: 6
[   101.615]     RedMaskSize: 8
[   101.615]     RedFieldPosition: 16
[   101.615]     GreenMaskSize: 8
[   101.615]     GreenFieldPosition: 8
[   101.615]     BlueMaskSize: 8
[   101.615]     BlueFieldPosition: 0
[   101.615]     RsvdMaskSize: 8
[   101.615]     RsvdFieldPosition: 24
[   101.615]     DirectColorModeInfo: 0
[   101.615]     PhysBasePtr: 0xa0000000
[   101.615]     LinBytesPerScanLine: 5504
[   101.615]     BnkNumberOfImagePages: 6
[   101.615]     LinNumberOfImagePages: 6
[   101.615]     LinRedMaskSize: 8
[   101.615]     LinRedFieldPosition: 16
[   101.615]     LinGreenMaskSize: 8
[   101.615]     LinGreenFieldPosition: 8
[   101.615]     LinBlueMaskSize: 8
[   101.615]     LinBlueFieldPosition: 0
[   101.615]     LinRsvdMaskSize: 8
[   101.615]     LinRsvdFieldPosition: 24
[   101.615]     MaxPixelClock: 230000000
[   101.615] Mode: 166 (0x0)
[   101.615]     ModeAttributes: 0x0
[   101.615]     WinAAttributes: 0x0
[   101.615]     WinBAttributes: 0x0
[   101.615]     WinGranularity: 0
[   101.615]     WinSize: 0
[   101.615]     WinASegment: 0x0
[   101.615]     WinBSegment: 0x0
[   101.615]     WinFuncPtr: 0x0
[   101.615]     BytesPerScanline: 0
[   101.615]     XResolution: 0
[   101.615]     YResolution: 0
[   101.615]     XCharSize: 0
[   101.615]     YCharSize: 0
[   101.615]     NumberOfPlanes: 0
[   101.615]     BitsPerPixel: 0
[   101.615]     NumberOfBanks: 0
[   101.615]     MemoryModel: 0
[   101.615]     BankSize: 0
[   101.615]     NumberOfImages: 0
[   101.615]     RedMaskSize: 0
[   101.615]     RedFieldPosition: 0
[   101.615]     GreenMaskSize: 0
[   101.615]     GreenFieldPosition: 0
[   101.615]     BlueMaskSize: 0
[   101.615]     BlueFieldPosition: 0
[   101.615]     RsvdMaskSize: 0
[   101.615]     RsvdFieldPosition: 0
[   101.615]     DirectColorModeInfo: 0
[   101.615]     PhysBasePtr: 0x0
[   101.615]     LinBytesPerScanLine: 0
[   101.615]     BnkNumberOfImagePages: 0
[   101.615]     LinNumberOfImagePages: 0
[   101.615]     LinRedMaskSize: 0
[   101.615]     LinRedFieldPosition: 0
[   101.615]     LinGreenMaskSize: 0
[   101.615]     LinGreenFieldPosition: 0
[   101.615]     LinBlueMaskSize: 0
[   101.615]     LinBlueFieldPosition: 0
[   101.615]     LinRsvdMaskSize: 0
[   101.615]     LinRsvdFieldPosition: 0
[   101.615]     MaxPixelClock: 0
[   101.616] Mode: 167 (0x0)
[   101.616]     ModeAttributes: 0x0
[   101.616]     WinAAttributes: 0x0
[   101.616]     WinBAttributes: 0x0
[   101.616]     WinGranularity: 0
[   101.616]     WinSize: 0
[   101.616]     WinASegment: 0x0
[   101.616]     WinBSegment: 0x0
[   101.616]     WinFuncPtr: 0x0
[   101.616]     BytesPerScanline: 0
[   101.616]     XResolution: 0
[   101.616]     YResolution: 0
[   101.616]     XCharSize: 0
[   101.616]     YCharSize: 0
[   101.616]     NumberOfPlanes: 0
[   101.616]     BitsPerPixel: 0
[   101.616]     NumberOfBanks: 0
[   101.616]     MemoryModel: 0
[   101.616]     BankSize: 0
[   101.616]     NumberOfImages: 0
[   101.616]     RedMaskSize: 0
[   101.616]     RedFieldPosition: 0
[   101.616]     GreenMaskSize: 0
[   101.616]     GreenFieldPosition: 0
[   101.616]     BlueMaskSize: 0
[   101.616]     BlueFieldPosition: 0
[   101.616]     RsvdMaskSize: 0
[   101.616]     RsvdFieldPosition: 0
[   101.616]     DirectColorModeInfo: 0
[   101.616]     PhysBasePtr: 0x0
[   101.616]     LinBytesPerScanLine: 0
[   101.616]     BnkNumberOfImagePages: 0
[   101.616]     LinNumberOfImagePages: 0
[   101.616]     LinRedMaskSize: 0
[   101.616]     LinRedFieldPosition: 0
[   101.616]     LinGreenMaskSize: 0
[   101.616]     LinGreenFieldPosition: 0
[   101.616]     LinBlueMaskSize: 0
[   101.616]     LinBlueFieldPosition: 0
[   101.616]     LinRsvdMaskSize: 0
[   101.616]     LinRsvdFieldPosition: 0
[   101.616]     MaxPixelClock: 0
[   101.616] Mode: 168 (0x0)
[   101.616]     ModeAttributes: 0x0
[   101.616]     WinAAttributes: 0x0
[   101.616]     WinBAttributes: 0x0
[   101.616]     WinGranularity: 0
[   101.616]     WinSize: 0
[   101.616]     WinASegment: 0x0
[   101.616]     WinBSegment: 0x0
[   101.616]     WinFuncPtr: 0x0
[   101.616]     BytesPerScanline: 0
[   101.616]     XResolution: 0
[   101.616]     YResolution: 0
[   101.616]     XCharSize: 0
[   101.616]     YCharSize: 0
[   101.616]     NumberOfPlanes: 0
[   101.616]     BitsPerPixel: 0
[   101.616]     NumberOfBanks: 0
[   101.616]     MemoryModel: 0
[   101.616]     BankSize: 0
[   101.616]     NumberOfImages: 0
[   101.616]     RedMaskSize: 0
[   101.616]     RedFieldPosition: 0
[   101.616]     GreenMaskSize: 0
[   101.616]     GreenFieldPosition: 0
[   101.616]     BlueMaskSize: 0
[   101.616]     BlueFieldPosition: 0
[   101.616]     RsvdMaskSize: 0
[   101.616]     RsvdFieldPosition: 0
[   101.616]     DirectColorModeInfo: 0
[   101.616]     PhysBasePtr: 0x0
[   101.616]     LinBytesPerScanLine: 0
[   101.616]     BnkNumberOfImagePages: 0
[   101.616]     LinNumberOfImagePages: 0
[   101.616]     LinRedMaskSize: 0
[   101.616]     LinRedFieldPosition: 0
[   101.616]     LinGreenMaskSize: 0
[   101.616]     LinGreenFieldPosition: 0
[   101.616]     LinBlueMaskSize: 0
[   101.616]     LinBlueFieldPosition: 0
[   101.616]     LinRsvdMaskSize: 0
[   101.616]     LinRsvdFieldPosition: 0
[   101.616]     MaxPixelClock: 0
[   101.616] Mode: 169 (0x0)
[   101.616]     ModeAttributes: 0x0
[   101.616]     WinAAttributes: 0x0
[   101.616]     WinBAttributes: 0x0
[   101.616]     WinGranularity: 0
[   101.616]     WinSize: 0
[   101.616]     WinASegment: 0x0
[   101.616]     WinBSegment: 0x0
[   101.616]     WinFuncPtr: 0x0
[   101.616]     BytesPerScanline: 0
[   101.616]     XResolution: 0
[   101.616]     YResolution: 0
[   101.616]     XCharSize: 0
[   101.616]     YCharSize: 0
[   101.616]     NumberOfPlanes: 0
[   101.616]     BitsPerPixel: 0
[   101.616]     NumberOfBanks: 0
[   101.616]     MemoryModel: 0
[   101.616]     BankSize: 0
[   101.616]     NumberOfImages: 0
[   101.616]     RedMaskSize: 0
[   101.616]     RedFieldPosition: 0
[   101.616]     GreenMaskSize: 0
[   101.616]     GreenFieldPosition: 0
[   101.616]     BlueMaskSize: 0
[   101.616]     BlueFieldPosition: 0
[   101.616]     RsvdMaskSize: 0
[   101.616]     RsvdFieldPosition: 0
[   101.616]     DirectColorModeInfo: 0
[   101.616]     PhysBasePtr: 0x0
[   101.616]     LinBytesPerScanLine: 0
[   101.616]     BnkNumberOfImagePages: 0
[   101.616]     LinNumberOfImagePages: 0
[   101.616]     LinRedMaskSize: 0
[   101.616]     LinRedFieldPosition: 0
[   101.616]     LinGreenMaskSize: 0
[   101.616]     LinGreenFieldPosition: 0
[   101.616]     LinBlueMaskSize: 0
[   101.616]     LinBlueFieldPosition: 0
[   101.616]     LinRsvdMaskSize: 0
[   101.616]     LinRsvdFieldPosition: 0
[   101.616]     MaxPixelClock: 0
[   101.616] Mode: 16a (0x0)
[   101.616]     ModeAttributes: 0x0
[   101.616]     WinAAttributes: 0x0
[   101.616]     WinBAttributes: 0x0
[   101.616]     WinGranularity: 0
[   101.616]     WinSize: 0
[   101.616]     WinASegment: 0x0
[   101.616]     WinBSegment: 0x0
[   101.616]     WinFuncPtr: 0x0
[   101.616]     BytesPerScanline: 0
[   101.616]     XResolution: 0
[   101.616]     YResolution: 0
[   101.616]     XCharSize: 0
[   101.616]     YCharSize: 0
[   101.616]     NumberOfPlanes: 0
[   101.616]     BitsPerPixel: 0
[   101.616]     NumberOfBanks: 0
[   101.616]     MemoryModel: 0
[   101.616]     BankSize: 0
[   101.616]     NumberOfImages: 0
[   101.616]     RedMaskSize: 0
[   101.616]     RedFieldPosition: 0
[   101.616]     GreenMaskSize: 0
[   101.616]     GreenFieldPosition: 0
[   101.616]     BlueMaskSize: 0
[   101.616]     BlueFieldPosition: 0
[   101.616]     RsvdMaskSize: 0
[   101.616]     RsvdFieldPosition: 0
[   101.616]     DirectColorModeInfo: 0
[   101.616]     PhysBasePtr: 0x0
[   101.616]     LinBytesPerScanLine: 0
[   101.617]     BnkNumberOfImagePages: 0
[   101.617]     LinNumberOfImagePages: 0
[   101.617]     LinRedMaskSize: 0
[   101.617]     LinRedFieldPosition: 0
[   101.617]     LinGreenMaskSize: 0
[   101.617]     LinGreenFieldPosition: 0
[   101.617]     LinBlueMaskSize: 0
[   101.617]     LinBlueFieldPosition: 0
[   101.617]     LinRsvdMaskSize: 0
[   101.617]     LinRsvdFieldPosition: 0
[   101.617]     MaxPixelClock: 0
[   101.617] Mode: 16b (0x0)
[   101.617]     ModeAttributes: 0x0
[   101.617]     WinAAttributes: 0x0
[   101.617]     WinBAttributes: 0x0
[   101.617]     WinGranularity: 0
[   101.617]     WinSize: 0
[   101.617]     WinASegment: 0x0
[   101.617]     WinBSegment: 0x0
[   101.617]     WinFuncPtr: 0x0
[   101.617]     BytesPerScanline: 0
[   101.617]     XResolution: 0
[   101.617]     YResolution: 0
[   101.617]     XCharSize: 0
[   101.617]     YCharSize: 0
[   101.617]     NumberOfPlanes: 0
[   101.617]     BitsPerPixel: 0
[   101.617]     NumberOfBanks: 0
[   101.617]     MemoryModel: 0
[   101.617]     BankSize: 0
[   101.617]     NumberOfImages: 0
[   101.617]     RedMaskSize: 0
[   101.617]     RedFieldPosition: 0
[   101.617]     GreenMaskSize: 0
[   101.617]     GreenFieldPosition: 0
[   101.617]     BlueMaskSize: 0
[   101.617]     BlueFieldPosition: 0
[   101.617]     RsvdMaskSize: 0
[   101.617]     RsvdFieldPosition: 0
[   101.617]     DirectColorModeInfo: 0
[   101.617]     PhysBasePtr: 0x0
[   101.617]     LinBytesPerScanLine: 0
[   101.617]     BnkNumberOfImagePages: 0
[   101.617]     LinNumberOfImagePages: 0
[   101.617]     LinRedMaskSize: 0
[   101.617]     LinRedFieldPosition: 0
[   101.617]     LinGreenMaskSize: 0
[   101.617]     LinGreenFieldPosition: 0
[   101.617]     LinBlueMaskSize: 0
[   101.617]     LinBlueFieldPosition: 0
[   101.617]     LinRsvdMaskSize: 0
[   101.617]     LinRsvdFieldPosition: 0
[   101.617]     MaxPixelClock: 0
[   101.617] Mode: 16c (0x0)
[   101.617]     ModeAttributes: 0x0
[   101.617]     WinAAttributes: 0x0
[   101.617]     WinBAttributes: 0x0
[   101.617]     WinGranularity: 0
[   101.617]     WinSize: 0
[   101.617]     WinASegment: 0x0
[   101.617]     WinBSegment: 0x0
[   101.617]     WinFuncPtr: 0x0
[   101.617]     BytesPerScanline: 0
[   101.617]     XResolution: 0
[   101.617]     YResolution: 0
[   101.617]     XCharSize: 0
[   101.617]     YCharSize: 0
[   101.617]     NumberOfPlanes: 0
[   101.617]     BitsPerPixel: 0
[   101.617]     NumberOfBanks: 0
[   101.617]     MemoryModel: 0
[   101.617]     BankSize: 0
[   101.617]     NumberOfImages: 0
[   101.617]     RedMaskSize: 0
[   101.617]     RedFieldPosition: 0
[   101.617]     GreenMaskSize: 0
[   101.617]     GreenFieldPosition: 0
[   101.617]     BlueMaskSize: 0
[   101.617]     BlueFieldPosition: 0
[   101.617]     RsvdMaskSize: 0
[   101.617]     RsvdFieldPosition: 0
[   101.617]     DirectColorModeInfo: 0
[   101.617]     PhysBasePtr: 0x0
[   101.617]     LinBytesPerScanLine: 0
[   101.617]     BnkNumberOfImagePages: 0
[   101.617]     LinNumberOfImagePages: 0
[   101.617]     LinRedMaskSize: 0
[   101.617]     LinRedFieldPosition: 0
[   101.617]     LinGreenMaskSize: 0
[   101.617]     LinGreenFieldPosition: 0
[   101.617]     LinBlueMaskSize: 0
[   101.617]     LinBlueFieldPosition: 0
[   101.617]     LinRsvdMaskSize: 0
[   101.617]     LinRsvdFieldPosition: 0
[   101.617]     MaxPixelClock: 0
[   101.617] Mode: 16d (0x0)
[   101.617]     ModeAttributes: 0x0
[   101.617]     WinAAttributes: 0x0
[   101.617]     WinBAttributes: 0x0
[   101.617]     WinGranularity: 0
[   101.617]     WinSize: 0
[   101.617]     WinASegment: 0x0
[   101.617]     WinBSegment: 0x0
[   101.617]     WinFuncPtr: 0x0
[   101.617]     BytesPerScanline: 0
[   101.617]     XResolution: 0
[   101.617]     YResolution: 0
[   101.617]     XCharSize: 0
[   101.617]     YCharSize: 0
[   101.617]     NumberOfPlanes: 0
[   101.617]     BitsPerPixel: 0
[   101.617]     NumberOfBanks: 0
[   101.617]     MemoryModel: 0
[   101.617]     BankSize: 0
[   101.617]     NumberOfImages: 0
[   101.617]     RedMaskSize: 0
[   101.617]     RedFieldPosition: 0
[   101.617]     GreenMaskSize: 0
[   101.617]     GreenFieldPosition: 0
[   101.617]     BlueMaskSize: 0
[   101.617]     BlueFieldPosition: 0
[   101.617]     RsvdMaskSize: 0
[   101.617]     RsvdFieldPosition: 0
[   101.617]     DirectColorModeInfo: 0
[   101.617]     PhysBasePtr: 0x0
[   101.617]     LinBytesPerScanLine: 0
[   101.617]     BnkNumberOfImagePages: 0
[   101.617]     LinNumberOfImagePages: 0
[   101.617]     LinRedMaskSize: 0
[   101.617]     LinRedFieldPosition: 0
[   101.617]     LinGreenMaskSize: 0
[   101.617]     LinGreenFieldPosition: 0
[   101.617]     LinBlueMaskSize: 0
[   101.617]     LinBlueFieldPosition: 0
[   101.617]     LinRsvdMaskSize: 0
[   101.617]     LinRsvdFieldPosition: 0
[   101.617]     MaxPixelClock: 0
[   101.617] Mode: 16e (0x0)
[   101.617]     ModeAttributes: 0x0
[   101.617]     WinAAttributes: 0x0
[   101.617]     WinBAttributes: 0x0
[   101.617]     WinGranularity: 0
[   101.617]     WinSize: 0
[   101.617]     WinASegment: 0x0
[   101.618]     WinBSegment: 0x0
[   101.618]     WinFuncPtr: 0x0
[   101.618]     BytesPerScanline: 0
[   101.618]     XResolution: 0
[   101.618]     YResolution: 0
[   101.618]     XCharSize: 0
[   101.618]     YCharSize: 0
[   101.618]     NumberOfPlanes: 0
[   101.618]     BitsPerPixel: 0
[   101.618]     NumberOfBanks: 0
[   101.618]     MemoryModel: 0
[   101.618]     BankSize: 0
[   101.618]     NumberOfImages: 0
[   101.618]     RedMaskSize: 0
[   101.618]     RedFieldPosition: 0
[   101.618]     GreenMaskSize: 0
[   101.618]     GreenFieldPosition: 0
[   101.618]     BlueMaskSize: 0
[   101.618]     BlueFieldPosition: 0
[   101.618]     RsvdMaskSize: 0
[   101.618]     RsvdFieldPosition: 0
[   101.618]     DirectColorModeInfo: 0
[   101.618]     PhysBasePtr: 0x0
[   101.618]     LinBytesPerScanLine: 0
[   101.618]     BnkNumberOfImagePages: 0
[   101.618]     LinNumberOfImagePages: 0
[   101.618]     LinRedMaskSize: 0
[   101.618]     LinRedFieldPosition: 0
[   101.618]     LinGreenMaskSize: 0
[   101.618]     LinGreenFieldPosition: 0
[   101.618]     LinBlueMaskSize: 0
[   101.618]     LinBlueFieldPosition: 0
[   101.618]     LinRsvdMaskSize: 0
[   101.618]     LinRsvdFieldPosition: 0
[   101.618]     MaxPixelClock: 0
[   101.618] Mode: 16f (0x0)
[   101.618]     ModeAttributes: 0x0
[   101.618]     WinAAttributes: 0x0
[   101.618]     WinBAttributes: 0x0
[   101.618]     WinGranularity: 0
[   101.618]     WinSize: 0
[   101.618]     WinASegment: 0x0
[   101.618]     WinBSegment: 0x0
[   101.618]     WinFuncPtr: 0x0
[   101.618]     BytesPerScanline: 0
[   101.618]     XResolution: 0
[   101.618]     YResolution: 0
[   101.618]     XCharSize: 0
[   101.618]     YCharSize: 0
[   101.618]     NumberOfPlanes: 0
[   101.618]     BitsPerPixel: 0
[   101.618]     NumberOfBanks: 0
[   101.618]     MemoryModel: 0
[   101.618]     BankSize: 0
[   101.618]     NumberOfImages: 0
[   101.618]     RedMaskSize: 0
[   101.618]     RedFieldPosition: 0
[   101.618]     GreenMaskSize: 0
[   101.618]     GreenFieldPosition: 0
[   101.618]     BlueMaskSize: 0
[   101.618]     BlueFieldPosition: 0
[   101.618]     RsvdMaskSize: 0
[   101.618]     RsvdFieldPosition: 0
[   101.618]     DirectColorModeInfo: 0
[   101.618]     PhysBasePtr: 0x0
[   101.618]     LinBytesPerScanLine: 0
[   101.618]     BnkNumberOfImagePages: 0
[   101.618]     LinNumberOfImagePages: 0
[   101.618]     LinRedMaskSize: 0
[   101.618]     LinRedFieldPosition: 0
[   101.618]     LinGreenMaskSize: 0
[   101.618]     LinGreenFieldPosition: 0
[   101.618]     LinBlueMaskSize: 0
[   101.618]     LinBlueFieldPosition: 0
[   101.618]     LinRsvdMaskSize: 0
[   101.618]     LinRsvdFieldPosition: 0
[   101.618]     MaxPixelClock: 0
[   101.618] Mode: 170 (0x0)
[   101.618]     ModeAttributes: 0x0
[   101.618]     WinAAttributes: 0x0
[   101.618]     WinBAttributes: 0x0
[   101.618]     WinGranularity: 0
[   101.618]     WinSize: 0
[   101.618]     WinASegment: 0x0
[   101.618]     WinBSegment: 0x0
[   101.618]     WinFuncPtr: 0x0
[   101.618]     BytesPerScanline: 0
[   101.618]     XResolution: 0
[   101.618]     YResolution: 0
[   101.618]     XCharSize: 0
[   101.618]     YCharSize: 0
[   101.618]     NumberOfPlanes: 0
[   101.618]     BitsPerPixel: 0
[   101.618]     NumberOfBanks: 0
[   101.618]     MemoryModel: 0
[   101.618]     BankSize: 0
[   101.618]     NumberOfImages: 0
[   101.618]     RedMaskSize: 0
[   101.618]     RedFieldPosition: 0
[   101.618]     GreenMaskSize: 0
[   101.618]     GreenFieldPosition: 0
[   101.618]     BlueMaskSize: 0
[   101.618]     BlueFieldPosition: 0
[   101.618]     RsvdMaskSize: 0
[   101.618]     RsvdFieldPosition: 0
[   101.618]     DirectColorModeInfo: 0
[   101.618]     PhysBasePtr: 0x0
[   101.618]     LinBytesPerScanLine: 0
[   101.618]     BnkNumberOfImagePages: 0
[   101.618]     LinNumberOfImagePages: 0
[   101.618]     LinRedMaskSize: 0
[   101.618]     LinRedFieldPosition: 0
[   101.618]     LinGreenMaskSize: 0
[   101.618]     LinGreenFieldPosition: 0
[   101.618]     LinBlueMaskSize: 0
[   101.618]     LinBlueFieldPosition: 0
[   101.618]     LinRsvdMaskSize: 0
[   101.618]     LinRsvdFieldPosition: 0
[   101.618]     MaxPixelClock: 0
[   101.618] Mode: 171 (0x0)
[   101.618]     ModeAttributes: 0x0
[   101.618]     WinAAttributes: 0x0
[   101.618]     WinBAttributes: 0x0
[   101.618]     WinGranularity: 0
[   101.618]     WinSize: 0
[   101.618]     WinASegment: 0x0
[   101.618]     WinBSegment: 0x0
[   101.618]     WinFuncPtr: 0x0
[   101.618]     BytesPerScanline: 0
[   101.618]     XResolution: 0
[   101.618]     YResolution: 0
[   101.618]     XCharSize: 0
[   101.618]     YCharSize: 0
[   101.618]     NumberOfPlanes: 0
[   101.618]     BitsPerPixel: 0
[   101.618]     NumberOfBanks: 0
[   101.618]     MemoryModel: 0
[   101.618]     BankSize: 0
[   101.618]     NumberOfImages: 0
[   101.618]     RedMaskSize: 0
[   101.618]     RedFieldPosition: 0
[   101.618]     GreenMaskSize: 0
[   101.618]     GreenFieldPosition: 0
[   101.618]     BlueMaskSize: 0
[   101.618]     BlueFieldPosition: 0
[   101.618]     RsvdMaskSize: 0
[   101.618]     RsvdFieldPosition: 0
[   101.618]     DirectColorModeInfo: 0
[   101.618]     PhysBasePtr: 0x0
[   101.618]     LinBytesPerScanLine: 0
[   101.618]     BnkNumberOfImagePages: 0
[   101.618]     LinNumberOfImagePages: 0
[   101.618]     LinRedMaskSize: 0
[   101.618]     LinRedFieldPosition: 0
[   101.618]     LinGreenMaskSize: 0
[   101.618]     LinGreenFieldPosition: 0
[   101.618]     LinBlueMaskSize: 0
[   101.618]     LinBlueFieldPosition: 0
[   101.618]     LinRsvdMaskSize: 0
[   101.618]     LinRsvdFieldPosition: 0
[   101.618]     MaxPixelClock: 0
[   101.619] Mode: 13c (0x0)
[   101.619]     ModeAttributes: 0x0
[   101.619]     WinAAttributes: 0x0
[   101.619]     WinBAttributes: 0x0
[   101.619]     WinGranularity: 0
[   101.619]     WinSize: 0
[   101.619]     WinASegment: 0x0
[   101.619]     WinBSegment: 0x0
[   101.619]     WinFuncPtr: 0x0
[   101.619]     BytesPerScanline: 0
[   101.619]     XResolution: 0
[   101.619]     YResolution: 0
[   101.619]     XCharSize: 0
[   101.619]     YCharSize: 0
[   101.619]     NumberOfPlanes: 0
[   101.619]     BitsPerPixel: 0
[   101.619]     NumberOfBanks: 0
[   101.619]     MemoryModel: 0
[   101.619]     BankSize: 0
[   101.619]     NumberOfImages: 0
[   101.619]     RedMaskSize: 0
[   101.619]     RedFieldPosition: 0
[   101.619]     GreenMaskSize: 0
[   101.619]     GreenFieldPosition: 0
[   101.619]     BlueMaskSize: 0
[   101.619]     BlueFieldPosition: 0
[   101.619]     RsvdMaskSize: 0
[   101.619]     RsvdFieldPosition: 0
[   101.619]     DirectColorModeInfo: 0
[   101.619]     PhysBasePtr: 0x0
[   101.619]     LinBytesPerScanLine: 0
[   101.619]     BnkNumberOfImagePages: 0
[   101.619]     LinNumberOfImagePages: 0
[   101.619]     LinRedMaskSize: 0
[   101.619]     LinRedFieldPosition: 0
[   101.619]     LinGreenMaskSize: 0
[   101.619]     LinGreenFieldPosition: 0
[   101.619]     LinBlueMaskSize: 0
[   101.619]     LinBlueFieldPosition: 0
[   101.619]     LinRsvdMaskSize: 0
[   101.619]     LinRsvdFieldPosition: 0
[   101.619]     MaxPixelClock: 0
[   101.619] Mode: 14d (0x0)
[   101.619]     ModeAttributes: 0x0
[   101.619]     WinAAttributes: 0x0
[   101.619]     WinBAttributes: 0x0
[   101.619]     WinGranularity: 0
[   101.619]     WinSize: 0
[   101.619]     WinASegment: 0x0
[   101.619]     WinBSegment: 0x0
[   101.619]     WinFuncPtr: 0x0
[   101.619]     BytesPerScanline: 0
[   101.619]     XResolution: 0
[   101.619]     YResolution: 0
[   101.619]     XCharSize: 0
[   101.619]     YCharSize: 0
[   101.619]     NumberOfPlanes: 0
[   101.619]     BitsPerPixel: 0
[   101.619]     NumberOfBanks: 0
[   101.619]     MemoryModel: 0
[   101.619]     BankSize: 0
[   101.619]     NumberOfImages: 0
[   101.619]     RedMaskSize: 0
[   101.619]     RedFieldPosition: 0
[   101.619]     GreenMaskSize: 0
[   101.619]     GreenFieldPosition: 0
[   101.619]     BlueMaskSize: 0
[   101.619]     BlueFieldPosition: 0
[   101.619]     RsvdMaskSize: 0
[   101.619]     RsvdFieldPosition: 0
[   101.619]     DirectColorModeInfo: 0
[   101.619]     PhysBasePtr: 0x0
[   101.619]     LinBytesPerScanLine: 0
[   101.619]     BnkNumberOfImagePages: 0
[   101.619]     LinNumberOfImagePages: 0
[   101.619]     LinRedMaskSize: 0
[   101.619]     LinRedFieldPosition: 0
[   101.619]     LinGreenMaskSize: 0
[   101.619]     LinGreenFieldPosition: 0
[   101.619]     LinBlueMaskSize: 0
[   101.619]     LinBlueFieldPosition: 0
[   101.619]     LinRsvdMaskSize: 0
[   101.619]     LinRsvdFieldPosition: 0
[   101.619]     MaxPixelClock: 0
[   101.619] Mode: 15c (0x0)
[   101.619]     ModeAttributes: 0x0
[   101.619]     WinAAttributes: 0x0
[   101.619]     WinBAttributes: 0x0
[   101.619]     WinGranularity: 0
[   101.619]     WinSize: 0
[   101.619]     WinASegment: 0x0
[   101.619]     WinBSegment: 0x0
[   101.619]     WinFuncPtr: 0x0
[   101.619]     BytesPerScanline: 0
[   101.619]     XResolution: 0
[   101.619]     YResolution: 0
[   101.619]     XCharSize: 0
[   101.619]     YCharSize: 0
[   101.619]     NumberOfPlanes: 0
[   101.619]     BitsPerPixel: 0
[   101.619]     NumberOfBanks: 0
[   101.619]     MemoryModel: 0
[   101.619]     BankSize: 0
[   101.619]     NumberOfImages: 0
[   101.619]     RedMaskSize: 0
[   101.619]     RedFieldPosition: 0
[   101.619]     GreenMaskSize: 0
[   101.619]     GreenFieldPosition: 0
[   101.619]     BlueMaskSize: 0
[   101.619]     BlueFieldPosition: 0
[   101.619]     RsvdMaskSize: 0
[   101.619]     RsvdFieldPosition: 0
[   101.619]     DirectColorModeInfo: 0
[   101.619]     PhysBasePtr: 0x0
[   101.619]     LinBytesPerScanLine: 0
[   101.619]     BnkNumberOfImagePages: 0
[   101.619]     LinNumberOfImagePages: 0
[   101.619]     LinRedMaskSize: 0
[   101.619]     LinRedFieldPosition: 0
[   101.620]     LinGreenMaskSize: 0
[   101.620]     LinGreenFieldPosition: 0
[   101.620]     LinBlueMaskSize: 0
[   101.620]     LinBlueFieldPosition: 0
[   101.620]     LinRsvdMaskSize: 0
[   101.620]     LinRsvdFieldPosition: 0
[   101.620]     MaxPixelClock: 0
[   101.620] Mode: 13a (0x0)
[   101.620]     ModeAttributes: 0x0
[   101.620]     WinAAttributes: 0x0
[   101.620]     WinBAttributes: 0x0
[   101.620]     WinGranularity: 0
[   101.620]     WinSize: 0
[   101.620]     WinASegment: 0x0
[   101.620]     WinBSegment: 0x0
[   101.620]     WinFuncPtr: 0x0
[   101.620]     BytesPerScanline: 0
[   101.620]     XResolution: 0
[   101.620]     YResolution: 0
[   101.620]     XCharSize: 0
[   101.620]     YCharSize: 0
[   101.620]     NumberOfPlanes: 0
[   101.620]     BitsPerPixel: 0
[   101.620]     NumberOfBanks: 0
[   101.620]     MemoryModel: 0
[   101.620]     BankSize: 0
[   101.620]     NumberOfImages: 0
[   101.620]     RedMaskSize: 0
[   101.620]     RedFieldPosition: 0
[   101.620]     GreenMaskSize: 0
[   101.620]     GreenFieldPosition: 0
[   101.620]     BlueMaskSize: 0
[   101.620]     BlueFieldPosition: 0
[   101.620]     RsvdMaskSize: 0
[   101.620]     RsvdFieldPosition: 0
[   101.620]     DirectColorModeInfo: 0
[   101.620]     PhysBasePtr: 0x0
[   101.620]     LinBytesPerScanLine: 0
[   101.620]     BnkNumberOfImagePages: 0
[   101.620]     LinNumberOfImagePages: 0
[   101.620]     LinRedMaskSize: 0
[   101.620]     LinRedFieldPosition: 0
[   101.620]     LinGreenMaskSize: 0
[   101.620]     LinGreenFieldPosition: 0
[   101.620]     LinBlueMaskSize: 0
[   101.620]     LinBlueFieldPosition: 0
[   101.620]     LinRsvdMaskSize: 0
[   101.620]     LinRsvdFieldPosition: 0
[   101.620]     MaxPixelClock: 0
[   101.620] Mode: 14b (0x0)
[   101.620]     ModeAttributes: 0x0
[   101.620]     WinAAttributes: 0x0
[   101.620]     WinBAttributes: 0x0
[   101.620]     WinGranularity: 0
[   101.620]     WinSize: 0
[   101.620]     WinASegment: 0x0
[   101.620]     WinBSegment: 0x0
[   101.620]     WinFuncPtr: 0x0
[   101.620]     BytesPerScanline: 0
[   101.620]     XResolution: 0
[   101.620]     YResolution: 0
[   101.620]     XCharSize: 0
[   101.620]     YCharSize: 0
[   101.620]     NumberOfPlanes: 0
[   101.620]     BitsPerPixel: 0
[   101.620]     NumberOfBanks: 0
[   101.620]     MemoryModel: 0
[   101.620]     BankSize: 0
[   101.620]     NumberOfImages: 0
[   101.620]     RedMaskSize: 0
[   101.620]     RedFieldPosition: 0
[   101.620]     GreenMaskSize: 0
[   101.620]     GreenFieldPosition: 0
[   101.620]     BlueMaskSize: 0
[   101.620]     BlueFieldPosition: 0
[   101.620]     RsvdMaskSize: 0
[   101.620]     RsvdFieldPosition: 0
[   101.620]     DirectColorModeInfo: 0
[   101.620]     PhysBasePtr: 0x0
[   101.620]     LinBytesPerScanLine: 0
[   101.620]     BnkNumberOfImagePages: 0
[   101.620]     LinNumberOfImagePages: 0
[   101.620]     LinRedMaskSize: 0
[   101.620]     LinRedFieldPosition: 0
[   101.620]     LinGreenMaskSize: 0
[   101.620]     LinGreenFieldPosition: 0
[   101.620]     LinBlueMaskSize: 0
[   101.620]     LinBlueFieldPosition: 0
[   101.620]     LinRsvdMaskSize: 0
[   101.620]     LinRsvdFieldPosition: 0
[   101.620]     MaxPixelClock: 0
[   101.620] Mode: 15a (0x0)
[   101.620]     ModeAttributes: 0x0
[   101.620]     WinAAttributes: 0x0
[   101.620]     WinBAttributes: 0x0
[   101.620]     WinGranularity: 0
[   101.620]     WinSize: 0
[   101.620]     WinASegment: 0x0
[   101.620]     WinBSegment: 0x0
[   101.620]     WinFuncPtr: 0x0
[   101.620]     BytesPerScanline: 0
[   101.620]     XResolution: 0
[   101.620]     YResolution: 0
[   101.620]     XCharSize: 0
[   101.620]     YCharSize: 0
[   101.620]     NumberOfPlanes: 0
[   101.620]     BitsPerPixel: 0
[   101.620]     NumberOfBanks: 0
[   101.620]     MemoryModel: 0
[   101.620]     BankSize: 0
[   101.620]     NumberOfImages: 0
[   101.620]     RedMaskSize: 0
[   101.620]     RedFieldPosition: 0
[   101.620]     GreenMaskSize: 0
[   101.620]     GreenFieldPosition: 0
[   101.620]     BlueMaskSize: 0
[   101.620]     BlueFieldPosition: 0
[   101.620]     RsvdMaskSize: 0
[   101.620]     RsvdFieldPosition: 0
[   101.620]     DirectColorModeInfo: 0
[   101.620]     PhysBasePtr: 0x0
[   101.620]     LinBytesPerScanLine: 0
[   101.620]     BnkNumberOfImagePages: 0
[   101.620]     LinNumberOfImagePages: 0
[   101.621]     LinRedMaskSize: 0
[   101.621]     LinRedFieldPosition: 0
[   101.621]     LinGreenMaskSize: 0
[   101.621]     LinGreenFieldPosition: 0
[   101.621]     LinBlueMaskSize: 0
[   101.621]     LinBlueFieldPosition: 0
[   101.621]     LinRsvdMaskSize: 0
[   101.621]     LinRsvdFieldPosition: 0
[   101.621]     MaxPixelClock: 0
[   101.621] Mode: 107 (0x0)
[   101.621]     ModeAttributes: 0x0
[   101.621]     WinAAttributes: 0x0
[   101.621]     WinBAttributes: 0x0
[   101.621]     WinGranularity: 0
[   101.621]     WinSize: 0
[   101.621]     WinASegment: 0x0
[   101.621]     WinBSegment: 0x0
[   101.621]     WinFuncPtr: 0x0
[   101.621]     BytesPerScanline: 0
[   101.621]     XResolution: 0
[   101.621]     YResolution: 0
[   101.621]     XCharSize: 0
[   101.621]     YCharSize: 0
[   101.621]     NumberOfPlanes: 0
[   101.621]     BitsPerPixel: 0
[   101.621]     NumberOfBanks: 0
[   101.621]     MemoryModel: 0
[   101.621]     BankSize: 0
[   101.621]     NumberOfImages: 0
[   101.621]     RedMaskSize: 0
[   101.621]     RedFieldPosition: 0
[   101.621]     GreenMaskSize: 0
[   101.621]     GreenFieldPosition: 0
[   101.621]     BlueMaskSize: 0
[   101.621]     BlueFieldPosition: 0
[   101.621]     RsvdMaskSize: 0
[   101.621]     RsvdFieldPosition: 0
[   101.621]     DirectColorModeInfo: 0
[   101.621]     PhysBasePtr: 0x0
[   101.621]     LinBytesPerScanLine: 0
[   101.621]     BnkNumberOfImagePages: 0
[   101.621]     LinNumberOfImagePages: 0
[   101.621]     LinRedMaskSize: 0
[   101.621]     LinRedFieldPosition: 0
[   101.621]     LinGreenMaskSize: 0
[   101.621]     LinGreenFieldPosition: 0
[   101.621]     LinBlueMaskSize: 0
[   101.621]     LinBlueFieldPosition: 0
[   101.621]     LinRsvdMaskSize: 0
[   101.621]     LinRsvdFieldPosition: 0
[   101.621]     MaxPixelClock: 0
[   101.621] Mode: 11a (0x0)
[   101.621]     ModeAttributes: 0x0
[   101.621]     WinAAttributes: 0x0
[   101.621]     WinBAttributes: 0x0
[   101.621]     WinGranularity: 0
[   101.621]     WinSize: 0
[   101.621]     WinASegment: 0x0
[   101.621]     WinBSegment: 0x0
[   101.621]     WinFuncPtr: 0x0
[   101.621]     BytesPerScanline: 0
[   101.621]     XResolution: 0
[   101.621]     YResolution: 0
[   101.621]     XCharSize: 0
[   101.621]     YCharSize: 0
[   101.621]     NumberOfPlanes: 0
[   101.621]     BitsPerPixel: 0
[   101.621]     NumberOfBanks: 0
[   101.621]     MemoryModel: 0
[   101.621]     BankSize: 0
[   101.621]     NumberOfImages: 0
[   101.621]     RedMaskSize: 0
[   101.621]     RedFieldPosition: 0
[   101.621]     GreenMaskSize: 0
[   101.621]     GreenFieldPosition: 0
[   101.621]     BlueMaskSize: 0
[   101.621]     BlueFieldPosition: 0
[   101.621]     RsvdMaskSize: 0
[   101.621]     RsvdFieldPosition: 0
[   101.621]     DirectColorModeInfo: 0
[   101.621]     PhysBasePtr: 0x0
[   101.621]     LinBytesPerScanLine: 0
[   101.621]     BnkNumberOfImagePages: 0
[   101.621]     LinNumberOfImagePages: 0
[   101.621]     LinRedMaskSize: 0
[   101.621]     LinRedFieldPosition: 0
[   101.621]     LinGreenMaskSize: 0
[   101.621]     LinGreenFieldPosition: 0
[   101.621]     LinBlueMaskSize: 0
[   101.621]     LinBlueFieldPosition: 0
[   101.621]     LinRsvdMaskSize: 0
[   101.621]     LinRsvdFieldPosition: 0
[   101.621]     MaxPixelClock: 0
[   101.621] Mode: 11b (0x0)
[   101.621]     ModeAttributes: 0x0
[   101.621]     WinAAttributes: 0x0
[   101.621]     WinBAttributes: 0x0
[   101.621]     WinGranularity: 0
[   101.621]     WinSize: 0
[   101.621]     WinASegment: 0x0
[   101.621]     WinBSegment: 0x0
[   101.621]     WinFuncPtr: 0x0
[   101.621]     BytesPerScanline: 0
[   101.621]     XResolution: 0
[   101.621]     YResolution: 0
[   101.621]     XCharSize: 0
[   101.621]     YCharSize: 0
[   101.621]     NumberOfPlanes: 0
[   101.621]     BitsPerPixel: 0
[   101.621]     NumberOfBanks: 0
[   101.621]     MemoryModel: 0
[   101.621]     BankSize: 0
[   101.621]     NumberOfImages: 0
[   101.621]     RedMaskSize: 0
[   101.621]     RedFieldPosition: 0
[   101.621]     GreenMaskSize: 0
[   101.621]     GreenFieldPosition: 0
[   101.621]     BlueMaskSize: 0
[   101.621]     BlueFieldPosition: 0
[   101.621]     RsvdMaskSize: 0
[   101.621]     RsvdFieldPosition: 0
[   101.621]     DirectColorModeInfo: 0
[   101.621]     PhysBasePtr: 0x0
[   101.621]     LinBytesPerScanLine: 0
[   101.621]     BnkNumberOfImagePages: 0
[   101.622]     LinNumberOfImagePages: 0
[   101.622]     LinRedMaskSize: 0
[   101.622]     LinRedFieldPosition: 0
[   101.622]     LinGreenMaskSize: 0
[   101.622]     LinGreenFieldPosition: 0
[   101.622]     LinBlueMaskSize: 0
[   101.622]     LinBlueFieldPosition: 0
[   101.622]     LinRsvdMaskSize: 0
[   101.622]     LinRsvdFieldPosition: 0
[   101.622]     MaxPixelClock: 0
[   101.622] Mode: 105 (1024x768)
[   101.622]     ModeAttributes: 0x9b
[   101.622]     WinAAttributes: 0x7
[   101.622]     WinBAttributes: 0x0
[   101.622]     WinGranularity: 64
[   101.622]     WinSize: 64
[   101.622]     WinASegment: 0xa000
[   101.622]     WinBSegment: 0x0
[   101.622]     WinFuncPtr: 0xc00082f5
[   101.622]     BytesPerScanline: 1024
[   101.622]     XResolution: 1024
[   101.622]     YResolution: 768
[   101.622]     XCharSize: 8
[   101.622]     YCharSize: 16
[   101.622]     NumberOfPlanes: 1
[   101.622]     BitsPerPixel: 8
[   101.622]     NumberOfBanks: 1
[   101.622]     MemoryModel: 4
[   101.622]     BankSize: 0
[   101.622]     NumberOfImages: 41
[   101.622]     RedMaskSize: 0
[   101.622]     RedFieldPosition: 0
[   101.622]     GreenMaskSize: 0
[   101.622]     GreenFieldPosition: 0
[   101.622]     BlueMaskSize: 0
[   101.622]     BlueFieldPosition: 0
[   101.622]     RsvdMaskSize: 0
[   101.622]     RsvdFieldPosition: 0
[   101.622]     DirectColorModeInfo: 0
[   101.622]     PhysBasePtr: 0xa0000000
[   101.622]     LinBytesPerScanLine: 1024
[   101.622]     BnkNumberOfImagePages: 41
[   101.622]     LinNumberOfImagePages: 41
[   101.622]     LinRedMaskSize: 0
[   101.622]     LinRedFieldPosition: 0
[   101.622]     LinGreenMaskSize: 0
[   101.622]     LinGreenFieldPosition: 0
[   101.622]     LinBlueMaskSize: 0
[   101.622]     LinBlueFieldPosition: 0
[   101.622]     LinRsvdMaskSize: 0
[   101.622]     LinRsvdFieldPosition: 0
[   101.622]     MaxPixelClock: 230000000
[   101.622] Mode: 117 (1024x768)
[   101.622]     ModeAttributes: 0x9b
[   101.622]     WinAAttributes: 0x7
[   101.622]     WinBAttributes: 0x0
[   101.622]     WinGranularity: 64
[   101.622]     WinSize: 64
[   101.622]     WinASegment: 0xa000
[   101.622]     WinBSegment: 0x0
[   101.622]     WinFuncPtr: 0xc00082f5
[   101.622]     BytesPerScanline: 2048
[   101.622]     XResolution: 1024
[   101.622]     YResolution: 768
[   101.622]     XCharSize: 8
[   101.622]     YCharSize: 16
[   101.622]     NumberOfPlanes: 1
[   101.622]     BitsPerPixel: 16
[   101.622]     NumberOfBanks: 1
[   101.622]     MemoryModel: 6
[   101.622]     BankSize: 0
[   101.622]     NumberOfImages: 20
[   101.622]     RedMaskSize: 5
[   101.622]     RedFieldPosition: 11
[   101.622]     GreenMaskSize: 6
[   101.622]     GreenFieldPosition: 5
[   101.622]     BlueMaskSize: 5
[   101.622]     BlueFieldPosition: 0
[   101.622]     RsvdMaskSize: 0
[   101.622]     RsvdFieldPosition: 0
[   101.622]     DirectColorModeInfo: 0
[   101.622]     PhysBasePtr: 0xa0000000
[   101.622]     LinBytesPerScanLine: 2048
[   101.622]     BnkNumberOfImagePages: 20
[   101.622]     LinNumberOfImagePages: 20
[   101.622]     LinRedMaskSize: 5
[   101.622]     LinRedFieldPosition: 11
[   101.622]     LinGreenMaskSize: 6
[   101.622]     LinGreenFieldPosition: 5
[   101.622]     LinBlueMaskSize: 5
[   101.622]     LinBlueFieldPosition: 0
[   101.622]     LinRsvdMaskSize: 0
[   101.622]     LinRsvdFieldPosition: 0
[   101.622]     MaxPixelClock: 230000000
[   101.623] *Mode: 118 (1024x768)
[   101.623]     ModeAttributes: 0x9b
[   101.623]     WinAAttributes: 0x7
[   101.623]     WinBAttributes: 0x0
[   101.623]     WinGranularity: 64
[   101.623]     WinSize: 64
[   101.623]     WinASegment: 0xa000
[   101.623]     WinBSegment: 0x0
[   101.623]     WinFuncPtr: 0xc00082f5
[   101.623]     BytesPerScanline: 4096
[   101.623]     XResolution: 1024
[   101.623]     YResolution: 768
[   101.623]     XCharSize: 8
[   101.623]     YCharSize: 16
[   101.623]     NumberOfPlanes: 1
[   101.623]     BitsPerPixel: 32
[   101.623]     NumberOfBanks: 1
[   101.623]     MemoryModel: 6
[   101.623]     BankSize: 0
[   101.623]     NumberOfImages: 9
[   101.623]     RedMaskSize: 8
[   101.623]     RedFieldPosition: 16
[   101.623]     GreenMaskSize: 8
[   101.623]     GreenFieldPosition: 8
[   101.623]     BlueMaskSize: 8
[   101.623]     BlueFieldPosition: 0
[   101.623]     RsvdMaskSize: 8
[   101.623]     RsvdFieldPosition: 24
[   101.623]     DirectColorModeInfo: 0
[   101.623]     PhysBasePtr: 0xa0000000
[   101.623]     LinBytesPerScanLine: 4096
[   101.623]     BnkNumberOfImagePages: 9
[   101.623]     LinNumberOfImagePages: 9
[   101.623]     LinRedMaskSize: 8
[   101.623]     LinRedFieldPosition: 16
[   101.623]     LinGreenMaskSize: 8
[   101.623]     LinGreenFieldPosition: 8
[   101.623]     LinBlueMaskSize: 8
[   101.623]     LinBlueFieldPosition: 0
[   101.623]     LinRsvdMaskSize: 8
[   101.623]     LinRsvdFieldPosition: 24
[   101.623]     MaxPixelClock: 230000000
[   101.623] *Mode: 112 (640x480)
[   101.623]     ModeAttributes: 0x9b
[   101.623]     WinAAttributes: 0x7
[   101.623]     WinBAttributes: 0x0
[   101.623]     WinGranularity: 64
[   101.623]     WinSize: 64
[   101.623]     WinASegment: 0xa000
[   101.623]     WinBSegment: 0x0
[   101.623]     WinFuncPtr: 0xc00082f5
[   101.623]     BytesPerScanline: 2560
[   101.623]     XResolution: 640
[   101.623]     YResolution: 480
[   101.623]     XCharSize: 8
[   101.623]     YCharSize: 16
[   101.623]     NumberOfPlanes: 1
[   101.623]     BitsPerPixel: 32
[   101.623]     NumberOfBanks: 1
[   101.623]     MemoryModel: 6
[   101.623]     BankSize: 0
[   101.623]     NumberOfImages: 25
[   101.623]     RedMaskSize: 8
[   101.623]     RedFieldPosition: 16
[   101.623]     GreenMaskSize: 8
[   101.623]     GreenFieldPosition: 8
[   101.623]     BlueMaskSize: 8
[   101.623]     BlueFieldPosition: 0
[   101.623]     RsvdMaskSize: 8
[   101.623]     RsvdFieldPosition: 24
[   101.623]     DirectColorModeInfo: 0
[   101.623]     PhysBasePtr: 0xa0000000
[   101.623]     LinBytesPerScanLine: 2560
[   101.623]     BnkNumberOfImagePages: 25
[   101.623]     LinNumberOfImagePages: 25
[   101.623]     LinRedMaskSize: 8
[   101.623]     LinRedFieldPosition: 16
[   101.623]     LinGreenMaskSize: 8
[   101.623]     LinGreenFieldPosition: 8
[   101.623]     LinBlueMaskSize: 8
[   101.623]     LinBlueFieldPosition: 0
[   101.623]     LinRsvdMaskSize: 8
[   101.623]     LinRsvdFieldPosition: 24
[   101.623]     MaxPixelClock: 230000000
[   101.624] Mode: 114 (800x600)
[   101.624]     ModeAttributes: 0x9b
[   101.624]     WinAAttributes: 0x7
[   101.624]     WinBAttributes: 0x0
[   101.624]     WinGranularity: 64
[   101.624]     WinSize: 64
[   101.624]     WinASegment: 0xa000
[   101.624]     WinBSegment: 0x0
[   101.624]     WinFuncPtr: 0xc00082f5
[   101.624]     BytesPerScanline: 1600
[   101.624]     XResolution: 800
[   101.624]     YResolution: 600
[   101.624]     XCharSize: 8
[   101.624]     YCharSize: 16
[   101.624]     NumberOfPlanes: 1
[   101.624]     BitsPerPixel: 16
[   101.624]     NumberOfBanks: 1
[   101.624]     MemoryModel: 6
[   101.624]     BankSize: 0
[   101.624]     NumberOfImages: 33
[   101.624]     RedMaskSize: 5
[   101.624]     RedFieldPosition: 11
[   101.624]     GreenMaskSize: 6
[   101.624]     GreenFieldPosition: 5
[   101.624]     BlueMaskSize: 5
[   101.624]     BlueFieldPosition: 0
[   101.624]     RsvdMaskSize: 0
[   101.624]     RsvdFieldPosition: 0
[   101.624]     DirectColorModeInfo: 0
[   101.624]     PhysBasePtr: 0xa0000000
[   101.624]     LinBytesPerScanLine: 1600
[   101.624]     BnkNumberOfImagePages: 33
[   101.624]     LinNumberOfImagePages: 33
[   101.624]     LinRedMaskSize: 5
[   101.624]     LinRedFieldPosition: 11
[   101.624]     LinGreenMaskSize: 6
[   101.624]     LinGreenFieldPosition: 5
[   101.624]     LinBlueMaskSize: 5
[   101.624]     LinBlueFieldPosition: 0
[   101.624]     LinRsvdMaskSize: 0
[   101.624]     LinRsvdFieldPosition: 0
[   101.624]     MaxPixelClock: 230000000
[   101.624] *Mode: 115 (800x600)
[   101.624]     ModeAttributes: 0x9b
[   101.624]     WinAAttributes: 0x7
[   101.624]     WinBAttributes: 0x0
[   101.624]     WinGranularity: 64
[   101.624]     WinSize: 64
[   101.624]     WinASegment: 0xa000
[   101.624]     WinBSegment: 0x0
[   101.624]     WinFuncPtr: 0xc00082f5
[   101.624]     BytesPerScanline: 3200
[   101.624]     XResolution: 800
[   101.624]     YResolution: 600
[   101.624]     XCharSize: 8
[   101.624]     YCharSize: 16
[   101.624]     NumberOfPlanes: 1
[   101.624]     BitsPerPixel: 32
[   101.624]     NumberOfBanks: 1
[   101.624]     MemoryModel: 6
[   101.624]     BankSize: 0
[   101.624]     NumberOfImages: 16
[   101.624]     RedMaskSize: 8
[   101.624]     RedFieldPosition: 16
[   101.624]     GreenMaskSize: 8
[   101.624]     GreenFieldPosition: 8
[   101.624]     BlueMaskSize: 8
[   101.624]     BlueFieldPosition: 0
[   101.624]     RsvdMaskSize: 8
[   101.624]     RsvdFieldPosition: 24
[   101.624]     DirectColorModeInfo: 0
[   101.624]     PhysBasePtr: 0xa0000000
[   101.624]     LinBytesPerScanLine: 3200
[   101.624]     BnkNumberOfImagePages: 16
[   101.624]     LinNumberOfImagePages: 16
[   101.624]     LinRedMaskSize: 8
[   101.624]     LinRedFieldPosition: 16
[   101.624]     LinGreenMaskSize: 8
[   101.624]     LinGreenFieldPosition: 8
[   101.624]     LinBlueMaskSize: 8
[   101.624]     LinBlueFieldPosition: 0
[   101.624]     LinRsvdMaskSize: 8
[   101.624]     LinRsvdFieldPosition: 24
[   101.624]     MaxPixelClock: 230000000
[   101.625] Mode: 101 (640x480)
[   101.625]     ModeAttributes: 0x9b
[   101.625]     WinAAttributes: 0x7
[   101.625]     WinBAttributes: 0x0
[   101.625]     WinGranularity: 64
[   101.625]     WinSize: 64
[   101.625]     WinASegment: 0xa000
[   101.625]     WinBSegment: 0x0
[   101.625]     WinFuncPtr: 0xc00082f5
[   101.625]     BytesPerScanline: 640
[   101.625]     XResolution: 640
[   101.625]     YResolution: 480
[   101.625]     XCharSize: 8
[   101.625]     YCharSize: 16
[   101.625]     NumberOfPlanes: 1
[   101.625]     BitsPerPixel: 8
[   101.625]     NumberOfBanks: 1
[   101.625]     MemoryModel: 4
[   101.625]     BankSize: 0
[   101.625]     NumberOfImages: 101
[   101.625]     RedMaskSize: 0
[   101.625]     RedFieldPosition: 0
[   101.625]     GreenMaskSize: 0
[   101.625]     GreenFieldPosition: 0
[   101.625]     BlueMaskSize: 0
[   101.625]     BlueFieldPosition: 0
[   101.625]     RsvdMaskSize: 0
[   101.625]     RsvdFieldPosition: 0
[   101.625]     DirectColorModeInfo: 0
[   101.625]     PhysBasePtr: 0xa0000000
[   101.625]     LinBytesPerScanLine: 640
[   101.625]     BnkNumberOfImagePages: 101
[   101.625]     LinNumberOfImagePages: 101
[   101.625]     LinRedMaskSize: 0
[   101.625]     LinRedFieldPosition: 0
[   101.625]     LinGreenMaskSize: 0
[   101.625]     LinGreenFieldPosition: 0
[   101.625]     LinBlueMaskSize: 0
[   101.625]     LinBlueFieldPosition: 0
[   101.625]     LinRsvdMaskSize: 0
[   101.625]     LinRsvdFieldPosition: 0
[   101.625]     MaxPixelClock: 230000000
[   101.625] Mode: 103 (800x600)
[   101.625]     ModeAttributes: 0x9b
[   101.625]     WinAAttributes: 0x7
[   101.625]     WinBAttributes: 0x0
[   101.625]     WinGranularity: 64
[   101.625]     WinSize: 64
[   101.625]     WinASegment: 0xa000
[   101.625]     WinBSegment: 0x0
[   101.625]     WinFuncPtr: 0xc00082f5
[   101.625]     BytesPerScanline: 832
[   101.625]     XResolution: 800
[   101.625]     YResolution: 600
[   101.625]     XCharSize: 8
[   101.625]     YCharSize: 16
[   101.625]     NumberOfPlanes: 1
[   101.625]     BitsPerPixel: 8
[   101.625]     NumberOfBanks: 1
[   101.625]     MemoryModel: 4
[   101.625]     BankSize: 0
[   101.625]     NumberOfImages: 62
[   101.625]     RedMaskSize: 0
[   101.625]     RedFieldPosition: 0
[   101.625]     GreenMaskSize: 0
[   101.625]     GreenFieldPosition: 0
[   101.625]     BlueMaskSize: 0
[   101.625]     BlueFieldPosition: 0
[   101.625]     RsvdMaskSize: 0
[   101.625]     RsvdFieldPosition: 0
[   101.625]     DirectColorModeInfo: 0
[   101.625]     PhysBasePtr: 0xa0000000
[   101.625]     LinBytesPerScanLine: 832
[   101.625]     BnkNumberOfImagePages: 62
[   101.625]     LinNumberOfImagePages: 62
[   101.625]     LinRedMaskSize: 0
[   101.625]     LinRedFieldPosition: 0
[   101.625]     LinGreenMaskSize: 0
[   101.625]     LinGreenFieldPosition: 0
[   101.625]     LinBlueMaskSize: 0
[   101.625]     LinBlueFieldPosition: 0
[   101.625]     LinRsvdMaskSize: 0
[   101.625]     LinRsvdFieldPosition: 0
[   101.625]     MaxPixelClock: 230000000
[   101.626] Mode: 111 (640x480)
[   101.626]     ModeAttributes: 0x9b
[   101.626]     WinAAttributes: 0x7
[   101.626]     WinBAttributes: 0x0
[   101.626]     WinGranularity: 64
[   101.626]     WinSize: 64
[   101.626]     WinASegment: 0xa000
[   101.626]     WinBSegment: 0x0
[   101.626]     WinFuncPtr: 0xc00082f5
[   101.626]     BytesPerScanline: 1280
[   101.626]     XResolution: 640
[   101.626]     YResolution: 480
[   101.626]     XCharSize: 8
[   101.626]     YCharSize: 16
[   101.626]     NumberOfPlanes: 1
[   101.626]     BitsPerPixel: 16
[   101.626]     NumberOfBanks: 1
[   101.626]     MemoryModel: 6
[   101.626]     BankSize: 0
[   101.626]     NumberOfImages: 50
[   101.626]     RedMaskSize: 5
[   101.626]     RedFieldPosition: 11
[   101.626]     GreenMaskSize: 6
[   101.626]     GreenFieldPosition: 5
[   101.626]     BlueMaskSize: 5
[   101.626]     BlueFieldPosition: 0
[   101.626]     RsvdMaskSize: 0
[   101.626]     RsvdFieldPosition: 0
[   101.626]     DirectColorModeInfo: 0
[   101.626]     PhysBasePtr: 0xa0000000
[   101.626]     LinBytesPerScanLine: 1280
[   101.626]     BnkNumberOfImagePages: 50
[   101.626]     LinNumberOfImagePages: 50
[   101.626]     LinRedMaskSize: 5
[   101.626]     LinRedFieldPosition: 11
[   101.626]     LinGreenMaskSize: 6
[   101.626]     LinGreenFieldPosition: 5
[   101.626]     LinBlueMaskSize: 5
[   101.626]     LinBlueFieldPosition: 0
[   101.626]     LinRsvdMaskSize: 0
[   101.626]     LinRsvdFieldPosition: 0
[   101.626]     MaxPixelClock: 230000000
[   101.626] 
[   101.626] (II) VESA(0): Total Memory: 511 64KB banks (32704kB)
[   101.626] (II) VESA(0): Monitor2: Using hsync range of 32.17-48.26 kHz
[   101.626] (II) VESA(0): Monitor2: Using vrefresh range of 40.07-60.10 Hz
[   101.626] (WW) VESA(0): Unable to estimate virtual size
[   101.626] (II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
[   101.626] (II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
[   101.626] (II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
[   101.626] (--) VESA(0): Virtual size is 1368x768 (pitch 1368)
[   101.626] (**) VESA(0): *Built-in mode "1366x768"
[   101.626] (**) VESA(0): Display dimensions: (310, 170) mm
[   101.626] (**) VESA(0): DPI set to (112, 114)
[   101.626] (**) VESA(0): Using "Shadow Framebuffer"
[   101.626] (II) Loading sub module "shadow"
[   101.626] (II) LoadModule: "shadow"
[   101.626] (II) Loading /usr/lib/xorg/modules/libshadow.so
[   101.651] (II) Module shadow: vendor="X.Org Foundation"
[   101.651]     compiled for 1.10.2, module version = 1.1.0
[   101.651]     ABI class: X.Org ANSI C Emulation, version 0.4
[   101.651] (II) Loading sub module "fb"
[   101.651] (II) LoadModule: "fb"
[   101.651] (II) Loading /usr/lib/xorg/modules/libfb.so
[   101.657] (II) Module fb: vendor="X.Org Foundation"
[   101.657]     compiled for 1.10.2, module version = 1.0.0
[   101.657]     ABI class: X.Org ANSI C Emulation, version 0.4
[   101.657] (==) Depth 24 pixmap format is 32 bpp
[   101.657] (II) Loading sub module "int10"
[   101.657] (II) LoadModule: "int10"
[   101.657] (II) Loading /usr/lib/xorg/modules/libint10.so
[   101.657] (II) Module int10: vendor="X.Org Foundation"
[   101.657]     compiled for 1.10.2, module version = 1.0.0
[   101.657]     ABI class: X.Org Video Driver, version 10.0
[   101.657] (II) VESA(0): initializing int10
[   101.658] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[   101.658] (II) VESA(0): VESA BIOS detected
[   101.658] (II) VESA(0): VESA VBE Version 3.0
[   101.658] (II) VESA(0): VESA VBE Total Mem: 32704 kB
[   101.658] (II) VESA(0): VESA VBE OEM: Intel(R)Ironlake Mobile Graphics Chipset Accelerated VGA BIOS
[   101.658] (II) VESA(0): VESA VBE OEM Software Rev: 1.0
[   101.658] (II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
[   101.658] (II) VESA(0): VESA VBE OEM Product: Intel(R)Ironlake Mobile Graphics Controller
[   101.658] (II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
[   101.669] (II) VESA(0): virtual address = 0x7fe0c48ae000,
    physical address = 0xa0000000, size = 33488896
[   101.685] (II) VESA(0): Setting up VESA Mode 0x165 (1366x768)
[   101.834] (==) VESA(0): Default visual is TrueColor
[   101.901] (==) VESA(0): Backing store disabled
[   101.901] (==) VESA(0): DPMS enabled
[   101.901] (==) RandR enabled
[   101.901] (II) Initializing built-in extension Generic Event Extension
[   101.901] (II) Initializing built-in extension SHAPE
[   101.901] (II) Initializing built-in extension MIT-SHM
[   101.901] (II) Initializing built-in extension XInputExtension
[   101.901] (II) Initializing built-in extension XTEST
[   101.901] (II) Initializing built-in extension BIG-REQUESTS
[   101.901] (II) Initializing built-in extension SYNC
[   101.901] (II) Initializing built-in extension XKEYBOARD
[   101.901] (II) Initializing built-in extension XC-MISC
[   101.901] (II) Initializing built-in extension SECURITY
[   101.901] (II) Initializing built-in extension XINERAMA
[   101.901] (II) Initializing built-in extension XFIXES
[   101.901] (II) Initializing built-in extension RENDER
[   101.901] (II) Initializing built-in extension RANDR
[   101.901] (II) Initializing built-in extension COMPOSITE
[   101.901] (II) Initializing built-in extension DAMAGE
[   101.911] (II) AIGLX: Screen 0 is not DRI2 capable
[   101.911] (II) AIGLX: Screen 0 is not DRI capable
[   102.185] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
[   102.185] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[   102.445] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[   102.445] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   102.445] (II) LoadModule: "evdev"
[   102.445] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.459] (II) Module evdev: vendor="X.Org Foundation"
[   102.459]     compiled for 1.10.0, module version = 2.6.0
[   102.459]     Module class: X.Org XInput Driver
[   102.459]     ABI class: X.Org XInput driver, version 12.2
[   102.459] (II) Using input driver 'evdev' for 'Power Button'
[   102.459] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.459] (**) Power Button: always reports core events
[   102.459] (**) Power Button: Device: "/dev/input/event3"
[   102.473] (--) Power Button: Found keys
[   102.473] (II) Power Button: Configuring as keyboard
[   102.473] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[   102.473] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[   102.473] (**) Option "xkb_rules" "evdev"
[   102.473] (**) Option "xkb_model" "evdev"
[   102.473] (**) Option "xkb_layout" "gb"
[   102.534] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[   102.534] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   102.534] (II) Using input driver 'evdev' for 'Video Bus'
[   102.534] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.534] (**) Video Bus: always reports core events
[   102.534] (**) Video Bus: Device: "/dev/input/event4"
[   102.560] (--) Video Bus: Found keys
[   102.560] (II) Video Bus: Configuring as keyboard
[   102.560] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4/event4"
[   102.560] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[   102.560] (**) Option "xkb_rules" "evdev"
[   102.560] (**) Option "xkb_model" "evdev"
[   102.560] (**) Option "xkb_layout" "gb"
[   102.567] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[   102.567] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   102.567] (II) Using input driver 'evdev' for 'Power Button'
[   102.567] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.567] (**) Power Button: always reports core events
[   102.567] (**) Power Button: Device: "/dev/input/event2"
[   102.586] (--) Power Button: Found keys
[   102.586] (II) Power Button: Configuring as keyboard
[   102.586] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
[   102.586] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[   102.586] (**) Option "xkb_rules" "evdev"
[   102.586] (**) Option "xkb_model" "evdev"
[   102.586] (**) Option "xkb_layout" "gb"
[   102.587] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[   102.587] (II) No input driver/identifier specified (ignoring)
[   102.588] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event6)
[   102.588] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
[   102.588] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
[   102.588] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.588] (**) Logitech USB Receiver: always reports core events
[   102.588] (**) Logitech USB Receiver: Device: "/dev/input/event6"
[   102.613] (--) Logitech USB Receiver: Found keys
[   102.613] (II) Logitech USB Receiver: Configuring as keyboard
[   102.613] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input6/event6"
[   102.613] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
[   102.613] (**) Option "xkb_rules" "evdev"
[   102.613] (**) Option "xkb_model" "evdev"
[   102.613] (**) Option "xkb_layout" "gb"
[   102.614] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event7)
[   102.614] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
[   102.614] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
[   102.614] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
[   102.614] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.614] (**) Logitech USB Receiver: always reports core events
[   102.614] (**) Logitech USB Receiver: Device: "/dev/input/event7"
[   102.640] (--) Logitech USB Receiver: Found 20 mouse buttons
[   102.640] (--) Logitech USB Receiver: Found scroll wheel(s)
[   102.640] (--) Logitech USB Receiver: Found relative axes
[   102.640] (--) Logitech USB Receiver: Found x and y relative axes
[   102.640] (--) Logitech USB Receiver: Found absolute axes
[   102.640] (--) Logitech USB Receiver: Found keys
[   102.640] (II) Logitech USB Receiver: Configuring as mouse
[   102.640] (II) Logitech USB Receiver: Configuring as keyboard
[   102.640] (II) Logitech USB Receiver: Adding scrollwheel support
[   102.640] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
[   102.640] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   102.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input7/event7"
[   102.640] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
[   102.640] (**) Option "xkb_rules" "evdev"
[   102.640] (**) Option "xkb_model" "evdev"
[   102.640] (**) Option "xkb_layout" "gb"
[   102.640] (II) Logitech USB Receiver: initialized for relative axes.
[   102.640] (WW) Logitech USB Receiver: ignoring absolute axes.
[   102.640] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
[   102.640] (**) Logitech USB Receiver: (accel) acceleration profile 0
[   102.640] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
[   102.640] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
[   102.641] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
[   102.641] (II) No input driver/identifier specified (ignoring)
[   102.642] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
[   102.642] (II) No input driver/identifier specified (ignoring)
[   102.642] (II) config/udev: Adding input device HDA Intel HP Out at Ext Left Jack (/dev/input/event10)
[   102.642] (II) No input driver/identifier specified (ignoring)
[   102.643] (II) config/udev: Adding input device HDA Intel Mic at Ext Left Jack (/dev/input/event9)
[   102.643] (II) No input driver/identifier specified (ignoring)
[   102.646] (II) config/udev: Adding input device HP Webcam (/dev/input/event12)
[   102.646] (**) HP Webcam: Applying InputClass "evdev keyboard catchall"
[   102.646] (II) Using input driver 'evdev' for 'HP Webcam'
[   102.646] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.646] (**) HP Webcam: always reports core events
[   102.646] (**) HP Webcam: Device: "/dev/input/event12"
[   102.666] (--) HP Webcam: Found keys
[   102.666] (II) HP Webcam: Configuring as keyboard
[   102.666] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input12/event12"
[   102.666] (II) XINPUT: Adding extended input device "HP Webcam" (type: KEYBOARD)
[   102.666] (**) Option "xkb_rules" "evdev"
[   102.666] (**) Option "xkb_model" "evdev"
[   102.666] (**) Option "xkb_layout" "gb"
[   102.669] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[   102.669] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   102.669] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[   102.669] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.669] (**) AT Translated Set 2 keyboard: always reports core events
[   102.669] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[   102.693] (--) AT Translated Set 2 keyboard: Found keys
[   102.693] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[   102.693] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[   102.693] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[   102.693] (**) Option "xkb_rules" "evdev"
[   102.693] (**) Option "xkb_model" "evdev"
[   102.693] (**) Option "xkb_layout" "gb"
[   102.694] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event13)
[   102.694] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[   102.694] (II) Using input driver 'evdev' for 'SynPS/2 Synaptics TouchPad'
[   102.694] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.694] (**) SynPS/2 Synaptics TouchPad: always reports core events
[   102.694] (**) SynPS/2 Synaptics TouchPad: Device: "/dev/input/event13"
[   102.720] (--) SynPS/2 Synaptics TouchPad: Found 1 mouse buttons
[   102.720] (--) SynPS/2 Synaptics TouchPad: Found absolute axes
[   102.720] (--) SynPS/2 Synaptics TouchPad: Found x and y absolute axes
[   102.720] (--) SynPS/2 Synaptics TouchPad: Found absolute touchpad.
[   102.720] (II) SynPS/2 Synaptics TouchPad: Configuring as touchpad
[   102.720] (**) SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
[   102.720] (**) SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   102.720] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input13/event13"
[   102.720] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[   102.720] (II) SynPS/2 Synaptics TouchPad: initialized for absolute axes.
[   102.720] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[   102.720] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
[   102.720] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[   102.720] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[   102.720] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[   102.720] (II) No input driver/identifier specified (ignoring)
[   102.721] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event11)
[   102.721] (II) No input driver/identifier specified (ignoring)
[   102.721] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
[   102.721] (II) No input driver/identifier specified (ignoring)
[   102.721] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[   102.721] (II) No input driver/identifier specified (ignoring)
[   102.723] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event14)
[   102.723] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[   102.723] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
[   102.723] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   102.724] (**) HP WMI hotkeys: always reports core events
[   102.724] (**) HP WMI hotkeys: Device: "/dev/input/event14"
[   102.746] (--) HP WMI hotkeys: Found keys
[   102.746] (II) HP WMI hotkeys: Configuring as keyboard
[   102.746] (**) Option "config_info" "udev:/sys/devices/virtual/input/input14/event14"
[   102.746] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD)
[   102.746] (**) Option "xkb_rules" "evdev"
[   102.746] (**) Option "xkb_model" "evdev"
[   102.746] (**) Option "xkb_layout" "gb"

I have no idea what went wrong.
Any ideas?

litemotiv wrote:

Oh and welcome to the forums! smile

Thanks,
MTL,

Last edited by MatejLach (2011-06-22 21:03:32)

Offline

#5 2011-06-22 21:22:13

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Intel HD GPU Xorg configuration - HP Pavilion DM4

IIRC 'Xorg -configure' creates xorg.conf and we wanted you to try to run w/o one :-)
Intel drivers need KMS to run, did you enable it?

Offline

#6 2011-06-23 09:49:38

MatejLach
Member
From: United Kingdom
Registered: 2011-06-22
Posts: 314
Website

Re: [SOLVED] Intel HD GPU Xorg configuration - HP Pavilion DM4

karol wrote:

IIRC 'Xorg -configure' creates xorg.conf and we wanted you to try to run w/o one :-)
Intel drivers need KMS to run, did you enable it?

:-) No, I did deleted Xorg.conf and tested X WITHOUT xorg conf file, but without it, I was not able to start X at all, that is why I was trying to reconfigure Xorg.conf
Yes, I did enabled KMS initially, but because I was getting blank screen on boot, I followed this advice from the Arch Wiki Intel Page:

...disable modesetting with kernel boot parameter if you get a blank screen during boot process with Intel GMA 950

But, then I was not able to use Intel driver, just VESA.
So I dedicated to completely reinstall Xorg and now everything seems to work fine,
Thanks to all of you,

Offline

Board footer

Powered by FluxBB