Hasee laptop

Hello!
I have a problem with Hasee laptop with integrated graphic chip SiS 671.
The main problem is that I have strange vertical stripes across the screen and the fonts aren't sharp.
lspci result:
01:00.0 VGA compatybile controllerL Silicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter (rev 10)
I tried to generate modeline by that site: http://xtiming.sourceforge.net/cgi-bin/xtiming.pl , but it helps me just a little.
Here is the contents of my xorg.conf file:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse[1]" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection
Section "Module"
    Load  "GLcore"
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "glx"
    Load  "record"
    Load  "xtrap"
    Load  "freetype"
    Load  "synaptics"
EndSection
Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option        "XkbLayout" "pl"
EndSection
Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection
Section "InputDevice"
    Identifier  "Mouse[1]"
    Driver      "synaptics"
    Option        "Device" "/dev/psaux"
    Option        "Protocol" "auto-dev"
    Option        "LeftEdge" "1700"
    Option        "RightEdge" "5300"
    Option        "TopEdge" "1700"
    Option        "BottomEdge" "4200"
    Option        "FingerLow" "25"
    Option        "FingerHigh" "30"
    Option        "MaxTapTime" "180"
    Option        "MaxTapMove" "220"
    Option        "VertScrollDelta" "100"
    Option        "MinSpeed" "0.50"
    Option        "MaxSpeed" "0.90"
    Option        "AccelFactor" "0.0010"
    Option        "SHMConfig" "on"
#  Option    "Repeater"    "/dev/ps2mouse"
EndSection
Section "Monitor"
### Comment all HorizSync and VertRefresh values to use DDC:
    Identifier   "Generic Monitor"
### Comment all HorizSync and VertRefresh values to use DDC:
    HorizSync    28.0 - 96.0
    VertRefresh  50.0 - 75.0
    Gamma        1
    ModeLine     "1280x800@75" 111.5 1280 1312 1728 1760 800 815 825 841
    Option        "DMPS"
#        Horizsync       31.5-50.0
#        Vertrefresh     56.0 - 65.0
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option     "ShadowFB"               # [<bool>]
#Option     "DefaultRefresh"         # [<bool>]
#Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card0"
    Driver      "vesa"
    VendorName  "Silicon Integrated Systems [SiS]"
    BoardName   "771/671 PCIE VGA Display Adapter"
    Card        "** SiS (generic)                      [sis]"
    BusID       "PCI:1:0:0"
EndSection
Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Generic Monitor"
    DefaultDepth     24
    SubSection "Display"
        Depth     24
        Modes    "1280x800@75"
    EndSubSection
EndSection
Section "DRI"
    Mode         0666
EndSection
Section "Extensions"
    Option        "Composite" "on"
EndSection
I can only use vesa driver, when I try to use sis from xf86-video-sis package I cannot start x server. There is a error "no screens found".
The graphic card is supported by the linux kernel from version 2.6.25, but I am using 2.6.26.
In the hwd tool I have max SiS 620.
Please help me.
Last edited by thomas88 (2008-09-14 20:57:26)

Ok... I have a half-way solution.
1. Download package: https://belug.de/~lutz/pub/v5535/sis_vg … .04.tar.gz
and extract the contents of it to: /usr/lib/xorg/modules/drivers/ , next edit: /etc/X11/xorg.conf :
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option     "ShadowFB"               # [<bool>]
#Option     "DefaultRefresh"         # [<bool>]
#Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card0"
    Driver      "sis"
    VendorName  "Silicon Integrated Systems [SiS]"
    BoardName   "771/671 PCIE VGA Display Adapter"
    Card        "** SiS (generic)                      [sis]"
    BusID       "PCI:1:0:0"
EndSection
After X.org restart everything should be fine, but when I run any of OpenOffice.org program the X server is crashing.
Please help me
My actual xorg.conf file:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse[1]" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection
Section "Module"
    Load  "GLcore"
    Load  "dbe"
#    Load  "dri"
    Load  "extmod"
#    Load  "glx"
    Load  "record"
    Load  "xtrap"
    Load  "freetype"
    Load  "synaptics"
EndSection
Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option        "XkbLayout" "pl"
EndSection
Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection
Section "InputDevice"
    Identifier  "Mouse[1]"
    Driver      "synaptics"
    Option        "Device" "/dev/psaux"
    Option        "Protocol" "auto-dev"
    Option        "LeftEdge" "1700"
    Option        "RightEdge" "5300"
    Option        "TopEdge" "1700"
    Option        "BottomEdge" "4200"
    Option        "FingerLow" "25"
    Option        "FingerHigh" "30"
    Option        "MaxTapTime" "180"
    Option        "MaxTapMove" "220"
    Option        "VertScrollDelta" "100"
    Option        "MinSpeed" "0.30"
    Option        "MaxSpeed" "0.80"
    Option        "AccelFactor" "0.0010"
    Option        "SHMConfig" "on"
#  Option    "Repeater"    "/dev/ps2mouse"
EndSection
Section "Monitor"
    Identifier   "Generic Monitor"
    HorizSync    28.0 - 96.0
    VertRefresh  50.0 - 75.0
    Gamma        1
    ModeLine     "1280x800@75" 111.5 1280 1312 1728 1760 800 815 825 841
    Option "IgnoreEDID" "true"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option     "ShadowFB"               # [<bool>]
#Option     "DefaultRefresh"         # [<bool>]
#Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card0"
    Driver      "sis"
    VendorName  "Silicon Integrated Systems [SiS]"
    BoardName   "771/671 PCIE VGA Display Adapter"
    Card        "** SiS (generic)                      [sis]"
    BusID       "PCI:1:0:0"
        Option          "EnableSiSCtrl"         "yes"
        Option          "XvDefaultAdaptor"      "Overlay"
    Option          "DRI" "off"
EndSection
Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Generic Monitor"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x800"
    EndSubSection
EndSection
#Section "DRI"
#    Mode         0666
#EndSection
Section "Extensions"
    Option        "Composite" "off"
EndSection
/var/log/Xorg.0.log :
X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-ARCH i686
Current Operating System: Linux NightlyMobile 2.6.26-ARCH #1 SMP PREEMPT Tue Sep 9 10:15:21 UTC 2008 i686
Build Date: 17 August 2008  10:53:07AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (=smile default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(=smile Log file: "/var/log/Xorg.0.log", Time: Thu Dec 11 23:07:57 2008
(=smile Using config file: "/etc/X11/xorg.conf"
(=smile ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse[1]"
(**) |-->Input Device "Keyboard0"
(=smile Automatically adding devices
(=smile Automatically enabling devices
(=smile Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
(**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
(**) RgbPath set to "/usr/share/X11/rgb"
(**) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is disabled
(II) No default mouse found, adding one
(**) |-->Input Device "<default pointer>"
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Loader magic: 0x81e1f60
(II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 2.0
    X.Org XInput driver : 2.0
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(--) using VT number 7
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1039,0671 card 1019,5050 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1039,0003 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1039,0968 card 1019,5a00 rev 01 class 06,01,00 hdr 80
(II) PCI: 00:02:5: chip 1039,5513 card 1019,5a00 rev 01 class 01,01,80 hdr 00
(II) PCI: 00:03:0: chip 1039,7001 card 1019,5a00 rev 0f class 0c,03,10 hdr 80
(II) PCI: 00:03:1: chip 1039,7001 card 1019,5a00 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:3: chip 1039,7002 card 1019,5a00 rev 00 class 0c,03,20 hdr 00
(II) PCI: 00:04:0: chip 1039,0191 card 1019,5a00 rev 02 class 02,00,00 hdr 00
(II) PCI: 00:05:0: chip 1039,1183 card 1039,1183 rev 03 class 01,01,8f hdr 00
(II) PCI: 00:0f:0: chip 1039,7502 card 1019,5a00 rev 00 class 04,03,00 hdr 00
(II) PCI: 01:00:0: chip 1039,6351 card 1019,5050 rev 10 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
    [0] -1    0    0x00000000 - 0x0000ffff (0x10000) IX[b]
(II) Bus 0 non-prefetchable memory range:
    [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
(II) Bus 0 prefetchable memory range:
    [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
    [0] -1    0    0x00009000 - 0x000090ff (0x100) IX[b]
    [1] -1    0    0x00009400 - 0x000094ff (0x100) IX[b]
    [2] -1    0    0x00009800 - 0x000098ff (0x100) IX[b]
    [3] -1    0    0x00009c00 - 0x00009cff (0x100) IX[b]
(II) Bus 1 non-prefetchable memory range:
    [0] -1    0    0xb0000000 - 0xb00fffff (0x100000) MX[b]
(II) Bus 1 prefetchable memory range:
    [0] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) Silicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter rev 16, Mem @ 0xc0000000/28, 0xb0000000/17, I/O @ 0x9000/7
(II) Addressable bus resource ranges are
    [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1    0    0x00000000 - 0x0000ffff (0x10000) IX[b]
(II) OS-reported resource ranges:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
(II) PCI Memory resource overlap reduced 0xa0000000 from 0xafffffff to 0x9fffffff
(II) Active PCI resource ranges:
    [0] -1    0    0xb0100000 - 0xb0103fff (0x4000) MX[b]
    [1] -1    0    0xb0307000 - 0xb030707f (0x80) MX[b]
    [2] -1    0    0xb0106000 - 0xb0106fff (0x1000) MX[b]
    [3] -1    0    0xb0105000 - 0xb0105fff (0x1000) MX[b]
    [4] -1    0    0xb0104000 - 0xb0104fff (0x1000) MX[b]
    [5] -1    0    0xa0000000 - 0x9fffffff (0x0) MX[b]O
    [6] -1    0    0xb0000000 - 0xb001ffff (0x20000) MX[b](B)
    [7] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [8] -1    0    0x000010a0 - 0x000010af (0x10) IX[b]
    [9] -1    0    0x000010b8 - 0x000010bb (0x4) IX[b]
    [10] -1    0    0x000010c0 - 0x000010c7 (0x8) IX[b]
    [11] -1    0    0x000010bc - 0x000010bf (0x4) IX[b]
    [12] -1    0    0x000010c8 - 0x000010cf (0x8) IX[b]
    [13] -1    0    0x00001000 - 0x0000107f (0x80) IX[b]
    [14] -1    0    0x00001080 - 0x0000108f (0x10) IX[b]
    [15] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [16] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [17] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [18] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [19] -1    0    0x00009000 - 0x0000907f (0x80) IX[b](B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1    0    0xb0100000 - 0xb0103fff (0x4000) MX[b]
    [1] -1    0    0xb0307000 - 0xb030707f (0x80) MX[b]
    [2] -1    0    0xb0106000 - 0xb0106fff (0x1000) MX[b]
    [3] -1    0    0xb0105000 - 0xb0105fff (0x1000) MX[b]
    [4] -1    0    0xb0104000 - 0xb0104fff (0x1000) MX[b]
    [5] -1    0    0xa0000000 - 0x9fffffff (0x0) MX[b]O
    [6] -1    0    0xb0000000 - 0xb001ffff (0x20000) MX[b](B)
    [7] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [8] -1    0    0x000010a0 - 0x000010af (0x10) IX[b]
    [9] -1    0    0x000010b8 - 0x000010bb (0x4) IX[b]
    [10] -1    0    0x000010c0 - 0x000010c7 (0x8) IX[b]
    [11] -1    0    0x000010bc - 0x000010bf (0x4) IX[b]
    [12] -1    0    0x000010c8 - 0x000010cf (0x8) IX[b]
    [13] -1    0    0x00001000 - 0x0000107f (0x80) IX[b]
    [14] -1    0    0x00001080 - 0x0000108f (0x10) IX[b]
    [15] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [16] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [17] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [18] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [19] -1    0    0x00009000 - 0x0000907f (0x80) IX[b](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
(II) All system resource ranges:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0xb0100000 - 0xb0103fff (0x4000) MX[b]
    [5] -1    0    0xb0307000 - 0xb030707f (0x80) MX[b]
    [6] -1    0    0xb0106000 - 0xb0106fff (0x1000) MX[b]
    [7] -1    0    0xb0105000 - 0xb0105fff (0x1000) MX[b]
    [8] -1    0    0xb0104000 - 0xb0104fff (0x1000) MX[b]
    [9] -1    0    0xa0000000 - 0x9fffffff (0x0) MX[b]O
    [10] -1    0    0xb0000000 - 0xb001ffff (0x20000) MX[b](B)
    [11] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [12] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [13] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [14] -1    0    0x000010a0 - 0x000010af (0x10) IX[b]
    [15] -1    0    0x000010b8 - 0x000010bb (0x4) IX[b]
    [16] -1    0    0x000010c0 - 0x000010c7 (0x8) IX[b]
    [17] -1    0    0x000010bc - 0x000010bf (0x4) IX[b]
    [18] -1    0    0x000010c8 - 0x000010cf (0x8) IX[b]
    [19] -1    0    0x00001000 - 0x0000107f (0x80) IX[b]
    [20] -1    0    0x00001080 - 0x0000108f (0x10) IX[b]
    [21] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [22] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [23] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [24] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [25] -1    0    0x00009000 - 0x0000907f (0x80) IX[b](B)
(II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
(II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
(II) "glx" will be loaded by default.
(II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
(II) "record" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri" will be loaded by default.
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD
(II) LoadModule: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.4.2, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
    compiled for 4.3.99.902, module version = 1.0.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(=smile AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "sis"
(II) Loading /usr/lib/xorg/modules/drivers//sis_drv.so
(II) Module sis: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 0.8.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 2.0
(II) LoadModule: "synaptics"
(II) Reloading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.3.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) SIS: driver for SiS chipsets: SIS5597/5598, SIS530/620,
    SIS6326/AGP/DVD, SIS300/305, SIS630/730, SIS540, SIS315, SIS315H,
    SIS315PRO/E, SIS550, SIS650/M650/651/740, SIS330(Xabre),
    SIS[M]661[F|M]X/[M]741[GX]/[M]760[GX]/[M]761[GX]/662, SIS340,
    [M]670/[M]770[GX], [M]671/[M]771[GX]
(II) SIS: driver for XGI chipsets: Volari Z7 (XG20),
    Volari V3XT/V5/V8/Duo (XG40/XG42)
(II) Primary Device is: PCI 01:00:0
(--) Chipset [M]671/[M]771[GX] found
(II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0xb0100000 - 0xb0103fff (0x4000) MX[b]
    [5] -1    0    0xb0307000 - 0xb030707f (0x80) MX[b]
    [6] -1    0    0xb0106000 - 0xb0106fff (0x1000) MX[b]
    [7] -1    0    0xb0105000 - 0xb0105fff (0x1000) MX[b]
    [8] -1    0    0xb0104000 - 0xb0104fff (0x1000) MX[b]
    [9] -1    0    0xa0000000 - 0x9fffffff (0x0) MX[b]O
    [10] -1    0    0xb0000000 - 0xb001ffff (0x20000) MX[b](B)
    [11] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [12] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [13] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [14] -1    0    0x000010a0 - 0x000010af (0x10) IX[b]
    [15] -1    0    0x000010b8 - 0x000010bb (0x4) IX[b]
    [16] -1    0    0x000010c0 - 0x000010c7 (0x8) IX[b]
    [17] -1    0    0x000010bc - 0x000010bf (0x4) IX[b]
    [18] -1    0    0x000010c8 - 0x000010cf (0x8) IX[b]
    [19] -1    0    0x00001000 - 0x0000107f (0x80) IX[b]
    [20] -1    0    0x00001080 - 0x0000108f (0x10) IX[b]
    [21] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [22] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [23] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [24] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [25] -1    0    0x00009000 - 0x0000907f (0x80) IX[b](B)
(II) resource ranges after probing:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0xb0100000 - 0xb0103fff (0x4000) MX[b]
    [5] -1    0    0xb0307000 - 0xb030707f (0x80) MX[b]
    [6] -1    0    0xb0106000 - 0xb0106fff (0x1000) MX[b]
    [7] -1    0    0xb0105000 - 0xb0105fff (0x1000) MX[b]
    [8] -1    0    0xb0104000 - 0xb0104fff (0x1000) MX[b]
    [9] -1    0    0xa0000000 - 0x9fffffff (0x0) MX[b]O
    [10] -1    0    0xb0000000 - 0xb001ffff (0x20000) MX[b](B)
    [11] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [12] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b]
    [13] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [14] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b]
    [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [17] -1    0    0x000010a0 - 0x000010af (0x10) IX[b]
    [18] -1    0    0x000010b8 - 0x000010bb (0x4) IX[b]
    [19] -1    0    0x000010c0 - 0x000010c7 (0x8) IX[b]
    [20] -1    0    0x000010bc - 0x000010bf (0x4) IX[b]
    [21] -1    0    0x000010c8 - 0x000010cf (0x8) IX[b]
    [22] -1    0    0x00001000 - 0x0000107f (0x80) IX[b]
    [23] -1    0    0x00001080 - 0x0000108f (0x10) IX[b]
    [24] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [25] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [26] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [27] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [28] -1    0    0x00009000 - 0x0000907f (0x80) IX[b](B)
    [29] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b]
    [30] 0    0    0x000003c0 - 0x000003df (0x20) IS[b]
(II) Setting vga for screen 0.
(II) SIS(0): SiS driver (2006/10/17-1, compiled for X.org 7.2.0.0)
(II) SIS(0): Copyright (C) 2001-2005 Thomas Winischhofer <[email protected]> and others
(II) SIS(0): *** See http://www.winischhofer.at/linuxsisvga.shtml
(II) SIS(0): *** for documentation, updates and a Premium Version.
(II) SIS(0): RandR rotation support not available in this version.
(II) SIS(0): Dynamic modelist support not available in this version.
(II) SIS(0): Screen growing support not available in this version.
(II) SIS(0): Advanced Xv video blitter not available in this version.
(II) SIS(0): Advanced MergedFB support not available in this version.
(--) SIS(0): sisfb not found
(--) SIS(0): Relocated I/O registers at 0x9000
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
(**) SIS(0): Depth 24, (--) framebuffer bpp 32
(=smile SIS(0): RGB weight 888
(=smile SIS(0): Default visual is TrueColor
(--) SIS(0): Video BIOS version "3.72.02" found (new SiS data layout)
(**) SIS(0): Option "DRI" "off"
(**) SIS(0): Option "EnableSiSCtrl" "yes"
(**) SIS(0): Option "XvDefaultAdaptor" "Overlay"
(=smile SIS(0): Using XAA acceleration architecture
(=smile SIS(0): Color HW cursor is enabled
(II) SIS(0): Using VRAM command queue, size 512k
(=smile SIS(0): Hotkey display switching is enabled
(**) SIS(0): SiSCtrl utility interface is enabled
(=smile SIS(0): X server will not keep DPI constant for all screen sizes
(**) SIS(0): DRI disabled
(--) SIS(0): 65536K shared video RAM (UMA)
(--) SIS(0): DRAM type: DDR SDRAM
(--) SIS(0): Memory clock: 596.582 MHz
(--) SIS(0): DRAM bus width: 64 bit
(--) SIS(0): Linear framebuffer at 0xC0000000
(--) SIS(0): MMIO registers at 0xB0000000 (size 64K)
(--) SIS(0): VideoRAM: 65536 KB
(II) SIS(0): Using 64960K of framebuffer memory at offset 0K
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"(II) Module "ddc" already built-in
(--) SIS(0): Detected SiS307LV video bridge (Charter/UMC-1, ID 7; Rev 0xe1)
(--) SIS(0): No CRT1/VGA detected
(--) SIS(0): Detected LCD/plasma panel (1280x800, 14, non-exp., RGB24 [ec0205])
(**) SIS(0): Using gamma correction (1.0, 1.0, 1.0)
(II) SIS(0): CRT1 gamma correction is enabled
(II) SIS(0): Separate Xv gamma correction for CRT1 is disabled
(II) SIS(0): CRT2 gamma correction is enabled
(--) SIS(0): Memory bandwidth at 32 bpp is 1193.16 MHz
(--) SIS(0): Detected LCD PanelDelayCompensation 0x00 (for LCD=CRT1)
(--) SIS(0): 302LV/302ELV: Using EMI 0x0a000002 (LCD)
(--) SIS(0): CRT2 DDC probing failed
(=smile SIS(0): Min pixel clock is 10 MHz
(--) SIS(0): Max pixel clock is 340 MHz
(II) SIS(0): Replaced entire mode list with built-in modes
(II) SIS(0): "Unknown reason" in the following list means that the mode
(II) SIS(0): is not supported on the chipset/bridge/current output device.
(II) SIS(0): Generic Monitor: Using hsync range of 28.00-96.00 kHz
(II) SIS(0): Generic Monitor: Using vrefresh range of 50.00-75.00 Hz
(II) SIS(0): Clock range:  10.00 to 340.00 MHz
(II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
(II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
(II) SIS(0): Not using default mode "800x600" (vrefresh out of range)
(II) SIS(0): Not using default mode "800x600" (hsync out of range)
(II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
(II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
(II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
(II) SIS(0): Not using default mode "640x480" (vrefresh out of range)
(II) SIS(0): Not using default mode "640x480" (hsync out of range)
(II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
(II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
(II) SIS(0): Not using default mode "1024x768" (vrefresh out of range)
(II) SIS(0): Not using default mode "1024x768" (hsync out of range)
(II) SIS(0): Not using default mode "1280x1024" (unknown reason)
(II) SIS(0): Not using default mode "1280x1024" (unknown reason)
(II) SIS(0): Not using default mode "1280x1024" (unknown reason)
(II) SIS(0): Not using default mode "1280x1024" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1600x1200" (unknown reason)
(II) SIS(0): Not using default mode "1920x1440" (unknown reason)
(II) SIS(0): Not using default mode "1920x1440" (unknown reason)
(II) SIS(0): Not using default mode "1920x1440" (unknown reason)
(II) SIS(0): Not using default mode "1920x1440" (unknown reason)
(II) SIS(0): Not using default mode "1920x1440" (unknown reason)
(II) SIS(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
(II) SIS(0): Not using default mode "2048x1536" (unknown reason)
(II) SIS(0): Not using default mode "2048x1536" (unknown reason)
(II) SIS(0): Not using default mode "2048x1536" (unknown reason)
(II) SIS(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) SIS(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) SIS(0): Not using default mode "1400x1050" (unknown reason)
(II) SIS(0): Not using default mode "1400x1050" (unknown reason)
(II) SIS(0): Not using default mode "1280x800" (vrefresh out of range)
(II) SIS(0): Not using default mode "1440x900" (unknown reason)
(II) SIS(0): Not using default mode "1440x900" (unknown reason)
(II) SIS(0): Not using default mode "1440x900" (unknown reason)
(--) SIS(0): Virtual size is 1280x800 (pitch 1280)
(**) SIS(0): *Default mode "1280x800" (1280x800) (For CRT device: 135.2 MHz, 80.1 kHz, 75.1 Hz)
(**) SIS(0):  Default mode "1280x800" (1280x800) (For CRT device: 107.9 MHz, 63.9 kHz, 59.9 Hz)
(**) SIS(0):  Default mode "1024x768" (1024x768) (For CRT device: 78.7 MHz, 60.0 kHz, 75.0 Hz)
(**) SIS(0):  Default mode "1024x768" (1024x768) (For CRT device: 75.2 MHz, 56.6 kHz, 70.2 Hz)
(**) SIS(0):  Default mode "1024x768" (1024x768) (For CRT device: 65.1 MHz, 48.5 kHz, 60.1 Hz)
(**) SIS(0):  Default mode "800x600" (800x600) (For CRT device: 49.5 MHz, 46.9 kHz, 75.0 Hz)
(**) SIS(0):  Default mode "800x600" (800x600) (For CRT device: 50.1 MHz, 48.2 kHz, 72.4 Hz)
(**) SIS(0):  Default mode "800x600" (800x600) (For CRT device: 40.0 MHz, 37.9 kHz, 60.3 Hz)
(**) SIS(0):  Default mode "800x600" (800x600) (For CRT device: 36.1 MHz, 35.2 kHz, 56.3 Hz)
(**) SIS(0):  Default mode "640x480" (640x480) (For CRT device: 31.5 MHz, 37.5 kHz, 75.0 Hz)
(**) SIS(0):  Default mode "640x480" (640x480) (For CRT device: 31.5 MHz, 37.9 kHz, 72.8 Hz)
(**) SIS(0):  Default mode "640x480" (640x480) (For CRT device: 25.1 MHz, 31.3 kHz, 59.7 Hz)
(=smile SIS(0): DPI set to (96, 96)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules//libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.2.0
    ABI class: X.Org Video Driver, version 2.0
(II) SIS(0): 2D acceleration enabled, modename xaa
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] 0    0    0xb0000000 - 0xb001ffff (0x20000) MX[b]
    [1] 0    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b]
    [2] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1    0    0xb0100000 - 0xb0103fff (0x4000) MX[b]
    [7] -1    0    0xb0307000 - 0xb030707f (0x80) MX[b]
    [8] -1    0    0xb0106000 - 0xb0106fff (0x1000) MX[b]
    [9] -1    0    0xb0105000 - 0xb0105fff (0x1000) MX[b]
    [10] -1    0    0xb0104000 - 0xb0104fff (0x1000) MX[b]
    [11] -1    0    0xa0000000 - 0x9fffffff (0x0) MX[b]O
    [12] -1    0    0xb0000000 - 0xb001ffff (0x20000) MX[b](B)
    [13] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [14] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [15] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [16] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [17] 0    0    0x00009000 - 0x0000907f (0x80) IX[b]
    [18] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [20] -1    0    0x000010a0 - 0x000010af (0x10) IX[b]
    [21] -1    0    0x000010b8 - 0x000010bb (0x4) IX[b]
    [22] -1    0    0x000010c0 - 0x000010c7 (0x8) IX[b]
    [23] -1    0    0x000010bc - 0x000010bf (0x4) IX[b]
    [24] -1    0    0x000010c8 - 0x000010cf (0x8) IX[b]
    [25] -1    0    0x00001000 - 0x0000107f (0x80) IX[b]
    [26] -1    0    0x00001080 - 0x0000108f (0x10) IX[b]
    [27] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [28] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [29] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [30] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [31] -1    0    0x00009000 - 0x0000907f (0x80) IX[b](B)
    [32] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [33] 0    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.1.0
    ABI class: X.Org Video Driver, version 2.0
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) SIS(0): initializing int10
(II) SIS(0): Primary V_BIOS segment is: 0xc000
(II) SIS(0): VESA BIOS detected
(II) SIS(0): VESA VBE Version 3.0
(II) SIS(0): VESA VBE Total Mem: 65536 kB
(II) SIS(0): VESA VBE OEM: SiS
(II) SIS(0): VESA VBE OEM Software Rev: 1.0
(II) SIS(0): VESA VBE OEM Vendor: Silicon Integrated Systems Corp.
(II) SIS(0): VESA VBE OEM Product: 6330
(II) SIS(0): VESA VBE OEM Product Rev: 3.72.02
(=smile SIS(0): Write-combining range (0xc0000000,0x4000000)
(II) SIS(0): Setting standard mode 0x16
(II) SIS(0): Framebuffer from (0,0) to (1279,12990)
(II) SIS(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    8x8 color pattern filled rectangles
    Solid Lines
    Dashed Lines
    Setting up tile and stipple cache:
        32 128x128 slots
        32 256x256 slots
        16 512x512 slots
        32 8x8 color pattern slots
(--) SIS(0): CPU frequency 2000.01Mhz
(II) SIS(0): Benchmarking system RAM to video RAM memory transfer methods:
(--) SIS(0):     Checked libc memcpy()...     219.1 MiB/s
(--) SIS(0):     Checked built-in-1 memcpy()...     219.0 MiB/s
(--) SIS(0):     Checked built-in-2 memcpy()...     108.9 MiB/s
(--) SIS(0):     Checked MMX memcpy()...     219.6 MiB/s
(--) SIS(0):     Checked SSE memcpy()...     223.0 MiB/s
(--) SIS(0):     Checked MMX2 memcpy()...     222.3 MiB/s
(--) SIS(0): Using SSE method for aligned data transfers to video RAM
(--) SIS(0): Using MMX2 method for unaligned data transfers to video RAM
(=smile SIS(0): Backing store disabled
(=smile SIS(0): Silken mouse enabled
(--) SIS(0): Hardware supports one video overlay
(II) SIS(0): Using SiS300/315/330/340/350 series HW Xv by default on CRT2
(II) SIS(0): Default Xv adaptor is Video Overlay
(WW) SIS(0): Option "IgnoreEDID" is not used
(II) SIS(0): Initialized SISCTRL extension version 0.1
(II) SIS(0): Registered screen 0 with SISCTRL extension version 0.1
(=smile RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension XAccessControlExtension
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) AIGLX: Screen 0 is not DRI capable
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(WW) Warning, couldn't open module GLcore
(II) UnloadModule: "GLcore"
(II) Synaptics touchpad driver version 0.14.6 (1406)
(--) Mouse[1] auto-dev sets device to /dev/input/event6
(**) Option "Device" "/dev/input/event6"
(**) Option "SHMConfig" "on"
(**) Option "LeftEdge" "1700"
(**) Option "RightEdge" "5300"
(**) Option "TopEdge" "1700"
(**) Option "BottomEdge" "4200"
(**) Option "VertScrollDelta" "100"
(**) Option "FingerLow" "25"
(**) Option "FingerHigh" "30"
(**) Option "MaxTapTime" "180"
(**) Option "MaxTapMove" "220"
(--) Mouse[1] touchpad found
(**) Option "CorePointer"
(**) Mouse[1]: always reports core events
(**) Option "CoreKeyboard"
(**) Keyboard0: always reports core events
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "pl"
(**) Keyboard0: XkbLayout: "pl"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(WW) <default pointer>: No Device specified, looking for one...
(II) <default pointer>: Setting Device option to "/dev/input/mice"
(--) <default pointer>: Device: "/dev/input/mice"
(=smile <default pointer>: Protocol: "Auto"
(**) Option "AlwaysCore"
(**) <default pointer>: always reports core events
(=smile <default pointer>: Emulate3Buttons, Emulate3Timeout: 50
(**) <default pointer>: ZAxisMapping: buttons 4 and 5
(**) <default pointer>: Buttons: 9
(**) <default pointer>: Sensitivity: 1
(II) evaluating device (<default pointer>)
(II) XINPUT: Adding extended input device "<default pointer>" (type: MOUSE)
(II) evaluating device (Keyboard0)
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) evaluating device (Mouse[1])
(II) XINPUT: Adding extended input device "Mouse[1]" (type: MOUSE)
(--) <default pointer>: PnP-detected protocol: "ExplorerPS/2"
(II) <default pointer>: ps2EnableDataReporting: succeeded
(--) Mouse[1] auto-dev sets device to /dev/input/event6
(**) Option "Device" "/dev/input/event6"
(--) Mouse[1] touchpad found
(II) SIS(0): Setting standard mode 0x62
(II) SIS(0): Setting standard mode 0x16
Last edited by thomas88 (2008-09-14 21:29:15)

Similar Messages

  • The connection is untrusted

    Sir my Mozilla Firefox shows "the connection is untrusted"
    What should I do?- get me out of here!
    Technical details
    Www.gmail.com uses an invalid security certificate.
    The certificate is not trusted because no issuer chain was provided.
    I am using windows 7 32bit , hasee laptop ,kindly fix my problem , I used to like Mozilla Firefox,
    Regards
    Sedhupathi

    sir still i got the problem, some wedsites like goole.com and facebook.com allows and shows the exception,but mail.com and someother doesnt allow the exception,it shows techinical details and get me out here only.. sir i think,idelete some files related with firefox ,so please help me.. some online payments sites shows each and every page add exception., i use k7 antivirus plus .

  • Can I return my laptop

    I bought my laptop around the beginning of March 2011. I am very dissatisfied with it and was wondering if I could bring it in for a refund.The computer is a Dell Inspiron. 

    I'm sorry, but you only have 14 days to return a laptop. You could send it in for repair if there is an issue with the device.
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • WRT120N no longer recognized by laptops

    I'm not quite sure where the problem lies, so I'm going to go over everything that happened so I can hopefully get an answer. Any help is MUCH appreciated.
    We were running a few laptops (Acer Aspire 5517 on Vista) off our WRT120N router wirelessly. We have it hooked up to a wireless modem. All signs show that the modem and router are running fine. The wireless network we were using, I'll call it Network-1, stopped showing up as an option in the wireless connect menu. Prior to this all the laptops could connect to Network-1 by wire or wirelessly without a problem. I don't know what happened to start the problem, but Network-1 is no longer a wireless network option.
    When I wire a laptop to the router, it connects to the internet and says it's currently connected to Network-1. But when I try to connect the wireless network via a wired connection, the new network I set doesn't show up in the connection menu. When I try to set up the router again (while the computer is wired), I get the error message "Windows did not detect any wireless network hardware". So it seems that although I am able to get an internet connection through the router, the computer is not recognizing it.
    One of the laptops is able to connect wirelessly through a different network (Network-2). It looks like Network-2 was set up automatically by the laptop. Another laptop has Network-2 as an option, but it says the network security key is wrong. I have no idea what the password might be, the computer where Network-2 works connects automatically, I haven't had to type a password. I'm not sure what happened here, if it's two different connections with the same name, or if it's the same thing. I don't even know if this is relevant.
    Again, we would be SO grateful for any help!
    Solved!
    Go to Solution.

    Well i think due to some reason the wireless settings of your Router must have got resetted, that's the reason you are unable to see your wireless network name. So you need to Hardwired you computer to the Router and login to the router setup page and change the wireless settings of your Router.
    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    For Wireless Settings, please do the following : -
    Click on the Wireless tab
    - Here select manual configuration...Wireless Network mode should be mixed...
    - Provide a unique name in the Wireless Network Name (SSID) box in order to differentiate your network from your neighbors network...
    - Set the Radio Band to Standard-20MHz and change the Standard channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on Save Settings...
    Please make a note of Wireless Network Name (SSID) as this is the Network Identifier...
    For Wireless Security : -
    Click on the Sub tab under Wireless > Wireless Security...
    Change the Wireless security mode to WPA, For Encryption, select TKIP...For Passphrase input your desired WPA Key. For example , MySecretKey , This will serve as your network key whenever you connect to your wireless network. Do NOT give this key to anyone and remember the key.
    NOTE : Passphrase should be more that 8 characters...
    Click on Advanced Wireless Settings
    Change the Beacon Interval to 75,Change the Fragmentation Threshold to 2304,Change the RTS Threshold to 2304 and Click on Save Settings...
    Now see if you can locate your Wireless Network and attempt to connect...

  • Adobe Cloud is installed on my desktop and one laptop computer. Upon noticing updates were available yesterday, I successfully installed them on my laptop. Today, I cannot get Abobe Cloud to open on my desktop.

    Adobe Cloud is installed on my desktop and one laptop computer. Upon noticing updates were available yesterday, I successfully installed them on my laptop. Today, I cannot get Abobe Cloud to open on my desktop.

    We don't know what Apple plans on doing to change this (and it may not be just Apple but more likely the publishers, since Apple would, of course, do whatever it could to maximize sales/profits).  Right now you can only read Apple books on mobile devices. Sure, buy them from Amazon if you want to read them on the computer. We don't work for Apple so we're pretty impartial on this kind of advice.
    You might also see what your library can offer.  My wife can browse the county library from her iPhone, borrow e-versions, and read books on it too.  Free!

  • Email address change--how does this affect laptop and nook?

    I use my Adobe ID only to authorize my laptop and Nook.  I need to change my email address which seems easy on the FAQs, but how do I then reauthorize my laptop and Nook?  And, if I do this, are all my existing library books unreadable since they were downloaded by what the Nook thinks is a different user?  I'm almost sure I won't be able to return any books in ADE on my laptop, but I can live with that if I can still read the books on the Nook.
    Thanks in advance.

    The sync process with iTunes transfers the email account settings (for your chosen accounts via your iPhone sync preferences) from the Mail application on your Mac to the iPhone's email application.
    The iPhone is running OS X and the iPhone's email client can be considered a mobile version of the Mail application.

  • Creating a backup of functional drive removed from broken laptop

    I have a new Macbook Pro running Mountain Lion that is damaged and won't turn on. I have the drive removed and can access it using a docking station attached to my iMac running 10.6.
    What is the simplest way to backup the data from this drive so that after the laptop is repaired I can return my data to the Macbook Pro?

    Using Disk Utility to clone a drive will automatically erase the Destination drive if it isn't already erased. To backup to a drive with stuff already on it you would need to use a backup utility like one of these:
    Suggested Backup Software
      1. Carbon Copy Cloner
      2. Data Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.
    Be sure the backup utility is NOT configured to erase all files on the destination that are not on the source. If there are files identical to those already on the drive, then they will be overwritten.

  • How to take mailboxes from desktop drive to laptop and back?

    I want to copy my e-mail messages (in their user-created mailboxes) from my main G5 to my laptop so I can review them elsewhere, then return them to the G5. I thought I could just copy the Mailboxes folder (or maybe the whole massive Mail folder), place that the corresponding folder in my laptop user Library, then do the same when I get home -- replace the older mailboxes folder with a revised version.
    But when I do so, I get a mailbox in the laptop's Mail, but no messages in it.
    What am I doing wrong? This should be an easy task, I would think.
    Mac G5   Mac OS X (10.4.8)   MacBook Pro

    Which recommendation? Did you actually read what I said at the bottom of the post you’ve quoted? And why have you quoted the entire post?
    The file format used by Mail changed drastically in Mac OS X 10.4 (Tiger). Mail 2.x knows about the old data format and can import mailboxes created by Mail 1.x, but Mail 1.x knows nothing about the new data format used by Mail 2.x. Actually, the conversion from Mail 1.x to Mail 2.x mailboxes is broken and Mail 2.x sometimes can only import Mail 1.x mailboxes as Other, but that’s another story...
    Although *.mbox packages appear to be files in Mac OS X 10.3, they’re actually folders just like in Mac OS X 10.4, but Mac OS X 10.3 treats them differently because of the .mbox suffix. Ctrl-click on an *.mbox package and choose Show Package Contents from the contextual menu to see the files it contains.
    For each mailbox, Mail 1.x stores all the messages in a single file in standard mbox format (the mbox file within the *.mbox folder/package), whereas Mail 2.x stores messages in individual *.emlx files within a Messages folder that Mail 1.x knows nothing about.
    You need something like emlx to mbox Converter or Emailchemy to convert the *.emlx files to standard mbox format in order to be able to import them (as Other / Standard mbox) in Mail 1.x.

  • Due to my laptop screen failing i have to return to facory settings, can i reinstall adobe reader and adobe air afterwards?

    Due to my laptop screen failing I have to return it to factory settings, can I reinstall adobe reader and air afterwards?

    I don't see why not. Do you foresee a special difficulty?

  • I have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    i have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    Maybe it is in the Purchased category of iTunes,
    Try going there

  • A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my
    laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    You need to talk with the tax authorities in the countries to which you traveled and that of your home country. We are all end-users liek you and not Apple agents.

  • Can I return my new laptop to lenovo because of its quality problem?

    IBM is one of the best brand as I know, especially showing us not only high quality of products but the service.
    But now one thing happened to me, if I don't have this case I can't believe. I found there is something with the laptop(T61 Model 7658CTO) the same day when I got the new laptop on June 3rd, 2008. Then I call 800, a lot of 800 calls,at last I were told that I should contact send it back first if I were to get another new one. Three days later I got the box sent by Lenovo, and I return it back in terms of what the paper shown.
    Unfortunately the problems of the laptop still exist when I turn on my laptop after it repaired. What's wrong with my laptop, this is new one, I think IBM should provide high quality products.
    I don't know how to describe the weird sound , it sounds like two or more micphone opened clost to each other. It is very harsh.
    I want to get one new laptop from Lenovo because of the quality of product and customer service or can I return the laptop?
    I would appreciate any advice you can give me.
    Message Edited by hjwu1979 on 06-27-2008 07:18 AM

    Like Obama says... yes you can
    I did it last week because I bought an iPhone 4 as a wedding gift but then I changed my mind and wanted an iPad, so the bride could use it together with the groom (while the phone is personal).
    I returned the iPhone to the apple store and I paid the difference to buy the 32GB iPad, no problems
    I didn't opened the case, but the guy at the apple store told me I could have returned the phone even if it was opened. It must be undamaged tough.

  • I tried to sync some new songs bought from iTunes into my ipod using my laptop, (for the first time).  It would not add the new songs to the ipod.  I tried several times, with same result.  I never had this problem using my desk top computer.

    I also am having a problem with the songs I purchased using the laptop not showing on the desk top itunes, even though it is authorized to do so.  The new songs did show up on the iPad iTunes, however.  Have no idea why.  I thought this happened automatically.

    Welcome to the Apple Community.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option which is revealed in the iTunes app on your iOS device by tapping the more button at the bottom of the screen.

  • I have an apple iphone 4 that I want to download audio books from my library onto it.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    I have an apple iphone 4 that I want to download audio books from my library onto.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    Yes it is done through iTunes. The iPhone will never show up in Finder as a device. The following is general information on iTunes sync: http://support.apple.com/kb/HT1386 and the following is a previous discussion where the post by Andreas Junge helped others that had a problem syncing audiobooks: https://discussions.apple.com/message/20052732#20052732

  • Laptop-TV: HOW TO CONNECT T400 with the TV (not HD)?

    Hello guys,
    I would like to connect my three years old Lenovo T400 ( with VGA)  with the TV (I will use the same connection with the DVD player...with my PC was OK because I used a video card ...well...is  impossible with the laptop...)
    No ideea what to do...what to buy...how to do it...if it is possible with my laptop...
    I checked on the Lenovo site..Docks&Port replicators for T400...only 2 options with DVI...not on the TV...and here... http://www-307.ibm.com/pc/support/site.wss/MIGR-70321.html ...and...someting about display port...not on my laptop...
    There are other solutions regarding TV?
    Thanks in advance for any help.
    Have a nice day!
    Solved!
    Go to Solution.

    no...the T400 has only the VGA output...I bought a cable which has on the first end ...VGA input and on the other end ...the standards jacks (red,yellow,white)...was not working at all...also I found something here...http://www.shopiogear.com/store/iogear/en_CA/pd/productID.196475400/categoryId.42447600...is with an external DVI at the end...will check now if there are some cable with internal DVI and on the other end composite jacks...thanks for your help.

Maybe you are looking for

  • Naming of RFC Dest SAP R3- XI- Partner

    Hello, I want to send an Idoc via XI to different external partners. I know how to setup the RFC dest from R3 to XI and so on... The question is the following: How do you name your RFC Destinations in R3 system? One for each external (the final recei

  • IMovie import all one continuous timeline

    When I import my iMoive project into Final Cut Pro, it's one contious timeline and not broken into separate pieces like it is in iMovie.  Some of the still photos in the project I wish to delete and change to updated ones, so how do I do that in Fina

  • Is there a script for Windows I can use to make iTunes read CD text?

    I've looked all over and all I cannot seem to find one that works for Windows, only Apple. Thanks!

  • Sync problems with my Curve 8330 and Windows outlook

    I recently changed my computer from xp to windows 7. I loaded the Blackberry software on my new computer and after setting the configs in synchronization to sync with outlook " transfer all scheduled items" and press "finish I get an error message bo

  • IMovie imports a still video image

    When I import a video into iMovie, I get the full audio but only a single still video image. What's up with that?