You are not logged in.

#1 2011-06-26 13:34:00

serzh
Member
Registered: 2011-06-26
Posts: 11

Touchpad problems on Asus

Hello to everyone. I have installed Arch on my laptop and got my touchpad working very bad. It's started work with some breaks, sensitive go down. I don't know what's the reason. Before Arch I had Ubuntu 11.04 and on it touchpad works fine. I've compare the 10-synaptics.conf from Ubuntu and from Arch and they were identical. Here is output of synclient -l:

Parameter settings:
    LeftEdge                = 1752
    RightEdge               = 5192
    TopEdge                 = 1620
    BottomEdge              = 4236
    FingerLow               = 24
    FingerHigh              = 29
    FingerPress             = 255
    MaxTapTime              = 180
    MaxTapMove              = 221
    MaxDoubleTapTime        = 180
    SingleTapTimeout        = 180
    ClickTime               = 100
    FastTaps                = 0
    EmulateMidButtonTime    = 75
    EmulateTwoFingerMinZ    = 29
    EmulateTwoFingerMinW    = 6
    VertScrollDelta         = 100
    HorizScrollDelta        = 100
    VertEdgeScroll          = 1
    HorizEdgeScroll         = 0
    CornerCoasting          = 0
    VertTwoFingerScroll     = 0
    HorizTwoFingerScroll    = 0
    MinSpeed                = 1
    MaxSpeed                = 1.75
    AccelFactor             = 0.0398089
    TrackstickSpeed         = 40
    EdgeMotionMinZ          = 29
    EdgeMotionMaxZ          = 159
    EdgeMotionMinSpeed      = 1
    EdgeMotionMaxSpeed      = 401
    EdgeMotionUseAlways     = 0
    TouchpadOff             = 0
    LockedDrags             = 0
    LockedDragTimeout       = 5000
    RTCornerButton          = 0
    RBCornerButton          = 0
    LTCornerButton          = 0
    LBCornerButton          = 0
    TapButton1              = 1
    TapButton2              = 1
    TapButton3              = 3
    ClickFinger1            = 1
    ClickFinger2            = 1
    ClickFinger3            = 1
    CircularScrolling       = 0
    CircScrollDelta         = 0.1
    CircScrollTrigger       = 0
    CircularPad             = 0
    PalmDetect              = 0
    PalmMinWidth            = 9
    PalmMinZ                = 199
    CoastingSpeed           = 20
    CoastingFriction        = 50
    PressureMotionMinZ      = 29
    PressureMotionMaxZ      = 159
    PressureMotionMinFactor = 1
    PressureMotionMaxFactor = 1
    GrabEventDevice         = 1
    TapAndDragGesture       = 1
    AreaLeftEdge            = 0
    AreaRightEdge           = 0
    AreaTopEdge             = 0
    AreaBottomEdge          = 0

Please, help me.

Last edited by serzh (2011-06-26 15:15:07)

Offline

#2 2011-06-26 15:32:56

ophiel
Member
Registered: 2011-06-17
Posts: 15
Website

Re: Touchpad problems on Asus

this is my 10-synaptics.conf (asus as well), everything is working just fine.

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Option "TapButton1" "1"
        Option "TapButton2" "2"
        Option "TapButton3" "3"
       Option "VertEdgeScroll" "on"
        Option "VertTwoFingerScroll" "on"
        Option "HorizEdgeScroll" "on"
        Option "HorizTwoFingerScroll" "on"
        Option "CircularScrolling" "on"
         Option "CircScrollTrigger" "2"
        Option "EmulateTwoFingerMinZ" "0"
EndSection

show your 10-synaptics.conf file please.

Offline

#3 2011-06-26 15:52:48

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

Here is:

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Option "TapButton1" "1"
        Option "TapButton2" "1"
        Option "TapButton3" "3"
        Option "SHMConfig" "true"
EndSection

Offline

#4 2011-06-27 16:26:07

ophiel
Member
Registered: 2011-06-17
Posts: 15
Website

Re: Touchpad problems on Asus

SHMConfig is deprecated as far as i know. Try to disable it, scrolling and other options can be enabled as in my config, to disable tapping while using keyboard I personally use 'syndaemon -t'.

Maybe you'll find something interesting here https://wiki.archlinux.org/index.php/Synaptics

Last edited by ophiel (2011-06-27 16:31:17)

Offline

#5 2011-06-28 08:10:49

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

I've done it before and read the article.
Today I've delete the x86-input-synaptic package and the touchpad became working fine. But tapping and scrolling are not working. Can i activate this things withot those package?

Offline

#6 2011-06-29 08:02:12

ophiel
Member
Registered: 2011-06-17
Posts: 15
Website

Re: Touchpad problems on Asus

i don't think so. without 'synaptics' driver your touchpad is seen by xwindows as a normal mouse, that's why some features typical for touchpad are disabled.

I can only suggest searching AUR for alternative drivers hmm

but it's kind of strange, synaptics touchpads should all work fine with the same drivers, the support for synaptics in linux/xorg was always great... that's why I think there must be something wrong with your configuration... were there any errors concerning touchpad in dmesg or in logs? what model of asus do you have?

Last edited by ophiel (2011-06-29 08:05:05)

Offline

#7 2011-06-29 20:12:33

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

There was no errors about touchpad, synaptic in log file and in dmesg:(. I have Asus x80L.

Last edited by serzh (2011-06-29 20:14:34)

Offline

#8 2011-06-29 22:15:13

einhard
Member
From: Poland
Registered: 2010-01-05
Posts: 89

Re: Touchpad problems on Asus

Could you give output of

xinput list

Probably your touchpad isn't recognized correctly and you must force right driver. If you have elan touchpad try

sudo rmmod psmouse && sudo modprobe psmouse force_elantech=1

You will find your touchpad with lspci or lsusb

Last edited by einhard (2011-06-29 22:17:25)

Offline

#9 2011-06-30 01:11:59

ophiel
Member
Registered: 2011-06-17
Posts: 15
Website

Re: Touchpad problems on Asus

http://arjan.opmeer.net/elantech/

on this site there is a patch for synaptics drivers to make it support elantech.

strange thing that packer -Ss elantech returns only

aur/kernel26-jumpycursorhack 2.6.29.4-1
    Hacked kernel fixing the jumpy cursor bug on some Elantech touchpads 

... you can try it if everything else fails.

sorry, i didn't know that asus cooperated with elantech (i knew about msi), know i see it in google. there is a high possibility that einhard's command or the patch will work, gl.

Last edited by ophiel (2011-06-30 01:13:55)

Offline

#10 2011-06-30 06:59:01

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

xinput list returns:

⎡ Virtual core pointer                                        id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                   id=4    [slave  pointer  (2)]
⎜   ↳ Logitech USB-PS/2 Optical Mouse             id=9    [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                  id=12    [slave  pointer  (2)]
⎣ Virtual core keyboard                                id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard                 id=5    [slave  keyboard (3)]
    ↳ Power Button                                       id=6    [slave  keyboard (3)]
    ↳ Video Bus                                             id=7    [slave  keyboard (3)]
    ↳ Sleep Button                                        id=8    [slave  keyboard (3)]
    ↳ Asus Laptop extra buttons                   id=10    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard                id=11    [slave  keyboard (3)]

I was trying to find my touchpad with lsusb and lspci but I can't.
There is output of lspci:

00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 03)
00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary) (rev 03)
00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03)
00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 (rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 4 (rev 03)
00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
00:1f.2 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA IDE Controller (rev 03)
02:00.0 Ethernet controller: Atheros Communications Inc. AR5001 Wireless Network Adapter (rev 01)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
07:03.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05)
07:03.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
07:03.2 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
07:03.3 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)

and there is lsusb:

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 046d:c040 Logitech, Inc. Corded Tilt-Wheel Mouse
Bus 005 Device 002: ID 0b05:1712 ASUSTek Computer, Inc. BT-183 Bluetooth 2.0+EDR adapter

When I'm trying to make the elantech fix, I get this error:

synproto.h:92:26: error: unknown type name 'LocalDevicePtr'
synproto.h:93:27: error: unknown type name 'LocalDevicePtr'
synproto.h:94:27: error: unknown type name 'LocalDevicePtr'
synproto.h:95:25: error: unknown type name 'LocalDevicePtr'
synproto.h:98:26: error: unknown type name 'LocalDevicePtr'
synproto.h:99:31: error: unknown type name 'LocalDevicePtr'

and after many others error produced by first. sad
The command:

sudo rmmod psmouse && sudo modprobe psmouse force_elantech=1

doesn't solve the touchpad problem.

Please help.

Offline

#11 2011-06-30 11:45:04

einhard
Member
From: Poland
Registered: 2010-01-05
Posts: 89

Re: Touchpad problems on Asus

It's not recognizing problem because you have touchpad in xinput. Revert everything to most vanilla configuration.

Give output from

xinput list-props "SynPS/2 Synaptics TouchPad"

Do you have Logitech mouse or any other pointing device plugged beside touchpad? If no, then mark everything beside keyboard in /etc/X11/xorg.conf.d/10-evdev.conf
example:

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

#Section "InputClass"
#        Identifier "evdev pointer catchall"
#        MatchIsPointer "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
    Option "XkbLayout" "pl"
EndSection

#Section "InputClass"
#        Identifier "evdev touchpad catchall"
#        MatchIsTouchpad "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

#Section "InputClass"
#        Identifier "evdev tablet catchall"
#        MatchIsTablet "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

#Section "InputClass"
#        Identifier "evdev touchscreen catchall"
#        MatchIsTouchscreen "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

the /etc/X11/xorg.conf.d/10-synaptics.conf should look for now like this

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Option "TapButton1" "1"
        Option "TapButton2" "2"
        Option "TapButton3" "3"
EndSection

After that one more time give output from xinput list. You can show also dmesg and xorg log

Get some tool for tweaking synaptics driver, for example synaptiks, gpointing-device-settings, etc. and try changing sensitivity and other settings there.

You can also try

sudo rmmod psmouse && sudo modprobe psmouse proto=imps

or add

options psmouse proto=imps

to some file in /etc/modprobe.d/

Do you have similar problem with Ubuntu liveCD or Windows?

Now I think it's a problem related to your DM configuration. What DM are you using (Gnome, KDE, Xfce, LXDE, etc.)? Do you have button disabling touchpad or other options enabled like disabling touchpad on typing?

Offline

#12 2011-06-30 18:30:16

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

The output of xinput list-props "SynPS/2 Synaptics TouchPad" is:

Device 'SynPS/2 Synaptics TouchPad':
    Device Enabled (135):    1
    Coordinate Transformation Matrix (137):    1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    Device Accel Profile (253):    1
    Device Accel Constant Deceleration (254):    2.500000
    Device Accel Adaptive Deceleration (255):    1.000000
    Device Accel Velocity Scaling (256):    12.500000
    Synaptics Edges (257):    1752, 5192, 1620, 4236
    Synaptics Finger (258):    24, 29, 255
    Synaptics Tap Time (259):    180
    Synaptics Tap Move (260):    221
    Synaptics Tap Durations (261):    180, 180, 100
    Synaptics Tap FastTap (262):    0
    Synaptics Middle Button Timeout (263):    75
    Synaptics Two-Finger Pressure (264):    29
    Synaptics Two-Finger Width (265):    6
    Synaptics Scrolling Distance (266):    100, 100
    Synaptics Edge Scrolling (267):    1, 0, 0
    Synaptics Two-Finger Scrolling (268):    0, 0
    Synaptics Move Speed (269):    1.000000, 1.750000, 0.039809, 40.000000
    Synaptics Edge Motion Pressure (270):    29, 159
    Synaptics Edge Motion Speed (271):    1, 401
    Synaptics Edge Motion Always (272):    0
    Synaptics Off (273):    0
    Synaptics Locked Drags (274):    0
    Synaptics Locked Drags Timeout (275):    5000
    Synaptics Tap Action (276):    0, 0, 0, 0, 0, 0, 0
    Synaptics Click Action (277):    1, 1, 1
    Synaptics Circular Scrolling (278):    0
    Synaptics Circular Scrolling Distance (279):    0.100000
    Synaptics Circular Scrolling Trigger (280):    0
    Synaptics Circular Pad (281):    0
    Synaptics Palm Detection (282):    0
    Synaptics Palm Dimensions (283):    9, 199
    Synaptics Coasting Speed (284):    20.000000, 50.000000
    Synaptics Pressure Motion (285):    29, 159
    Synaptics Pressure Motion Factor (286):    1.000000, 1.000000
    Synaptics Grab Event Device (287):    1
    Synaptics Gestures (288):    1
    Synaptics Capabilities (289):    1, 0, 1, 0, 0, 1, 1
    Synaptics Pad Resolution (290):    84, 57
    Synaptics Area (291):    0, 0, 0, 0
    Synaptics Noise Cancellation (292):    25, 25

Yes, I have the mouse connected. But I disconnect it before testing touchpad. I change the lines in xorg configs, and here is ouptpu of xinput list:

⎡ Virtual core pointer                        id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                  id=4    [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                  id=11    [slave  pointer  (2)]
⎣ Virtual core keyboard                       id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard                 id=5    [slave  keyboard (3)]
    ↳ Power Button                                id=6    [slave  keyboard (3)]
    ↳ Video Bus                                   id=7    [slave  keyboard (3)]
    ↳ Sleep Button                                id=8    [slave  keyboard (3)]
    ↳ Asus Laptop extra buttons                   id=9    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard                id=10    [slave  keyboard (3)]

dmesg:

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 27 22:01:13 CEST 2011
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e3000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f7a0000 (usable)
[    0.000000]  BIOS-e820: 000000007f7a0000 - 000000007f7ae000 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f7ae000 - 000000007f7f0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f7f0000 - 000000007f800000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI 2.4 present.
[    0.000000] DMI: ASUSTeK Computer Inc.         A8Le                /A8Le       , BIOS 205     02/20/2008
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7f7a0 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07F800000 mask FFF800000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] found SMP MP-table at [c00ff780] ff780
[    0.000000] initial memory mapped : 0 - 01c00000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
[    0.000000] RAMDISK: 7f5db000 - 7f790000
[    0.000000] Allocated new RAMDISK: 37649000 - 377fd26a
[    0.000000] Move RAMDISK from 000000007f5db000 - 000000007f78f269 to 37649000 - 377fd269
[    0.000000] ACPI: RSDP 000f7fd0 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT 7f7a0100 00084 (v01 A_M_I_ OEMXSDT  02000820 MSFT 00000097)
[    0.000000] ACPI: FACP 7f7a0290 000F4 (v03 A_M_I_ OEMFACP  02000820 MSFT 00000097)
[    0.000000] ACPI: DSDT 7f7a0640 0C22B (v01  A8Le0 A8Le0001 00000001 INTL 20051117)
[    0.000000] ACPI: FACS 7f7ae000 00040
[    0.000000] ACPI: APIC 7f7a0390 0005C (v01 A_M_I_ OEMAPIC  02000820 MSFT 00000097)
[    0.000000] ACPI: MCFG 7f7a03f0 0003C (v01 A_M_I_ OEMMCFG  02000820 MSFT 00000097)
[    0.000000] ACPI: OEMX 7f7a0430 00176 (v01 A_M_I_ OEMXLIC  02000820 MSFT 00000097)
[    0.000000] ACPI: BOOT 7f7a05b0 00028 (v01 A_M_I_ OEMBOOT  02000820 MSFT 00000097)
[    0.000000] ACPI: ECDT 7f7a05e0 00054 (v01 A_M_I_ OEMECDT  02000820 MSFT 00000097)
[    0.000000] ACPI: OEMB 7f7ae040 00060 (v01 A_M_I_ AMI_OEM  02000820 MSFT 00000097)
[    0.000000] ACPI: HPET 7f7ac870 00038 (v01 A_M_I_ OEMHPET  02000820 MSFT 00000097)
[    0.000000] ACPI: GSCI 7f7ae0a0 02024 (v01 A_M_I_ GMCHSCI  02000820 MSFT 00000097)
[    0.000000] ACPI: ATKG 7f7b02d0 08024 (v01 A_M_I_  OEMATKG 05000702 MSFT 00000097)
[    0.000000] ACPI: SSDT 7f7b8300 005F1 (v01  PmRef  Cpu0Cst 00003001 INTL 20051117)
[    0.000000] ACPI: SSDT 7f7b8900 002CD (v01  PmRef   CpuPm1 00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1151MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0007f7a0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0007f7a0
[    0.000000] On node 0 totalpages: 522031
[    0.000000] free_area_init_node: node 0, pgdat c14a1980, node_mem_map f6658200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2304 pages used for memmap
[    0.000000]   HighMem zone: 292514 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x81] disabled)
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e3000
[    0.000000] PM: Registered nosave memory: 00000000000e3000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 7f800000 (gap: 7f800000:7f600000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 12 pages/cpu @f6000000 s27648 r0 d21504 u2097152
[    0.000000] pcpu-alloc: s27648 r0 d21504 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517951
[    0.000000] Kernel command line: root=/dev/sda7 ro
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] allocated 8354048 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0007f7a0)
[    0.000000] Memory: 2054704k/2088576k available (3377k kernel code, 33420k reserved, 1389k data, 512k init, 1179272k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc14a8000 - 0xc1528000   ( 512 kB)
[    0.000000]       .data : 0xc134c7bf - 0xc14a7c00   (1389 kB)
[    0.000000]       .text : 0xc1000000 - 0xc134c7bf   (3377 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Preemptable hierarchical RCU implementation.
[    0.000000]     RCU-based detection of stalled CPUs is disabled.
[    0.000000]     Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:512
[    0.000000] CPU 0 irqstacks, hard=f540c000 soft=f540e000
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1994.995 MHz processor.
[    0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.23 BogoMIPS (lpj=6649983)
[    0.003456] pid_max: default: 32768 minimum: 301
[    0.003556] Security Framework initialized
[    0.003617] AppArmor: AppArmor disabled by boot time parameter
[    0.003697] Mount-cache hash table entries: 512
[    0.003976] Initializing cgroup subsys ns
[    0.004036] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[    0.004113] Initializing cgroup subsys cpuacct
[    0.004182] Initializing cgroup subsys memory
[    0.004249] Initializing cgroup subsys devices
[    0.004307] Initializing cgroup subsys freezer
[    0.004364] Initializing cgroup subsys net_cls
[    0.004422] Initializing cgroup subsys blkio
[    0.004523] mce: CPU supports 6 MCE banks
[    0.004587] CPU0: Thermal monitoring handled by SMI
[    0.004591] using mwait in idle threads.
[    0.005069] SMP alternatives: switching to UP code
[    0.010859] ACPI: Core revision 20110316
[    0.020012] ftrace: allocating 15224 entries in 30 pages
[    0.030052] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.030433] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.063500] CPU0: Intel(R) Celeron(R) CPU          550  @ 2.00GHz stepping 01
[    0.066663] Performance Events: PEBS fmt0-, Core2 events, Intel PMU driver.
[    0.066663] ... version:                2
[    0.066663] ... bit width:              40
[    0.066663] ... generic registers:      2
[    0.066663] ... value mask:             000000ffffffffff
[    0.066663] ... max period:             000000007fffffff
[    0.066663] ... fixed-purpose events:   3
[    0.066663] ... event mask:             0000000700000003
[    0.083471] NMI watchdog enabled, takes one hw-pmu counter.
[    0.089998] Brought up 1 CPUs
[    0.090054] Total of 1 processors activated (3991.23 BogoMIPS).
[    0.090756] devtmpfs: initialized
[    0.090974] PM: Registering ACPI NVS region at 7f7ae000 (270336 bytes)
[    0.092164] print_constraints: dummy: 
[    0.092278] NET: Registered protocol family 16
[    0.092444] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.092519] ACPI: bus type pci registered
[    0.092668] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.092745] PCI: not using MMCONFIG
[    0.093011] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=7
[    0.093071] PCI: Using configuration type 1 for base access
[    0.093714] bio: create slab <bio-0> at 0
[    0.095509] ACPI: EC: EC description table is found, configuring boot EC
[    0.100709] ACPI: Executed 1 blocks of module-level executable AML code
[    0.116750] ACPI Warning: Incorrect checksum in table [ATKG] - 0xF7, should be 0x59 (20110316/tbutils-314)
[    0.117321] ACPI: Interpreter enabled
[    0.117387] ACPI: (supports S0 S3 S4 S5)
[    0.117610] ACPI: Using IOAPIC for interrupt routing
[    0.118616] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.119289] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.119365] PCI: Using MMCONFIG for extended config space
[    0.131919] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
[    0.136903] ACPI: No dock devices found.
[    0.136960] HEST: Table not found.
[    0.137017] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.137345] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.137561] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.137623] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.137685] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.137759] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff]
[    0.138649] pci_root PNP0A08:00: host bridge window [mem 0x7f800000-0xffffffff]
[    0.138736] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600
[    0.138788] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300
[    0.138805] pci 0000:00:02.0: reg 10: [mem 0xfeb00000-0xfebfffff 64bit]
[    0.138815] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.138823] pci 0000:00:02.0: reg 20: [io  0xec00-0xec07]
[    0.138861] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380
[    0.138875] pci 0000:00:02.1: reg 10: [mem 0xfe900000-0xfe9fffff 64bit]
[    0.138953] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03
[    0.139001] pci 0000:00:1a.0: reg 20: [io  0xdc00-0xdc1f]
[    0.139034] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03
[    0.139081] pci 0000:00:1a.1: reg 20: [io  0xd880-0xd89f]
[    0.139127] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03
[    0.139149] pci 0000:00:1a.7: reg 10: [mem 0xfeaff400-0xfeaff7ff]
[    0.139230] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.139235] pci 0000:00:1a.7: PME# disabled
[    0.139259] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403
[    0.139277] pci 0000:00:1b.0: reg 10: [mem 0xfeaf8000-0xfeafbfff 64bit]
[    0.139343] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.139347] pci 0000:00:1b.0: PME# disabled
[    0.139370] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604
[    0.139436] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.139440] pci 0000:00:1c.0: PME# disabled
[    0.139464] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604
[    0.139530] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.139535] pci 0000:00:1c.1: PME# disabled
[    0.139559] pci 0000:00:1c.2: [8086:2843] type 1 class 0x000604
[    0.139625] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.139629] pci 0000:00:1c.2: PME# disabled
[    0.139653] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604
[    0.139720] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.139724] pci 0000:00:1c.3: PME# disabled
[    0.139748] pci 0000:00:1c.4: [8086:2847] type 1 class 0x000604
[    0.139814] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.139818] pci 0000:00:1c.4: PME# disabled
[    0.139842] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03
[    0.139889] pci 0000:00:1d.0: reg 20: [io  0xd800-0xd81f]
[    0.139925] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03
[    0.139973] pci 0000:00:1d.1: reg 20: [io  0xd480-0xd49f]
[    0.140012] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03
[    0.140060] pci 0000:00:1d.2: reg 20: [io  0xd400-0xd41f]
[    0.140105] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03
[    0.140127] pci 0000:00:1d.7: reg 10: [mem 0xfeaff000-0xfeaff3ff]
[    0.140207] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.140212] pci 0000:00:1d.7: PME# disabled
[    0.140232] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
[    0.140298] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601
[    0.140395] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0250 (mask 000f)
[    0.140502] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101
[    0.140517] pci 0000:00:1f.1: reg 10: [io  0x0000-0x0007]
[    0.140528] pci 0000:00:1f.1: reg 14: [io  0x0000-0x0003]
[    0.140539] pci 0000:00:1f.1: reg 18: [io  0x08f0-0x08f7]
[    0.140550] pci 0000:00:1f.1: reg 1c: [io  0x08f8-0x08fb]
[    0.140561] pci 0000:00:1f.1: reg 20: [io  0xffa0-0xffaf]
[    0.140600] pci 0000:00:1f.2: [8086:2828] type 0 class 0x000101
[    0.140616] pci 0000:00:1f.2: reg 10: [io  0xe880-0xe887]
[    0.140626] pci 0000:00:1f.2: reg 14: [io  0xe800-0xe803]
[    0.140635] pci 0000:00:1f.2: reg 18: [io  0xe480-0xe487]
[    0.140645] pci 0000:00:1f.2: reg 1c: [io  0xe400-0xe403]
[    0.140655] pci 0000:00:1f.2: reg 20: [io  0xe080-0xe08f]
[    0.140664] pci 0000:00:1f.2: reg 24: [io  0xe000-0xe00f]
[    0.140691] pci 0000:00:1f.2: PME# supported from D3hot
[    0.140695] pci 0000:00:1f.2: PME# disabled
[    0.140753] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    0.140814] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.140819] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.140826] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.140894] pci 0000:02:00.0: [168c:001c] type 0 class 0x000200
[    0.140920] pci 0000:02:00.0: reg 10: [mem 0xfdcf0000-0xfdcfffff 64bit]
[    0.141052] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    0.141112] pci 0000:00:1c.1:   bridge window [io  0xf000-0x0000] (disabled)
[    0.141117] pci 0000:00:1c.1:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.141124] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.141196] pci 0000:03:00.0: [10ec:8168] type 0 class 0x000200
[    0.141216] pci 0000:03:00.0: reg 10: [io  0xb800-0xb8ff]
[    0.141252] pci 0000:03:00.0: reg 18: [mem 0xfddff000-0xfddfffff 64bit]
[    0.141293] pci 0000:03:00.0: reg 30: [mem 0xfddc0000-0xfdddffff pref]
[    0.141345] pci 0000:03:00.0: supports D1 D2
[    0.141347] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.141353] pci 0000:03:00.0: PME# disabled
[    0.141384] pci 0000:00:1c.2: PCI bridge to [bus 03-03]
[    0.141445] pci 0000:00:1c.2:   bridge window [io  0xb000-0xbfff]
[    0.141450] pci 0000:00:1c.2:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.141457] pci 0000:00:1c.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.141504] pci 0000:00:1c.3: PCI bridge to [bus 04-04]
[    0.141565] pci 0000:00:1c.3:   bridge window [io  0xf000-0x0000] (disabled)
[    0.141569] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.141576] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.141624] pci 0000:00:1c.4: PCI bridge to [bus 05-06]
[    0.141684] pci 0000:00:1c.4:   bridge window [io  0xc000-0xcfff]
[    0.141689] pci 0000:00:1c.4:   bridge window [mem 0xfde00000-0xfe5fffff]
[    0.141696] pci 0000:00:1c.4:   bridge window [mem 0xbdf00000-0xbfefffff 64bit pref]
[    0.141737] pci 0000:07:03.0: [1180:0832] type 0 class 0x000c00
[    0.141758] pci 0000:07:03.0: reg 10: [mem 0xfe6ff800-0xfe6fffff]
[    0.141834] pci 0000:07:03.0: PME# supported from D0 D3hot D3cold
[    0.141839] pci 0000:07:03.0: PME# disabled
[    0.141858] pci 0000:07:03.1: [1180:0822] type 0 class 0x000805
[    0.141878] pci 0000:07:03.1: reg 10: [mem 0xfe6ff400-0xfe6ff4ff]
[    0.141954] pci 0000:07:03.1: supports D1 D2
[    0.141956] pci 0000:07:03.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.141961] pci 0000:07:03.1: PME# disabled
[    0.141979] pci 0000:07:03.2: [1180:0592] type 0 class 0x000880
[    0.141999] pci 0000:07:03.2: reg 10: [mem 0xfe6ff000-0xfe6ff0ff]
[    0.142074] pci 0000:07:03.2: supports D1 D2
[    0.142077] pci 0000:07:03.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.142082] pci 0000:07:03.2: PME# disabled
[    0.142100] pci 0000:07:03.3: [1180:0852] type 0 class 0x000880
[    0.142120] pci 0000:07:03.3: reg 10: [mem 0xfe6fec00-0xfe6fecff]
[    0.142195] pci 0000:07:03.3: supports D1 D2
[    0.142198] pci 0000:07:03.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.142203] pci 0000:07:03.3: PME# disabled
[    0.142255] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode)
[    0.142318] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.142323] pci 0000:00:1e.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.142330] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.142333] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.142335] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.142338] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.142341] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[    0.142344] pci 0000:00:1e.0:   bridge window [mem 0x7f800000-0xffffffff] (subtractive decode)
[    0.142374] pci_bus 0000:00: on NUMA node 0
[    0.142378] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.142576] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
[    0.142623] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P3._PRT]
[    0.142674] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
[    0.142725] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P5._PRT]
[    0.142771] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT]
[    0.142847] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[    0.143029]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.143358]  pci0000:00: ACPI _OSC control (0x1d) granted
[    0.153314] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12)
[    0.153757] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 12)
[    0.154191] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 12)
[    0.154625] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 10 12)
[    0.155058] ACPI: PCI Interrupt Link [LNKE] (IRQs *6)
[    0.155270] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 7 10 12)
[    0.155704] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *10 12)
[    0.156137] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 12)
[    0.156675] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.156759] vgaarb: loaded
[    0.156913] PCI: Using ACPI for IRQ routing
[    0.157002] PCI: pci_cache_line_size set to 64 bytes
[    0.157095] reserve RAM buffer: 000000000009fc00 - 000000000009ffff 
[    0.157098] reserve RAM buffer: 000000007f7a0000 - 000000007fffffff 
[    0.157221] NetLabel: Initializing
[    0.157277] NetLabel:  domain hash size = 128
[    0.157333] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.157404] NetLabel:  unlabeled traffic allowed by default
[    0.157474] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.157538] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.157744] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.166676] Switching to clocksource hpet
[    0.169948] Switched to NOHz mode on CPU #0
[    0.173133] pnp: PnP ACPI init
[    0.173220] ACPI: bus type pnp registered
[    0.173439] pnp 00:00: [bus 00-ff]
[    0.173442] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.173445] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.173448] pnp 00:00: [io  0x0d00-0xffff window]
[    0.173450] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.173453] pnp 00:00: [mem 0x000d0000-0x000dffff window]
[    0.173455] pnp 00:00: [mem 0x7f800000-0xffffffff window]
[    0.173543] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.173554] pnp 00:01: [mem 0xfed14000-0xfed19fff]
[    0.173614] system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved
[    0.173676] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.173708] pnp 00:02: [dma 4]
[    0.173710] pnp 00:02: [io  0x0000-0x000f]
[    0.173713] pnp 00:02: [io  0x0081-0x0083]
[    0.173715] pnp 00:02: [io  0x0087]
[    0.173717] pnp 00:02: [io  0x0089-0x008b]
[    0.173719] pnp 00:02: [io  0x008f]
[    0.173721] pnp 00:02: [io  0x00c0-0x00df]
[    0.173748] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.173759] pnp 00:03: [io  0x0070-0x0071]
[    0.173773] pnp 00:03: [irq 8]
[    0.173799] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.173835] pnp 00:04: [io  0x0060]
[    0.173837] pnp 00:04: [io  0x0064]
[    0.173843] pnp 00:04: [irq 1]
[    0.173871] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.173919] pnp 00:05: [irq 12]
[    0.173957] pnp 00:05: Plug and Play ACPI device, IDs SYN0a06 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
[    0.173967] pnp 00:06: [io  0x0061]
[    0.173994] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.174004] pnp 00:07: [io  0x00f0-0x00ff]
[    0.174009] pnp 00:07: [irq 13]
[    0.174036] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.174149] pnp 00:08: [io  0x0010-0x001f]
[    0.174151] pnp 00:08: [io  0x0022-0x003f]
[    0.174154] pnp 00:08: [io  0x0044-0x005f]
[    0.174156] pnp 00:08: [io  0x0063]
[    0.174157] pnp 00:08: [io  0x0065]
[    0.174159] pnp 00:08: [io  0x0067-0x006f]
[    0.174161] pnp 00:08: [io  0x0072-0x007f]
[    0.174163] pnp 00:08: [io  0x0080]
[    0.174165] pnp 00:08: [io  0x0084-0x0086]
[    0.174167] pnp 00:08: [io  0x0088]
[    0.174169] pnp 00:08: [io  0x008c-0x008e]
[    0.174171] pnp 00:08: [io  0x0090-0x009f]
[    0.174173] pnp 00:08: [io  0x00a2-0x00bf]
[    0.174175] pnp 00:08: [io  0x00e0-0x00ef]
[    0.174177] pnp 00:08: [io  0x04d0-0x04d1]
[    0.174179] pnp 00:08: [io  0x0800-0x087f]
[    0.174181] pnp 00:08: [io  0x0400-0x041f]
[    0.174183] pnp 00:08: [io  0x0500-0x053f]
[    0.174185] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
[    0.174187] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
[    0.174189] pnp 00:08: [mem 0xfed45000-0xfed89fff]
[    0.174191] pnp 00:08: [mem 0xffb00000-0xffbfffff]
[    0.174194] pnp 00:08: [mem 0xfff00000-0xffffffff]
[    0.174264] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.174325] system 00:08: [io  0x0800-0x087f] has been reserved
[    0.174386] system 00:08: [io  0x0400-0x041f] has been reserved
[    0.174446] system 00:08: [io  0x0500-0x053f] has been reserved
[    0.174507] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.174568] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.174630] system 00:08: [mem 0xfed45000-0xfed89fff] has been reserved
[    0.174691] system 00:08: [mem 0xffb00000-0xffbfffff] has been reserved
[    0.174753] system 00:08: [mem 0xfff00000-0xffffffff] has been reserved
[    0.174814] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174878] pnp 00:09: [mem 0xfed00000-0xfed003ff]
[    0.174908] pnp 00:09: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.174960] pnp 00:0a: [mem 0xfec00000-0xfec00fff]
[    0.174963] pnp 00:0a: [mem 0xfee00000-0xfee00fff]
[    0.174965] pnp 00:0a: [io  0x0250-0x0253]
[    0.174967] pnp 00:0a: [io  0x0256-0x025f]
[    0.175014] system 00:0a: [io  0x0250-0x0253] has been reserved
[    0.175075] system 00:0a: [io  0x0256-0x025f] has been reserved
[    0.175135] system 00:0a: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.175197] system 00:0a: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.175259] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.175360] pnp 00:0b: [mem 0xe0000000-0xefffffff]
[    0.175406] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
[    0.175469] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.180181] pnp 00:0c: [mem 0x00000000-0x0009ffff]
[    0.180184] pnp 00:0c: [mem 0x000c0000-0x000cffff]
[    0.180186] pnp 00:0c: [mem 0x000e0000-0x000fffff]
[    0.180188] pnp 00:0c: [mem 0x00100000-0x7f7fffff]
[    0.180191] pnp 00:0c: [mem 0x00000000-0xffffffff disabled]
[    0.180258] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.180322] system 00:0c: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.180384] system 00:0c: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.180446] system 00:0c: [mem 0x00100000-0x7f7fffff] could not be reserved
[    0.180508] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.180654] pnp: PnP ACPI: found 13 devices
[    0.180710] ACPI: ACPI bus type pnp unregistered
[    0.217201] pci 0000:00:1c.3: BAR 14: assigned [mem 0x7f800000-0x7f9fffff]
[    0.217266] pci 0000:00:1c.3: BAR 15: assigned [mem 0x7fa00000-0x7fbfffff 64bit pref]
[    0.217342] pci 0000:00:1c.3: BAR 13: assigned [io  0x1000-0x1fff]
[    0.217403] pci 0000:00:1c.2: BAR 15: assigned [mem 0x7fc00000-0x7fdfffff 64bit pref]
[    0.217479] pci 0000:00:1c.1: BAR 15: assigned [mem 0x7fe00000-0x7fffffff 64bit pref]
[    0.217555] pci 0000:00:1c.1: BAR 13: assigned [io  0x2000-0x2fff]
[    0.217616] pci 0000:00:1c.0: BAR 14: assigned [mem 0x80000000-0x801fffff]
[    0.217678] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
[    0.217753] pci 0000:00:1c.0: BAR 13: assigned [io  0x3000-0x3fff]
[    0.217814] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    0.217874] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.217937] pci 0000:00:1c.0:   bridge window [mem 0x80000000-0x801fffff]
[    0.218000] pci 0000:00:1c.0:   bridge window [mem 0x80200000-0x803fffff 64bit pref]
[    0.218079] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    0.218139] pci 0000:00:1c.1:   bridge window [io  0x2000-0x2fff]
[    0.218202] pci 0000:00:1c.1:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.218265] pci 0000:00:1c.1:   bridge window [mem 0x7fe00000-0x7fffffff 64bit pref]
[    0.218344] pci 0000:00:1c.2: PCI bridge to [bus 03-03]
[    0.218404] pci 0000:00:1c.2:   bridge window [io  0xb000-0xbfff]
[    0.218467] pci 0000:00:1c.2:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.218530] pci 0000:00:1c.2:   bridge window [mem 0x7fc00000-0x7fdfffff 64bit pref]
[    0.218611] pci 0000:00:1c.3: PCI bridge to [bus 04-04]
[    0.218670] pci 0000:00:1c.3:   bridge window [io  0x1000-0x1fff]
[    0.218734] pci 0000:00:1c.3:   bridge window [mem 0x7f800000-0x7f9fffff]
[    0.218798] pci 0000:00:1c.3:   bridge window [mem 0x7fa00000-0x7fbfffff 64bit pref]
[    0.218878] pci 0000:00:1c.4: PCI bridge to [bus 05-06]
[    0.218937] pci 0000:00:1c.4:   bridge window [io  0xc000-0xcfff]
[    0.219000] pci 0000:00:1c.4:   bridge window [mem 0xfde00000-0xfe5fffff]
[    0.219063] pci 0000:00:1c.4:   bridge window [mem 0xbdf00000-0xbfefffff 64bit pref]
[    0.219143] pci 0000:00:1e.0: PCI bridge to [bus 07-07]
[    0.219201] pci 0000:00:1e.0:   bridge window [io  disabled]
[    0.219264] pci 0000:00:1e.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.219327] pci 0000:00:1e.0:   bridge window [mem pref disabled]
[    0.219397] pci 0000:00:1c.0: enabling device (0104 -> 0107)
[    0.219467] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.219533] pci 0000:00:1c.0: setting latency timer to 64
[    0.219539] pci 0000:00:1c.1: enabling device (0106 -> 0107)
[    0.219602] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.219666] pci 0000:00:1c.1: setting latency timer to 64
[    0.219675] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.219738] pci 0000:00:1c.2: setting latency timer to 64
[    0.219744] pci 0000:00:1c.3: enabling device (0104 -> 0107)
[    0.219806] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.219869] pci 0000:00:1c.3: setting latency timer to 64
[    0.219875] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.219938] pci 0000:00:1c.4: setting latency timer to 64
[    0.219945] pci 0000:00:1e.0: setting latency timer to 64
[    0.219949] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.219952] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.219954] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.219957] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[    0.219959] pci_bus 0000:00: resource 8 [mem 0x7f800000-0xffffffff]
[    0.219962] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.219964] pci_bus 0000:01: resource 1 [mem 0x80000000-0x801fffff]
[    0.219967] pci_bus 0000:01: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
[    0.219969] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.219972] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    0.219974] pci_bus 0000:02: resource 2 [mem 0x7fe00000-0x7fffffff 64bit pref]
[    0.219977] pci_bus 0000:03: resource 0 [io  0xb000-0xbfff]
[    0.219979] pci_bus 0000:03: resource 1 [mem 0xfdd00000-0xfddfffff]
[    0.219982] pci_bus 0000:03: resource 2 [mem 0x7fc00000-0x7fdfffff 64bit pref]
[    0.219984] pci_bus 0000:04: resource 0 [io  0x1000-0x1fff]
[    0.219987] pci_bus 0000:04: resource 1 [mem 0x7f800000-0x7f9fffff]
[    0.219989] pci_bus 0000:04: resource 2 [mem 0x7fa00000-0x7fbfffff 64bit pref]
[    0.219992] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.219994] pci_bus 0000:05: resource 1 [mem 0xfde00000-0xfe5fffff]
[    0.219997] pci_bus 0000:05: resource 2 [mem 0xbdf00000-0xbfefffff 64bit pref]
[    0.220008] pci_bus 0000:07: resource 1 [mem 0xfe600000-0xfe6fffff]
[    0.220011] pci_bus 0000:07: resource 4 [io  0x0000-0x0cf7]
[    0.220013] pci_bus 0000:07: resource 5 [io  0x0d00-0xffff]
[    0.220016] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff]
[    0.220018] pci_bus 0000:07: resource 7 [mem 0x000d0000-0x000dffff]
[    0.220020] pci_bus 0000:07: resource 8 [mem 0x7f800000-0xffffffff]
[    0.220071] NET: Registered protocol family 2
[    0.220196] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.220491] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.221092] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.221496] TCP: Hash tables configured (established 131072 bind 65536)
[    0.221557] TCP reno registered
[    0.221614] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.221685] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.221919] NET: Registered protocol family 1
[    0.222002] pci 0000:00:02.0: Boot video device
[    0.222163] PCI: CLS 32 bytes, default 64
[    0.222226] Unpacking initramfs...
[    0.256756] Freeing initrd memory: 1748k freed
[    0.257819] Simple Boot Flag at 0x52 set to 0x1
[    0.258138] apm: BIOS not found.
[    0.258348] audit: initializing netlink socket (disabled)
[    0.258423] type=2000 audit(1309467704.256:1): initialized
[    0.258793] highmem bounce pool size: 64 pages
[    0.258854] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.261120] VFS: Disk quotas dquot_6.5.2
[    0.261262] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.261440] msgmni has been set to 1713
[    0.261688] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.261800] io scheduler noop registered
[    0.261856] io scheduler deadline registered
[    0.261924] io scheduler cfq registered (default)
[    0.262128] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.262177] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    0.262283] pcieport 0000:00:1c.1: setting latency timer to 64
[    0.262324] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    0.262429] pcieport 0000:00:1c.2: setting latency timer to 64
[    0.262470] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
[    0.262572] pcieport 0000:00:1c.3: setting latency timer to 64
[    0.262612] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
[    0.262717] pcieport 0000:00:1c.4: setting latency timer to 64
[    0.262758] pcieport 0000:00:1c.4: irq 44 for MSI/MSI-X
[    0.262883] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.262949] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.262971] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    0.263032] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    0.263095] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    0.263114] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[    0.263175] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.263238] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
[    0.263256] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[    0.263320] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
[    0.263365] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    0.263429] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    0.263553] intel_idle: MWAIT substates: 0x1110
[    0.263555] intel_idle: does not run on family 6 model 22
[    0.263563] ERST: Table is not found!
[    0.263630] isapnp: Scanning for PnP cards...
[    0.619770] isapnp: No Plug & Play device found
[    0.619898] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.673946] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    0.676142] i8042: Detected active multiplexing controller, rev 1.1
[    0.676910] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.677007] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.677091] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.677176] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.677259] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.677409] mousedev: PS/2 mouse device common for all mice
[    0.677561] rtc_cmos 00:03: RTC can wake from S4
[    0.683436] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    0.683520] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.683605] cpuidle: using governor ladder
[    0.683661] cpuidle: using governor menu
[    0.683938] TCP cubic registered
[    0.683994] NET: Registered protocol family 17
[    0.684057] Registering the dns_resolver key type
[    0.684133] Using IPI No-Shortcut mode
[    0.684277] PM: Hibernation image not present or could not be loaded.
[    0.684283] registered taskstats version 1
[    0.684846] rtc_cmos 00:03: setting system clock to 2011-06-30 21:01:45 UTC (1309467705)
[    0.684947] Initializing network drop monitor service
[    0.685069] Freeing unused kernel memory: 512k freed
[    0.685380] Write protecting the kernel text: 3380k
[    0.685452] Write protecting the kernel read-only data: 1028k
[    0.698493] udevd[42]: starting version 171
[    0.711088] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.878520] SCSI subsystem initialized
[    0.908975] libata version 3.00 loaded.
[    0.916731] ata_piix 0000:00:1f.1: version 2.13
[    0.916753] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.916864] ata_piix 0000:00:1f.1: setting latency timer to 64
[    0.917959] scsi0 : ata_piix
[    0.918178] scsi1 : ata_piix
[    0.918836] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    0.918898] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    0.918990] ata_piix 0000:00:1f.2: PCI INT B -> GSI 20 (level, low) -> IRQ 20
[    0.919055] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    0.919560] ata2: port disabled. ignoring.
[    1.070037] ata_piix 0000:00:1f.2: setting latency timer to 64
[    1.070786] scsi2 : ata_piix
[    1.070964] scsi3 : ata_piix
[    1.072042] ata3: SATA max UDMA/133 cmd 0xe880 ctl 0xe800 bmdma 0xe080 irq 20
[    1.072109] ata4: SATA max UDMA/133 cmd 0xe480 ctl 0xe400 bmdma 0xe088 irq 20
[    1.093646] ata1.00: ATAPI: TSSTcorp CDDVDW TS-L632H, AS02, max UDMA/33
[    1.123520] ata1.00: configured for UDMA/33
[    1.129704] scsi 0:0:0:0: CD-ROM            TSSTcorp CDDVDW TS-L632H  AS02 PQ: 0 ANSI: 5
[    1.260023] Refined TSC clocksource calibration: 1994.999 MHz.
[    1.260087] Switching to clocksource tsc
[    1.863400] ata3.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.863471] ata3.01: SATA link down (SStatus 0 SControl 300)
[    1.923068] ata3.00: ATA-8: WDC WD1200BEVS-22UST0, 01.01A01, max UDMA/133
[    1.923130] ata3.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.934176] ata3.00: configured for UDMA/133
[    1.934344] scsi 2:0:0:0: Direct-Access     ATA      WDC WD1200BEVS-2 01.0 PQ: 0 ANSI: 5
[    2.413343] ata4.01: failed to resume link (SControl 0)
[    2.424223] ata4.00: SATA link down (SStatus 0 SControl 300)
[    2.424294] ata4.01: SATA link down (SStatus 0 SControl 0)
[    2.454172] sd 2:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
[    2.454298] sd 2:0:0:0: [sda] Write Protect is off
[    2.454357] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.454378] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.461491] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.461569] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.462079] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    2.551085]  sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 >
[    2.551606] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.332199] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[    4.183813] udevd[218]: starting version 171
[    4.627503] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    4.627634] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    4.772069] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
[    4.772077] ACPI: Sleep Button [SLPB]
[    4.772133] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    4.775184] ACPI: Lid Switch [LID]
[    4.775265] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    4.775271] ACPI: Power Button [PWRF]
[    4.791875] thermal LNXTHERM:00: registered as thermal_zone0
[    4.791878] ACPI: Thermal Zone [THRM] (69 C)
[    4.796141] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    4.796150] ACPI: Battery Slot [BAT0] (battery present)
[    4.912145] Linux agpgart interface v0.103
[    4.967719] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    4.967748] r8169 0000:03:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    4.967795] r8169 0000:03:00.0: setting latency timer to 64
[    4.967870] r8169 0000:03:00.0: irq 45 for MSI/MSI-X
[    4.968198] r8169 0000:03:00.0: eth0: RTL8168b/8111b at 0xf8482000, 00:1f:c6:53:bb:e5, XID 18000000 IRQ 45
[    4.981885] iTCO_vendor_support: vendor-support=0
[    5.053493] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    5.054031] ACPI: AC Adapter [AC0] (on-line)
[    5.110107] agpgart-intel 0000:00:00.0: Intel 965GM Chipset
[    5.110197] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    5.110446] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    5.111108] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[    5.149292] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
[    5.149394] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x0860)
[    5.149469] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    5.201352] ACPI: acpi_idle registered with cpuidle
[    5.206902] Monitor-Mwait will be used to enter C-1 state
[    5.210035] Monitor-Mwait will be used to enter C-2 state
[    5.210059] Marking TSC unstable due to TSC halts in idle
[    5.213454] Switching to clocksource hpet
[    5.224194] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    5.239760] usbcore: registered new interface driver usbfs
[    5.239788] usbcore: registered new interface driver hub
[    5.247183] usbcore: registered new device driver usb
[    5.260886] cfg80211: Calling CRDA to update world regulatory domain
[    5.395310] sdhci: Secure Digital Host Controller Interface driver
[    5.395313] sdhci: Copyright(c) Pierre Ossman
[    5.405209] sdhci-pci 0000:07:03.1: SDHCI controller found [1180:0822] (rev 22)
[    5.405228] sdhci-pci 0000:07:03.1: PCI INT B -> GSI 20 (level, low) -> IRQ 20
[    5.406255] sdhci-pci 0000:07:03.1: Will use DMA mode even though HW doesn't fully claim to support it.
[    5.406269] _regulator_get: 0000:07:03.1 supply vmmc not found, using dummy regulator
[    5.407350] Registered led device: mmc0::
[    5.408602] mmc0: SDHCI controller on PCI [0000:07:03.1] using DMA
[    5.414034] r592 0000:07:03.2: PCI INT B -> GSI 20 (level, low) -> IRQ 20
[    5.414247] r592: driver successfully loaded
[    5.468450] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.468490] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    5.468514] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    5.468518] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    5.468554] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    5.473406] ehci_hcd 0000:00:1a.7: debug port 1
[    5.477282] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    5.477303] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfeaff400
[    5.490016] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    5.490318] hub 1-0:1.0: USB hub found
[    5.490323] hub 1-0:1.0: 4 ports detected
[    5.490427] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    5.490454] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    5.490458] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    5.490467] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    5.498623] ehci_hcd 0000:00:1d.7: debug port 1
[    5.514131] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    5.514150] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfeaff000
[    5.527961] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    5.528581] hub 2-0:1.0: USB hub found
[    5.528587] hub 2-0:1.0: 6 ports detected
[    5.577606] firewire_ohci 0000:07:03.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    5.590379] asus_laptop: Asus Laptop Support version 0.42
[    5.590517] asus_laptop:   A8Le model detected
[    5.591253] asus_laptop: Backlight controlled by ACPI video driver
[    5.591377] input: Asus Laptop extra buttons as /devices/platform/asus_laptop/input/input5
[    5.594087] Registered led device: asus::mail
[    5.641294] firewire_ohci: Added fw-ohci device 0000:07:03.0, OHCI v1.0, 4 IR + 4 IT contexts, quirks 0x1
[    5.688222] [drm] Initialized drm 1.1.0 20060810
[    5.871933] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.871940] i915 0000:00:02.0: setting latency timer to 64
[    5.886208] i915 0000:00:02.0: irq 46 for MSI/MSI-X
[    5.886215] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    5.886216] [drm] Driver supports precise vblank timestamp query.
[    5.995245] Synaptics Touchpad, model: 1, fw: 6.2, id: 0x81a0b1, caps: 0xa04711/0x200000/0x0
[    6.020123] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    6.020487] [drm] initialized overlay support
[    6.036397] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6
[    6.143456] firewire_core: created device fw0: GUID 001e8c00012931d7, S400
[    6.205458] ath5k 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    6.205472] ath5k 0000:02:00.0: setting latency timer to 64
[    6.205522] ath5k 0000:02:00.0: registered as 'phy0'
[    6.276820] uhci_hcd: USB Universal Host Controller Interface driver
[    6.314045] fbcon: inteldrmfb (fb0) is primary device
[    6.354105] fixme: max PWM is zero.
[    6.367138] Console: switching to colour frame buffer device 160x50
[    6.377039] fb0: inteldrmfb frame buffer device
[    6.377042] drm: registered panic notifier
[    6.385756] acpi device:20: registered as cooling_device1
[    6.385839] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    6.385898] ACPI: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
[    6.386047] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    6.386744] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    6.386816] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X
[    6.386845] HDA Intel 0000:00:1b.0: setting latency timer to 64
[    6.724909] hda_codec: ALC660-VD: BIOS auto-probing.
[    6.725758] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
[    6.813735] ath: EEPROM regdomain: 0x60
[    6.813738] ath: EEPROM indicates we should expect a direct regpair map
[    6.813741] ath: Country alpha2 being used: 00
[    6.813743] ath: Regpair used: 0x60
[    6.827571] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    6.827583] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    6.827587] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    6.827603] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    6.833430] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000dc00
[    6.833633] hub 3-0:1.0: USB hub found
[    6.833640] hub 3-0:1.0: 2 ports detected
[    6.833731] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[    6.833741] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    6.833744] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    6.833753] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    6.840082] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000d880
[    6.840284] hub 4-0:1.0: USB hub found
[    6.840289] hub 4-0:1.0: 2 ports detected
[    6.840376] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    6.840386] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    6.840390] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    6.840398] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[    6.846924] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000d800
[    6.847121] hub 5-0:1.0: USB hub found
[    6.847127] hub 5-0:1.0: 2 ports detected
[    6.847217] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    6.847227] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    6.847231] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    6.847239] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[    6.853670] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d480
[    6.853882] hub 6-0:1.0: USB hub found
[    6.853887] hub 6-0:1.0: 2 ports detected
[    6.853977] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    6.853986] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    6.853990] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    6.853998] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[    6.860068] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d400
[    6.860278] hub 7-0:1.0: USB hub found
[    6.860283] hub 7-0:1.0: 2 ports detected
[    6.873529] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    6.873875] Registered led device: ath5k-phy0::rx
[    6.873899] Registered led device: ath5k-phy0::tx
[    6.873908] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70)
[    7.146694] usb 4-2: new low speed USB device number 2 using uhci_hcd
[    7.423398] usb 6-1: new full speed USB device number 2 using uhci_hcd
[    7.448745] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.1/usb4/4-2/4-2:1.0/input/input9
[    7.448972] generic-usb 0003:046D:C040.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.1-2/input0
[    7.449182] usbcore: registered new interface driver usbhid
[    7.449185] usbhid: USB HID core driver
[    7.878744] Bluetooth: Core ver 2.16
[    7.878910] NET: Registered protocol family 31
[    7.878913] Bluetooth: HCI device and connection manager initialized
[    7.878915] Bluetooth: HCI socket layer initialized
[    7.878917] Bluetooth: L2CAP socket layer initialized
[    7.879471] Bluetooth: SCO socket layer initialized
[    7.907188] Bluetooth: Generic Bluetooth USB driver ver 0.6
[    7.910200] usbcore: registered new interface driver btusb
[    7.968644] EXT4-fs (sda7): re-mounted. Opts: (null)
[    8.288259] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[    8.366668] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: (null)
[    8.443074] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
[    8.533047] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    8.559652] Adding 2047996k swap on /dev/sda6.  Priority:-1 extents:1 across:2047996k 
[    9.723320] r8169 0000:03:00.0: eth0: link down
[    9.723329] r8169 0000:03:00.0: eth0: link down
[   11.291479] NET: Registered protocol family 10
[   11.292199] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   12.347568] r8169 0000:03:00.0: eth0: link up
[   12.347750] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   23.230025] eth0: no IPv6 routers present
[   25.607804] fuse init (API version 7.16)
[   32.260504] EXT4-fs (sda7): re-mounted. Opts: commit=0
[   32.662356] EXT4-fs (sda5): re-mounted. Opts: commit=0
[   33.372684] EXT4-fs (sda8): re-mounted. Opts: commit=0
[   33.375734] EXT4-fs (sda9): re-mounted. Opts: commit=0
[   33.381892] EXT4-fs (sda1): re-mounted. Opts: commit=0

And Xorg.0.log:

[    21.489] 
X.Org X Server 1.10.2
Release Date: 2011-05-28
[    21.489] X Protocol Version 11, Revision 0
[    21.489] Build Operating System: Linux 2.6.38-ARCH i686 
[    21.489] Current Operating System: Linux myhost 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 27 22:01:13 CEST 2011 i686
[    21.489] Kernel command line: root=/dev/sda7 ro
[    21.489] Build Date: 30 May 2011  08:16:10AM
[    21.489]  
[    21.489] Current version of pixman: 0.22.0
[    21.489]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    21.489] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    21.490] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 30 21:02:06 2011
[    21.509] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    21.518] (==) No Layout section.  Using the first Screen section.
[    21.518] (==) No screen section available. Using defaults.
[    21.518] (**) |-->Screen "Default Screen Section" (0)
[    21.518] (**) |   |-->Monitor "<default monitor>"
[    21.518] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[    21.518] (==) Automatically adding devices
[    21.518] (==) Automatically enabling devices
[    21.560] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    21.560]     Entry deleted from font path.
[    21.560] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    21.560]     Entry deleted from font path.
[    21.560] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    21.560]     Entry deleted from font path.
[    21.560]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    21.560] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    21.560]     Entry deleted from font path.
[    21.560]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[    21.560] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
[    21.560] (==) ModulePath set to "/usr/lib/xorg/modules"
[    21.560] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[    21.560] (II) Loader magic: 0x822e120
[    21.560] (II) Module ABI versions:
[    21.560]     X.Org ANSI C Emulation: 0.4
[    21.560]     X.Org Video Driver: 10.0
[    21.560]     X.Org XInput driver : 12.2
[    21.560]     X.Org Server Extension : 5.0
[    21.562] (--) PCI:*(0:0:2:0) 8086:2a02:1043:14e2 rev 3, Mem @ 0xfeb00000/1048576, 0xd0000000/268435456, I/O @ 0x0000ec00/8
[    21.562] (--) PCI: (0:0:2:1) 8086:2a03:1043:14e2 rev 3, Mem @ 0xfe900000/1048576
[    21.562] (II) Open ACPI successful (/var/run/acpid.socket)
[    21.562] (II) LoadModule: "extmod"
[    21.596] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    21.610] (II) Module extmod: vendor="X.Org Foundation"
[    21.610]     compiled for 1.10.2, module version = 1.0.0
[    21.610]     Module class: X.Org Server Extension
[    21.610]     ABI class: X.Org Server Extension, version 5.0
[    21.610] (II) Loading extension MIT-SCREEN-SAVER
[    21.610] (II) Loading extension XFree86-VidModeExtension
[    21.610] (II) Loading extension XFree86-DGA
[    21.610] (II) Loading extension DPMS
[    21.610] (II) Loading extension XVideo
[    21.610] (II) Loading extension XVideo-MotionCompensation
[    21.610] (II) Loading extension X-Resource
[    21.610] (II) LoadModule: "dbe"
[    21.611] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    21.611] (II) Module dbe: vendor="X.Org Foundation"
[    21.611]     compiled for 1.10.2, module version = 1.0.0
[    21.611]     Module class: X.Org Server Extension
[    21.611]     ABI class: X.Org Server Extension, version 5.0
[    21.611] (II) Loading extension DOUBLE-BUFFER
[    21.611] (II) LoadModule: "glx"
[    21.612] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    21.621] (II) Module glx: vendor="X.Org Foundation"
[    21.621]     compiled for 1.10.2, module version = 1.0.0
[    21.621]     ABI class: X.Org Server Extension, version 5.0
[    21.621] (==) AIGLX enabled
[    21.621] (II) Loading extension GLX
[    21.621] (II) LoadModule: "record"
[    21.621] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    21.622] (II) Module record: vendor="X.Org Foundation"
[    21.622]     compiled for 1.10.2, module version = 1.13.0
[    21.622]     Module class: X.Org Server Extension
[    21.622]     ABI class: X.Org Server Extension, version 5.0
[    21.622] (II) Loading extension RECORD
[    21.622] (II) LoadModule: "dri"
[    21.622] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    21.632] (II) Module dri: vendor="X.Org Foundation"
[    21.632]     compiled for 1.10.2, module version = 1.0.0
[    21.632]     ABI class: X.Org Server Extension, version 5.0
[    21.632] (II) Loading extension XFree86-DRI
[    21.632] (II) LoadModule: "dri2"
[    21.632] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    21.646] (II) Module dri2: vendor="X.Org Foundation"
[    21.646]     compiled for 1.10.2, module version = 1.2.0
[    21.646]     ABI class: X.Org Server Extension, version 5.0
[    21.646] (II) Loading extension DRI2
[    21.646] (==) Matched intel as autoconfigured driver 0
[    21.646] (==) Matched vesa as autoconfigured driver 1
[    21.646] (==) Matched fbdev as autoconfigured driver 2
[    21.646] (==) Assigned the driver to the xf86ConfigLayout
[    21.646] (II) LoadModule: "intel"
[    21.666] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    21.686] (II) Module intel: vendor="X.Org Foundation"
[    21.686]     compiled for 1.10.2, module version = 2.15.0
[    21.686]     Module class: X.Org Video Driver
[    21.686]     ABI class: X.Org Video Driver, version 10.0
[    21.686] (II) LoadModule: "vesa"
[    21.686] (WW) Warning, couldn't open module vesa
[    21.686] (II) UnloadModule: "vesa"
[    21.686] (II) Unloading vesa
[    21.686] (EE) Failed to load module "vesa" (module does not exist, 0)
[    21.686] (II) LoadModule: "fbdev"
[    21.687] (WW) Warning, couldn't open module fbdev
[    21.687] (II) UnloadModule: "fbdev"
[    21.687] (II) Unloading fbdev
[    21.687] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    21.687] (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
[    21.687] (--) using VT number 7

[    21.695] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    21.695] drmOpenDevice: node name is /dev/dri/card0
[    21.695] drmOpenDevice: open result is 9, (OK)
[    21.695] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[    21.695] drmOpenDevice: node name is /dev/dri/card0
[    21.695] drmOpenDevice: open result is 9, (OK)
[    21.695] drmOpenByBusid: drmOpenMinor returns 9
[    21.695] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[    21.695] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[    21.695] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    21.695] (==) intel(0): RGB weight 888
[    21.695] (==) intel(0): Default visual is TrueColor
[    21.695] (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
[    21.695] (--) intel(0): Chipset: "965GM"
[    21.695] (**) intel(0): Relaxed fencing enabled
[    21.695] (**) intel(0): Framebuffer tiled
[    21.695] (**) intel(0): Pixmaps tiled
[    21.695] (**) intel(0): 3D buffers tiled
[    21.695] (**) intel(0): SwapBuffers wait enabled
[    21.695] (==) intel(0): video overlay key set to 0x101fe
[    21.695] (II) intel(0): Output LVDS1 has no monitor section
[    21.696] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[    21.713] (II) intel(0): Output VGA1 has no monitor section
[    21.713] (II) intel(0): EDID for output LVDS1
[    21.713] (II) intel(0): Manufacturer: CMO  Model: 1425  Serial#: 0
[    21.713] (II) intel(0): Year: 2006  Week: 45
[    21.713] (II) intel(0): EDID Version: 1.3
[    21.713] (II) intel(0): Digital Display Input
[    21.713] (II) intel(0): Max Image Size [cm]: horiz.: 30  vert.: 19
[    21.713] (II) intel(0): Gamma: 2.20
[    21.713] (II) intel(0): No DPMS capabilities specified
[    21.713] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    21.713] (II) intel(0): First detailed timing is preferred mode
[    21.713] (II) intel(0): redX: 0.588 redY: 0.337   greenX: 0.315 greenY: 0.534
[    21.713] (II) intel(0): blueX: 0.152 blueY: 0.125   whiteX: 0.313 whiteY: 0.329
[    21.713] (II) intel(0): Manufacturer's mask: 0
[    21.713] (II) intel(0): Supported detailed timing:
[    21.713] (II) intel(0): clock: 71.0 MHz   Image Size:  303 x 190 mm
[    21.713] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
[    21.713] (II) intel(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
[    21.713] (II) intel(0):  N141I3-L02
[    21.713] (II) intel(0):  CMO
[    21.713] (II) intel(0):  N141I3-L02
[    21.713] (II) intel(0): EDID (in hex):
[    21.713] (II) intel(0):     00ffffffffffff000daf251400000000
[    21.713] (II) intel(0):     2d100103801e13780a9f059656508827
[    21.713] (II) intel(0):     20505400000001010101010101010101
[    21.713] (II) intel(0):     010101010101bc1b00a0502017303020
[    21.713] (II) intel(0):     36002fbe10000018000000fe004e3134
[    21.713] (II) intel(0):     3149332d4c30320a2020000000fe0043
[    21.713] (II) intel(0):     4d4f0a202020202020202020000000fe
[    21.713] (II) intel(0):     004e31343149332d4c30320a20200064
[    21.713] (II) intel(0): EDID vendor "CMO", prod id 5157
[    21.713] (II) intel(0): Printing DDC gathered Modelines:
[    21.713] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[    21.724] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[    21.724] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[    21.724] (II) intel(0): Printing probed modes for output LVDS1
[    21.724] (II) intel(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[    21.724] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    21.724] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    21.724] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    21.724] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    21.743] (II) intel(0): EDID for output VGA1
[    21.743] (II) intel(0): Output LVDS1 connected
[    21.743] (II) intel(0): Output VGA1 disconnected
[    21.743] (II) intel(0): Using exact sizes for initial modes
[    21.743] (II) intel(0): Output LVDS1 using initial mode 1280x800
[    21.743] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    21.743] (II) intel(0): Kernel page flipping support detected, enabling
[    21.743] (**) intel(0): Display dimensions: (300, 190) mm
[    21.743] (**) intel(0): DPI set to (108, 106)
[    21.743] (II) Loading sub module "fb"
[    21.743] (II) LoadModule: "fb"
[    21.743] (II) Loading /usr/lib/xorg/modules/libfb.so
[    21.759] (II) Module fb: vendor="X.Org Foundation"
[    21.759]     compiled for 1.10.2, module version = 1.0.0
[    21.759]     ABI class: X.Org ANSI C Emulation, version 0.4
[    21.759] (II) Loading sub module "dri2"
[    21.759] (II) LoadModule: "dri2"
[    21.759] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    21.759] (II) Module dri2: vendor="X.Org Foundation"
[    21.759]     compiled for 1.10.2, module version = 1.2.0
[    21.759]     ABI class: X.Org Server Extension, version 5.0
[    21.759] (==) Depth 24 pixmap format is 32 bpp
[    21.759] (II) intel(0): [DRI2] Setup complete
[    21.759] (II) intel(0): [DRI2]   DRI driver: i965
[    21.759] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled
[    21.780] (II) UXA(0): Driver registered support for the following operations:
[    21.780] (II)         solid
[    21.780] (II)         copy
[    21.780] (II)         composite (RENDER acceleration)
[    21.780] (II)         put_image
[    21.780] (II)         get_image
[    21.780] (==) intel(0): Backing store disabled
[    21.780] (==) intel(0): Silken mouse enabled
[    21.781] (II) intel(0): Initializing HW Cursor
[    21.793] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    21.798] (==) intel(0): DPMS enabled
[    21.798] (==) intel(0): Intel XvMC decoder enabled
[    21.798] (II) intel(0): Set up textured video
[    21.798] (II) intel(0): Set up overlay video
[    21.798] (II) intel(0): [XvMC] i965_xvmc driver initialized.
[    21.798] (II) intel(0): direct rendering: DRI2 Enabled
[    21.798] (==) intel(0): hotplug detection: "enabled"
[    21.798] (--) RandR disabled
[    21.798] (II) Initializing built-in extension Generic Event Extension
[    21.798] (II) Initializing built-in extension SHAPE
[    21.798] (II) Initializing built-in extension MIT-SHM
[    21.798] (II) Initializing built-in extension XInputExtension
[    21.798] (II) Initializing built-in extension XTEST
[    21.798] (II) Initializing built-in extension BIG-REQUESTS
[    21.798] (II) Initializing built-in extension SYNC
[    21.798] (II) Initializing built-in extension XKEYBOARD
[    21.798] (II) Initializing built-in extension XC-MISC
[    21.798] (II) Initializing built-in extension SECURITY
[    21.798] (II) Initializing built-in extension XINERAMA
[    21.798] (II) Initializing built-in extension XFIXES
[    21.798] (II) Initializing built-in extension RENDER
[    21.798] (II) Initializing built-in extension RANDR
[    21.798] (II) Initializing built-in extension COMPOSITE
[    21.798] (II) Initializing built-in extension DAMAGE
[    21.956] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    21.956] (II) AIGLX: enabled GLX_INTEL_swap_event
[    21.956] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    21.956] (II) AIGLX: enabled GLX_SGI_make_current_read
[    21.956] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    21.956] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
[    21.956] (II) GLX: Initialized DRI2 GL provider for screen 0
[    21.957] (II) intel(0): Setting screen physical size to 338 x 211
[    22.201] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    22.201] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    22.201] (II) LoadModule: "evdev"
[    22.201] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    22.202] (II) Module evdev: vendor="X.Org Foundation"
[    22.202]     compiled for 1.10.0, module version = 2.6.0
[    22.202]     Module class: X.Org XInput Driver
[    22.202]     ABI class: X.Org XInput driver, version 12.2
[    22.202] (II) Using input driver 'evdev' for 'Power Button'
[    22.202] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    22.202] (**) Power Button: always reports core events
[    22.202] (**) Power Button: Device: "/dev/input/event3"
[    22.206] (--) Power Button: Found keys
[    22.206] (II) Power Button: Configuring as keyboard
[    22.206] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[    22.206] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    22.206] (**) Option "xkb_rules" "evdev"
[    22.206] (**) Option "xkb_model" "evdev"
[    22.206] (**) Option "xkb_layout" "us"
[    22.234] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[    22.234] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    22.234] (II) Using input driver 'evdev' for 'Video Bus'
[    22.234] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    22.234] (**) Video Bus: always reports core events
[    22.234] (**) Video Bus: Device: "/dev/input/event7"
[    22.240] (--) Video Bus: Found keys
[    22.240] (II) Video Bus: Configuring as keyboard
[    22.240] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input7/event7"
[    22.240] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[    22.240] (**) Option "xkb_rules" "evdev"
[    22.240] (**) Option "xkb_model" "evdev"
[    22.240] (**) Option "xkb_layout" "us"
[    22.246] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[    22.246] (II) No input driver/identifier specified (ignoring)
[    22.246] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    22.246] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    22.246] (II) Using input driver 'evdev' for 'Sleep Button'
[    22.246] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    22.246] (**) Sleep Button: always reports core events
[    22.246] (**) Sleep Button: Device: "/dev/input/event1"
[    22.250] (--) Sleep Button: Found keys
[    22.250] (II) Sleep Button: Configuring as keyboard
[    22.250] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1/event1"
[    22.250] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[    22.250] (**) Option "xkb_rules" "evdev"
[    22.250] (**) Option "xkb_model" "evdev"
[    22.250] (**) Option "xkb_layout" "us"
[    22.252] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event9)
[    22.252] (II) No input driver/identifier specified (ignoring)
[    22.253] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse1)
[    22.253] (II) No input driver/identifier specified (ignoring)
[    22.253] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
[    22.253] (II) No input driver/identifier specified (ignoring)
[    22.261] (II) config/udev: Adding input device Asus Laptop extra buttons (/dev/input/event5)
[    22.261] (**) Asus Laptop extra buttons: Applying InputClass "evdev keyboard catchall"
[    22.261] (II) Using input driver 'evdev' for 'Asus Laptop extra buttons'
[    22.261] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    22.261] (**) Asus Laptop extra buttons: always reports core events
[    22.261] (**) Asus Laptop extra buttons: Device: "/dev/input/event5"
[    22.263] (--) Asus Laptop extra buttons: Found keys
[    22.263] (II) Asus Laptop extra buttons: Configuring as keyboard
[    22.263] (**) Option "config_info" "udev:/sys/devices/platform/asus_laptop/input/input5/event5"
[    22.263] (II) XINPUT: Adding extended input device "Asus Laptop extra buttons" (type: KEYBOARD)
[    22.263] (**) Option "xkb_rules" "evdev"
[    22.263] (**) Option "xkb_model" "evdev"
[    22.263] (**) Option "xkb_layout" "us"
[    22.264] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    22.264] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    22.264] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    22.264] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    22.264] (**) AT Translated Set 2 keyboard: always reports core events
[    22.264] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    22.270] (--) AT Translated Set 2 keyboard: Found keys
[    22.270] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[    22.270] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    22.270] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[    22.270] (**) Option "xkb_rules" "evdev"
[    22.270] (**) Option "xkb_model" "evdev"
[    22.270] (**) Option "xkb_layout" "us"
[    22.270] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[    22.270] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    22.270] (II) LoadModule: "synaptics"
[    22.271] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    22.281] (II) Module synaptics: vendor="X.Org Foundation"
[    22.281]     compiled for 1.10.2, module version = 1.4.0
[    22.281]     Module class: X.Org XInput Driver
[    22.281]     ABI class: X.Org XInput driver, version 12.2
[    22.281] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[    22.281] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    22.281] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    22.281] (**) Option "Device" "/dev/input/event6"
[    22.313] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
[    22.313] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
[    22.313] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    22.313] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    22.313] (--) SynPS/2 Synaptics TouchPad: buttons: left right
[    22.313] (**) Option "TapButton1" "1"
[    22.313] (**) Option "TapButton2" "2"
[    22.313] (**) Option "TapButton3" "3"
[    22.340] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    22.340] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    22.353] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input6/event6"
[    22.353] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[    22.353] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    22.353] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[    22.353] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.040
[    22.353] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    22.353] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    22.353] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    22.353] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    22.373] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    22.373] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    22.373] (II) No input driver/identifier specified (ignoring)
[    22.374] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[    22.374] (II) No input driver/identifier specified (ignoring)
[    25.709] (II) intel(0): EDID vendor "CMO", prod id 5157
[    25.709] (II) intel(0): Printing DDC gathered Modelines:
[    25.709] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[    25.728] (II) intel(0): EDID vendor "CMO", prod id 5157
[    25.728] (II) intel(0): Printing DDC gathered Modelines:
[    25.728] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[    25.748] (II) intel(0): EDID vendor "CMO", prod id 5157
[    25.748] (II) intel(0): Printing DDC gathered Modelines:
[    25.748] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[    25.767] (II) intel(0): EDID vendor "CMO", prod id 5157
[    25.767] (II) intel(0): Printing DDC gathered Modelines:
[    25.767] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[    29.503] (II) intel(0): EDID vendor "CMO", prod id 5157
[    29.503] (II) intel(0): Printing DDC gathered Modelines:
[    29.503] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)

I'm using Gnome (gnome-shell). Yes I have the button disabling touchpad but it doesn't works, and all other options like this is disabled.
Installing and configuring of gpointing-device-setting gives nothing.
sudo rmmod psmouse && sudo modprobe psmouse proto=imps gives nothing too.

Also in twm touchpad works fine.

I have similar problems in Fedora, Opensuse, Windows and now in Arch. Only on Ubuntu touchpad works good. Also, if this helps, in OpenSolaris it wotks fine too.

Offline

#13 2011-07-01 18:48:19

einhard
Member
From: Poland
Registered: 2010-01-05
Posts: 89

Re: Touchpad problems on Asus

I'm using Gnome (gnome-shell). Yes I have the button disabling touchpad but it doesn't works, and all other options like this is disabled.
Installing and configuring of gpointing-device-setting gives nothing.
sudo rmmod psmouse && sudo modprobe psmouse proto=imps gives nothing too.

Also in twm touchpad works fine.

I have similar problems in Fedora, Opensuse, Windows and now in Arch. Only on Ubuntu touchpad works good. Also, if this helps, in OpenSolaris it wotks fine too.

Do you mean your touchpad on Arch with Twm works fine and on the same Arch with Gnome it doesn't? If it's true, then you know that this is related to DM configuration. Now you can disable DM control over your touchpad or try to find solution within DM.

Could you check if the problem occurs on newly created user account? You can delete .gconf .gconfd .gnome2 .gnome3, etc. but this way it will be faster.

If that doesn't help, try unninstalling gpointing-device-setting and do

gconftool-2 --type bool --set /desktop/gnome/peripherals/touchpad/touchpad_enabled true

You can do it also manually with gconf-editor. Check what options are there in /desktop/gnome/peripherals/touchpad/ (within gconf-editor)

One advice. Don't use this touchpad disabling button. It may seems that it's not working but parameters of touchpad are probably changed this way. You can dissociate the key to lock your touchpad with

gconftool-2 --type string --set /apps/gnome_settings_daemon/keybindings/touchpad ""

If you want to revert changes in place of "" copy XF86TouchpadToggle

Problems on Windows? It's a little worrisome. In the worst case it may be some kind of hardware issue related to this lock button.

Last edited by einhard (2011-07-01 18:59:16)

Offline

#14 2011-07-05 13:40:29

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

Sorry, I was wrong. Touchpad works bad in Twm too.
Creating of new user gives nothing new. And in gconf-editor I can't find the "peripherals" node.
If the button for disabling have changed the state of touchpad, can I reset this state?

Offline

#15 2011-07-05 14:54:10

einhard
Member
From: Poland
Registered: 2010-01-05
Posts: 89

Re: Touchpad problems on Asus

And in gconf-editor I can't find the "peripherals" node.

Just create everything needed.

Only on Ubuntu touchpad works good

Probably they have some patch implemented in xinput/psmouse. Can you give output of

xinput list
synclient -l

on Ubuntu (you can use liveCD)?

If the button for disabling have changed the state of touchpad, can I reset this state?

If it works on Windows just disable it and enable again, from now on don't touch it smile . I can't think of anything else.

Last edited by einhard (2011-07-05 14:56:35)

Offline

#16 2011-07-05 16:09:09

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

I've figured out the problem smile The problem was in the option EmulateTwoFingerMinZ. I've changed it from 29 to 280 and problem gone. Thanks to all who was trying to help me smile

Last edited by serzh (2011-07-05 16:09:38)

Offline

#17 2011-07-07 18:13:02

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

Hello, guys. When i resolved the first problem I've got another. When I start the X, the values TabButton1,2,3 are 0. But in 10-synaptics.conf they are not zero. Please, help.
Now my 10-synaptics.conf looks like:

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "ClickFinger1" "1"
    Option "EmulateTwoFingerMinZ" "280"
    Option "AccelFactor" "0.5"
EndSection

Offline

#18 2011-07-07 23:16:14

einhard
Member
From: Poland
Registered: 2010-01-05
Posts: 89

Re: Touchpad problems on Asus

Paste /var/log/Xorg.0.log

Offline

#19 2011-07-08 09:15:52

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

Here it is:

[   151.053] 
X.Org X Server 1.10.2
Release Date: 2011-05-28
[   151.053] X Protocol Version 11, Revision 0
[   151.053] Build Operating System: Linux 2.6.38-ARCH i686 
[   151.053] Current Operating System: Linux myhost 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 27 22:01:13 CEST 2011 i686
[   151.054] Kernel command line: root=/dev/sda7 ro
[   151.054] Build Date: 30 May 2011  08:16:10AM
[   151.054]  
[   151.054] Current version of pixman: 0.22.0
[   151.054]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[   151.054] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   151.054] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul  8 10:01:31 2011
[   151.074] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   151.104] (==) No Layout section.  Using the first Screen section.
[   151.104] (==) No screen section available. Using defaults.
[   151.104] (**) |-->Screen "Default Screen Section" (0)
[   151.104] (**) |   |-->Monitor "<default monitor>"
[   151.104] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[   151.104] (==) Automatically adding devices
[   151.104] (==) Automatically enabling devices
[   151.113] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[   151.113]     Entry deleted from font path.
[   151.113] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[   151.113]     Entry deleted from font path.
[   151.113] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   151.113]     Entry deleted from font path.
[   151.113]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   151.114] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   151.114]     Entry deleted from font path.
[   151.114]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   151.114] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
[   151.114] (==) ModulePath set to "/usr/lib/xorg/modules"
[   151.114] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[   151.114] (II) Loader magic: 0x822e120
[   151.114] (II) Module ABI versions:
[   151.114]     X.Org ANSI C Emulation: 0.4
[   151.114]     X.Org Video Driver: 10.0
[   151.114]     X.Org XInput driver : 12.2
[   151.114]     X.Org Server Extension : 5.0
[   151.115] (--) PCI:*(0:0:2:0) 8086:2a02:1043:14e2 rev 3, Mem @ 0xfeb00000/1048576, 0xd0000000/268435456, I/O @ 0x0000ec00/8
[   151.115] (--) PCI: (0:0:2:1) 8086:2a03:1043:14e2 rev 3, Mem @ 0xfe900000/1048576
[   151.116] (II) Open ACPI successful (/var/run/acpid.socket)
[   151.116] (II) LoadModule: "extmod"
[   151.117] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[   151.130] (II) Module extmod: vendor="X.Org Foundation"
[   151.130]     compiled for 1.10.2, module version = 1.0.0
[   151.130]     Module class: X.Org Server Extension
[   151.130]     ABI class: X.Org Server Extension, version 5.0
[   151.130] (II) Loading extension MIT-SCREEN-SAVER
[   151.130] (II) Loading extension XFree86-VidModeExtension
[   151.130] (II) Loading extension XFree86-DGA
[   151.131] (II) Loading extension DPMS
[   151.131] (II) Loading extension XVideo
[   151.131] (II) Loading extension XVideo-MotionCompensation
[   151.131] (II) Loading extension X-Resource
[   151.131] (II) LoadModule: "dbe"
[   151.131] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[   151.131] (II) Module dbe: vendor="X.Org Foundation"
[   151.131]     compiled for 1.10.2, module version = 1.0.0
[   151.131]     Module class: X.Org Server Extension
[   151.131]     ABI class: X.Org Server Extension, version 5.0
[   151.131] (II) Loading extension DOUBLE-BUFFER
[   151.131] (II) LoadModule: "glx"
[   151.132] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   151.141] (II) Module glx: vendor="X.Org Foundation"
[   151.141]     compiled for 1.10.2, module version = 1.0.0
[   151.141]     ABI class: X.Org Server Extension, version 5.0
[   151.141] (==) AIGLX enabled
[   151.141] (II) Loading extension GLX
[   151.141] (II) LoadModule: "record"
[   151.141] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[   151.142] (II) Module record: vendor="X.Org Foundation"
[   151.142]     compiled for 1.10.2, module version = 1.13.0
[   151.142]     Module class: X.Org Server Extension
[   151.142]     ABI class: X.Org Server Extension, version 5.0
[   151.142] (II) Loading extension RECORD
[   151.142] (II) LoadModule: "dri"
[   151.142] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[   151.152] (II) Module dri: vendor="X.Org Foundation"
[   151.152]     compiled for 1.10.2, module version = 1.0.0
[   151.152]     ABI class: X.Org Server Extension, version 5.0
[   151.152] (II) Loading extension XFree86-DRI
[   151.152] (II) LoadModule: "dri2"
[   151.152] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   151.166] (II) Module dri2: vendor="X.Org Foundation"
[   151.166]     compiled for 1.10.2, module version = 1.2.0
[   151.166]     ABI class: X.Org Server Extension, version 5.0
[   151.166] (II) Loading extension DRI2
[   151.166] (==) Matched intel as autoconfigured driver 0
[   151.166] (==) Matched vesa as autoconfigured driver 1
[   151.166] (==) Matched fbdev as autoconfigured driver 2
[   151.166] (==) Assigned the driver to the xf86ConfigLayout
[   151.166] (II) LoadModule: "intel"
[   151.186] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   151.206] (II) Module intel: vendor="X.Org Foundation"
[   151.206]     compiled for 1.10.2, module version = 2.15.0
[   151.206]     Module class: X.Org Video Driver
[   151.206]     ABI class: X.Org Video Driver, version 10.0
[   151.206] (II) LoadModule: "vesa"
[   151.206] (WW) Warning, couldn't open module vesa
[   151.206] (II) UnloadModule: "vesa"
[   151.206] (II) Unloading vesa
[   151.206] (EE) Failed to load module "vesa" (module does not exist, 0)
[   151.207] (II) LoadModule: "fbdev"
[   151.207] (WW) Warning, couldn't open module fbdev
[   151.207] (II) UnloadModule: "fbdev"
[   151.207] (II) Unloading fbdev
[   151.207] (EE) Failed to load module "fbdev" (module does not exist, 0)
[   151.207] (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
[   151.207] (--) using VT number 7

[   151.215] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   151.215] drmOpenDevice: node name is /dev/dri/card0
[   151.215] drmOpenDevice: open result is 9, (OK)
[   151.215] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[   151.215] drmOpenDevice: node name is /dev/dri/card0
[   151.215] drmOpenDevice: open result is 9, (OK)
[   151.215] drmOpenByBusid: drmOpenMinor returns 9
[   151.215] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[   151.215] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[   151.215] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[   151.215] (==) intel(0): RGB weight 888
[   151.215] (==) intel(0): Default visual is TrueColor
[   151.215] (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
[   151.215] (--) intel(0): Chipset: "965GM"
[   151.215] (**) intel(0): Relaxed fencing enabled
[   151.215] (**) intel(0): Framebuffer tiled
[   151.215] (**) intel(0): Pixmaps tiled
[   151.215] (**) intel(0): 3D buffers tiled
[   151.215] (**) intel(0): SwapBuffers wait enabled
[   151.215] (==) intel(0): video overlay key set to 0x101fe
[   151.216] (II) intel(0): Output LVDS1 has no monitor section
[   151.216] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[   151.233] (II) intel(0): Output VGA1 has no monitor section
[   151.233] (II) intel(0): EDID for output LVDS1
[   151.233] (II) intel(0): Manufacturer: CMO  Model: 1425  Serial#: 0
[   151.233] (II) intel(0): Year: 2006  Week: 45
[   151.233] (II) intel(0): EDID Version: 1.3
[   151.233] (II) intel(0): Digital Display Input
[   151.233] (II) intel(0): Max Image Size [cm]: horiz.: 30  vert.: 19
[   151.233] (II) intel(0): Gamma: 2.20
[   151.233] (II) intel(0): No DPMS capabilities specified
[   151.233] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   151.233] (II) intel(0): First detailed timing is preferred mode
[   151.233] (II) intel(0): redX: 0.588 redY: 0.337   greenX: 0.315 greenY: 0.534
[   151.233] (II) intel(0): blueX: 0.152 blueY: 0.125   whiteX: 0.313 whiteY: 0.329
[   151.233] (II) intel(0): Manufacturer's mask: 0
[   151.233] (II) intel(0): Supported detailed timing:
[   151.233] (II) intel(0): clock: 71.0 MHz   Image Size:  303 x 190 mm
[   151.233] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
[   151.233] (II) intel(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
[   151.233] (II) intel(0):  N141I3-L02
[   151.233] (II) intel(0):  CMO
[   151.233] (II) intel(0):  N141I3-L02
[   151.233] (II) intel(0): EDID (in hex):
[   151.233] (II) intel(0):     00ffffffffffff000daf251400000000
[   151.233] (II) intel(0):     2d100103801e13780a9f059656508827
[   151.233] (II) intel(0):     20505400000001010101010101010101
[   151.233] (II) intel(0):     010101010101bc1b00a0502017303020
[   151.233] (II) intel(0):     36002fbe10000018000000fe004e3134
[   151.233] (II) intel(0):     3149332d4c30320a2020000000fe0043
[   151.233] (II) intel(0):     4d4f0a202020202020202020000000fe
[   151.233] (II) intel(0):     004e31343149332d4c30320a20200064
[   151.233] (II) intel(0): EDID vendor "CMO", prod id 5157
[   151.233] (II) intel(0): Printing DDC gathered Modelines:
[   151.233] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[   151.234] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[   151.234] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[   151.234] (II) intel(0): Printing probed modes for output LVDS1
[   151.234] (II) intel(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[   151.234] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   151.234] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   151.234] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   151.234] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   151.253] (II) intel(0): EDID for output VGA1
[   151.253] (II) intel(0): Output LVDS1 connected
[   151.253] (II) intel(0): Output VGA1 disconnected
[   151.253] (II) intel(0): Using exact sizes for initial modes
[   151.253] (II) intel(0): Output LVDS1 using initial mode 1280x800
[   151.253] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[   151.253] (II) intel(0): Kernel page flipping support detected, enabling
[   151.253] (**) intel(0): Display dimensions: (300, 190) mm
[   151.253] (**) intel(0): DPI set to (108, 106)
[   151.253] (II) Loading sub module "fb"
[   151.253] (II) LoadModule: "fb"
[   151.253] (II) Loading /usr/lib/xorg/modules/libfb.so
[   151.268] (II) Module fb: vendor="X.Org Foundation"
[   151.268]     compiled for 1.10.2, module version = 1.0.0
[   151.268]     ABI class: X.Org ANSI C Emulation, version 0.4
[   151.268] (II) Loading sub module "dri2"
[   151.268] (II) LoadModule: "dri2"
[   151.268] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   151.268] (II) Module dri2: vendor="X.Org Foundation"
[   151.268]     compiled for 1.10.2, module version = 1.2.0
[   151.268]     ABI class: X.Org Server Extension, version 5.0
[   151.268] (==) Depth 24 pixmap format is 32 bpp
[   151.268] (II) intel(0): [DRI2] Setup complete
[   151.268] (II) intel(0): [DRI2]   DRI driver: i965
[   151.268] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled
[   151.298] (II) UXA(0): Driver registered support for the following operations:
[   151.298] (II)         solid
[   151.298] (II)         copy
[   151.298] (II)         composite (RENDER acceleration)
[   151.298] (II)         put_image
[   151.298] (II)         get_image
[   151.298] (==) intel(0): Backing store disabled
[   151.298] (==) intel(0): Silken mouse enabled
[   151.299] (II) intel(0): Initializing HW Cursor
[   151.310] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[   151.313] (==) intel(0): DPMS enabled
[   151.313] (==) intel(0): Intel XvMC decoder enabled
[   151.313] (II) intel(0): Set up textured video
[   151.313] (II) intel(0): Set up overlay video
[   151.313] (II) intel(0): [XvMC] i965_xvmc driver initialized.
[   151.313] (II) intel(0): direct rendering: DRI2 Enabled
[   151.313] (==) intel(0): hotplug detection: "enabled"
[   151.314] (--) RandR disabled
[   151.314] (II) Initializing built-in extension Generic Event Extension
[   151.314] (II) Initializing built-in extension SHAPE
[   151.314] (II) Initializing built-in extension MIT-SHM
[   151.314] (II) Initializing built-in extension XInputExtension
[   151.314] (II) Initializing built-in extension XTEST
[   151.314] (II) Initializing built-in extension BIG-REQUESTS
[   151.314] (II) Initializing built-in extension SYNC
[   151.314] (II) Initializing built-in extension XKEYBOARD
[   151.314] (II) Initializing built-in extension XC-MISC
[   151.314] (II) Initializing built-in extension SECURITY
[   151.314] (II) Initializing built-in extension XINERAMA
[   151.314] (II) Initializing built-in extension XFIXES
[   151.314] (II) Initializing built-in extension RENDER
[   151.314] (II) Initializing built-in extension RANDR
[   151.314] (II) Initializing built-in extension COMPOSITE
[   151.314] (II) Initializing built-in extension DAMAGE
[   151.487] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[   151.487] (II) AIGLX: enabled GLX_INTEL_swap_event
[   151.487] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[   151.487] (II) AIGLX: enabled GLX_SGI_make_current_read
[   151.487] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[   151.487] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
[   151.487] (II) GLX: Initialized DRI2 GL provider for screen 0
[   151.488] (II) intel(0): Setting screen physical size to 338 x 211
[   151.732] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[   151.732] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   151.732] (II) LoadModule: "evdev"
[   151.732] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.733] (II) Module evdev: vendor="X.Org Foundation"
[   151.733]     compiled for 1.10.0, module version = 2.6.0
[   151.733]     Module class: X.Org XInput Driver
[   151.733]     ABI class: X.Org XInput driver, version 12.2
[   151.733] (II) Using input driver 'evdev' for 'Power Button'
[   151.733] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.733] (**) Power Button: always reports core events
[   151.733] (**) Power Button: Device: "/dev/input/event4"
[   151.740] (--) Power Button: Found keys
[   151.740] (II) Power Button: Configuring as keyboard
[   151.740] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
[   151.740] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[   151.740] (**) Option "xkb_rules" "evdev"
[   151.740] (**) Option "xkb_model" "evdev"
[   151.740] (**) Option "xkb_layout" "us"
[   151.767] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[   151.767] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   151.767] (II) Using input driver 'evdev' for 'Video Bus'
[   151.767] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.767] (**) Video Bus: always reports core events
[   151.767] (**) Video Bus: Device: "/dev/input/event8"
[   151.773] (--) Video Bus: Found keys
[   151.773] (II) Video Bus: Configuring as keyboard
[   151.773] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input8/event8"
[   151.773] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[   151.773] (**) Option "xkb_rules" "evdev"
[   151.773] (**) Option "xkb_model" "evdev"
[   151.773] (**) Option "xkb_layout" "us"
[   151.779] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
[   151.779] (II) No input driver/identifier specified (ignoring)
[   151.779] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[   151.780] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[   151.780] (II) Using input driver 'evdev' for 'Sleep Button'
[   151.780] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.780] (**) Sleep Button: always reports core events
[   151.780] (**) Sleep Button: Device: "/dev/input/event2"
[   151.783] (--) Sleep Button: Found keys
[   151.783] (II) Sleep Button: Configuring as keyboard
[   151.783] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2/event2"
[   151.783] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[   151.783] (**) Option "xkb_rules" "evdev"
[   151.783] (**) Option "xkb_model" "evdev"
[   151.783] (**) Option "xkb_layout" "us"
[   151.786] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event7)
[   151.786] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
[   151.786] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
[   151.786] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.786] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
[   151.786] (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event7"
[   151.790] (--) Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
[   151.790] (--) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
[   151.790] (--) Logitech USB-PS/2 Optical Mouse: Found relative axes
[   151.790] (--) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
[   151.790] (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
[   151.790] (II) Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
[   151.790] (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
[   151.790] (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   151.790] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.1/usb4/4-2/4-2:1.0/input/input7/event7"
[   151.790] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE)
[   151.790] (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
[   151.790] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
[   151.790] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
[   151.790] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
[   151.790] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
[   151.790] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse1)
[   151.790] (II) No input driver/identifier specified (ignoring)
[   151.791] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
[   151.791] (II) No input driver/identifier specified (ignoring)
[   151.799] (II) config/udev: Adding input device Asus Laptop extra buttons (/dev/input/event5)
[   151.799] (**) Asus Laptop extra buttons: Applying InputClass "evdev keyboard catchall"
[   151.799] (II) Using input driver 'evdev' for 'Asus Laptop extra buttons'
[   151.799] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.799] (**) Asus Laptop extra buttons: always reports core events
[   151.799] (**) Asus Laptop extra buttons: Device: "/dev/input/event5"
[   151.803] (--) Asus Laptop extra buttons: Found keys
[   151.803] (II) Asus Laptop extra buttons: Configuring as keyboard
[   151.803] (**) Option "config_info" "udev:/sys/devices/platform/asus_laptop/input/input5/event5"
[   151.803] (II) XINPUT: Adding extended input device "Asus Laptop extra buttons" (type: KEYBOARD)
[   151.803] (**) Option "xkb_rules" "evdev"
[   151.803] (**) Option "xkb_model" "evdev"
[   151.803] (**) Option "xkb_layout" "us"
[   151.804] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[   151.804] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   151.804] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[   151.804] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   151.804] (**) AT Translated Set 2 keyboard: always reports core events
[   151.804] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[   151.810] (--) AT Translated Set 2 keyboard: Found keys
[   151.810] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[   151.810] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[   151.810] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[   151.810] (**) Option "xkb_rules" "evdev"
[   151.810] (**) Option "xkb_model" "evdev"
[   151.810] (**) Option "xkb_layout" "us"
[   151.810] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[   151.810] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[   151.810] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[   151.810] (II) LoadModule: "synaptics"
[   151.811] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[   151.823] (II) Module synaptics: vendor="X.Org Foundation"
[   151.823]     compiled for 1.10.2, module version = 1.4.0
[   151.823]     Module class: X.Org XInput Driver
[   151.823]     ABI class: X.Org XInput driver, version 12.2
[   151.823] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[   151.824] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[   151.824] (**) SynPS/2 Synaptics TouchPad: always reports core events
[   151.824] (**) Option "Device" "/dev/input/event6"
[   151.856] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
[   151.856] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
[   151.856] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[   151.856] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[   151.856] (--) SynPS/2 Synaptics TouchPad: buttons: left right
[   151.856] (**) Option "EmulateTwoFingerMinZ" "280"
[   151.856] (**) Option "TapButton1" "1"
[   151.856] (**) Option "TapButton2" "2"
[   151.856] (**) Option "TapButton3" "3"
[   151.856] (**) Option "ClickFinger1" "1"
[   151.856] (**) Option "AccelFactor" "0.5"
[   151.883] (--) SynPS/2 Synaptics TouchPad: touchpad found
[   151.883] (**) SynPS/2 Synaptics TouchPad: always reports core events
[   151.896] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input6/event6"
[   151.896] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[   151.896] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[   151.896] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[   151.896] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.500
[   151.896] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[   151.896] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[   151.897] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[   151.897] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[   151.916] (--) SynPS/2 Synaptics TouchPad: touchpad found
[   151.917] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[   151.917] (II) No input driver/identifier specified (ignoring)
[   151.917] (II) config/udev: Adding input device PC Speaker (/dev/input/event1)
[   151.917] (II) No input driver/identifier specified (ignoring)
[   155.163] (II) intel(0): EDID vendor "CMO", prod id 5157
[   155.163] (II) intel(0): Printing DDC gathered Modelines:
[   155.163] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[   155.181] (II) intel(0): EDID vendor "CMO", prod id 5157
[   155.181] (II) intel(0): Printing DDC gathered Modelines:
[   155.181] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[   155.201] (II) intel(0): EDID vendor "CMO", prod id 5157
[   155.201] (II) intel(0): Printing DDC gathered Modelines:
[   155.201] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[   155.224] (II) intel(0): EDID vendor "CMO", prod id 5157
[   155.224] (II) intel(0): Printing DDC gathered Modelines:
[   155.224] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[   158.935] (II) intel(0): EDID vendor "CMO", prod id 5157
[   158.935] (II) intel(0): Printing DDC gathered Modelines:
[   158.935] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[  1121.407] (II) intel(0): EDID vendor "CMO", prod id 5157
[  1121.407] (II) intel(0): Printing DDC gathered Modelines:
[  1121.407] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
[  5521.110] (II) intel(0): EDID vendor "CMO", prod id 5157
[  5521.110] (II) intel(0): Printing DDC gathered Modelines:
[  5521.110] (II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)

Offline

#20 2011-07-08 09:47:59

einhard
Member
From: Poland
Registered: 2010-01-05
Posts: 89

Re: Touchpad problems on Asus

comment out touchpad section in /etc/X11/xorg.conf.d/10-evdev.conf

#Section "InputClass"
#        Identifier "evdev touchpad catchall"
#        MatchIsTouchpad "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

Offline

#21 2011-07-12 06:25:02

serzh
Member
Registered: 2011-06-26
Posts: 11

Re: Touchpad problems on Asus

I've commented it but it doesn't help.

Offline

Board footer

Powered by FluxBB