[Solved] Synaptics + New Xorg

Hi!
I'm having problems with my synaptics touchpad configuration. I've read some of the topics on the bbs, but none really helped. I'm now stuck with enabling the driver for Xorg (I think), because it seems that while it's configured properly - at least for HAL:
25: udi = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port_logicaldev_input'
input.x11_options.MaxSpeed = '0.70' (string)
input.x11_options.AccelFactor = '0.00150' (string)
input.x11_options.SHMConfig = 'on' (string)
input.x11_options.VertTwoFingerScroll = '1' (string)
input.device = '/dev/input/event5' (string)
input.x11_options.HorizTwoFingerScroll = '1' (string)
input.product = 'SynPS/2 Synaptics TouchPad' (string)
input.x11_options.VertEdgeScroll = '1' (string)
linux.hotplug_type = 2 (0x2) (int)
info.subsystem = 'input' (string)
input.x11_options.HorizEdgeScroll = '1' (string)
linux.subsystem = 'input' (string)
info.product = 'SynPS/2 Synaptics TouchPad' (string)
input.x11_options.TapButton1 = '1' (string)
info.udi = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port_logicaldev_input' (string)
input.x11_options.TapButton2 = '2' (string)
input.x11_options.TapButton3 = '3' (string)
info.capabilities = { 'input', 'input.touchpad' } (string list)
input.originating_device = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port' (string)
info.category = 'input' (string)
input.x11_driver = 'synaptics' (string)
input.x11_options.Device = '/dev/input/psaux' (string)
input.x11_options.LeftEdge = '1700' (string)
linux.sysfs_path = '/sys/class/input/input5/event5' (string)
input.x11_options.RightEdge = '5300' (string)
info.parent = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port' (string)
input.x11_options.TopEdge = '1700' (string)
linux.device_file = '/dev/input/event5' (string)
input.x11_options.BottomEdge = '4200' (string)
input.x11_options.FingerLow = '25' (string)
input.x11_options.FingerHigh = '30' (string)
input.x11_options.MaxTapTime = '180' (string)
input.x11_options.MaxTapMove = '220' (string)
input.x11_options.VertScrollDelta = '100' (string)
input.x11_options.MinSpeed = '0.10' (string)
... It doesn't work in KDE (eg. no tapping, scrolling, and so on). I have some old entries in xorg.conf regarding the touchpad, but I don't think it makes any difference.
Section "InputDevice"
Driver "synaptics"
Identifier "TouchPad"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.09"
Option "MaxSpeed" "0.18"
Option "AccelFactor" "0.0015"
Option "SHMConfig" "on"
EndSection
And the /etc/hal/fdi/policy/11-x11-synaptics.fdi
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<match key="info.product" contains="Synaptics TouchPad">
<merge key="input.x11_driver" type="string">synaptics</merge>
<merge key="input.x11_options.Device" type="string">/dev/input/psaux</merge>
<merge key="input.x11_options.LeftEdge" type="string">120</merge>
<merge key="input.x11_options.LeftEdge" type="string">1700</merge>
<merge key="input.x11_options.RightEdge" type="string">5300</merge>
<merge key="input.x11_options.TopEdge" type="string">1700</merge>
<merge key="input.x11_options.BottomEdge" type="string">4200</merge>
<merge key="input.x11_options.FingerLow" type="string">25</merge>
<merge key="input.x11_options.FingerHigh" type="string">30</merge>
<merge key="input.x11_options.MaxTapTime" type="string">180</merge>
<merge key="input.x11_options.MaxTapMove" type="string">220</merge>
<merge key="input.x11_options.VertScrollDelta" type="string">100</merge>
<merge key="input.x11_options.MinSpeed" type="string">0.10</merge>
<merge key="input.x11_options.MaxSpeed" type="string">0.70</merge>
<merge key="input.x11_options.AccelFactor" type="string">0.00150</merge>
<merge key="input.x11_options.SHMConfig" type="string">on</merge>
<merge key="input.x11_options.VertTwoFingerScroll" type="string">1</merge>
<merge key="input.x11_options.HorizTwoFingerScroll" type="string">1</merge>
<merge key="input.x11_options.VertEdgeScroll" type="string">1</merge>
<merge key="input.x11_options.HorizEdgeScroll" type="string">1</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">2</merge>
<merge key="input.x11_options.TapButton3" type="string">3</merge>
</match>
<match key="info.product" contains="AlpsPS/2 ALPS">
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
<match key="info.product" contains="appletouch">
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
<match key="info.product" contains="bcm5974">
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
</match>
</device>
</deviceinfo>
I don't have any entries in xorg.conf like disabling AutoAddDevices, keyboard is now working as a "evdev-configured keybord", but the touchpad refuses to cooperate with new xorg
Last edited by lateralus (2008-12-05 18:26:50)

stephelton wrote:Explain to me how this is solved. By removing all the configuration options, you lose your configuration. So if the goal of this post is to preserve configuration, and that clearly doesn't happen, this cannot possibly be "solved."
To each their own...there's no need to justify contentedness.
stephelton wrote:More to the point -- how does one go about restoring functionality? Is there some documentation I might find helpful? Why isn't this on the front page? Even after turning off the new HAL based hardware detection it didn't work as it used to.
Hmm, perhaps you would find the Synaptics ArchWiki article helpful.  All this Hal nonsense aside, the core synaptics drivers has changed and some settings need to be adjusted accordingly--the wiki has those details.

Similar Messages

  • [SOLVED] Blank screen starting new Xorg (ATI)

    Yes, it's another blank screen problem with xorg.  Sorry. 
    After months of sticking with an older Xorg (due to problems with my ATI Radeon X1550 card and the new Xorg w/ dual head), I decided to make a jump and update to the latest Xorg and ati drivers, foregoing dual screens.  I've read you can just start Xorg without a config, which I tried, but no luck.  I just get a blank screen.  I autogenerated a config file and still get a blank screen.  Either way there's no default X cursor or xterm anywhere. 
    I've tried adding the AllowEmptyInput flag as suggested in related threads, but that doesn't help.  My .conf file and log file are listed below.  If someone could give me some suggestions to solve this, I'd appreciate it.;
    My xorg.conf.new file:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    Option "AllowEmptyInput" "off"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    # Load "glx"
    Load "extmod"
    Load "record"
    Load "dri2"
    Load "dbe"
    Load "dri"
    Load "drm"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 380 300 # mm
    Identifier "Monitor0"
    VendorName "ACR"
    ModelName "AL1916"
    HorizSync 31.0 - 81.0
    VertRefresh 56.0 - 75.0
    Option "DPMS"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "DynamicClocks" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "DRI" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    #Option "EXAVSync" # [<bool>]
    #Option "ATOMTVOut" # [<bool>]
    #Option "R4xxATOM" # [<bool>]
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "RV505 [Radeon X1550 Series]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    My Xorg.0.log:
    X.Org X Server 1.6.2
    Release Date: 2009-7-7
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH i686
    Current Operating System: Linux aina 2.6.30-ARCH #1 SMP PREEMPT Mon Jul 20 11:20:32 UTC 2009 i686
    Build Date: 18 July 2009 08:27:13PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 27 18:18:46 2009
    (++) Using config file: "./xorg.conf.new"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (**) Option "DontZap" "false"
    (**) Option "AllowEmptyInput" "off"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (II) Loader magic: 0x7a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0:1:0:0) 1002:7143:1043:01c6 ATI Technologies Inc RV505 [Radeon X1550 Series] rev 0, Mem @ 0xe0000000/268435456, 0xf5000000/65536, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072
    (--) PCI: (0:1:0:1) 1002:7163:1043:01c7 ATI Technologies Inc RV505 [Radeon X1550 Series] (Secondary) rev 0, Mem @ 0xf5010000/65536
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded by default.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers//ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 6.12.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 6.12.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.4.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI FirePro V8750 (FireGL),
    ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
    ATI Mobility RADEON HD 4850 X2, ATI Radeon 4800 Series,
    ATI FirePro RV770, AMD FireStream 9270, AMD FireStream 9250,
    ATI FirePro V8700 (FireGL), ATI Mobility RADEON HD 4870,
    ATI Mobility RADEON M98, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Radeon RV730 (AGP), ATI FirePro M5750, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI RV730 PRO [Radeon HD 4650], ATI FirePro V7750 (FireGL),
    ATI FirePro V5700 (FireGL), ATI FirePro V3750 (FireGL), ATI RV610,
    ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
    ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI RV610,
    ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon HD 4350,
    ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    ATI Mobility Radeon 4500 Series, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon RV710,
    ATI Radeon HD 3470, ATI Mobility Radeon HD 3430,
    ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450,
    ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450,
    ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260,
    ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650,
    ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700,
    ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics,
    ATI Radeon HD Graphics, ATI Radeon Graphics,
    ATI Mobility Radeon HD Graphics, ATI Mobility Radeon Graphics,
    ATI Radeon Graphics
    (II) Primary Device is: PCI 01@00:00:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) RADEON(0): TOTO SAYS 00000000f5000000
    (II) RADEON(0): MMIO registers at 0x00000000f5000000: size 64KB
    (II) RADEON(0): PCI bus 1 card 0 func 0
    (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Radeon X1550" (ChipID = 0x7143)
    (WW) RADEON(0): R500 support is under development. Please report any issues to [email protected]
    (--) RADEON(0): Linear framebuffer at 0x00000000e0000000
    (II) RADEON(0): PCIE card detected
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (II) RADEON(0): ATOM BIOS detected
    (II) RADEON(0): ATOM BIOS Rom:
    SubsystemVendorID: 0x1043 SubsystemID: 0x01c6
    IOBaseAddress: 0xb000
    Filename: SV25429.bin
    BIOS Bootup Message:
    7143.9.13.1.29.AS01
    (II) RADEON(0): Framebuffer space used by Firmware (kb): 20
    (II) RADEON(0): Start of VRAM area used by Firmware: 0xfffb000
    (II) RADEON(0): AtomBIOS requests 20kB of VRAM scratch space
    (II) RADEON(0): AtomBIOS VRAM scratch base: 0xfffb000
    (II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead
    (II) RADEON(0): Default Engine Clock: 550000
    (II) RADEON(0): Default Memory Clock: 400000
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 1100000
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000
    (II) RADEON(0): Maximum Pixel Clock: 400000
    (II) RADEON(0): Reference Clock: 27000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.30.0
    (==) RADEON(0): Page Flipping disabled on r5xx and newer chips.
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=262144K, accessible=262144K (PCI BAR=262144K)
    (--) RADEON(0): Mapped VideoRAM: 262144 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) RADEON(0): Max desktop size set to 2560x1600
    (II) RADEON(0): For a larger or smaller max desktop size, add a Virtual line to your xorg.conf
    (II) RADEON(0): If you are having trouble with 3D, reduce the desktop size by adjusting the Virtual line to your xorg.conf
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEON(0): ref_freq: 2700, min_out_pll: 64800, max_out_pll: 110000, min_in_pll: 100, max_in_pll: 1350, xclk: 40000, sclk: 550.000000, mclk: 400.000000
    (II) RADEON(0): PLL parameters: rf=2700 rd=13 min=64800 max=110000; xclk=40000
    (II) RADEON(0): Skipping TV-Out
    (II) RADEON(0): Skipping Component Video
    encoder: 0x15
    encoder: 0x13
    encoder: 0x16
    (II) RADEON(0): Output VGA-0 using monitor section Monitor0
    (II) RADEON(0): I2C bus "VGA-0" initialized.
    (II) RADEON(0): Output DVI-0 has no monitor section
    (II) RADEON(0): I2C bus "DVI-0" initialized.
    (II) RADEON(0): Port0:
    XRANDR name: VGA-0
    Connector: VGA
    CRT1: INTERNAL_KLDSCP_DAC1
    DDC reg: 0x7e40
    (II) RADEON(0): Port1:
    XRANDR name: DVI-0
    Connector: DVI-I
    CRT2: INTERNAL_KLDSCP_DAC2
    DFP1: INTERNAL_KLDSCP_TMDS1
    DDC reg: 0x7e50
    (II) RADEON(0): I2C device "VGA-0:E-EDID segment register" registered at address 0x60.
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): EDID vendor "ACR", prod id 1916
    (II) RADEON(0): Using hsync ranges from config file
    (II) RADEON(0): Using vrefresh ranges from config file
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 1
    (II) RADEON(0): EDID data from the display on output: VGA-0 ----------------------
    (II) RADEON(0): Manufacturer: ACR Model: 77c Serial#: 1764
    (II) RADEON(0): Year: 2006 Week: 13
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    (II) RADEON(0): Default color space is primary color space
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.634 redY: 0.354 greenX: 0.287 greenY: 0.621
    (II) RADEON(0): blueX: 0.138 blueY: 0.077 whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Supported established timings:
    (II) RADEON(0): 720x400@70Hz
    (II) RADEON(0): 640x480@60Hz
    (II) RADEON(0): 640x480@67Hz
    (II) RADEON(0): 640x480@72Hz
    (II) RADEON(0): 640x480@75Hz
    (II) RADEON(0): 800x600@56Hz
    (II) RADEON(0): 800x600@60Hz
    (II) RADEON(0): 800x600@72Hz
    (II) RADEON(0): 800x600@75Hz
    (II) RADEON(0): 832x624@75Hz
    (II) RADEON(0): 1024x768@60Hz
    (II) RADEON(0): 1024x768@70Hz
    (II) RADEON(0): 1024x768@75Hz
    (II) RADEON(0): 1280x1024@75Hz
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported standard timings:
    (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, PixClock max 140 MHz
    (II) RADEON(0): Monitor name: AL1916
    (II) RADEON(0): ACER
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 00ffffffffffff0004727c07e4060000
    (II) RADEON(0): 0d1001030e261e782e6875a25a499f23
    (II) RADEON(0): 135054bfef00714f8180010101010101
    (II) RADEON(0): 010101010101302a009851002a403070
    (II) RADEON(0): 1300782d1100001e000000fd00384b1f
    (II) RADEON(0): 510e000a202020202020000000fc0041
    (II) RADEON(0): 4c313931360a202020202020000000fe
    (II) RADEON(0): 00414345520a202020202020202000b1
    finished output detect: 0
    (II) RADEON(0): I2C device "DVI-0:E-EDID segment register" registered at address 0x60.
    (II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Dac detection success
    Unhandled monitor type 0
    finished output detect: 1
    finished all detect
    before xf86InitialConfiguration
    (II) RADEON(0): EDID vendor "ACR", prod id 1916
    (II) RADEON(0): Using hsync ranges from config file
    (II) RADEON(0): Using vrefresh ranges from config file
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 1
    (II) RADEON(0): EDID data from the display on output: VGA-0 ----------------------
    (II) RADEON(0): Manufacturer: ACR Model: 77c Serial#: 1764
    (II) RADEON(0): Year: 2006 Week: 13
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    (II) RADEON(0): Default color space is primary color space
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.634 redY: 0.354 greenX: 0.287 greenY: 0.621
    (II) RADEON(0): blueX: 0.138 blueY: 0.077 whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Supported established timings:
    (II) RADEON(0): 720x400@70Hz
    (II) RADEON(0): 640x480@60Hz
    (II) RADEON(0): 640x480@67Hz
    (II) RADEON(0): 640x480@72Hz
    (II) RADEON(0): 640x480@75Hz
    (II) RADEON(0): 800x600@56Hz
    (II) RADEON(0): 800x600@60Hz
    (II) RADEON(0): 800x600@72Hz
    (II) RADEON(0): 800x600@75Hz
    (II) RADEON(0): 832x624@75Hz
    (II) RADEON(0): 1024x768@60Hz
    (II) RADEON(0): 1024x768@70Hz
    (II) RADEON(0): 1024x768@75Hz
    (II) RADEON(0): 1280x1024@75Hz
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported standard timings:
    (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, PixClock max 140 MHz
    (II) RADEON(0): Monitor name: AL1916
    (II) RADEON(0): ACER
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 00ffffffffffff0004727c07e4060000
    (II) RADEON(0): 0d1001030e261e782e6875a25a499f23
    (II) RADEON(0): 135054bfef00714f8180010101010101
    (II) RADEON(0): 010101010101302a009851002a403070
    (II) RADEON(0): 1300782d1100001e000000fd00384b1f
    (II) RADEON(0): 510e000a202020202020000000fc0041
    (II) RADEON(0): 4c313931360a202020202020000000fe
    (II) RADEON(0): 00414345520a202020202020202000b1
    (II) RADEON(0): EDID vendor "ACR", prod id 1916
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Dac detection success
    Unhandled monitor type 0
    (II) RADEON(0): Output VGA-0 connected
    (II) RADEON(0): Output DVI-0 disconnected
    (II) RADEON(0): Using exact sizes for initial modes
    (II) RADEON(0): Output VGA-0 using initial mode 1280x1024
    after xf86InitialConfiguration
    (**) RADEON(0): Display dimensions: (380, 300) mm
    (**) RADEON(0): DPI set to (85, 108)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) RADEON(0): Using XAA acceleration architecture
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.2.1
    ABI class: X.Org Video Driver, version 5.0
    (!!) RADEON(0): For information on using the multimedia capabilities
    of this adapter, please see http://gatos.sf.net.
    (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) RADEON(0): RADEONScreenInit e0000000 0 0
    Output CRT1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (==) RADEON(0): Using 24 bit depth buffer
    (II) RADEON(0): RADEONInitMemoryMap() :
    (II) RADEON(0): mem_size : 0x10000000
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    (II) RADEON(0): Depth moves disabled by default
    (II) RADEON(0): Using 32 MB GART aperture
    (II) RADEON(0): Using 1 MB for the ring buffer
    (II) RADEON(0): Using 2 MB for vertex/indirect buffers
    (II) RADEON(0): Using 29 MB for GART textures
    (II) RADEON(0): Memory manager initialized to (0,0) (1280,8191)
    (II) RADEON(0): Reserved area from (0,1280) to (1280,1282)
    (II) RADEON(0): Largest offscreen area available: 1280 x 6909
    (II) RADEON(0): Will use front buffer at offset 0x0
    (II) RADEON(0): Will use back buffer at offset 0x1b80000
    (II) RADEON(0): Will use depth buffer at offset 0x21c0000
    (II) RADEON(0): Will use 32 kb for PCI GART table at offset 0xfff8000
    (II) RADEON(0): Will use 221184 kb for textures at offset 0x2800000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) RADEON(0): [drm] framebuffer handle = 0xe0000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (II) RADEON(0): [pci] 32768 kB allocated with handle 0xf93c5000
    (II) RADEON(0): [pci] ring handle = 0xf93c5000
    (II) RADEON(0): [pci] Ring mapped at 0xa765d000
    (II) RADEON(0): [pci] Ring contents 0x00000000
    (II) RADEON(0): [pci] ring read ptr handle = 0xf94c6000
    (II) RADEON(0): [pci] Ring read ptr mapped at 0xb792c000
    (II) RADEON(0): [pci] Ring read ptr contents 0x00000000
    (II) RADEON(0): [pci] vertex/indirect buffers handle = 0xf94c7000
    (II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0xa745d000
    (II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000
    (II) RADEON(0): [pci] GART texture map handle = 0xf96c7000
    (II) RADEON(0): [pci] GART Texture map mapped at 0xa57dd000
    (II) RADEON(0): [drm] register handle = 0x2ea00000
    (II) RADEON(0): [dri] Visual configs initialized
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    (==) RADEON(0): Backing store disabled
    (II) RADEON(0): [DRI] installation complete
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 16
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0): MC_FB_LOCATION was: 0xefffe000 is: 0xefffe000
    (WW) RADEON(0): MC_AGP_LOCATION was: 0x003f0000 is: 0xffffffc0
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (II) RADEON(0): Direct rendering enabled
    (II) RADEON(0): XAA Render acceleration unsupported on Radeon 9500/9700 and newer. Please use EXA instead.
    (II) RADEON(0): Render acceleration disabled
    (II) RADEON(0): num quad-pipes is 1
    (II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Lines
    Scanline Image Writes
    Setting up tile and stipple cache:
    32 128x128 slots
    32 256x256 slots
    16 512x512 slots
    (II) RADEON(0): Acceleration enabled
    (**) Option "dpms"
    (**) RADEON(0): DPMS enabled
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00643000
    (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x00648000
    (II) RADEON(0): Largest offscreen area available: 1280 x 6901
    (II) RADEON(0): Set up textured video
    Output CRT1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    Output CRT1 disable success
    Mode 1280x1024 - 1688 1066 5
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    freq: 108000000
    best_freq: 108000000
    best_feedback_div: 48
    best_ref_div: 2
    best_post_div: 6
    (II) RADEON(0): crtc(0) Clock: mode 108000, PLL 108000
    (II) RADEON(0): crtc(0) PLL : refdiv 2, fbdiv 0x30(48), pdiv 6
    Set CRTC 0 PLL success
    Set CRTC Timing success
    Set CRTC 0 Overscan success
    Not using RMX
    scaler 0 setup success
    Set CRTC 0 Source success
    crtc 0 YUV disable setup success
    Output DAC1 setup success
    Enable CRTC 0 success
    Unblank CRTC 0 success
    Output CRT1 enable success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: drmOpenMinor returns 12
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) RADEON(0): Setting screen physical size to 376 x 301
    (**) Option "Protocol" "auto"
    (**) Option "Device" "/dev/input/mice"
    (II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
    (**) Mouse0: Device: "/dev/input/mice"
    (**) Mouse0: Protocol: "auto"
    (**) Option "CorePointer"
    (**) Mouse0: always reports core events
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse0: Buttons: 11
    (**) Mouse0: Sensitivity: 1
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (**) Mouse0: (accel) keeping acceleration scheme 1
    (**) Mouse0: (accel) filter chain progression: 2.00
    (**) Mouse0: (accel) filter stage 0: 20.00 ms
    (**) Mouse0: (accel) set acceleration profile 0
    (II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device ImExPS/2 Logitech Explorer Mouse
    (**) ImExPS/2 Logitech Explorer Mouse: always reports core events
    (**) ImExPS/2 Logitech Explorer Mouse: Device: "/dev/input/event6"
    (II) ImExPS/2 Logitech Explorer Mouse: Found 5 mouse buttons
    (II) ImExPS/2 Logitech Explorer Mouse: Found x and y relative axes
    (II) ImExPS/2 Logitech Explorer Mouse: Found scroll wheel(s)
    (II) ImExPS/2 Logitech Explorer Mouse: Configuring as mouse
    (**) ImExPS/2 Logitech Explorer Mouse: YAxisMapping: buttons 4 and 5
    (**) ImExPS/2 Logitech Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "ImExPS/2 Logitech Explorer Mouse" (type: MOUSE)
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) keeping acceleration scheme 1
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) filter chain progression: 2.00
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) filter stage 0: 20.00 ms
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) AIGLX: Suspending AIGLX clients for VT switch
    Output CRT1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    (II) RADEON(0): avivo_restore !
    Enable CRTC 0 success
    Unblank CRTC 0 success
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) ImExPS/2 Logitech Explorer Mouse: Close
    (II) UnloadModule: "evdev"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) UnloadModule: "kbd"
    (II) UnloadModule: "mouse"
    (II) RADEON(0): [drm] removed 1 reserved context for kernel
    (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xf802f000 at 0xb792d000
    (II) RADEON(0): [drm] Closed DRM master.
    Last edited by edenxavier (2009-07-28 22:33:44)

    Did like you said, however it didn't work.  It complained this time about not having the fbdev available.  It's not installed because I didn't think it was related.  Here's the new Xorg.log.0 file:
    X.Org X Server 1.6.2
    Release Date: 2009-7-7
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH i686
    Current Operating System: Linux aina 2.6.30-ARCH #1 SMP PREEMPT Mon Jul 20 11:20:32 UTC 2009 i686
    Build Date: 18 July 2009 08:27:13PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 27 23:20:52 2009
    (II) Loader magic: 0x7a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0:1:0:0) 1002:7143:1043:01c6 ATI Technologies Inc RV505 [Radeon X1550 Series] rev 0, Mem @ 0xe0000000/268435456, 0xf5000000/65536, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072
    (--) PCI: (0:1:0:1) 1002:7163:1043:01c7 ATI Technologies Inc RV505 [Radeon X1550 Series] (Secondary) rev 0, Mem @ 0xf5010000/65536
    (==) Using default built-in configuration (30 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default ati Device 0"
    Driver "ati"
    EndSection
    Section "Screen"
    Identifier "Builtin Default ati Screen 0"
    Device "Builtin Default ati Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default ati Screen 0"
    Screen "Builtin Default vesa Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default ati Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default ati Device 0"
    (==) No monitor specified for screen "Builtin Default ati Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default vesa Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (2)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers//ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 6.12.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 6.12.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI FirePro V8750 (FireGL),
    ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
    ATI Mobility RADEON HD 4850 X2, ATI Radeon 4800 Series,
    ATI FirePro RV770, AMD FireStream 9270, AMD FireStream 9250,
    ATI FirePro V8700 (FireGL), ATI Mobility RADEON HD 4870,
    ATI Mobility RADEON M98, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Radeon RV730 (AGP), ATI FirePro M5750, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI RV730 PRO [Radeon HD 4650], ATI FirePro V7750 (FireGL),
    ATI FirePro V5700 (FireGL), ATI FirePro V3750 (FireGL), ATI RV610,
    ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
    ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI RV610,
    ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon HD 4350,
    ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    ATI Mobility Radeon 4500 Series, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon RV710,
    ATI Radeon HD 3470, ATI Mobility Radeon HD 3430,
    ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450,
    ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450,
    ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260,
    ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650,
    ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700,
    ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics,
    ATI Radeon HD Graphics, ATI Radeon Graphics,
    ATI Mobility Radeon HD Graphics, ATI Mobility Radeon Graphics,
    ATI Radeon Graphics
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 01@00:00:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (WW) Falling back to old probe method for vesa
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) RADEON(0): TOTO SAYS 00000000f5000000
    (II) RADEON(0): MMIO registers at 0x00000000f5000000: size 64KB
    (II) RADEON(0): PCI bus 1 card 0 func 0
    (II) RADEON(0): Creating default Display subsection in Screen section
    "Builtin Default ati Screen 0" for depth/fbbpp 24/32
    (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Radeon X1550" (ChipID = 0x7143)
    (WW) RADEON(0): R500 support is under development. Please report any issues to [email protected]
    (--) RADEON(0): Linear framebuffer at 0x00000000e0000000
    (II) RADEON(0): PCIE card detected
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (II) RADEON(0): ATOM BIOS detected
    (II) RADEON(0): ATOM BIOS Rom:
    SubsystemVendorID: 0x1043 SubsystemID: 0x01c6
    IOBaseAddress: 0xb000
    Filename: SV25429.bin
    BIOS Bootup Message:
    7143.9.13.1.29.AS01
    (II) RADEON(0): Framebuffer space used by Firmware (kb): 20
    (II) RADEON(0): Start of VRAM area used by Firmware: 0xfffb000
    (II) RADEON(0): AtomBIOS requests 20kB of VRAM scratch space
    (II) RADEON(0): AtomBIOS VRAM scratch base: 0xfffb000
    (II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead
    (II) RADEON(0): Default Engine Clock: 550000
    (II) RADEON(0): Default Memory Clock: 400000
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 1100000
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000
    (II) RADEON(0): Maximum Pixel Clock: 400000
    (II) RADEON(0): Reference Clock: 27000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.30.0
    (==) RADEON(0): Page Flipping disabled on r5xx and newer chips.
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=262144K, accessible=262144K (PCI BAR=262144K)
    (--) RADEON(0): Mapped VideoRAM: 262144 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) RADEON(0): Max desktop size set to 2560x1600
    (II) RADEON(0): For a larger or smaller max desktop size, add a Virtual line to your xorg.conf
    (II) RADEON(0): If you are having trouble with 3D, reduce the desktop size by adjusting the Virtual line to your xorg.conf
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEON(0): ref_freq: 2700, min_out_pll: 64800, max_out_pll: 110000, min_in_pll: 100, max_in_pll: 1350, xclk: 40000, sclk: 550.000000, mclk: 400.000000
    (II) RADEON(0): PLL parameters: rf=2700 rd=13 min=64800 max=110000; xclk=40000
    (II) RADEON(0): Skipping TV-Out
    (II) RADEON(0): Skipping Component Video
    encoder: 0x15
    encoder: 0x13
    encoder: 0x16
    (II) RADEON(0): Output VGA-0 has no monitor section
    (II) RADEON(0): I2C bus "VGA-0" initialized.
    (II) RADEON(0): Output DVI-0 has no monitor section
    (II) RADEON(0): I2C bus "DVI-0" initialized.
    (II) RADEON(0): Port0:
    XRANDR name: VGA-0
    Connector: VGA
    CRT1: INTERNAL_KLDSCP_DAC1
    DDC reg: 0x7e40
    (II) RADEON(0): Port1:
    XRANDR name: DVI-0
    Connector: DVI-I
    CRT2: INTERNAL_KLDSCP_DAC2
    DFP1: INTERNAL_KLDSCP_TMDS1
    DDC reg: 0x7e50
    (II) RADEON(0): I2C device "VGA-0:E-EDID segment register" registered at address 0x60.
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): EDID vendor "ACR", prod id 1916
    (II) RADEON(0): Using EDID range info for horizontal sync
    (II) RADEON(0): Using EDID range info for vertical refresh
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 1
    (II) RADEON(0): EDID data from the display on output: VGA-0 ----------------------
    (II) RADEON(0): Manufacturer: ACR Model: 77c Serial#: 1764
    (II) RADEON(0): Year: 2006 Week: 13
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    (II) RADEON(0): Default color space is primary color space
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.634 redY: 0.354 greenX: 0.287 greenY: 0.621
    (II) RADEON(0): blueX: 0.138 blueY: 0.077 whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Supported established timings:
    (II) RADEON(0): 720x400@70Hz
    (II) RADEON(0): 640x480@60Hz
    (II) RADEON(0): 640x480@67Hz
    (II) RADEON(0): 640x480@72Hz
    (II) RADEON(0): 640x480@75Hz
    (II) RADEON(0): 800x600@56Hz
    (II) RADEON(0): 800x600@60Hz
    (II) RADEON(0): 800x600@72Hz
    (II) RADEON(0): 800x600@75Hz
    (II) RADEON(0): 832x624@75Hz
    (II) RADEON(0): 1024x768@60Hz
    (II) RADEON(0): 1024x768@70Hz
    (II) RADEON(0): 1024x768@75Hz
    (II) RADEON(0): 1280x1024@75Hz
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported standard timings:
    (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, PixClock max 140 MHz
    (II) RADEON(0): Monitor name: AL1916
    (II) RADEON(0): ACER
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 00ffffffffffff0004727c07e4060000
    (II) RADEON(0): 0d1001030e261e782e6875a25a499f23
    (II) RADEON(0): 135054bfef00714f8180010101010101
    (II) RADEON(0): 010101010101302a009851002a403070
    (II) RADEON(0): 1300782d1100001e000000fd00384b1f
    (II) RADEON(0): 510e000a202020202020000000fc0041
    (II) RADEON(0): 4c313931360a202020202020000000fe
    (II) RADEON(0): 00414345520a202020202020202000b1
    finished output detect: 0
    (II) RADEON(0): I2C device "DVI-0:E-EDID segment register" registered at address 0x60.
    (II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Dac detection success
    Unhandled monitor type 0
    finished output detect: 1
    finished all detect
    before xf86InitialConfiguration
    (II) RADEON(0): EDID vendor "ACR", prod id 1916
    (II) RADEON(0): Using hsync ranges from config file
    (II) RADEON(0): Using vrefresh ranges from config file
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) RADEON(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 1
    (II) RADEON(0): EDID data from the display on output: VGA-0 ----------------------
    (II) RADEON(0): Manufacturer: ACR Model: 77c Serial#: 1764
    (II) RADEON(0): Year: 2006 Week: 13
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    (II) RADEON(0): Default color space is primary color space
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.634 redY: 0.354 greenX: 0.287 greenY: 0.621
    (II) RADEON(0): blueX: 0.138 blueY: 0.077 whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Supported established timings:
    (II) RADEON(0): 720x400@70Hz
    (II) RADEON(0): 640x480@60Hz
    (II) RADEON(0): 640x480@67Hz
    (II) RADEON(0): 640x480@72Hz
    (II) RADEON(0): 640x480@75Hz
    (II) RADEON(0): 800x600@56Hz
    (II) RADEON(0): 800x600@60Hz
    (II) RADEON(0): 800x600@72Hz
    (II) RADEON(0): 800x600@75Hz
    (II) RADEON(0): 832x624@75Hz
    (II) RADEON(0): 1024x768@60Hz
    (II) RADEON(0): 1024x768@70Hz
    (II) RADEON(0): 1024x768@75Hz
    (II) RADEON(0): 1280x1024@75Hz
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported standard timings:
    (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 81 kHz, PixClock max 140 MHz
    (II) RADEON(0): Monitor name: AL1916
    (II) RADEON(0): ACER
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 00ffffffffffff0004727c07e4060000
    (II) RADEON(0): 0d1001030e261e782e6875a25a499f23
    (II) RADEON(0): 135054bfef00714f8180010101010101
    (II) RADEON(0): 010101010101302a009851002a403070
    (II) RADEON(0): 1300782d1100001e000000fd00384b1f
    (II) RADEON(0): 510e000a202020202020000000fc0041
    (II) RADEON(0): 4c313931360a202020202020000000fe
    (II) RADEON(0): 00414345520a202020202020202000b1
    (II) RADEON(0): EDID vendor "ACR", prod id 1916
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Dac detection success
    Unhandled monitor type 0
    (II) RADEON(0): Output VGA-0 connected
    (II) RADEON(0): Output DVI-0 disconnected
    (II) RADEON(0): Using exact sizes for initial modes
    (II) RADEON(0): Output VGA-0 using initial mode 1280x1024
    after xf86InitialConfiguration
    (**) RADEON(0): Display dimensions: (380, 300) mm
    (**) RADEON(0): DPI set to (85, 108)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) RADEON(0): Using XAA acceleration architecture
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.2.1
    ABI class: X.Org Video Driver, version 5.0
    (!!) RADEON(0): For information on using the multimedia capabilities
    of this adapter, please see http://gatos.sf.net.
    (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    (II) UnloadModule: "vesa"
    (II) Unloading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) RADEON(0): RADEONScreenInit e0000000 0 0
    Output CRT1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (==) RADEON(0): Using 24 bit depth buffer
    (II) RADEON(0): RADEONInitMemoryMap() :
    (II) RADEON(0): mem_size : 0x10000000
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    (II) RADEON(0): Depth moves disabled by default
    (II) RADEON(0): Using 32 MB GART aperture
    (II) RADEON(0): Using 1 MB for the ring buffer
    (II) RADEON(0): Using 2 MB for vertex/indirect buffers
    (II) RADEON(0): Using 29 MB for GART textures
    (II) RADEON(0): Memory manager initialized to (0,0) (1280,8191)
    (II) RADEON(0): Reserved area from (0,1280) to (1280,1282)
    (II) RADEON(0): Largest offscreen area available: 1280 x 6909
    (II) RADEON(0): Will use front buffer at offset 0x0
    (II) RADEON(0): Will use back buffer at offset 0x1b80000
    (II) RADEON(0): Will use depth buffer at offset 0x21c0000
    (II) RADEON(0): Will use 32 kb for PCI GART table at offset 0xfff8000
    (II) RADEON(0): Will use 221184 kb for textures at offset 0x2800000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) RADEON(0): [drm] framebuffer handle = 0xe0000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (II) RADEON(0): [pci] 32768 kB allocated with handle 0xf93e3000
    (II) RADEON(0): [pci] ring handle = 0xf93e3000
    (II) RADEON(0): [pci] Ring mapped at 0xb77ac000
    (II) RADEON(0): [pci] Ring contents 0x00000000
    (II) RADEON(0): [pci] ring read ptr handle = 0xf94e4000
    (II) RADEON(0): [pci] Ring read ptr mapped at 0xb799f000
    (II) RADEON(0): [pci] Ring read ptr contents 0x00000000
    (II) RADEON(0): [pci] vertex/indirect buffers handle = 0xf94e5000
    (II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0xa74dc000
    (II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000
    (II) RADEON(0): [pci] GART texture map handle = 0xf96e5000
    (II) RADEON(0): [pci] GART Texture map mapped at 0xa585c000
    (II) RADEON(0): [drm] register handle = 0x2ea00000
    (II) RADEON(0): [dri] Visual configs initialized
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    (==) RADEON(0): Backing store disabled
    (II) RADEON(0): [DRI] installation complete
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 16
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0): MC_FB_LOCATION was: 0xefffe000 is: 0xefffe000
    (WW) RADEON(0): MC_AGP_LOCATION was: 0x003f0000 is: 0xffffffc0
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (II) RADEON(0): Direct rendering enabled
    (II) RADEON(0): XAA Render acceleration unsupported on Radeon 9500/9700 and newer. Please use EXA instead.
    (II) RADEON(0): Render acceleration disabled
    (II) RADEON(0): num quad-pipes is 1
    (II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Lines
    Scanline Image Writes
    Setting up tile and stipple cache:
    32 128x128 slots
    32 256x256 slots
    16 512x512 slots
    (II) RADEON(0): Acceleration enabled
    (II) RADEON(0): DPMS enabled
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00643000
    (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x00648000
    (II) RADEON(0): Largest offscreen area available: 1280 x 6901
    (II) RADEON(0): Set up textured video
    Output CRT1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    Output CRT1 disable success
    Mode 1280x1024 - 1688 1066 5
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    freq: 108000000
    best_freq: 108000000
    best_feedback_div: 48
    best_ref_div: 2
    best_post_div: 6
    (II) RADEON(0): crtc(0) Clock: mode 108000, PLL 108000
    (II) RADEON(0): crtc(0) PLL : refdiv 2, fbdiv 0x30(48), pdiv 6
    Set CRTC 0 PLL success
    Set CRTC Timing success
    Set CRTC 0 Overscan success
    Not using RMX
    scaler 0 setup success
    Set CRTC 0 Source success
    crtc 0 YUV disable setup success
    Output DAC1 setup success
    Enable CRTC 0 success
    Unblank CRTC 0 success
    Output CRT1 enable success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: drmOpenMinor returns 12
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) RADEON(0): Setting screen physical size to 376 x 301
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device ImExPS/2 Logitech Explorer Mouse
    (**) ImExPS/2 Logitech Explorer Mouse: always reports core events
    (**) ImExPS/2 Logitech Explorer Mouse: Device: "/dev/input/event6"
    (II) ImExPS/2 Logitech Explorer Mouse: Found 5 mouse buttons
    (II) ImExPS/2 Logitech Explorer Mouse: Found x and y relative axes
    (II) ImExPS/2 Logitech Explorer Mouse: Found scroll wheel(s)
    (II) ImExPS/2 Logitech Explorer Mouse: Configuring as mouse
    (**) ImExPS/2 Logitech Explorer Mouse: YAxisMapping: buttons 4 and 5
    (**) ImExPS/2 Logitech Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "ImExPS/2 Logitech Explorer Mouse" (type: MOUSE)
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) keeping acceleration scheme 1
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) filter chain progression: 2.00
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) filter stage 0: 20.00 ms
    (**) ImExPS/2 Logitech Explorer Mouse: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) ImExPS/2 Logitech Explorer Mouse: Close
    (II) UnloadModule: "evdev"
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    Output CRT1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000
    (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    (II) RADEON(0): avivo_restore !
    Enable CRTC 0 success
    Unblank CRTC 0 success
    (II) RADEON(0): [drm] removed 1 reserved context for kernel
    (II) RADEON(0): [drm] unmapping 8192 bytes of SAREA 0xf802f000 at 0xb79a0000
    (II) RADEON(0): [drm] Closed DRM master.
    Last edited by edenxavier (2009-07-28 03:31:10)

  • [SOLVED] Nvidia device setting in the new Xorg (w/ hotplug enabled)

    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "G70 [GeForce Go 7800 GTX]"
    Option "NoLogo"
    Option "DPMS" "True"
    Option "RenderAccel" "True"
    Option "DPI" "96x96"
    Option "TripleBuffer" "True"
    Option "BackingStore" "True"
    Option "DamageEvents" "True"
    Option "OnDemandVBlankInterrupts" "True"
    EndSection
    How/where do I set these when using the new xorg server with hotplug support?
    Last edited by keerthi (2008-12-01 16:24:34)

    mutlu_inek wrote:
    Nope. The nvidia module doesn't actually work. See the announcement on www.archlinux.org
    People should really subscribe to the RSS feed.
    People need to stop saying the nvidia module doesn't work.  It's the version supporting older cards that doesn't.  (nvidia-71xx is no longer supported)

  • [SOLVED] Nvidia and Xorg 1.8: Failed to Increase Resolution

    Hi there,
    with the new Xorg 1.8 I experienced the following Problem:
    When booting my system, the screen is set to 1680x1050 resolution which works fine.
    To play some games, I use to change the screen resolution to 1024x768 via xrandr.
    But when I try to set the resolution back to anything bigger than 1024x768, both xrandr and nvidia-settings fail.
    Output of xrandr:
    $ xrandr -s 1680x1050
    Failed to change the screen configuration!
    $ xrandr --verbose -s 1680x0105
    Size 1680x105 not found in available modes
    Trying to change the Resolution back to 1680x1050 by nvidia-settings:
    Failed to set MetaMode (1) 'DFP-0: 1680x1050 @1680x1050 +0+0' (Mode 1680x1050, id: 63) on X screen 0
    Would you like to remove this MetaMode?
    Then I try restarting my XServer (to get back the 1680 res), it crashes with following error message:
    /var/log/Xorg.0.log
    (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    (EE) NVIDIA(0): Failed to allocate primary buffer: out of memory.
    (EE) NVIDIA(0): *** Aborting ***
    I got a Nvidia Geforce 7300 Go, latest driver installed (extra/nvidia 256.44-1),
    X.Org X Server 1.8.1.902 (1.8.2 RC 2)
    xorg.conf
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "0"
    EndSection
    # Section "Module"
    # Load "dbe"
    # Load "extmod"
    # Load "type1"
    # Load "freetype"
    # Load "glx"
    # EndSection
    # Section "Extensions"
    # Option "Composite" "Enable"
    # EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbOptions" "terminate:ctrl_alt_bksp"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "LPL"
    HorizSync 30.0 - 75.0
    VertRefresh 60.0
    Option "DPMS"
    Option "Metamodes" "1680x1050"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce Go 7300"
    Option "NoLogo" "true"
    Option "Metamodes" "1680x1050"
    # Option "RenderAccel" "True"
    # Option "AllowGLXWithComposite" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    # Option "AddARGBGLXVisuals" "True"
    # Option "TwinView" "0"
    # Option "metamodes" "1680x1050 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    xorg.conf.d/20-nvidia.conf
    Section "Device"
    Identifier "Default nvidia Device"
    Driver "nvidia"
    Option "NoLogo" "True"
    EndSection
    Any ideas?
    Last edited by Pyxir (2010-08-12 08:42:02)

    Whoops, the 0105 obviously was a typo when reproducing the problem.
    The complete Xorg.0.log of my current session, including errors:
    [ 21.242]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 21.242]
    X.Org X Server 1.8.1.902 (1.8.2 RC 2)
    Release Date: 2010-06-21
    [ 21.242] X Protocol Version 11, Revision 0
    [ 21.242] Build Operating System: Linux 2.6.34-ARCH i686
    [ 21.242] Current Operating System: Linux arche 2.6.34-ARCH #1 SMP PREEMPT Wed Aug 4 14:27:43 CEST 2010 i686
    [ 21.242] Kernel command line: root=/dev/sda2 ro vga=773
    [ 21.242] Build Date: 21 June 2010 11:54:27AM
    [ 21.242]
    [ 21.263] Current version of pixman: 0.18.2
    [ 21.263] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 21.263] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 21.263] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 11 21:57:27 2010
    [ 21.296] (==) Using config file: "/etc/X11/xorg.conf"
    [ 21.296] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 21.345] (==) ServerLayout "Layout0"
    [ 21.345] (**) |-->Screen "Screen0" (0)
    [ 21.345] (**) | |-->Monitor "Monitor0"
    [ 21.345] (**) | |-->Device "Device0"
    [ 21.345] (**) |-->Input Device "Keyboard0"
    [ 21.345] (**) |-->Input Device "Mouse0"
    [ 21.345] (**) Option "DontZap" "false"
    [ 21.345] (**) Option "Xinerama" "0"
    [ 21.345] (==) Automatically adding devices
    [ 21.345] (==) Automatically enabling devices
    [ 21.411] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 21.411] Entry deleted from font path.
    [ 21.436] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 21.436] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 21.436] (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 21.436] (WW) Disabling Keyboard0
    [ 21.436] (WW) Disabling Mouse0
    [ 21.436] (II) Loader magic: 0x81e9d00
    [ 21.436] (II) Module ABI versions:
    [ 21.436] X.Org ANSI C Emulation: 0.4
    [ 21.436] X.Org Video Driver: 7.0
    [ 21.436] X.Org XInput driver : 9.0
    [ 21.436] X.Org Server Extension : 3.0
    [ 21.444] (--) PCI:*(0:1:0:0) 10de:01d7:17aa:3839 nVidia Corporation G72M [Quadro NVS 110M/GeForce Go 7300] rev 161, Mem @ 0xc9000000/16777216, 0xd0000000/268435456, 0xca000000/16777216
    [ 21.444] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 21.444] (II) LoadModule: "extmod"
    [ 21.528] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 21.538] (II) Module extmod: vendor="X.Org Foundation"
    [ 21.538] compiled for 1.8.1.902, module version = 1.0.0
    [ 21.538] Module class: X.Org Server Extension
    [ 21.538] ABI class: X.Org Server Extension, version 3.0
    [ 21.538] (II) Loading extension MIT-SCREEN-SAVER
    [ 21.538] (II) Loading extension XFree86-VidModeExtension
    [ 21.538] (II) Loading extension XFree86-DGA
    [ 21.538] (II) Loading extension DPMS
    [ 21.538] (II) Loading extension XVideo
    [ 21.538] (II) Loading extension XVideo-MotionCompensation
    [ 21.538] (II) Loading extension X-Resource
    [ 21.538] (II) LoadModule: "dbe"
    [ 21.538] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 21.550] (II) Module dbe: vendor="X.Org Foundation"
    [ 21.550] compiled for 1.8.1.902, module version = 1.0.0
    [ 21.550] Module class: X.Org Server Extension
    [ 21.550] ABI class: X.Org Server Extension, version 3.0
    [ 21.550] (II) Loading extension DOUBLE-BUFFER
    [ 21.550] (II) LoadModule: "glx"
    [ 21.560] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 22.778] (II) Module glx: vendor="NVIDIA Corporation"
    [ 22.778] compiled for 4.0.2, module version = 1.0.0
    [ 22.778] Module class: X.Org Server Extension
    [ 22.788] (II) NVIDIA GLX Module 256.44 Thu Jul 29 01:55:11 PDT 2010
    [ 22.788] (II) Loading extension GLX
    [ 22.788] (II) LoadModule: "record"
    [ 22.789] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 22.794] (II) Module record: vendor="X.Org Foundation"
    [ 22.794] compiled for 1.8.1.902, module version = 1.13.0
    [ 22.794] Module class: X.Org Server Extension
    [ 22.794] ABI class: X.Org Server Extension, version 3.0
    [ 22.794] (II) Loading extension RECORD
    [ 22.794] (II) LoadModule: "dri"
    [ 22.794] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 22.825] (II) Module dri: vendor="X.Org Foundation"
    [ 22.825] compiled for 1.8.1.902, module version = 1.0.0
    [ 22.825] ABI class: X.Org Server Extension, version 3.0
    [ 22.825] (II) Loading extension XFree86-DRI
    [ 22.825] (II) LoadModule: "dri2"
    [ 22.825] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 22.825] (II) Module dri2: vendor="X.Org Foundation"
    [ 22.825] compiled for 1.8.1.902, module version = 1.2.0
    [ 22.825] ABI class: X.Org Server Extension, version 3.0
    [ 22.825] (II) Loading extension DRI2
    [ 22.825] (II) LoadModule: "nvidia"
    [ 22.843] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 22.891] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 22.891] compiled for 4.0.2, module version = 1.0.0
    [ 22.891] Module class: X.Org Video Driver
    [ 22.925] (II) NVIDIA dlloader X Driver 256.44 Thu Jul 29 01:32:42 PDT 2010
    [ 22.926] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 22.926] (++) using VT number 7
    [ 22.939] (II) Primary Device is: PCI 01@00:00:0
    [ 22.967] (II) Loading sub module "fb"
    [ 22.967] (II) LoadModule: "fb"
    [ 22.967] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 22.981] (II) Module fb: vendor="X.Org Foundation"
    [ 22.981] compiled for 1.8.1.902, module version = 1.0.0
    [ 22.981] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 22.981] (II) Loading sub module "wfb"
    [ 22.981] (II) LoadModule: "wfb"
    [ 22.981] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 22.992] (II) Module wfb: vendor="X.Org Foundation"
    [ 22.992] compiled for 1.8.1.902, module version = 1.0.0
    [ 22.992] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 22.992] (II) Loading sub module "ramdac"
    [ 22.992] (II) LoadModule: "ramdac"
    [ 22.992] (II) Module "ramdac" already built-in
    [ 23.023] (**) NVIDIA(0): Depth 16, (--) framebuffer bpp 16
    [ 23.023] (==) NVIDIA(0): RGB weight 565
    [ 23.023] (==) NVIDIA(0): Default visual is TrueColor
    [ 23.023] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 23.023] (**) NVIDIA(0): Enabling RENDER acceleration
    [ 23.023] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    [ 23.023] (II) NVIDIA(0): enabled.
    [ 24.045] (II) NVIDIA(0): NVIDIA GPU GeForce Go 7300 (G72) at PCI:1:0:0 (GPU-0)
    [ 24.045] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 24.045] (--) NVIDIA(0): VideoBIOS: 05.72.22.54.18
    [ 24.045] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 24.045] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 24.045] (--) NVIDIA(0): Connected display device(s) on GeForce Go 7300 at PCI:1:0:0:
    [ 24.045] (--) NVIDIA(0): LPL (DFP-0)
    [ 24.045] (--) NVIDIA(0): LPL (DFP-0): 330.0 MHz maximum pixel clock
    [ 24.045] (--) NVIDIA(0): LPL (DFP-0): Internal Dual Link LVDS
    [ 24.074] (II) NVIDIA(0): Assigned Display Device: DFP-0
    [ 24.074] (WW) NVIDIA(0): No valid modes for "1024x768_75.00"; removing.
    [ 24.074] (WW) NVIDIA(0):
    [ 24.074] (WW) NVIDIA(0): Unable to validate any modes; falling back to the default mode
    [ 24.074] (WW) NVIDIA(0): "nvidia-auto-select".
    [ 24.074] (WW) NVIDIA(0):
    [ 24.074] (II) NVIDIA(0): Validated modes:
    [ 24.074] (II) NVIDIA(0): "nvidia-auto-select"
    [ 24.074] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
    [ 24.074] (--) NVIDIA(0): DPI set to (129, 126); computed from "UseEdidDpi" X config
    [ 24.074] (--) NVIDIA(0): option
    [ 24.074] (==) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    [ 24.076] (II) NVIDIA(0): Initialized GPU GART.
    [ 24.081] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 24.082] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 24.082] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 24.082] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 24.082] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 24.082] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 24.082] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 24.082] (II) NVIDIA(0): Config Options in the README.
    [ 24.082] (II) NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    [ 24.082] (II) NVIDIA(0): enough to receive ACPI hotkey events.
    [ 24.082] (II) NVIDIA(0): ACPI brightness change hotkey events enabled.
    [ 24.082] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 25.488] (II) Loading extension NV-GLX
    [ 25.508] (II) NVIDIA(0): Initialized OpenGL Acceleration
    [ 25.524] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 25.524] (II) NVIDIA(0): Initialized X Rendering Acceleration
    [ 25.548] (==) NVIDIA(0): Backing store disabled
    [ 25.548] (==) NVIDIA(0): Silken mouse enabled
    [ 25.560] (==) NVIDIA(0): DPMS enabled
    [ 25.560] (II) Loading extension NV-CONTROL
    [ 25.560] (II) Loading extension XINERAMA
    [ 25.560] (II) Loading sub module "dri2"
    [ 25.560] (II) LoadModule: "dri2"
    [ 25.560] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 25.560] (II) NVIDIA(0): [DRI2] Setup complete
    [ 25.560] (==) RandR enabled
    [ 25.561] (II) Initializing built-in extension Generic Event Extension
    [ 25.561] (II) Initializing built-in extension SHAPE
    [ 25.561] (II) Initializing built-in extension MIT-SHM
    [ 25.561] (II) Initializing built-in extension XInputExtension
    [ 25.561] (II) Initializing built-in extension XTEST
    [ 25.561] (II) Initializing built-in extension BIG-REQUESTS
    [ 25.561] (II) Initializing built-in extension SYNC
    [ 25.561] (II) Initializing built-in extension XKEYBOARD
    [ 25.561] (II) Initializing built-in extension XC-MISC
    [ 25.561] (II) Initializing built-in extension SECURITY
    [ 25.561] (II) Initializing built-in extension XINERAMA
    [ 25.561] (II) Initializing built-in extension XFIXES
    [ 25.561] (II) Initializing built-in extension RENDER
    [ 25.561] (II) Initializing built-in extension RANDR
    [ 25.561] (II) Initializing built-in extension COMPOSITE
    [ 25.561] (II) Initializing built-in extension DAMAGE
    [ 25.564] (II) Initializing extension GLX
    [ 26.195] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 26.195] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 26.195] (**) Power Button: Applying InputClass "keyboard"
    [ 26.195] (II) LoadModule: "evdev"
    [ 26.195] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 26.221] (II) Module evdev: vendor="X.Org Foundation"
    [ 26.221] compiled for 1.8.0, module version = 2.4.0
    [ 26.221] Module class: X.Org XInput Driver
    [ 26.221] ABI class: X.Org XInput driver, version 9.0
    [ 26.221] (**) Power Button: always reports core events
    [ 26.221] (**) Power Button: Device: "/dev/input/event3"
    [ 26.230] (II) Power Button: Found keys
    [ 26.230] (II) Power Button: Configuring as keyboard
    [ 26.231] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 26.231] (**) Option "xkb_rules" "evdev"
    [ 26.231] (**) Option "xkb_model" "evdev"
    [ 26.231] (**) Option "xkb_layout" "de"
    [ 26.231] (**) Option "xkb_variant" "nodeadkeys"
    [ 26.296] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 26.296] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 26.297] (**) Video Bus: Applying InputClass "keyboard"
    [ 26.297] (**) Video Bus: always reports core events
    [ 26.297] (**) Video Bus: Device: "/dev/input/event4"
    [ 26.304] (II) Video Bus: Found keys
    [ 26.304] (II) Video Bus: Configuring as keyboard
    [ 26.304] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 26.304] (**) Option "xkb_rules" "evdev"
    [ 26.304] (**) Option "xkb_model" "evdev"
    [ 26.304] (**) Option "xkb_layout" "de"
    [ 26.304] (**) Option "xkb_variant" "nodeadkeys"
    [ 26.306] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 26.306] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 26.306] (**) Power Button: Applying InputClass "keyboard"
    [ 26.306] (**) Power Button: always reports core events
    [ 26.306] (**) Power Button: Device: "/dev/input/event2"
    [ 26.314] (II) Power Button: Found keys
    [ 26.314] (II) Power Button: Configuring as keyboard
    [ 26.314] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 26.314] (**) Option "xkb_rules" "evdev"
    [ 26.314] (**) Option "xkb_model" "evdev"
    [ 26.314] (**) Option "xkb_layout" "de"
    [ 26.314] (**) Option "xkb_variant" "nodeadkeys"
    [ 26.314] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 26.314] (II) No input driver/identifier specified (ignoring)
    [ 26.315] (II) config/udev: Adding input device USB 2.0 Camera (/dev/input/event7)
    [ 26.315] (**) USB 2.0 Camera: Applying InputClass "evdev keyboard catchall"
    [ 26.315] (**) USB 2.0 Camera: Applying InputClass "keyboard"
    [ 26.315] (**) USB 2.0 Camera: always reports core events
    [ 26.316] (**) USB 2.0 Camera: Device: "/dev/input/event7"
    [ 26.324] (II) USB 2.0 Camera: Found keys
    [ 26.324] (II) USB 2.0 Camera: Configuring as keyboard
    [ 26.324] (II) XINPUT: Adding extended input device "USB 2.0 Camera" (type: KEYBOARD)
    [ 26.324] (**) Option "xkb_rules" "evdev"
    [ 26.324] (**) Option "xkb_model" "evdev"
    [ 26.324] (**) Option "xkb_layout" "de"
    [ 26.324] (**) Option "xkb_variant" "nodeadkeys"
    [ 26.324] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 26.325] (II) No input driver/identifier specified (ignoring)
    [ 26.328] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 26.328] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 26.328] (**) AT Translated Set 2 keyboard: Applying InputClass "keyboard"
    [ 26.328] (**) AT Translated Set 2 keyboard: always reports core events
    [ 26.328] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 26.340] (II) AT Translated Set 2 keyboard: Found keys
    [ 26.340] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 26.340] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 26.341] (**) Option "xkb_rules" "evdev"
    [ 26.341] (**) Option "xkb_model" "evdev"
    [ 26.341] (**) Option "xkb_layout" "de"
    [ 26.341] (**) Option "xkb_variant" "nodeadkeys"
    [ 26.341] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 26.341] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 26.341] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 26.341] (II) LoadModule: "synaptics"
    [ 26.341] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 26.362] (II) Module synaptics: vendor="X.Org Foundation"
    [ 26.362] compiled for 1.8.0.902, module version = 1.2.2
    [ 26.362] Module class: X.Org XInput Driver
    [ 26.362] ABI class: X.Org XInput driver, version 9.0
    [ 26.362] (II) Synaptics touchpad driver version 1.2.2
    [ 26.362] (**) Option "Device" "/dev/input/event6"
    [ 26.394] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    [ 26.394] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    [ 26.394] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 26.394] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    [ 26.394] (II) SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 26.394] (**) Option "VertEdgeScroll" "on"
    [ 26.394] (**) Option "TapButton1" "1"
    [ 26.394] (**) Option "TapButton2" "2"
    [ 26.394] (**) Option "TapButton3" "3"
    [ 26.421] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 26.421] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 26.434] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    [ 26.434] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 26.434] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    [ 26.434] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 26.434] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 26.460] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 26.461] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 26.461] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 26.461] (II) Synaptics touchpad driver version 1.2.2
    [ 26.867] SynPS/2 Synaptics TouchPad no synaptics event device found
    [ 26.867] (**) Option "Device" "/dev/input/mouse0"
    [ 26.880] (**) Option "VertEdgeScroll" "on"
    [ 26.881] (**) Option "TapButton1" "1"
    [ 26.881] (**) Option "TapButton2" "2"
    [ 26.881] (**) Option "TapButton3" "3"
    [ 26.901] Query no Synaptics: 6003C8
    [ 26.901] (--) SynPS/2 Synaptics TouchPad: no supported touchpad found
    [ 26.901] (EE) SynPS/2 Synaptics TouchPad Unable to query/initialize Synaptics hardware.
    [ 26.934] (EE) PreInit failed for input device "SynPS/2 Synaptics TouchPad"
    [ 26.934] (II) UnloadModule: "synaptics"
    [ 26.934] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 26.934] (II) No input driver/identifier specified (ignoring)
    [ 201.065] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 202.424] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 202.424] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 202.424] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 202.424] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 202.424] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 202.424] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 202.424] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 202.424] (II) NVIDIA(0): Config Options in the README.
    [ 202.425] (II) NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
    [ 202.425] (II) NVIDIA(0): enough to receive ACPI hotkey events.
    [ 202.425] (II) NVIDIA(0): ACPI brightness change hotkey events enabled.
    [ 202.540] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 241.790] (II) config/udev: Adding input device PS/2+USB Mouse (/dev/input/mouse1)
    [ 241.790] (II) No input driver/identifier specified (ignoring)
    [ 241.795] (II) config/udev: Adding input device PS/2+USB Mouse (/dev/input/event9)
    [ 241.795] (**) PS/2+USB Mouse: Applying InputClass "evdev pointer catchall"
    [ 241.795] (**) PS/2+USB Mouse: always reports core events
    [ 241.795] (**) PS/2+USB Mouse: Device: "/dev/input/event9"
    [ 241.804] (II) PS/2+USB Mouse: Found 3 mouse buttons
    [ 241.804] (II) PS/2+USB Mouse: Found scroll wheel(s)
    [ 241.804] (II) PS/2+USB Mouse: Found relative axes
    [ 241.804] (II) PS/2+USB Mouse: Found x and y relative axes
    [ 241.804] (II) PS/2+USB Mouse: Configuring as mouse
    [ 241.804] (**) PS/2+USB Mouse: YAxisMapping: buttons 4 and 5
    [ 241.804] (**) PS/2+USB Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 241.804] (II) XINPUT: Adding extended input device "PS/2+USB Mouse" (type: MOUSE)
    [ 241.804] (**) PS/2+USB Mouse: (accel) keeping acceleration scheme 1
    [ 241.804] (**) PS/2+USB Mouse: (accel) acceleration profile 0
    [ 241.804] (**) PS/2+USB Mouse: (accel) acceleration factor: 2.000
    [ 241.804] (**) PS/2+USB Mouse: (accel) acceleration threshold: 4
    [ 241.804] (II) PS/2+USB Mouse: initialized for relative axes.
    [ 1596.383] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 1601.611] (II) NVIDIA(0): Setting mode "1024x768"
    [ 1604.865] (EE) NVIDIA(0): Failed to allocate primary buffer: out of memory.
    [ 1604.865] (EE) NVIDIA(0): *** Aborting ***
    [ 1604.870] (II) NVIDIA(0): Setting mode "1024x768"

  • [SOLVED] xf86-intel+xorg-1.5.3 low performance

    Hello,
    Yesterday i've updated whole arch linux distribution (pacman -Su), unfortunately after update i've discovered that pereformence of glx has fallen significantly.
    On glxgears i can get max 170 fps, i can't event watch SD movies on mplayer -vo gl movie.avi, on mplayer i get this message:
               **** Your system is too SLOW to play this!  ****
    Possible reasons, problems, workarounds:
    - Most common: broken/buggy _audio_ driver
      - Try -ao sdl or use the OSS emulation of ALSA.
      - Experiment with different values for -autosync, 30 is a good start.
    - Slow video output
      - Try a different -vo driver (-vo help for a list) or try -framedrop!
    - Slow CPU
      - Don't try to play a big DVD/DivX on a slow CPU! Try some of the lavdopts,
        e.g. -vfm ffmpeg -lavdopts lowres=1:fast:skiploopfilter=all.
    - Broken file
      - Try various combinations of -nobps -ni -forceidx -mc 0.
    - Slow media (NFS/SMB mounts, DVD, VCD etc)
      - Try -cache 8192.
    - Are you using -cache to play a non-interleaved AVI file?
      - Try -nocache.
    Read DOCS/HTML/en/video.html for tuning/speedup tips.
    If none of this helps you, read DOCS/HTML/en/bugreports.html.
    But it's not problem with my computer, before system update everything was ok. So it's a problem with new intel driver or new xorg.
    What are the possible solutions?
    Last edited by czester21 (2008-12-26 15:50:11)

    Yeah, I am looking forward to GEM. Hopefully that will solve all problems.
    UPDATE:
    It seems after I tried to compile Zen-Kernel 2.6.28-rc9 and added the following line in xorg.conf:
    Section "Device"
    Option "RenderAccel" "true"
    EndSection
    and
    Section "Extensions"
    Option "MIT-SHM" "Yes"
    EndSection
    And also change AccelMethod back to XAA instead of EXA as I ran before, performance went back to normal levels.
    It might aswell work for you too.
    Last edited by Cheesebaron (2008-12-25 15:38:23)

  • [solved] modify group xorg

    hey all
    it really is a small issue, but i recently did a fresh arch installation and i noticed that the group (pacman group) xorg doesn't include evdev.
    why not remove xf86-input-keyboard and xf86-input-mouse and replace it with xf86-input-evdev?
    if i understood correctly, this is the currently recommended way of installing xorg.
    and following the kiss principle, a pacman -S xorg should install the xorg server the way one is supposed to install it
    pacman -S xorg xf86-input-evdev and deselecting xf86-input-{keyboard,mouse} is not keeping it simple, imho
    old (current) xorg group:
    xf86-input-keyboard
    xf86-input-mouse
    xf86-video-vesa
    xorg-fonts-100dpi
    xorg-fonts-75dpi
    xorg-res-utils
    xorg-server
    xorg-twm
    xorg-xinit
    xterm
    new xorg group:
    xf86-input-evdev
    xf86-video-vesa
    xorg-fonts-100dpi
    xorg-fonts-75dpi
    xorg-res-utils
    xorg-server
    xorg-twm
    xorg-xinit
    xterm
    what do you thing? should or should we not change the group?
    -- Dinh --
    ps: this is just a succestion. if there was good reason for keeping it the way it is, i'm glad to hear it
    Last edited by Dinh (2009-04-12 13:50:49)

    Dinh wrote:Are you sure? I never install mouse and keyboard.
    Though, that might explain why my laptop's touchpad doesn't work anymore
    No, I wasn't. That's why I threw in words like guessing and believe. And it turns out that I was wrong anyway, evdev superseded both. So, your originating question is still valid one.

  • New Xorg bad

    It seems new xorg 7.3 is breaking my system here and there .
    1) My mouse has stopped working:http://bbs.archlinux.org/viewtopic.php?id=39494
    2) Java applications not working http://bbs.archlinux.org/viewtopic.php?id=39523
    This gives me a feeling that archlinux is sacrificing quality in the name of bleeding edge.:(

    brain0 wrote:For all of us who actually used it, it was fine. So, among the Arch devs, it was common knowledge that the new version is fine.
    First: thank you for your work as a developer. I really appreciate it.
    Second: The only issue I have encountered thus far after the Xorg upgrade is related to JAVA apps' assertion failures, and the posted workaround seems to be a viable [shot-term] solution until the offending JAVA apps are fixed.
    Now, to the meat: your post says that the new version of Xorg (and all related, updated components) is fine per testing done by those who participated in the testing phase. But the upgrade has obviously created an array of issues, even if the issues are not all direct bugs of Xorg (i.e., they may be issues with applications that use Xorg ... though the apps worked with previous Xorg versions), or the issues may "simply" require reconfiguring xorg.conf.
    So, with that in mind, do the developers have an obligation to more thoroughly document the potential issues that upgrading may cause? Or is it simply a matter of adopting the philosophy that issues not classified as technically "bugs", even though they may adversely impact users, do not warrant reporting?
    These questions are especially relevant when the issues affect such basic PC operations as JAVA applications, video display and input device functionality, all of which must have been encountered and noted during testing. The Arch News bulletin certainly fell short of this reporting:
    http://www.archlinux.org/news/363/
    X.org 7.3 hits [extra]
    After a testing period for over one month we made the decision to move X.org 7.3 to our stable package repositories. Thanks to all the testers and reporters who enabled us to wipe out most of the major issues.
    Please note that libgl-dri has been renamed to libgl since the deprecation of libgl-mesa happened a long time ago already. That means people packaging for the AUR should finally get rid of any hard dependencies on libgl-dri or else their packages will be left broken.
    That certainly paints a rosier picture than what users encountered after the upgrade. I don't see "beware, lots of JAVA apps will break" or "you may have to learn to configure xorg.conf all over again" in that news release.
    So, I'm just curious what your take is on providing a little more information when these big-package upgrades are pushed out so that users can make informed decisions about how to proceed (of course, making backups first is always good ... which I did).
    Thanks.

  • [solved] new xorg not autodetecting touchpad

    After I upgraded to to xorg server 1.6, my touchpad doesn't work.  Not sure what is going on.  There doesn't seem to be any errors in the log. The mouse that is detected is a usb one I found in a corner trying to figure this out.
    Any ideas?
    Thanks
    My xorg.conf is:
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/local/share/fonts"
    EndSection
    Section "Module"
    Load "bitmap"
    Load "int10"
    Load "vbe"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    Option "DRI" "true"
    VendorName "Intel Corporation"
    BoardName "Mobile Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "FramebufferCompression" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "MIT-SHM" "Yes"
    EndSection
    Xorg.0.log:
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux awalterslaptop 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 8 12:47:56 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 16 11:59:03 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) No Layout section. Using the first Screen section.
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/local/share/fonts" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (**) Extension "MIT-SHM" is enabled
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xeff00000/524288, 0xd0000000/268435456, 0xefec0000/262144, I/O @ 0x0000eff8/8
    (--) PCI: (0@0:2:1) Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xeff80000/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded by default.
    (II) "dbe" will be loaded by default.
    (II) "glx" will be loaded by default.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.3.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33, Intel Integrated Graphics Device
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Reloading /usr/lib/xorg/modules//libvbe.so
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Screen0" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "DRI" "true"
    (**) intel(0): Option "FramebufferCompression" "true"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(0): Chipset: "945GM"
    (--) intel(0): Linear framebuffer at 0xD0000000
    (--) intel(0): IO registers at addr 0xEFF00000
    (II) intel(0): 2 display pipes available.
    (==) intel(0): Using EXA for acceleration
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section Monitor0
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (II) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 7872 kB
    (II) intel(0): VESA VBE OEM: Intel(r) 82945GM Chipset Family Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r) 82945GM Chipset Family Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) intel(0): found backlight control method /sys/class/backlight/acpi_video0
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): No SDVO device found on SDVOB
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Output TV has no monitor section
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): Output VGA disconnected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Output TV disconnected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1280x800
    (II) intel(0): Monitoring connected displays enabled
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 7932 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Intel XvMC decoder disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.4.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x00000000 to 0x80000203
    (WW) intel(0): PIPEASTAT before: status:
    (WW) intel(0): PIPEASTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x80000242
    (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS LBLC_EVENT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): Register 0x68060 (TV_SC_CTL_1) changed from 0xc1710087 to 0xc1710088
    (WW) intel(0): Register 0x68064 (TV_SC_CTL_2) changed from 0x6b405140 to 0x4e2d1dc8
    (II) Loading sub module "dri"
    (II) LoadModule: "dri"
    (II) Reloading /usr/lib/xorg/modules/extensions//libdri.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 810752 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 3243004 kB available
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer mapped by ddx driver
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): [drm] Registers = 0xeff00000
    (II) intel(0): [drm] ring buffer = 0xd0000000
    (II) intel(0): [drm] mapped front buffer at 0xd1000000, handle = 0xd1000000
    (II) intel(0): [drm] mapped back buffer at 0xd4000000, handle = 0xd4000000
    (II) intel(0): [drm] mapped depth buffer at 0xd5000000, handle = 0xd5000000
    (II) intel(0): [drm] mapped classic textures at 0xd6000000, handle = 0xd6000000
    (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
    (II) intel(0): [dri] visual configs initialized
    (II) intel(0): Page Flipping disabled
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) EXA(0): Offscreen pixmap area of 31457280 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) Composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): [DRI] installation complete
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x01000000 (pgoffset 4096)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x02000000 (pgoffset 8192)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x04000000 (pgoffset 16384)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x05000000 (pgoffset 20480)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x06000000 (pgoffset 24576)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x0061ffff: compressed frame buffer (6144 kB, 0x00000000cf820000 physical
    (II) intel(0): 0x00620000-0x00620fff: compressed ll buffer (4 kB, 0x00000000cfe20000 physical
    (II) intel(0): 0x00621000-0x0062afff: HW cursors (40 kB, 0x00000000cfe21000 physical
    (II) intel(0): 0x0062b000-0x00632fff: logical 3D context (32 kB)
    (II) intel(0): 0x00633000-0x00633fff: overlay registers (4 kB, 0x00000000cfe33000 physical
    (II) intel(0): 0x007bf000: end of stolen memory
    (II) intel(0): 0x01000000-0x01ffffff: front buffer (10240 kB) X tiled
    (II) intel(0): 0x02000000-0x03dfffff: exa offscreen (30720 kB)
    (II) intel(0): 0x04000000-0x04ffffff: back buffer (10240 kB) X tiled
    (II) intel(0): 0x05000000-0x05ffffff: depth buffer (10240 kB) X tiled
    (II) intel(0): 0x06000000-0x07ffffff: classic textures (32768 kB)
    (II) intel(0): 0x10000000: end of aperture
    (WW) intel(0): ESR is 0x00000001, instruction error
    (WW) intel(0): PRB0_CTL (0x0001f001) indicates ring buffer enabled
    (WW) intel(0): Existing errors found in hardware state.
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane A is now disabled and connected to pipe A.
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane B is now enabled and connected to pipe B.
    (II) intel(0): Output VGA is connected to pipe none
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): Output TV is connected to pipe none
    (II) intel(0): [drm] dma control initialized, using IRQ 16
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (**) Option "dpms" "true"
    (**) intel(0): DPMS enabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) intel(0): Setting screen physical size to 331 x 207
    (II) config/hal: Adding input device HID 062a:0000
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) HID 062a:0000: always reports core events
    (**) HID 062a:0000: Device: "/dev/input/event11"
    (II) HID 062a:0000: Found 3 mouse buttons
    (II) HID 062a:0000: Found x and y relative axes
    (II) HID 062a:0000: Found scroll wheel(s)
    (II) HID 062a:0000: Configuring as mouse
    (**) HID 062a:0000: YAxisMapping: buttons 4 and 5
    (**) HID 062a:0000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "HID 062a:0000" (type: MOUSE)
    (**) HID 062a:0000: (accel) keeping acceleration scheme 1
    (**) HID 062a:0000: (accel) filter chain progression: 2.00
    (**) HID 062a:0000: (accel) filter stage 0: 20.00 ms
    (**) HID 062a:0000: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event8"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event7"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.11 1280 1328 1360 1440 800 802 808 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x007bf000 (pgoffset 1983)
    (II) intel(0): xf86UnbindGARTMemory: unbind key 5
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.11 1280 1328 1360 1440 800 802 808 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x007bf000 (pgoffset 1983)
    (II) intel(0): xf86UnbindGARTMemory: unbind key 5
    exaCopyDirty: Pending damage region empty!
    Last edited by amw2320 (2009-05-03 04:45:17)

    I hope i won't say anything stupid here, but AFAIUnderstand Xorg has now an autodetect "feature" that fails more often than not, or configures mice with weird defaults.
    Try to add this to your /etc/X11/xorg.conf:
    Section "ServerFlags"
    Option "AutoAddDevices" "false"
    Option "DontZap" "false"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "CorePointer"
    Option "Device" "/dev/misc/psaux"
    Option "Protocol" "auto-dev"
    # Option "LeftEdge" "1000"
    # Option "RightEdge" "5400"
    # Option "TopEdge" "1000"
    # Option "BottomEdge" "4900"
    # Option "PalmDetect" "0"
    # Option "SHMConfig" "true"
    # Option "RBCornerButton" "0"
    # Option "RTCornerButton" "0"
    Option "MinSpeed" "0.9"
    Option "MaxSpeed" "1.4"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "VertTwoFingerScroll" "1"
    Option "HorizTwoFingerScroll" "1"
    # Option "VertEdgeScroll" "1"
    # Option "HorizEdgeScroll" "1"
    # Option "MaxTapTime" "180"
    # Option "MaxTapMove" "2000"
    # Option "MaxDoubleTapTime" "360"
    # Option "SingleTapTimeout" "360"
    # Option "EmulateMidButtonTime" "75"
    # Option "HorizScrollDelta" "0"
    EndSection
    Section "InputDevice"
    Identifier "Mouse"
    Driver "mouse"
    Option "SendCoreEvents" "true"
    EndSection
    (the "DontZap" option is unrelated to your problem, it allows to kill X with ctrl-alt-backspace)
    These touchpad settings are the ones I'm using on my EeePC900, you may want to tweak them. I left some commented options for reference.

  • [SOLVED] Blinking screen - new Xorg and Intel issue

    Screen is blinking after opening laptop lid no matter what i did (nothing, lock screen, hibernate, standby). It blinks every 10-20 seconds for about 1-2 seconds, and cpu% used by X's raises from 0.3-1.0 to even 10% and system slows down a little in that moment. My Xorg logs:
    $ cat /var/log/Xorg.0.log
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    # closing & opening laptop lid
    # right after opening (properly i suppose)
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): I2C bus "CRTDDC_A" removed.
    (II) intel(0): EDID vendor "CMO", prod id 4609
    (II) intel(0): Using EDID range info for horizontal sync
    (II) intel(0): Using EDID range info for vertical refresh
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): EDID vendor "CMO", prod id 4609
    # after 10-20 seconds
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): I2C bus "CRTDDC_A" removed.
    (II) intel(0): EDID vendor "CMO", prod id 4609
    (II) intel(0): Using hsync ranges from config file
    (II) intel(0): Using vrefresh ranges from config file
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): EDID vendor "CMO", prod id 4609
    # over and over...
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): I2C bus "CRTDDC_A" removed.
    (II) intel(0): EDID vendor "CMO", prod id 4609
    (II) intel(0): Using hsync ranges from config file
    (II) intel(0): Using vrefresh ranges from config file
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) intel(0): EDID vendor "CMO", prod id 4609
    Blinking stops when i restart computer.
    I have newest xorg and intel drivers (xorg-server 1.7.1.901-2 & xf86-video-intel 2.9.1-1). I tried also downgrade this (and related) packages to older versions (even xorg-server 1.5.* & xf86-video-intel 2.4.*) and the same happens... with only one difference. On that oldest packages I've tried screen doesn't blinks, but the wallpaper of the desktop is changing: my -> default -> my -> default... with the same frequency . I was googling a lot, believe me. I study IT on a University and I asked my friends from there, and they just run out of ideas. In addition i can write that it isn't my laptop fault because windows xp works fine and ubuntu 9.04 (i had before archlinux) also worked good. It has started on ubuntu 9.10, so I thought I move to archlinux, and its still here? I suppose its a problem with intel drivers or xorg, but somehow linked with power management of the monitor(?). But why then older packages don't work? Please, I will be grateful for any help.
    My /etc/X11/xorg.conf file generated by 'Xorg -configure' command:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "dri2"
    Load "record"
    Load "dbe"
    Load "dri"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    #Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -HSync -Vsync
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "DefaultRefresh" # [<bool>]
    #Option "ModeSetClearScreen" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Last edited by joda (2009-12-01 09:49:38)

    SOLVED!!! Must enable KMS => switch off vga option in grub, and replace it with "i915.moduleset=1"

  • Configuring Synaptics touchpad (new Xorg again)

    Hi
    I'm one of those who upgraded to the latest Xorg recently. Now I can't figure out how to configure my touchpad scrolling.
    I don't have hal running (but only dbus).
    I have all the default Xorg config files intact (10-evdev, 10-quirks, 10-synaptics).
    I have added a file called 20-conf.conf:
    Section "ServerFlags"
    Option "DontZap" "false"
    EndSection
    Section "InputClass"
    Identifier "touchpad catchall"
    MatchIsTouchpad "on"
    Driver "synaptics"
    MatchDevicePath "/dev/input/event*"
    Option "EmulateWheel" "true"
    Option "EmulateWheelButton" "2"
    Option "Emulate3Buttons" "false"
    Option "XAxisMapping" "6 7"
    Option "YAxisMapping" "4 5"
    EndSection
    Section "InputClass"
    Identifier "tap-by-default"
    MatchIsTouchpad "on"
    Option "TapButton1" "1"
    EndSection
    Xorg.0.log seems fine except for the following:
    [ 32.158] Query no Synaptics: 6003C8
    [ 32.158] (--) SynPS/2 Synaptics TouchPad: no supported touchpad found
    [ 32.158] (EE) SynPS/2 Synaptics TouchPad Unable to query/initialize Synaptics hardware.
    [ 32.197] (EE) PreInit failed for input device "SynPS/2 Synaptics TouchPad"
    [ 32.197] (II) UnloadModule: "synaptics"
    Now I'm stuck! Please, help...
    Last edited by skorpan (2010-06-25 12:34:08)

    Thank you, this post helped me:
    http://bbs.archlinux.org/viewtopic.php? … 24#p778524

  • [SOLVED] Prev working xorg.conf won't work with new nvidia

    So I just upgraded to the latest nvidia driver.  Previously, my xfx 6600 and dell 2001fp could display 1600x1200 just fine, but now it's ratcheting X down to 1400x1050 (even though 1600x1200 is the only option I've specified in the xorg.conf).
    Any ideas? 
    Here's a relevant piece of the X log:
    (II) NVIDIA(0): Not using default mode "1280x1024" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1152x768" (vrefresh out of range)
    (II) NVIDIA(0): Not using default mode "576x384" (vrefresh out of range)
    (II) NVIDIA(0): Not using default mode "1400x1050" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
    (II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) NVIDIA(0): Not using mode "1600x1200" (no mode of this name)
    (**) NVIDIA(0): Validated modes for display device DFP-0:
    (**) NVIDIA(0): Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz
    Here's my xorg.conf (sorry for the length):
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5x) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    Load "type1"
    # Load "speedo"
    Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    # Load "dri"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    RgbPath "/usr/X11R6/lib/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
    FontPath "/usr/X11R6/lib/X11/fonts/local/"
    # FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
    # FontPath "/usr/X11R6/lib/X11/fonts/TrueType/"
    # FontPath "/usr/X11R6/lib/X11/fonts/freefont/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/X11R6/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "microsoft"
    Option "XkbLayout" "us"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Emulate3Buttons is an option for 2-button Microsoft mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "dell lcd"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 31-79
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 50-100
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "xfx"
    Driver "nvidia"
    #VideoRam 262144
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "xfx"
    Monitor "dell lcd"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1600x1200"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    # Mode 0666
    # EndSection
    thanks

    http://www.nvnews.net/vbulletin/showthread.php?t=51431
    Here's the one I'm using:
    Modeline "1600x1200" 140.00 1600 1632 2024 2052 1200 1200 1208 1216

  • [SOLVED] New XORG 1.10.*

    I know that there are many bug reports on the 1.10 update. It also appears to be an upstream issue.
    I use Arch for production work. And of course the issue is causing me some problems. I've reverted my workflow through a VM.
    I understand that all things take time. But I also know there are a lot of experienced Archers out there who have a "gut" feel for how long the fix will take to make it's way through the system.
    I am asking for those "gut" guesses on a time frame.....
    Thanks!
    Dave............
    Last edited by dcbdbis (2011-04-19 01:22:09)

    dcbdbis wrote:
    Thank you for the response.
    I am an independent developer. Production means I do my daily workflow on Arch. Sometimes that a CAD design using Windows in VMWare, other times it's ANSI C.....and it could be either platform as tht target.
    So for me....lesson learned.
    I've read enough grief about going back. May be safer for me to reinstall. I have solid backups. A reinstall would not cost me any data nor workflow. Just a little time to bring it back up to scratch....But then the catch-22....the errant portion of the X-org server sould come back with the first post-install 'pacman -Syu'.
    As a dev, you should have a backup and downgrading should not be an issue, no?
    Any "gut" guesses on a timeframe for a fix from upstream based upon personal experience? Their site (xorg) has plenty of issues on their reports too. So it's clearly not Arch specific.
    In that case, please ask on the X mailing lists. Any replies given here aren't worth the bits that were sent to the forum software....

  • [Solved]Synaptics Touchpad not working at all on Fujitsu Siemens UH552

    Hi,
    I have just installed Arch on my Fujitsu Siemens UH552 laptop. Everything works except for the touchpad which seems to get loaded by Xorg, but when in X it doesn't work. I have tried both using /dev/input/event* and /dev/input/mouse0 as device paths, neither works.
    xf86-input-evdev and xf86-input-synaptics are installed.
    I have tried running both with the default 10-evdev.conf, with 10-synaptics.conf, with both, and without both.
    TLDR SOLUTION: https://bbs.archlinux.org/viewtopic.php … 3#p1189603
    My current 10-synaptics.conf:
    Section "InputClass"
    Identifier "Touchpad Catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "synaptics"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    EndSection
    Xorg.0.log
    [ 2275.127]
    X.Org X Server 1.12.4
    Release Date: 2012-08-27
    [ 2275.130] X Protocol Version 11, Revision 0
    [ 2275.131] Build Operating System: Linux 3.4.8-1-ARCH x86_64
    [ 2275.132] Current Operating System: Linux corvo 3.5.3-1-ARCH #1 SMP PREEMPT Sun Aug 26 09:14:51 CEST 2012 x86_64
    [ 2275.132] Kernel command line: root=/dev/sda2 rootflags=subvol=__active ro initrd=/boot/initramfs-linux.img BOOT_IMAGE=/boot/vmlinuz-linux
    [ 2275.134] Build Date: 27 August 2012 08:04:39AM
    [ 2275.135]
    [ 2275.136] Current version of pixman: 0.26.2
    [ 2275.138] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2275.138] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2275.142] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Sep 1 13:16:01 2012
    [ 2275.143] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2275.144] (==) No Layout section. Using the first Screen section.
    [ 2275.144] (==) No screen section available. Using defaults.
    [ 2275.144] (**) |-->Screen "Default Screen Section" (0)
    [ 2275.144] (**) | |-->Monitor "<default monitor>"
    [ 2275.144] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 2275.144] (**) | |-->Device "Intel Graphics"
    [ 2275.144] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2275.144] (==) Automatically adding devices
    [ 2275.144] (==) Automatically enabling devices
    [ 2275.144] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2275.144] Entry deleted from font path.
    [ 2275.144] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2275.144] Entry deleted from font path.
    [ 2275.144] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2275.144] Entry deleted from font path.
    [ 2275.144] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2275.144] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2275.144] Entry deleted from font path.
    [ 2275.144] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2275.144] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 2275.144] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2275.144] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2275.144] (II) Loader magic: 0x7c8b00
    [ 2275.144] (II) Module ABI versions:
    [ 2275.144] X.Org ANSI C Emulation: 0.4
    [ 2275.144] X.Org Video Driver: 12.1
    [ 2275.144] X.Org XInput driver : 16.0
    [ 2275.144] X.Org Server Extension : 6.0
    [ 2275.144] (--) PCI:*(0:0:2:0) 8086:0166:10cf:16c2 rev 9, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00002000/64
    [ 2275.144] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2275.144] (II) LoadModule: "extmod"
    [ 2275.144] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 2275.145] (II) Module extmod: vendor="X.Org Foundation"
    [ 2275.145] compiled for 1.12.4, module version = 1.0.0
    [ 2275.145] Module class: X.Org Server Extension
    [ 2275.145] ABI class: X.Org Server Extension, version 6.0
    [ 2275.145] (II) Loading extension MIT-SCREEN-SAVER
    [ 2275.145] (II) Loading extension XFree86-VidModeExtension
    [ 2275.145] (II) Loading extension XFree86-DGA
    [ 2275.145] (II) Loading extension DPMS
    [ 2275.145] (II) Loading extension XVideo
    [ 2275.145] (II) Loading extension XVideo-MotionCompensation
    [ 2275.145] (II) Loading extension X-Resource
    [ 2275.145] (II) LoadModule: "dbe"
    [ 2275.145] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 2275.145] (II) Module dbe: vendor="X.Org Foundation"
    [ 2275.145] compiled for 1.12.4, module version = 1.0.0
    [ 2275.145] Module class: X.Org Server Extension
    [ 2275.145] ABI class: X.Org Server Extension, version 6.0
    [ 2275.145] (II) Loading extension DOUBLE-BUFFER
    [ 2275.145] (II) LoadModule: "glx"
    [ 2275.145] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2275.145] (II) Module glx: vendor="X.Org Foundation"
    [ 2275.145] compiled for 1.12.4, module version = 1.0.0
    [ 2275.145] ABI class: X.Org Server Extension, version 6.0
    [ 2275.145] (==) AIGLX enabled
    [ 2275.145] (II) Loading extension GLX
    [ 2275.145] (II) LoadModule: "record"
    [ 2275.145] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 2275.145] (II) Module record: vendor="X.Org Foundation"
    [ 2275.145] compiled for 1.12.4, module version = 1.13.0
    [ 2275.145] Module class: X.Org Server Extension
    [ 2275.145] ABI class: X.Org Server Extension, version 6.0
    [ 2275.145] (II) Loading extension RECORD
    [ 2275.145] (II) LoadModule: "dri"
    [ 2275.145] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 2275.145] (II) Module dri: vendor="X.Org Foundation"
    [ 2275.145] compiled for 1.12.4, module version = 1.0.0
    [ 2275.145] ABI class: X.Org Server Extension, version 6.0
    [ 2275.145] (II) Loading extension XFree86-DRI
    [ 2275.145] (II) LoadModule: "dri2"
    [ 2275.145] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 2275.145] (II) Module dri2: vendor="X.Org Foundation"
    [ 2275.145] compiled for 1.12.4, module version = 1.2.0
    [ 2275.145] ABI class: X.Org Server Extension, version 6.0
    [ 2275.145] (II) Loading extension DRI2
    [ 2275.145] (II) LoadModule: "intel"
    [ 2275.146] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 2275.146] (II) Module intel: vendor="X.Org Foundation"
    [ 2275.146] compiled for 1.12.3.901, module version = 2.20.5
    [ 2275.146] Module class: X.Org Video Driver
    [ 2275.146] ABI class: X.Org Video Driver, version 12.1
    [ 2275.146] (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,
    Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
    Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
    Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
    Haswell Server (GT2+), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
    Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
    Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
    Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
    Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
    Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
    Haswell CRW Server (GT2), Haswell CRW Server (GT2+)
    [ 2275.146] (--) using VT number 7
    [ 2275.149] drmOpenDevice: node name is /dev/dri/card0
    [ 2275.149] drmOpenDevice: open result is 7, (OK)
    [ 2275.150] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 2275.150] drmOpenDevice: node name is /dev/dri/card0
    [ 2275.150] drmOpenDevice: open result is 7, (OK)
    [ 2275.150] drmOpenByBusid: drmOpenMinor returns 7
    [ 2275.150] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 2275.150] drmOpenDevice: node name is /dev/dri/card0
    [ 2275.150] drmOpenDevice: open result is 8, (OK)
    [ 2275.150] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 2275.150] drmOpenDevice: node name is /dev/dri/card0
    [ 2275.150] drmOpenDevice: open result is 8, (OK)
    [ 2275.150] drmOpenByBusid: drmOpenMinor returns 8
    [ 2275.150] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 2275.150] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2275.150] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 2275.150] (==) intel(0): RGB weight 888
    [ 2275.150] (==) intel(0): Default visual is TrueColor
    [ 2275.150] (**) intel(0): Option "AccelMethod" "sna"
    [ 2275.150] (--) intel(0): Integrated Graphics Chipset: Intel(R) Ivybridge Mobile (GT2)
    [ 2275.151] (**) intel(0): Framebuffer tiled
    [ 2275.151] (**) intel(0): Pixmaps tiled
    [ 2275.151] (**) intel(0): 3D buffers tiled
    [ 2275.151] (**) intel(0): Throttling enabled
    [ 2275.151] (**) intel(0): Delayed flush enabled
    [ 2275.151] (**) intel(0): "Tear free" disabled
    [ 2275.151] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 2275.151] (II) intel(0): Output LVDS1 has no monitor section
    [ 2275.152] (II) intel(0): found backlight control interface acpi_video0 (type 'firmware')
    [ 2275.152] (II) intel(0): Output VGA1 has no monitor section
    [ 2275.153] (II) intel(0): Output HDMI1 has no monitor section
    [ 2275.193] (II) intel(0): Output DP1 has no monitor section
    [ 2275.193] (II) intel(0): EDID for output LVDS1
    [ 2275.193] (II) intel(0): Manufacturer: LGD Model: 371 Serial#: 0
    [ 2275.193] (II) intel(0): Year: 2012 Week: 0
    [ 2275.193] (II) intel(0): EDID Version: 1.3
    [ 2275.193] (II) intel(0): Digital Display Input
    [ 2275.193] (II) intel(0): Max Image Size [cm]: horiz.: 29 vert.: 16
    [ 2275.193] (II) intel(0): Gamma: 2.20
    [ 2275.193] (II) intel(0): No DPMS capabilities specified
    [ 2275.193] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 2275.193] (II) intel(0): First detailed timing is preferred mode
    [ 2275.193] (II) intel(0): redX: 0.589 redY: 0.347 greenX: 0.343 greenY: 0.555
    [ 2275.193] (II) intel(0): blueX: 0.160 blueY: 0.124 whiteX: 0.313 whiteY: 0.329
    [ 2275.193] (II) intel(0): Manufacturer's mask: 0
    [ 2275.193] (II) intel(0): Supported detailed timing:
    [ 2275.193] (II) intel(0): clock: 70.0 MHz Image Size: 293 x 165 mm
    [ 2275.193] (II) intel(0): h_active: 1366 h_sync: 1402 h_sync_end 1438 h_blank_end 1476 h_border: 0
    [ 2275.193] (II) intel(0): v_active: 768 v_sync: 772 v_sync_end 780 v_blanking: 790 v_border: 0
    [ 2275.193] (II) intel(0): LG Display
    [ 2275.193] (II) intel(0): LP133WH2-TLF1
    [ 2275.193] (II) intel(0): EDID (in hex):
    [ 2275.193] (II) intel(0): 00ffffffffffff0030e4710300000000
    [ 2275.193] (II) intel(0): 00160103801d10780afc359658578e29
    [ 2275.193] (II) intel(0): 1f505400000001010101010101010101
    [ 2275.193] (II) intel(0): 010101010101581b566e500016302424
    [ 2275.194] (II) intel(0): 480025a5100000190000000000000000
    [ 2275.194] (II) intel(0): 00000000000000000000000000fe004c
    [ 2275.194] (II) intel(0): 4720446973706c61790a2020000000fe
    [ 2275.194] (II) intel(0): 004c503133335748322d544c463100ce
    [ 2275.194] (II) intel(0): EDID vendor "LGD", prod id 881
    [ 2275.194] (II) intel(0): Printing DDC gathered Modelines:
    [ 2275.194] (II) intel(0): Modeline "1366x768"x0.0 70.00 1366 1402 1438 1476 768 772 780 790 -hsync -vsync (47.4 kHz eP)
    [ 2275.194] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 2275.194] (II) intel(0): Printing probed modes for output LVDS1
    [ 2275.194] (II) intel(0): Modeline "1366x768"x60.0 70.00 1366 1402 1438 1476 768 772 780 790 -hsync -vsync (47.4 kHz eP)
    [ 2275.194] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 2275.194] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 2275.194] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 2275.194] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 2275.194] (II) intel(0): EDID for output VGA1
    [ 2275.195] (II) intel(0): EDID for output HDMI1
    [ 2275.236] (II) intel(0): EDID for output DP1
    [ 2275.236] (II) intel(0): Output LVDS1 connected
    [ 2275.236] (II) intel(0): Output VGA1 disconnected
    [ 2275.236] (II) intel(0): Output HDMI1 disconnected
    [ 2275.236] (II) intel(0): Output DP1 disconnected
    [ 2275.236] (II) intel(0): Using exact sizes for initial modes
    [ 2275.236] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 2275.236] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 2275.236] (**) intel(0): Display dimensions: (290, 160) mm
    [ 2275.236] (**) intel(0): DPI set to (119, 121)
    [ 2275.236] (II) Loading sub module "dri2"
    [ 2275.236] (II) LoadModule: "dri2"
    [ 2275.237] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 2275.237] (II) Module dri2: vendor="X.Org Foundation"
    [ 2275.237] compiled for 1.12.4, module version = 1.2.0
    [ 2275.237] ABI class: X.Org Server Extension, version 6.0
    [ 2275.237] (==) Depth 24 pixmap format is 32 bpp
    [ 2275.237] (II) intel(0): SNA initialized with IvyBridge backend
    [ 2275.237] (==) intel(0): Backing store disabled
    [ 2275.237] (==) intel(0): Silken mouse enabled
    [ 2275.237] (II) intel(0): HW Cursor enabled
    [ 2275.237] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2275.238] (==) intel(0): DPMS enabled
    [ 2275.239] (II) intel(0): [DRI2] Setup complete
    [ 2275.239] (II) intel(0): [DRI2] DRI driver: i965
    [ 2275.239] (II) intel(0): direct rendering: DRI2 Enabled
    [ 2275.239] (==) intel(0): hotplug detection: "enabled"
    [ 2275.239] (--) RandR disabled
    [ 2275.239] (II) Initializing built-in extension Generic Event Extension
    [ 2275.239] (II) Initializing built-in extension SHAPE
    [ 2275.239] (II) Initializing built-in extension MIT-SHM
    [ 2275.239] (II) Initializing built-in extension XInputExtension
    [ 2275.239] (II) Initializing built-in extension XTEST
    [ 2275.239] (II) Initializing built-in extension BIG-REQUESTS
    [ 2275.239] (II) Initializing built-in extension SYNC
    [ 2275.239] (II) Initializing built-in extension XKEYBOARD
    [ 2275.239] (II) Initializing built-in extension XC-MISC
    [ 2275.239] (II) Initializing built-in extension SECURITY
    [ 2275.239] (II) Initializing built-in extension XINERAMA
    [ 2275.239] (II) Initializing built-in extension XFIXES
    [ 2275.239] (II) Initializing built-in extension RENDER
    [ 2275.239] (II) Initializing built-in extension RANDR
    [ 2275.239] (II) Initializing built-in extension COMPOSITE
    [ 2275.239] (II) Initializing built-in extension DAMAGE
    [ 2275.250] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 2275.250] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 2275.250] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 2275.250] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 2275.250] (II) AIGLX: Loaded and initialized i965
    [ 2275.250] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 2275.251] (II) intel(0): switch to mode 1366x768 on crtc 3 (pipe 0)
    [ 2275.276] (II) intel(0): Setting screen physical size to 361 x 203
    [ 2275.319] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 2275.319] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2275.319] (II) LoadModule: "evdev"
    [ 2275.319] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2275.320] (II) Module evdev: vendor="X.Org Foundation"
    [ 2275.320] compiled for 1.12.3.901, module version = 2.7.3
    [ 2275.320] Module class: X.Org XInput Driver
    [ 2275.320] ABI class: X.Org XInput driver, version 16.0
    [ 2275.320] (II) Using input driver 'evdev' for 'Power Button'
    [ 2275.320] (**) Power Button: always reports core events
    [ 2275.320] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 2275.320] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2275.320] (--) evdev: Power Button: Found keys
    [ 2275.320] (II) evdev: Power Button: Configuring as keyboard
    [ 2275.320] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 2275.320] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 2275.320] (**) Option "xkb_rules" "evdev"
    [ 2275.320] (**) Option "xkb_model" "evdev"
    [ 2275.320] (**) Option "xkb_layout" "se"
    [ 2275.355] (II) config/udev: Adding input device Fujitsu FUJ02E3 (/dev/input/event3)
    [ 2275.356] (**) Fujitsu FUJ02E3: Applying InputClass "evdev keyboard catchall"
    [ 2275.356] (II) Using input driver 'evdev' for 'Fujitsu FUJ02E3'
    [ 2275.356] (**) Fujitsu FUJ02E3: always reports core events
    [ 2275.356] (**) evdev: Fujitsu FUJ02E3: Device: "/dev/input/event3"
    [ 2275.356] (--) evdev: Fujitsu FUJ02E3: Vendor 0 Product 0x6
    [ 2275.356] (--) evdev: Fujitsu FUJ02E3: Found keys
    [ 2275.356] (II) evdev: Fujitsu FUJ02E3: Configuring as keyboard
    [ 2275.356] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/FUJ02E3:00/input/input3/event3"
    [ 2275.356] (II) XINPUT: Adding extended input device "Fujitsu FUJ02E3" (type: KEYBOARD, id 7)
    [ 2275.356] (**) Option "xkb_rules" "evdev"
    [ 2275.356] (**) Option "xkb_model" "evdev"
    [ 2275.356] (**) Option "xkb_layout" "se"
    [ 2275.357] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
    [ 2275.357] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 2275.357] (II) Using input driver 'evdev' for 'Video Bus'
    [ 2275.357] (**) Video Bus: always reports core events
    [ 2275.357] (**) evdev: Video Bus: Device: "/dev/input/event9"
    [ 2275.357] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 2275.357] (--) evdev: Video Bus: Found keys
    [ 2275.357] (II) evdev: Video Bus: Configuring as keyboard
    [ 2275.357] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input9/event9"
    [ 2275.357] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 2275.358] (**) Option "xkb_rules" "evdev"
    [ 2275.358] (**) Option "xkb_model" "evdev"
    [ 2275.358] (**) Option "xkb_layout" "se"
    [ 2275.359] (II) config/udev: Adding input device Fujitsu FUJ02B1 (/dev/input/event2)
    [ 2275.359] (**) Fujitsu FUJ02B1: Applying InputClass "evdev keyboard catchall"
    [ 2275.359] (II) Using input driver 'evdev' for 'Fujitsu FUJ02B1'
    [ 2275.359] (**) Fujitsu FUJ02B1: always reports core events
    [ 2275.359] (**) evdev: Fujitsu FUJ02B1: Device: "/dev/input/event2"
    [ 2275.359] (--) evdev: Fujitsu FUJ02B1: Vendor 0 Product 0x6
    [ 2275.359] (--) evdev: Fujitsu FUJ02B1: Found keys
    [ 2275.359] (II) evdev: Fujitsu FUJ02B1: Configuring as keyboard
    [ 2275.359] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/FUJ02B1:00/input/input2/event2"
    [ 2275.359] (II) XINPUT: Adding extended input device "Fujitsu FUJ02B1" (type: KEYBOARD, id 9)
    [ 2275.359] (**) Option "xkb_rules" "evdev"
    [ 2275.359] (**) Option "xkb_model" "evdev"
    [ 2275.359] (**) Option "xkb_layout" "se"
    [ 2275.360] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 2275.360] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2275.360] (II) Using input driver 'evdev' for 'Power Button'
    [ 2275.360] (**) Power Button: always reports core events
    [ 2275.360] (**) evdev: Power Button: Device: "/dev/input/event5"
    [ 2275.360] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2275.360] (--) evdev: Power Button: Found keys
    [ 2275.360] (II) evdev: Power Button: Configuring as keyboard
    [ 2275.361] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input5/event5"
    [ 2275.361] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 10)
    [ 2275.361] (**) Option "xkb_rules" "evdev"
    [ 2275.361] (**) Option "xkb_model" "evdev"
    [ 2275.361] (**) Option "xkb_layout" "se"
    [ 2275.362] (II) config/udev: Adding input device Lid Switch (/dev/input/event4)
    [ 2275.362] (II) No input driver specified, ignoring this device.
    [ 2275.362] (II) This device may have been added with another device file.
    [ 2275.362] (II) config/udev: Adding input device FJ Camera (/dev/input/event7)
    [ 2275.362] (**) FJ Camera: Applying InputClass "evdev keyboard catchall"
    [ 2275.362] (II) Using input driver 'evdev' for 'FJ Camera'
    [ 2275.362] (**) FJ Camera: always reports core events
    [ 2275.362] (**) evdev: FJ Camera: Device: "/dev/input/event7"
    [ 2275.363] (--) evdev: FJ Camera: Vendor 0x10f1 Product 0x1a44
    [ 2275.363] (--) evdev: FJ Camera: Found keys
    [ 2275.363] (II) evdev: FJ Camera: Configuring as keyboard
    [ 2275.363] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.3/3-1.3:1.0/input/input7/event7"
    [ 2275.363] (II) XINPUT: Adding extended input device "FJ Camera" (type: KEYBOARD, id 11)
    [ 2275.363] (**) Option "xkb_rules" "evdev"
    [ 2275.363] (**) Option "xkb_model" "evdev"
    [ 2275.363] (**) Option "xkb_layout" "se"
    [ 2275.364] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
    [ 2275.364] (II) No input driver specified, ignoring this device.
    [ 2275.364] (II) This device may have been added with another device file.
    [ 2275.364] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event11)
    [ 2275.364] (II) No input driver specified, ignoring this device.
    [ 2275.364] (II) This device may have been added with another device file.
    [ 2275.365] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event12)
    [ 2275.365] (II) No input driver specified, ignoring this device.
    [ 2275.365] (II) This device may have been added with another device file.
    [ 2275.365] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2275.365] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2275.365] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2275.366] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2275.366] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2275.366] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2275.366] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2275.366] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2275.366] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2275.366] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 2275.366] (**) Option "xkb_rules" "evdev"
    [ 2275.366] (**) Option "xkb_model" "evdev"
    [ 2275.366] (**) Option "xkb_layout" "se"
    [ 2275.366] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8)
    [ 2275.366] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Touchpad Catchall"
    [ 2275.366] (II) LoadModule: "synaptics"
    [ 2275.366] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 2275.367] (II) Module synaptics: vendor="X.Org Foundation"
    [ 2275.367] compiled for 1.12.2, module version = 1.6.2
    [ 2275.367] Module class: X.Org XInput Driver
    [ 2275.367] ABI class: X.Org XInput driver, version 16.0
    [ 2275.367] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 2275.367] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 2275.367] (**) Option "Device" "/dev/input/event8"
    [ 2275.367] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 2275.367] (**) Option "TapButton1" "1"
    [ 2275.367] (**) Option "TapButton2" "2"
    [ 2275.367] (**) Option "TapButton3" "3"
    [ 2275.367] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 2275.367] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 2275.367] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event8"
    [ 2275.368] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 2275.368] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 2275.368] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 2275.368] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.040
    [ 2275.368] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 2275.368] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 2275.368] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 2275.368] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 2275.368] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 2275.368] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 2275.368] (II) No input driver specified, ignoring this device.
    [ 2275.368] (II) This device may have been added with another device file.
    [ 2275.368] (II) config/udev: Adding input device PC Speaker (/dev/input/event1)
    [ 2275.368] (II) No input driver specified, ignoring this device.
    [ 2275.368] (II) This device may have been added with another device file.
    xinput
    ⎡ Virtual core pointer id=2 [master pointer (3)]
    ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
    ⎜ ↳ SynPS/2 Synaptics TouchPad id=13 [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)]
    ↳ Fujitsu FUJ02E3 id=7 [slave keyboard (3)]
    ↳ Video Bus id=8 [slave keyboard (3)]
    ↳ Fujitsu FUJ02B1 id=9 [slave keyboard (3)]
    ↳ Power Button id=10 [slave keyboard (3)]
    ↳ FJ Camera id=11 [slave keyboard (3)]
    ↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
    running
    dmesg | grep -i synaptics
    doesn't show anything. However running
    dmesg | grep -i psmouse
    returns a lot of
    psmouse serio1: bad data from KBC - timeout
    Last edited by flako (2012-11-08 09:44:59)

    I have tried doing that with both linux mint, and now fedora live usb. Neither one loads the touchpad correctly.  So yeah, our problems weren't really related
    Anyway, I tried looking into the
    psmouse serio1: bad data from KBC - timeout
    messages, and tried running psmouse proto (defined in /etc/modprobe.conf/psmouse.conf) as both raw and imps as per https://answers.launchpad.net/ubuntu/+s … ion/206950 Unfortunately, that didn't solve anything. Using the raw setting meant that the touchpad wasn't loaded at all (as in not appearing in the Xorg.log at all).
    The laptop is quite new, but at the same time what i figured from the touchpad vendor & product ID, the touchpad itself isn't. So it should technically work. Before installing arch i booted into windows to see if everything worked, and found no issues with the touchpad. So I have ruled out any hardware errors. Maybe its just the Fn-key that doesn't work yet in Linux? But that doesn't explain the "psmouse serio1: bad data from KBC - timeout" Any pointers to where I should look/ what commands I should run to delve deeper into this issue?
    Last edited by flako (2012-09-09 12:10:51)

  • [SOLVED] nvidia and xorg-server, slow start compared to nv

    I've seen many similar topics but none that have been solved, therefore the new topic.
    Starting xorg with nv driver takes just a few seconds to desktop, while using nvidia takes almost 10 seconds more to get to desktop. Although after reaching desktop everything works fine. I've used a minimal xorg.conf for each driver (replacing nvidia with nv):
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    EndSection
    The /var/log/Xorg.0.log when using nvidia:
    [ 22.779]
    X.Org X Server 1.12.2
    Release Date: 2012-05-29
    [ 22.779] X Protocol Version 11, Revision 0
    [ 22.779] Build Operating System: Linux 3.0.32-1-lts x86_64
    [ 22.779] Current Operating System: Linux yggdrasil 3.3.8-1-ARCH #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012 x86_64
    [ 22.779] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda2:root ro vga=773 quiet
    [ 22.779] Build Date: 30 May 2012 07:24:13PM
    [ 22.779]
    [ 22.779] Current version of pixman: 0.26.0
    [ 22.779] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 22.779] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 22.779] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 9 21:37:16 2012
    [ 22.844] (==) Using config file: "/etc/X11/xorg.conf"
    [ 22.844] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 23.106] (==) No Layout section. Using the first Screen section.
    [ 23.106] (==) No screen section available. Using defaults.
    [ 23.106] (**) |-->Screen "Default Screen Section" (0)
    [ 23.106] (**) | |-->Monitor "<default monitor>"
    [ 23.106] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 23.106] (**) | |-->Device "Device0"
    [ 23.106] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 23.106] (==) Automatically adding devices
    [ 23.106] (==) Automatically enabling devices
    [ 23.219] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 23.219] Entry deleted from font path.
    [ 23.414] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 23.414] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 23.414] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 23.414] (II) Loader magic: 0x7c58e0
    [ 23.414] (II) Module ABI versions:
    [ 23.414] X.Org ANSI C Emulation: 0.4
    [ 23.414] X.Org Video Driver: 12.0
    [ 23.414] X.Org XInput driver : 16.0
    [ 23.414] X.Org Server Extension : 6.0
    [ 23.415] (--) PCI:*(0:2:0:0) 10de:0a70:144d:c079 rev 162, Mem @ 0xdc000000/16777216, 0xe0000000/268435456, 0xde000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
    [ 23.415] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 23.415] (II) LoadModule: "extmod"
    [ 23.453] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 23.487] (II) Module extmod: vendor="X.Org Foundation"
    [ 23.487] compiled for 1.12.2, module version = 1.0.0
    [ 23.487] Module class: X.Org Server Extension
    [ 23.487] ABI class: X.Org Server Extension, version 6.0
    [ 23.487] (II) Loading extension MIT-SCREEN-SAVER
    [ 23.487] (II) Loading extension XFree86-VidModeExtension
    [ 23.487] (II) Loading extension XFree86-DGA
    [ 23.487] (II) Loading extension DPMS
    [ 23.487] (II) Loading extension XVideo
    [ 23.487] (II) Loading extension XVideo-MotionCompensation
    [ 23.487] (II) Loading extension X-Resource
    [ 23.487] (II) LoadModule: "dbe"
    [ 23.487] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 23.512] (II) Module dbe: vendor="X.Org Foundation"
    [ 23.512] compiled for 1.12.2, module version = 1.0.0
    [ 23.512] Module class: X.Org Server Extension
    [ 23.512] ABI class: X.Org Server Extension, version 6.0
    [ 23.512] (II) Loading extension DOUBLE-BUFFER
    [ 23.512] (II) LoadModule: "glx"
    [ 23.512] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 26.824] (II) Module glx: vendor="NVIDIA Corporation"
    [ 26.868] compiled for 4.0.2, module version = 1.0.0
    [ 26.868] Module class: X.Org Server Extension
    [ 26.868] (II) NVIDIA GLX Module 295.53 Fri May 11 23:49:08 PDT 2012
    [ 26.869] (II) Loading extension GLX
    [ 26.869] (II) LoadModule: "record"
    [ 26.869] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 26.941] (II) Module record: vendor="X.Org Foundation"
    [ 26.941] compiled for 1.12.2, module version = 1.13.0
    [ 26.941] Module class: X.Org Server Extension
    [ 26.941] ABI class: X.Org Server Extension, version 6.0
    [ 26.941] (II) Loading extension RECORD
    [ 26.941] (II) LoadModule: "dri"
    [ 26.941] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 27.011] (II) Module dri: vendor="X.Org Foundation"
    [ 27.011] compiled for 1.12.2, module version = 1.0.0
    [ 27.011] ABI class: X.Org Server Extension, version 6.0
    [ 27.011] (II) Loading extension XFree86-DRI
    [ 27.011] (II) LoadModule: "dri2"
    [ 27.011] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 27.046] (II) Module dri2: vendor="X.Org Foundation"
    [ 27.047] compiled for 1.12.2, module version = 1.2.0
    [ 27.047] ABI class: X.Org Server Extension, version 6.0
    [ 27.047] (II) Loading extension DRI2
    [ 27.047] (II) LoadModule: "nvidia"
    [ 27.122] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 27.306] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 27.306] compiled for 4.0.2, module version = 1.0.0
    [ 27.306] Module class: X.Org Video Driver
    [ 27.608] (II) NVIDIA dlloader X Driver 295.53 Fri May 11 23:29:56 PDT 2012
    [ 27.608] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 27.617] (++) using VT number 7
    [ 27.678] (II) Loading sub module "fb"
    [ 27.678] (II) LoadModule: "fb"
    [ 27.850] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 27.870] (II) Module fb: vendor="X.Org Foundation"
    [ 27.870] compiled for 1.12.2, module version = 1.0.0
    [ 27.870] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.870] (II) Loading sub module "wfb"
    [ 27.870] (II) LoadModule: "wfb"
    [ 27.871] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 27.879] (II) Module wfb: vendor="X.Org Foundation"
    [ 27.879] compiled for 1.12.2, module version = 1.0.0
    [ 27.879] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.879] (II) Loading sub module "ramdac"
    [ 27.879] (II) LoadModule: "ramdac"
    [ 27.879] (II) Module "ramdac" already built-in
    [ 27.934] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 27.934] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 27.934] (==) NVIDIA(0): RGB weight 888
    [ 27.934] (==) NVIDIA(0): Default visual is TrueColor
    [ 27.934] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 27.935] (**) NVIDIA(0): Enabling 2D acceleration
    [ 29.873] (II) NVIDIA(GPU-0): Display (Chi Mei Optoelectronics corp. (DFP-0)) does not
    [ 29.873] (II) NVIDIA(GPU-0): support NVIDIA 3D Vision stereo.
    [ 30.786] (II) NVIDIA(0): NVIDIA GPU GeForce 310M (GT218) at PCI:2:0:0 (GPU-0)
    [ 30.786] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 30.786] (--) NVIDIA(0): VideoBIOS: 70.18.53.00.ff
    [ 30.786] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 30.786] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 30.789] (--) NVIDIA(0): Connected display device(s) on GeForce 310M at PCI:2:0:0
    [ 30.789] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0)
    [ 30.789] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0): 330.0 MHz maximum pixel
    [ 30.789] (--) NVIDIA(0): clock
    [ 30.789] (--) NVIDIA(0): Chi Mei Optoelectronics corp. (DFP-0): Internal Dual Link
    [ 30.789] (--) NVIDIA(0): LVDS
    [ 30.789] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 30.789] (**) NVIDIA(0): device Chi Mei Optoelectronics corp. (DFP-0) (Using EDID
    [ 30.789] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 30.836] (II) NVIDIA(0): Assigned Display Device: DFP-0
    [ 30.836] (==) NVIDIA(0):
    [ 30.836] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 30.836] (==) NVIDIA(0): will be used as the requested mode.
    [ 30.836] (==) NVIDIA(0):
    [ 30.836] (II) NVIDIA(0): Validated modes:
    [ 30.836] (II) NVIDIA(0): "nvidia-auto-select"
    [ 30.836] (II) NVIDIA(0): Virtual screen size determined to be 1366 x 768
    [ 31.892] (--) NVIDIA(0): DPI set to (99, 102); computed from "UseEdidDpi" X config
    [ 31.892] (--) NVIDIA(0): option
    [ 31.892] (--) Depth 24 pixmap format is 32 bpp
    [ 31.892] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 31.900] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 34.862] (II) Loading extension NV-GLX
    [ 37.299] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 37.299] (==) NVIDIA(0): Backing store disabled
    [ 37.299] (==) NVIDIA(0): Silken mouse enabled
    [ 37.300] (==) NVIDIA(0): DPMS enabled
    [ 37.300] (II) Loading extension NV-CONTROL
    [ 37.300] (II) Loading extension XINERAMA
    [ 37.300] (II) Loading sub module "dri2"
    [ 37.300] (II) LoadModule: "dri2"
    [ 37.300] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 37.300] (II) Module dri2: vendor="X.Org Foundation"
    [ 37.300] compiled for 1.12.2, module version = 1.2.0
    [ 37.300] ABI class: X.Org Server Extension, version 6.0
    [ 37.300] (II) NVIDIA(0): [DRI2] Setup complete
    [ 37.300] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 37.301] (==) RandR enabled
    [ 37.301] (II) Initializing built-in extension Generic Event Extension
    [ 37.301] (II) Initializing built-in extension SHAPE
    [ 37.301] (II) Initializing built-in extension MIT-SHM
    [ 37.301] (II) Initializing built-in extension XInputExtension
    [ 37.301] (II) Initializing built-in extension XTEST
    [ 37.301] (II) Initializing built-in extension BIG-REQUESTS
    [ 37.301] (II) Initializing built-in extension SYNC
    [ 37.301] (II) Initializing built-in extension XKEYBOARD
    [ 37.301] (II) Initializing built-in extension XC-MISC
    [ 37.301] (II) Initializing built-in extension SECURITY
    [ 37.301] (II) Initializing built-in extension XINERAMA
    [ 37.301] (II) Initializing built-in extension XFIXES
    [ 37.301] (II) Initializing built-in extension RENDER
    [ 37.301] (II) Initializing built-in extension RANDR
    [ 37.301] (II) Initializing built-in extension COMPOSITE
    [ 37.301] (II) Initializing built-in extension DAMAGE
    [ 37.302] (II) Initializing extension GLX
    [ 38.717] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 38.717] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 38.717] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 38.717] (II) LoadModule: "evdev"
    [ 38.717] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 38.769] (II) Module evdev: vendor="X.Org Foundation"
    [ 38.769] compiled for 1.12.0, module version = 2.7.0
    [ 38.769] Module class: X.Org XInput Driver
    [ 38.769] ABI class: X.Org XInput driver, version 16.0
    [ 38.769] (II) Using input driver 'evdev' for 'Power Button'
    [ 38.769] (**) Power Button: always reports core events
    [ 38.769] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 38.769] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 38.769] (--) evdev: Power Button: Found keys
    [ 38.769] (II) evdev: Power Button: Configuring as keyboard
    [ 38.769] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 38.769] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 38.769] (**) Option "xkb_rules" "evdev"
    [ 38.769] (**) Option "xkb_model" "evdev"
    [ 38.769] (**) Option "xkb_layout" "se"
    [ 38.835] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 38.835] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 38.835] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 38.835] (II) Using input driver 'evdev' for 'Video Bus'
    [ 38.835] (**) Video Bus: always reports core events
    [ 38.835] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 38.835] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 38.835] (--) evdev: Video Bus: Found keys
    [ 38.835] (II) evdev: Video Bus: Configuring as keyboard
    [ 38.835] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input7/event7"
    [ 38.835] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 38.836] (**) Option "xkb_rules" "evdev"
    [ 38.836] (**) Option "xkb_model" "evdev"
    [ 38.836] (**) Option "xkb_layout" "se"
    [ 38.837] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 38.837] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 38.837] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 38.837] (II) Using input driver 'evdev' for 'Power Button'
    [ 38.837] (**) Power Button: always reports core events
    [ 38.837] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 38.837] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 38.837] (--) evdev: Power Button: Found keys
    [ 38.837] (II) evdev: Power Button: Configuring as keyboard
    [ 38.837] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
    [ 38.837] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 38.837] (**) Option "xkb_rules" "evdev"
    [ 38.837] (**) Option "xkb_model" "evdev"
    [ 38.837] (**) Option "xkb_layout" "se"
    [ 38.838] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 38.838] (II) No input driver specified, ignoring this device.
    [ 38.838] (II) This device may have been added with another device file.
    [ 38.838] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 38.838] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 38.838] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 38.838] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 38.838] (**) Sleep Button: always reports core events
    [ 38.838] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 38.839] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 38.839] (--) evdev: Sleep Button: Found keys
    [ 38.839] (II) evdev: Sleep Button: Configuring as keyboard
    [ 38.839] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
    [ 38.839] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 38.839] (**) Option "xkb_rules" "evdev"
    [ 38.839] (**) Option "xkb_model" "evdev"
    [ 38.839] (**) Option "xkb_layout" "se"
    [ 38.840] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
    [ 38.840] (II) No input driver specified, ignoring this device.
    [ 38.840] (II) This device may have been added with another device file.
    [ 38.840] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
    [ 38.840] (II) No input driver specified, ignoring this device.
    [ 38.840] (II) This device may have been added with another device file.
    [ 38.841] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
    [ 38.841] (II) No input driver specified, ignoring this device.
    [ 38.841] (II) This device may have been added with another device file.
    [ 38.841] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event16)
    [ 38.841] (II) No input driver specified, ignoring this device.
    [ 38.841] (II) This device may have been added with another device file.
    [ 38.842] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event1)
    [ 38.842] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 38.842] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 38.842] (**) Logitech USB Receiver: always reports core events
    [ 38.842] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event1"
    [ 38.842] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 38.842] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [ 38.842] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 38.842] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 38.842] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 38.842] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 38.842] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 38.842] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 38.842] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 38.842] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1/event1"
    [ 38.842] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 10)
    [ 38.843] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 38.843] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 38.843] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 38.843] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 38.843] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 38.844] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 38.844] (II) No input driver specified, ignoring this device.
    [ 38.844] (II) This device may have been added with another device file.
    [ 38.844] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
    [ 38.844] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 38.844] (**) Logitech USB Receiver: Applying InputClass "Keyboard Defaults"
    [ 38.844] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 38.844] (**) Logitech USB Receiver: always reports core events
    [ 38.844] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event2"
    [ 38.844] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 38.844] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [ 38.844] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 38.845] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 38.845] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [ 38.845] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 38.845] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 38.845] (--) evdev: Logitech USB Receiver: Found keys
    [ 38.845] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 38.845] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 38.845] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 38.845] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 38.845] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 38.845] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input2/event2"
    [ 38.845] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 11)
    [ 38.845] (**) Option "xkb_rules" "evdev"
    [ 38.845] (**) Option "xkb_model" "evdev"
    [ 38.845] (**) Option "xkb_layout" "se"
    [ 38.845] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 38.845] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 38.846] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 38.846] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 38.846] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 38.846] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 38.846] (II) config/udev: Adding input device USB 2.0 PC Camera (/dev/input/event10)
    [ 38.846] (**) USB 2.0 PC Camera: Applying InputClass "evdev keyboard catchall"
    [ 38.846] (**) USB 2.0 PC Camera: Applying InputClass "Keyboard Defaults"
    [ 38.846] (II) Using input driver 'evdev' for 'USB 2.0 PC Camera'
    [ 38.846] (**) USB 2.0 PC Camera: always reports core events
    [ 38.846] (**) evdev: USB 2.0 PC Camera: Device: "/dev/input/event10"
    [ 38.846] (--) evdev: USB 2.0 PC Camera: Vendor 0x1210 Product 0x25f4
    [ 38.846] (--) evdev: USB 2.0 PC Camera: Found keys
    [ 38.846] (II) evdev: USB 2.0 PC Camera: Configuring as keyboard
    [ 38.846] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input10/event10"
    [ 38.846] (II) XINPUT: Adding extended input device "USB 2.0 PC Camera" (type: KEYBOARD, id 12)
    [ 38.846] (**) Option "xkb_rules" "evdev"
    [ 38.846] (**) Option "xkb_model" "evdev"
    [ 38.847] (**) Option "xkb_layout" "se"
    [ 38.847] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event11)
    [ 38.847] (II) No input driver specified, ignoring this device.
    [ 38.847] (II) This device may have been added with another device file.
    [ 38.847] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event12)
    [ 38.847] (II) No input driver specified, ignoring this device.
    [ 38.847] (II) This device may have been added with another device file.
    [ 38.847] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 38.847] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 38.847] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 38.847] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 38.847] (**) AT Translated Set 2 keyboard: always reports core events
    [ 38.847] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 38.847] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 38.847] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 38.847] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 38.848] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 38.848] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 38.848] (**) Option "xkb_rules" "evdev"
    [ 38.848] (**) Option "xkb_model" "evdev"
    [ 38.848] (**) Option "xkb_layout" "se"
    [ 38.848] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
    [ 38.848] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 38.848] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 38.848] (II) LoadModule: "synaptics"
    [ 38.848] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 38.911] (II) Module synaptics: vendor="X.Org Foundation"
    [ 38.911] compiled for 1.12.1, module version = 1.6.1
    [ 38.911] Module class: X.Org XInput Driver
    [ 38.911] ABI class: X.Org XInput driver, version 16.0
    [ 38.911] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 38.911] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 38.911] (**) Option "Device" "/dev/input/event9"
    [ 38.911] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5672
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4910
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 38.911] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 38.911] (**) Option "TapButton1" "1"
    [ 38.911] (**) Option "TapButton2" "2"
    [ 38.911] (**) Option "TapButton3" "3"
    [ 38.912] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 38.912] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event9"
    [ 38.912] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
    [ 38.912] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 38.912] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 38.912] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 38.912] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 38.912] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 38.913] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 38.913] (II) No input driver specified, ignoring this device.
    [ 38.913] (II) This device may have been added with another device file.
    [ 38.913] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 38.913] (II) No input driver specified, ignoring this device.
    [ 38.913] (II) This device may have been added with another device file.
    The /var/log/Xorg.0.log when using nv:
    [ 52.162]
    X.Org X Server 1.12.2
    Release Date: 2012-05-29
    [ 52.163] X Protocol Version 11, Revision 0
    [ 52.163] Build Operating System: Linux 3.0.32-1-lts x86_64
    [ 52.164] Current Operating System: Linux yggdrasil 3.3.8-1-ARCH #1 SMP PREEMPT Tue Jun 5 15:20:32 CEST 2012 x86_64
    [ 52.164] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda2:root ro vga=773 quiet
    [ 52.165] Build Date: 30 May 2012 07:24:13PM
    [ 52.165]
    [ 52.165] Current version of pixman: 0.26.0
    [ 52.166] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 52.166] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 52.168] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 9 21:30:26 2012
    [ 52.168] (==) Using config file: "/etc/X11/xorg.conf"
    [ 52.168] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 52.168] (==) No Layout section. Using the first Screen section.
    [ 52.168] (==) No screen section available. Using defaults.
    [ 52.168] (**) |-->Screen "Default Screen Section" (0)
    [ 52.168] (**) | |-->Monitor "<default monitor>"
    [ 52.168] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 52.168] (**) | |-->Device "Device0"
    [ 52.168] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 52.169] (==) Automatically adding devices
    [ 52.169] (==) Automatically enabling devices
    [ 52.169] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 52.169] Entry deleted from font path.
    [ 52.169] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 52.169] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 52.169] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 52.169] (II) Loader magic: 0x7c58e0
    [ 52.169] (II) Module ABI versions:
    [ 52.169] X.Org ANSI C Emulation: 0.4
    [ 52.169] X.Org Video Driver: 12.0
    [ 52.169] X.Org XInput driver : 16.0
    [ 52.169] X.Org Server Extension : 6.0
    [ 52.169] (--) PCI:*(0:2:0:0) 10de:0a70:144d:c079 rev 162, Mem @ 0xdc000000/16777216, 0xe0000000/268435456, 0xde000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
    [ 52.170] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 52.170] (II) LoadModule: "extmod"
    [ 52.170] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 52.170] (II) Module extmod: vendor="X.Org Foundation"
    [ 52.170] compiled for 1.12.2, module version = 1.0.0
    [ 52.170] Module class: X.Org Server Extension
    [ 52.170] ABI class: X.Org Server Extension, version 6.0
    [ 52.170] (II) Loading extension MIT-SCREEN-SAVER
    [ 52.170] (II) Loading extension XFree86-VidModeExtension
    [ 52.170] (II) Loading extension XFree86-DGA
    [ 52.170] (II) Loading extension DPMS
    [ 52.170] (II) Loading extension XVideo
    [ 52.170] (II) Loading extension XVideo-MotionCompensation
    [ 52.170] (II) Loading extension X-Resource
    [ 52.170] (II) LoadModule: "dbe"
    [ 52.170] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 52.170] (II) Module dbe: vendor="X.Org Foundation"
    [ 52.170] compiled for 1.12.2, module version = 1.0.0
    [ 52.170] Module class: X.Org Server Extension
    [ 52.170] ABI class: X.Org Server Extension, version 6.0
    [ 52.170] (II) Loading extension DOUBLE-BUFFER
    [ 52.170] (II) LoadModule: "glx"
    [ 52.170] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 52.180] (II) Module glx: vendor="NVIDIA Corporation"
    [ 52.180] compiled for 4.0.2, module version = 1.0.0
    [ 52.180] Module class: X.Org Server Extension
    [ 52.180] (II) NVIDIA GLX Module 295.53 Fri May 11 23:49:08 PDT 2012
    [ 52.180] (II) Loading extension GLX
    [ 52.180] (II) LoadModule: "record"
    [ 52.180] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 52.180] (II) Module record: vendor="X.Org Foundation"
    [ 52.180] compiled for 1.12.2, module version = 1.13.0
    [ 52.180] Module class: X.Org Server Extension
    [ 52.180] ABI class: X.Org Server Extension, version 6.0
    [ 52.180] (II) Loading extension RECORD
    [ 52.180] (II) LoadModule: "dri"
    [ 52.180] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 52.180] (II) Module dri: vendor="X.Org Foundation"
    [ 52.180] compiled for 1.12.2, module version = 1.0.0
    [ 52.180] ABI class: X.Org Server Extension, version 6.0
    [ 52.180] (II) Loading extension XFree86-DRI
    [ 52.180] (II) LoadModule: "dri2"
    [ 52.180] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 52.181] (II) Module dri2: vendor="X.Org Foundation"
    [ 52.181] compiled for 1.12.2, module version = 1.2.0
    [ 52.181] ABI class: X.Org Server Extension, version 6.0
    [ 52.181] (II) Loading extension DRI2
    [ 52.181] (II) LoadModule: "nv"
    [ 52.181] (II) Loading /usr/lib/xorg/modules/drivers/nv_drv.so
    [ 52.181] (II) Module nv: vendor="X.Org Foundation"
    [ 52.181] compiled for 1.12.0.901, module version = 2.1.18
    [ 52.181] Module class: X.Org Video Driver
    [ 52.181] ABI class: X.Org Video Driver, version 12.0
    [ 52.181] (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2,
    Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64,
    Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400,
    GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go,
    GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra,
    Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420,
    GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go,
    GeForce4 420 Go 32M, GeForce4 460 Go, Quadro4 550 XGL,
    GeForce4 440 Go 64M, Quadro NVS, Quadro4 500 GoGL,
    GeForce4 410 Go 16M, GeForce4 MX 440 with AGP8X,
    GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X,
    GeForce4 MX 4000, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL,
    Quadro4 NVS 280 SD, Quadro4 380 XGL, Quadro NVS 50 PCI,
    GeForce4 448 Go, GeForce4 MX Integrated GPU, GeForce3,
    GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600,
    GeForce4 Ti 4400, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL,
    Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X,
    GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL,
    Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra,
    GeForce FX 5800, Quadro FX 2000, Quadro FX 1000,
    GeForce FX 5600 Ultra, GeForce FX 5600, GeForce FX 5600XT,
    GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700,
    GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200,
    GeForce FX 5200LE, GeForce FX Go5200, GeForce FX Go5250,
    GeForce FX 5500, GeForce FX 5100, GeForce FX Go5200 32M/64M,
    Quadro NVS 55/280 PCI, Quadro FX 500/600 PCI,
    GeForce FX Go53xx Series, GeForce FX Go5100, GeForce FX 5900 Ultra,
    GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra,
    GeForce FX 5900ZT, Quadro FX 3000, Quadro FX 700,
    GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE,
    GeForce FX 5700VE, GeForce FX Go5700, GeForce FX Go5700,
    Quadro FX Go1000, Quadro FX 1100, GeForce 6800 Ultra, GeForce 6800,
    GeForce 6800 LE, GeForce 6800 XE, GeForce 6800 XT, GeForce 6800 GT,
    GeForce 6800 GT, GeForce 6800 GS, GeForce 6800 XT, Quadro FX 4000,
    GeForce 6800 GS, GeForce 6800, GeForce 6800 LE, GeForce 6800 XT,
    GeForce Go 6800, GeForce Go 6800 Ultra, Quadro FX Go1400,
    Quadro FX 3450/4000 SDI, Quadro FX 1400, GeForce 6600 GT,
    GeForce 6600, GeForce 6600 LE, GeForce 6600 VE, GeForce Go 6600,
    GeForce 6610 XL, GeForce Go 6600 TE/6200 TE, GeForce 6700 XL,
    GeForce Go 6600, GeForce Go 6600 GT, Quadro NVS 440, Quadro FX 550,
    Quadro FX 550, Quadro FX 540, GeForce 6200, GeForce 6500,
    GeForce 6200 TurboCache(TM), GeForce 6200SE TurboCache(TM),
    GeForce 6200 LE, GeForce Go 6200, Quadro NVS 285, GeForce Go 6400,
    GeForce Go 6200, GeForce Go 6400, GeForce 6250, GeForce 7100 GS,
    GeForce 6800, GeForce 6800 LE, GeForce 6800 GT, GeForce 6800 XT,
    GeForce 6200, GeForce 6200 A-LE, GeForce 7800 GTX, GeForce 7800 GTX,
    GeForce 7800 GT, GeForce 7800 GS, GeForce 7800 SLI, GeForce Go 7800,
    GeForce Go 7800 GTX, Quadro FX 4500, GeForce 7350 LE,
    GeForce 7300 LE, GeForce 7300 SE, GeForce Go 7200, GeForce Go 7300,
    GeForce Go 7400, GeForce Go 7400 GS, Quadro NVS 110M,
    Quadro NVS 120M, Quadro FX 350M, GeForce 7500 LE, Quadro FX 350,
    GeForce 7300 GS, GeForce 7650 GS, GeForce 7600 GT, GeForce 7600 GS,
    GeForce 7300 GT, GeForce 7600 LE, GeForce 7300 GT, GeForce Go 7700,
    GeForce Go 7600, GeForce Go 7600 GT, Quadro NVS 300M,
    GeForce Go 7900 SE, Quadro FX 550M, Quadro FX 560, GeForce 7900 GTX,
    GeForce 7900 GT, GeForce 7900 GS, GeForce 7950 GX2, GeForce 7950 GX2,
    GeForce 7950 GT, GeForce Go 7950 GTX, GeForce Go 7900 GS,
    GeForce Go 7900 GTX, Quadro FX 2500M, Quadro FX 1500M,
    Quadro FX 5500, Quadro FX 3500, Quadro FX 1500, Quadro FX 4500 X2,
    GeForce 6150, GeForce 6150 LE, GeForce 6100, GeForce Go 6150,
    Quadro NVS 210S / NVIDIA GeForce 6150LE, GeForce Go 6100,
    GeForce 6150SE, GeForce 6100 nForce 405, GeForce 6100 nForce 400,
    GeForce 6100 nForce 420, GeForce 7150M / nForce 630M,
    GeForce 7000M / nForce 610M, GeForce 7050 PV / nForce 630a,
    GeForce 7050 PV / nForce 630a, GeForce 7025 / nForce 630a,
    GeForce 8800 GTX, GeForce 8800 GTS, GeForce 8800 Ultra,
    Quadro FX 5600, Quadro FX 4600, GeForce 8600 GTS, GeForce 8600 GT,
    GeForce 8600 GT, GeForce 8600 GS, GeForce 8400 GS, GeForce 9500M GS,
    GeForce 8300 GS, GeForce 8600M GT, GeForce 9650M GS,
    GeForce 8700M GT, Quadro FX 370, Quadro NVS 320M, Quadro FX 570M,
    Quadro FX 1600M, Quadro FX 570, Quadro FX 1700, GeForce GT 330,
    GeForce 8400 SE, GeForce 8500 GT, GeForce 8400 GS, GeForce 8300 GS,
    GeForce 8400 GS, GeForce 8600M GS, GeForce 8400M GT,
    GeForce 8400M GS, GeForce 8400M G, Quadro NVS 140M, Quadro NVS 130M,
    Quadro NVS 135M, GeForce 9400 GT, Quadro FX 360M, GeForce 9300M G,
    Quadro NVS 290, GeForce GTX 295, GeForce GTX 280, GeForce GTX 260,
    GeForce GTX 285, GeForce GTX 275, GeForce GTX 260, GeForce GTX 295,
    Quadroplex 2200 D2, Quadroplex 2200 S4, Quadro CX, Quadro FX 5800,
    Quadro FX 4800, Quadro FX 3800, GeForce 8800 GTS 512,
    GeForce 9800 GT, GeForce 8800 GT, GeForce GT 230, GeForce 9800 GX2,
    GeForce 9800 GT, GeForce 8800 GS, GeForce GTS 240, GeForce 9800M GTX,
    GeForce 8800M GTS, GeForce GTX 280M, GeForce 9800M GT,
    GeForce 8800M GTX, GeForce 8800 GS, GeForce GTX 285M,
    GeForce 9600 GSO, GeForce 8800 GT, GeForce 9800 GTX/9800 GTX+,
    GeForce 9800 GTX+, GeForce 9800 GT, GeForce GTS 250,
    GeForce 9800M GTX, GeForce GTX 260M, Quadro FX 4700 X2,
    Quadro FX 3700, Quadro VX 200, Quadro FX 3600M, Quadro FX 2800M,
    Quadro FX 3700M, Quadro FX 3800M, GeForce 9600 GT, GeForce 9600 GS,
    GeForce 9600 GSO 512, GeForce GT 130, GeForce GT 140,
    GeForce 9800M GTS, GeForce 9700M GTS, GeForce 9800M GS,
    GeForce 9800M GTS, GeForce 9600 GT, GeForce 9600 GT,
    GeForce GTS 160M, GeForce GTS 150M, GeForce 9600 GSO,
    GeForce 9600 GT, Quadro FX 1800, Quadro FX 2700M, GeForce 9500 GT,
    GeForce 9400 GT, GeForce 9500 GT, GeForce 9500 GS, GeForce 9500 GS,
    GeForce GT 120, GeForce 9600M GT, GeForce 9600M GS, GeForce 9600M GT,
    GeForce 9700M GT, GeForce 9500M G, GeForce 9650M GT, GeForce G 110M,
    GeForce GT 130M, GeForce GT 120M, GeForce GT 220M, GeForce 9650 S,
    Quadro FX 380, Quadro FX 580, Quadro FX 1700M, GeForce 9400 GT,
    Quadro FX 770M, GeForce 9300 GE, GeForce 9300 GS, GeForce 8400,
    GeForce 8400 SE, GeForce 8400 GS, GeForce 9300M GS, GeForce G100,
    GeForce 9300 SE, GeForce 9200M GS, GeForce 9300M GS, Quadro NVS 150M,
    Quadro NVS 160M, GeForce G 105M, GeForce G 103M, GeForce G105M,
    Quadro NVS 420, Quadro FX 370 LP, Quadro NVS 450, Quadro FX 370M,
    Quadro NVS 295, GeForce 9100M G, GeForce 8200M G, GeForce 9200,
    GeForce 9100, GeForce 8300, GeForce 8200, nForce 730a, GeForce 9200,
    nForce 980a/780a SLI, nForce 750a SLI, GeForce 8100 / nForce 720a,
    GeForce 9400, GeForce 9400, GeForce 9400M G, GeForce 9400M,
    GeForce 9300, ION, GeForce 9400M G, GeForce 9400, nForce 760i SLI,
    GeForce 9400, GeForce 9300 / nForce 730i, GeForce 9200,
    GeForce 9100M G, GeForce 8200M G, GeForce 9400M, GeForce 9200,
    GeForce G102M, GeForce G102M, ION, ION, GeForce 9400, ION, ION LE,
    ION LE, GeForce GT 220, GeForce 315, GeForce 210, GeForce GT 230M,
    GeForce GT 330M, GeForce GT 230M, GeForce GT 330M, NVS 5100M,
    GeForce GT 320M, GeForce GT 240M, GeForce GT 325M, Quadro FX 880M,
    GeForce G210, GeForce 205, GeForce 310, ION, GeForce 210,
    GeForce 310, GeForce 315, GeForce G105M, GeForce G105M, NVS 2100M,
    NVS 3100M, GeForce 305M, ION, GeForce 310M, GeForce 305M,
    GeForce 310M, GeForce 305M, GeForce G210M, GeForce 310M,
    Quadro FX 380 LP, Quadro FX 380M, GeForce GT 330, GeForce GT 320,
    GeForce GT 240, GeForce GT 340, GeForce GT 330, GeForce GTS 260M,
    GeForce GTS 250M, GeForce 315, GeForce GT 335M, GeForce GTS 350M,
    GeForce GTS 360M, Quadro FX 1800M
    [ 52.183] (--) using VT number 7
    [ 52.211] (--) NV: Found NVIDIA GeForce 310M at 02@00:00:0
    [ 52.211] (II) Loading sub module "int10"
    [ 52.211] (II) LoadModule: "int10"
    [ 52.211] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 52.233] (II) Module int10: vendor="X.Org Foundation"
    [ 52.233] compiled for 1.12.2, module version = 1.0.0
    [ 52.233] ABI class: X.Org Video Driver, version 12.0
    [ 52.233] (II) NV(0): Initializing int10
    [ 52.234] (II) NV(0): Bad V_BIOS checksum
    [ 52.234] (II) NV(0): Primary V_BIOS segment is: 0xc000
    [ 52.234] (--) NV(0): Console is VGA mode 0x105
    [ 52.234] (II) NV(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 52.234] (==) NV(0): Depth 24, (--) framebuffer bpp 32
    [ 52.234] (==) NV(0): RGB weight 888
    [ 52.234] (==) NV(0): Default visual is TrueColor
    [ 52.235] (==) NV(0): Using hardware cursor
    [ 52.235] (==) NV(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 52.245] (II) NV(0): MMIO registers mapped at 0x7f5b4a0aa000
    [ 52.245] (--) NV(0): Total video RAM: 512.0 MB
    [ 52.245] (--) NV(0): BAR1 size: 256.0 MB
    [ 52.245] (--) NV(0): Mapped memory: 256.0 MB
    [ 52.317] (II) NV(0): Linear framebuffer mapped at 0x7f5b3a0aa000
    [ 52.317] (II) Loading sub module "i2c"
    [ 52.317] (II) LoadModule: "i2c"
    [ 52.317] (II) Module "i2c" already built-in
    [ 52.317] (II) Loading sub module "ddc"
    [ 52.317] (II) LoadModule: "ddc"
    [ 52.317] (II) Module "ddc" already built-in
    [ 52.317] (--) NV(0): Connector map:
    [ 52.317] (--) NV(0): Bus 3 -> SOR0 (LVDS)
    [ 52.317] (--) NV(0): Bus 0 -> DAC1
    [ 52.317] (--) NV(0): Bus 8 -> SOR3
    [ 52.317] (--) NV(0): Load detection: 340
    [ 52.317] (II) NV(0): I2C bus "I2C0" initialized.
    [ 52.317] (II) NV(0): Output VGA1 has no monitor section
    [ 52.317] (II) NV(0): I2C bus "I2C8" initialized.
    [ 52.317] (II) NV(0): Output DVI3 has no monitor section
    [ 52.317] (II) NV(0): LVDS native size 1366x768
    [ 52.317] (II) NV(0): Output LVDS has no monitor section
    [ 52.317] (II) NV(0): I2C bus "I2C3 (LVDS)" initialized.
    [ 52.317] (II) NV(0): Probing for EDID on I2C bus 0...
    [ 52.317] (II) NV(0): I2C device "I2C0:ddc2" registered at address 0xA0.
    [ 52.321] (II) NV(0): ... none found
    [ 52.321] (--) NV(0): Trying load detection on VGA1 ... nothing.
    [ 52.366] (II) NV(0): EDID for output VGA1
    [ 52.366] (II) NV(0): Probing for EDID on I2C bus 8...
    [ 52.366] (II) NV(0): I2C device "I2C8:ddc2" registered at address 0xA0.
    [ 52.370] (II) NV(0): ... none found
    [ 52.370] (II) NV(0): EDID for output DVI3
    [ 52.370] (II) NV(0): Probing for EDID on I2C bus 3...
    [ 52.370] (II) NV(0): I2C device "I2C3 (LVDS):ddc2" registered at address 0xA0.
    [ 52.422] (--) NV(0): DDC detected a DFP:
    [ 52.422] (II) NV(0): Manufacturer: CMO Model: 1680 Serial#: 0
    [ 52.422] (II) NV(0): Year: 2009 Week: 4
    [ 52.422] (II) NV(0): EDID Version: 1.3
    [ 52.422] (II) NV(0): Digital Display Input
    [ 52.422] (II) NV(0): Max Image Size [cm]: horiz.: 35 vert.: 19
    [ 52.422] (II) NV(0): Gamma: 2.20
    [ 52.422] (II) NV(0): No DPMS capabilities specified
    [ 52.422] (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 52.422] (II) NV(0): First detailed timing is preferred mode
    [ 52.422] (II) NV(0): redX: 0.602 redY: 0.340 greenX: 0.306 greenY: 0.530
    [ 52.422] (II) NV(0): blueX: 0.151 blueY: 0.120 whiteX: 0.313 whiteY: 0.329
    [ 52.422] (II) NV(0): Manufacturer's mask: 0
    [ 52.422] (II) NV(0): Supported detailed timing:
    [ 52.422] (II) NV(0): clock: 75.5 MHz Image Size: 344 x 193 mm
    [ 52.422] (II) NV(0): h_active: 1366 h_sync: 1397 h_sync_end 1462 h_blank_end 1560 h_border: 0
    [ 52.422] (II) NV(0): v_active: 768 v_sync: 772 v_sync_end 784 v_blanking: 806 v_border: 0
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): CMO
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): EDID (in hex):
    [ 52.422] (II) NV(0): 00ffffffffffff000daf801600000000
    [ 52.422] (II) NV(0): 04130103802313780a07f59a574e8726
    [ 52.422] (II) NV(0): 1e505400000001010101010101010101
    [ 52.422] (II) NV(0): 0101010101017e1d56c2500026301f41
    [ 52.422] (II) NV(0): 4c0058c110000018000000fe004e3135
    [ 52.422] (II) NV(0): 3642362d4c30360a2020000000fe0043
    [ 52.422] (II) NV(0): 4d4f0a202020202020202020000000fe
    [ 52.422] (II) NV(0): 004e31353642362d4c30360a20200048
    [ 52.422] (II) NV(0): EDID for output LVDS
    [ 52.422] (II) NV(0): Manufacturer: CMO Model: 1680 Serial#: 0
    [ 52.422] (II) NV(0): Year: 2009 Week: 4
    [ 52.422] (II) NV(0): EDID Version: 1.3
    [ 52.422] (II) NV(0): Digital Display Input
    [ 52.422] (II) NV(0): Max Image Size [cm]: horiz.: 35 vert.: 19
    [ 52.422] (II) NV(0): Gamma: 2.20
    [ 52.422] (II) NV(0): No DPMS capabilities specified
    [ 52.422] (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 52.422] (II) NV(0): First detailed timing is preferred mode
    [ 52.422] (II) NV(0): redX: 0.602 redY: 0.340 greenX: 0.306 greenY: 0.530
    [ 52.422] (II) NV(0): blueX: 0.151 blueY: 0.120 whiteX: 0.313 whiteY: 0.329
    [ 52.422] (II) NV(0): Manufacturer's mask: 0
    [ 52.422] (II) NV(0): Supported detailed timing:
    [ 52.422] (II) NV(0): clock: 75.5 MHz Image Size: 344 x 193 mm
    [ 52.422] (II) NV(0): h_active: 1366 h_sync: 1397 h_sync_end 1462 h_blank_end 1560 h_border: 0
    [ 52.422] (II) NV(0): v_active: 768 v_sync: 772 v_sync_end 784 v_blanking: 806 v_border: 0
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): CMO
    [ 52.422] (II) NV(0): N156B6-L06
    [ 52.422] (II) NV(0): EDID (in hex):
    [ 52.422] (II) NV(0): 00ffffffffffff000daf801600000000
    [ 52.422] (II) NV(0): 04130103802313780a07f59a574e8726
    [ 52.422] (II) NV(0): 1e505400000001010101010101010101
    [ 52.422] (II) NV(0): 0101010101017e1d56c2500026301f41
    [ 52.422] (II) NV(0): 4c0058c110000018000000fe004e3135
    [ 52.422] (II) NV(0): 3642362d4c30360a2020000000fe0043
    [ 52.422] (II) NV(0): 4d4f0a202020202020202020000000fe
    [ 52.422] (II) NV(0): 004e31353642362d4c30360a20200048
    [ 52.422] (II) NV(0): EDID vendor "CMO", prod id 5760
    [ 52.422] (II) NV(0): Printing probed modes for output LVDS
    [ 52.422] (II) NV(0): Modeline "1366x768"x60.0 75.50 1366 1397 1462 1560 768 772 784 806 -hsync -vsync (48.4 kHz eP)
    [ 52.422] (II) NV(0): Output VGA1 disconnected
    [ 52.422] (II) NV(0): Output DVI3 disconnected
    [ 52.422] (II) NV(0): Output LVDS connected
    [ 52.422] (II) NV(0): Using exact sizes for initial modes
    [ 52.422] (II) NV(0): Output LVDS using initial mode 1366x768
    [ 52.422] (II) NV(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 52.422] (--) NV(0): Virtual size is 1366x1366 (pitch 1536)
    [ 52.422] (**) NV(0): Driver mode "1366x768": 75.5 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    [ 52.422] (II) NV(0): Modeline "1366x768"x60.0 75.50 1366 1397 1462 1560 768 772 784 806 -hsync -vsync (48.4 kHz eP)
    [ 52.422] (==) NV(0): DPI set to (96, 96)
    [ 52.422] (II) Loading sub module "fb"
    [ 52.422] (II) LoadModule: "fb"
    [ 52.433] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 52.447] (II) Module fb: vendor="X.Org Foundation"
    [ 52.447] compiled for 1.12.2, module version = 1.0.0
    [ 52.447] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 52.447] (II) Loading sub module "xaa"
    [ 52.447] (II) LoadModule: "xaa"
    [ 52.447] (II) Loading /usr/lib/xorg/modules/libxaa.so
    [ 52.458] (II) Module xaa: vendor="X.Org Foundation"
    [ 52.458] compiled for 1.12.2, module version = 1.2.1
    [ 52.458] ABI class: X.Org Video Driver, version 12.0
    [ 52.458] (II) Loading sub module "ramdac"
    [ 52.458] (II) LoadModule: "ramdac"
    [ 52.458] (II) Module "ramdac" already built-in
    [ 52.458] (--) Depth 24 pixmap format is 32 bpp
    [ 52.475] (--) NV(0): 183.99 MB available for offscreen pixmaps
    [ 52.507] (II) NV(0): Using XFree86 Acceleration Architecture (XAA)
    [ 52.507] Screen to screen bit blits
    [ 52.507] Solid filled rectangles
    [ 52.507] 8x8 mono pattern filled rectangles
    [ 52.507] Indirect CPU to Screen color expansion
    [ 52.507] Solid Lines
    [ 52.507] Scanline Image Writes
    [ 52.508] Setting up tile and stipple cache:
    [ 52.508] 32 128x128 slots
    [ 52.508] 32 256x256 slots
    [ 52.508] 16 512x512 slots
    [ 52.508] (==) NV(0): Backing store disabled
    [ 52.508] (==) NV(0): Silken mouse enabled
    [ 52.508] (II) NV(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 52.508] (==) NV(0): DPMS enabled
    [ 55.081] (--) RandR disabled
    [ 55.081] (II) Initializing built-in extension Generic Event Extension
    [ 55.081] (II) Initializing built-in extension SHAPE
    [ 55.081] (II) Initializing built-in extension MIT-SHM
    [ 55.081] (II) Initializing built-in extension XInputExtension
    [ 55.081] (II) Initializing built-in extension XTEST
    [ 55.081] (II) Initializing built-in extension BIG-REQUESTS
    [ 55.081] (II) Initializing built-in extension SYNC
    [ 55.081] (II) Initializing built-in extension XKEYBOARD
    [ 55.081] (II) Initializing built-in extension XC-MISC
    [ 55.081] (II) Initializing built-in extension SECURITY
    [ 55.081] (II) Initializing built-in extension XINERAMA
    [ 55.081] (II) Initializing built-in extension XFIXES
    [ 55.081] (II) Initializing built-in extension RENDER
    [ 55.081] (II) Initializing built-in extension RANDR
    [ 55.081] (II) Initializing built-in extension COMPOSITE
    [ 55.081] (II) Initializing built-in extension DAMAGE
    [ 55.103] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    [ 55.132] (II) NV(0): Setting screen physical size to 361 x 203
    [ 55.715] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 55.715] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 55.715] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 55.715] (II) LoadModule: "evdev"
    [ 55.715] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 55.725] (II) Module evdev: vendor="X.Org Foundation"
    [ 55.725] compiled for 1.12.0, module version = 2.7.0
    [ 55.725] Module class: X.Org XInput Driver
    [ 55.725] ABI class: X.Org XInput driver, version 16.0
    [ 55.725] (II) Using input driver 'evdev' for 'Power Button'
    [ 55.725] (**) Power Button: always reports core events
    [ 55.725] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 55.725] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 55.725] (--) evdev: Power Button: Found keys
    [ 55.725] (II) evdev: Power Button: Configuring as keyboard
    [ 55.725] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 55.725] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 55.725] (**) Option "xkb_rules" "evdev"
    [ 55.725] (**) Option "xkb_model" "evdev"
    [ 55.725] (**) Option "xkb_layout" "se"
    [ 55.918] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 55.918] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 55.918] (**) Video Bus: Applying InputClass "Keyboard Defaults"
    [ 55.918] (II) Using input driver 'evdev' for 'Video Bus'
    [ 55.918] (**) Video Bus: always reports core events
    [ 55.918] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 55.918] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 55.918] (--) evdev: Video Bus: Found keys
    [ 55.918] (II) evdev: Video Bus: Configuring as keyboard
    [ 55.918] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input7/event7"
    [ 55.918] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 55.918] (**) Option "xkb_rules" "evdev"
    [ 55.918] (**) Option "xkb_model" "evdev"
    [ 55.918] (**) Option "xkb_layout" "se"
    [ 55.919] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 55.919] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 55.919] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 55.919] (II) Using input driver 'evdev' for 'Power Button'
    [ 55.919] (**) Power Button: always reports core events
    [ 55.919] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 55.919] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 55.919] (--) evdev: Power Button: Found keys
    [ 55.919] (II) evdev: Power Button: Configuring as keyboard
    [ 55.919] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4"
    [ 55.919] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 55.919] (**) Option "xkb_rules" "evdev"
    [ 55.919] (**) Option "xkb_model" "evdev"
    [ 55.919] (**) Option "xkb_layout" "se"
    [ 55.920] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 55.920] (II) No input driver specified, ignoring this device.
    [ 55.920] (II) This device may have been added with another device file.
    [ 55.921] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
    [ 55.921] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 55.921] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
    [ 55.921] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 55.921] (**) Sleep Button: always reports core events
    [ 55.921] (**) evdev: Sleep Button: Device: "/dev/input/event5"
    [ 55.921] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 55.921] (--) evdev: Sleep Button: Found keys
    [ 55.921] (II) evdev: Sleep Button: Configuring as keyboard
    [ 55.921] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5/event5"
    [ 55.921] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 55.921] (**) Option "xkb_rules" "evdev"
    [ 55.921] (**) Option "xkb_model" "evdev"
    [ 55.921] (**) Option "xkb_layout" "se"
    [ 55.922] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
    [ 55.922] (II) No input driver specified, ignoring this device.
    [ 55.922] (II) This device may have been added with another device file.
    [ 55.923] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
    [ 55.923] (II) No input driver specified, ignoring this device.
    [ 55.923] (II) This device may have been added with another device file.
    [ 55.923] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
    [ 55.923] (II) No input driver specified, ignoring this device.
    [ 55.923] (II) This device may have been added with another device file.
    [ 55.924] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event16)
    [ 55.924] (II) No input driver specified, ignoring this device.
    [ 55.924] (II) This device may have been added with another device file.
    [ 55.924] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event1)
    [ 55.924] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 55.924] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 55.924] (**) Logitech USB Receiver: always reports core events
    [ 55.924] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event1"
    [ 55.925] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 55.925] (--) evdev: Logitech USB Receiver: Found 20 mouse buttons
    [ 55.925] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 55.925] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 55.925] (--) evdev: Logitech USB Receiver: Found x and y relative axes
    [ 55.925] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 55.925] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 55.925] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 55.925] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 55.925] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1/event1"
    [ 55.925] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE, id 10)
    [ 55.925] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 55.925] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 55.925] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 55.925] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 55.925] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 55.926] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 55.926] (II) No input driver specified, ignoring this device.
    [ 55.926] (II) This device may have been added with another device file.
    [ 55.926] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
    [ 55.927] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 55.927] (**) Logitech USB Receiver: Applying InputClass "Keyboard Defaults"
    [ 55.927] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 55.927] (**) Logitech USB Receiver: always reports core events
    [ 55.927] (**) evdev: Logitech USB Receiver: Device: "/dev/input/event2"
    [ 55.927] (--) evdev: Logitech USB Receiver: Vendor 0x46d Product 0xc521
    [ 55.927] (--) evdev: Logitech USB Receiver: Found 1 mouse buttons
    [ 55.927] (--) evdev: Logitech USB Receiver: Found scroll wheel(s)
    [ 55.927] (--) evdev: Logitech USB Receiver: Found relative axes
    [ 55.927] (II) evdev: Logitech USB Receiver: Forcing relative x/y axes to exist.
    [ 55.927] (--) evdev: Logitech USB Receiver: Found absolute axes
    [ 55.927] (II) evdev: Logitech USB Receiver: Forcing absolute x/y axes to exist.
    [ 55.927] (--) evdev: Logitech USB Receiver: Found keys
    [ 55.927] (II) evdev: Logitech USB Receiver: Configuring as mouse
    [ 55.927] (II) evdev: Logitech USB Receiver: Configuring as keyboard
    [ 55.927] (II) evdev: Logitech USB Receiver: Adding scrollwheel support
    [ 55.927] (**) evdev: Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 55.927] (**) evdev: Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 55.927] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input2/event2"
    [ 55.927] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD, id 11)
    [ 55.927] (**) Option "xkb_rules" "evdev"
    [ 55.927] (**) Option "xkb_model" "evdev"
    [ 55.927] (**) Option "xkb_layout" "se"
    [ 55.927] (II) evdev: Logitech USB Receiver: initialized for relative axes.
    [ 55.927] (WW) evdev: Logitech USB Receiver: ignoring absolute axes.
    [ 55.927] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 55.927] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 55.927] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 55.927] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 55.927] (II) config/udev: Adding input device USB 2.0 PC Camera (/dev/input/event10)
    [ 55.927] (**) USB 2.0 PC Camera: Applying InputClass "evdev keyboard catchall"
    [ 55.927] (**) USB 2.0 PC Camera: Applying InputClass "Keyboard Defaults"
    [ 55.927] (II) Using input driver 'evdev' for 'USB 2.0 PC Camera'
    [ 55.927] (**) USB 2.0 PC Camera: always reports core events
    [ 55.927] (**) evdev: USB 2.0 PC Camera: Device: "/dev/input/event10"
    [ 55.927] (--) evdev: USB 2.0 PC Camera: Vendor 0x1210 Product 0x25f4
    [ 55.927] (--) evdev: USB 2.0 PC Camera: Found keys
    [ 55.927] (II) evdev: USB 2.0 PC Camera: Configuring as keyboard
    [ 55.927] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input10/event10"
    [ 55.927] (II) XINPUT: Adding extended input device "USB 2.0 PC Camera" (type: KEYBOARD, id 12)
    [ 55.927] (**) Option "xkb_rules" "evdev"
    [ 55.927] (**) Option "xkb_model" "evdev"
    [ 55.927] (**) Option "xkb_layout" "se"
    [ 55.928] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event11)
    [ 55.928] (II) No input driver specified, ignoring this device.
    [ 55.928] (II) This device may have been added with another device file.
    [ 55.928] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event12)
    [ 55.928] (II) No input driver specified, ignoring this device.
    [ 55.928] (II) This device may have been added with another device file.
    [ 55.928] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 55.928] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 55.928] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
    [ 55.928] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 55.928] (**) AT Translated Set 2 keyboard: always reports core events
    [ 55.928] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 55.928] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 55.928] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 55.928] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 55.929] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 55.929] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 55.929] (**) Option "xkb_rules" "evdev"
    [ 55.929] (**) Option "xkb_model" "evdev"
    [ 55.929] (**) Option "xkb_layout" "se"
    [ 55.929] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
    [ 55.929] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 55.929] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 55.929] (II) LoadModule: "synaptics"
    [ 55.929] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 55.967] (II) Module synaptics: vendor="X.Org Foundation"
    [ 55.967] compiled for 1.12.1, module version = 1.6.1
    [ 55.967] Module class: X.Org XInput Driver
    [ 55.967] ABI class: X.Org XInput driver, version 16.0
    [ 55.967] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 55.967] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 55.967] (**) Option "Device" "/dev/input/event9"
    [ 55.967] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5672
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4910
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 55.967] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 55.968] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 55.968] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 55.968] (**) Option "TapButton1" "1"
    [ 55.968] (**) Option "TapButton2" "2"
    [ 55.968] (**) Option "TapButton3" "3"
    [ 55.968] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 55.968] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 55.968] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event9"
    [ 55.968] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
    [ 55.968] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 55.968] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 55.968] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 55.969] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 55.969] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 55.969] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 55.969] (II) No input driver specified, ignoring this device.
    [ 55.969] (II) This device may have been added with another device file.
    [ 55.970] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 55.970] (II) No input driver specified, ignoring this device.
    [ 55.970] (II) This device may have been added with another device file.
    From what I can tell it is something with the nvidia driver that doesn't play well with xorg.  Perhaps some kind of autodetection that takes long time to finish. Anyone got any ideas how to solve this?
    Last edited by Larsson (2012-06-13 18:59:43)

    Didn't see they where timestamps . Yes it seems that glx is one cause of the delay. I've tried some different xorg.conf, and it's always ligglx.so or  NV-GLX that slows it down. Any suggestions on how I can speed this up?
    ps. The computer is ok. Although the garddrive is a SATA 3.0Gb/s, 5400 RPM.  But I don't think this is the problem?

  • Question about udev,hal, hotplug and new Xorg 1.8

    From what I understand the hal .fdi files now are ignored since the last upgrade of Xorg to version 1.8. Before that, I used to modify .fdi files and then restarting hal to get the modifications to work. I did this to configure my joystick and synaptics for example.
    How I'm supposed to do that now with this new system? I've been trying with hal and the fdi files, but are totally ignored (as expected) and making changes to /etc/X11/xorg.conf.d/10-name-here.conf works but I have to restart X.
    According to this the configuration for input devices should be done by .conf files on xorg.conf.d/ or udev rules.
    The Xorg input hotplugging from the wiki is kind of outdated too because it's all about the deprecated hal so I don't understand how I'm supposed to configure and work with the hotplugging...
    I hope someone can make this a little bit clear :) (or tell me that I'm really lost)

    Not what I'm looking for really, because if I change the Xkblayout for example (or if I create a new file), the change only works after restarting X. My joystick for example, doesn't work and create a new inputclass only works after restarting it.
    I know that I can change the keyboard layout some other way while using it using setxkbmap, but still, I'd like to know how it is supposed to use the "hot" plug.

Maybe you are looking for