Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED]Xorg problem
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
caaarlos
Apprentice
Apprentice


Joined: 27 Apr 2012
Posts: 155

PostPosted: Thu Dec 27, 2012 10:23 am    Post subject: [SOLVED]Xorg problem Reply with quote

Hello,

My xorg does not regnize my mouse and my keyboard. It only recognize my touchpad

Thx.


Last edited by caaarlos on Wed Jan 09, 2013 3:02 pm; edited 1 time in total
Back to top
View user's profile Send private message
lxg
Veteran
Veteran


Joined: 12 Nov 2005
Posts: 1019
Location: Aachen, Germany

PostPosted: Thu Dec 27, 2012 12:45 pm    Post subject: Reply with quote

Do you use a xorg.conf file? If so, please post it. Also, please post the output of emerge --info and of cat /var/log/Xorg.0.log.
_________________
lxg.de – codebits and tech talk
Back to top
View user's profile Send private message
caaarlos
Apprentice
Apprentice


Joined: 27 Apr 2012
Posts: 155

PostPosted: Tue Jan 01, 2013 10:32 pm    Post subject: Reply with quote

Sorry for the delay,

I've recompilled my kernel with keyboard support and now it works.

Thanks
Back to top
View user's profile Send private message
caaarlos
Apprentice
Apprentice


Joined: 27 Apr 2012
Posts: 155

PostPosted: Wed Jan 09, 2013 12:08 am    Post subject: Reply with quote

I tried to use my usb mouse, but I can't.
Code:

 # lsusb
Bus 001 Device 003: ID 04e8:6860 Samsung Electronics Co., Ltd GT-I9100 Phone [Galaxy S II], GT-I9300 Phone [Galaxy S III], GT-P7500 [Galaxy Tab 10.1]
Bus 002 Device 002: ID 0408:03f5 Quanta Computer, Inc.
Bus 003 Device 002: ID 0bda:0186 Realtek Semiconductor Corp. Card Reader
 LINE 5 --> Bus 004 Device 002: ID 1532:001c Razer USA, Ltd RZ01-0036 Optical Gaming Mouse [Abyssus]
Bus 007 Device 002: ID 0489:e00f Foxconn / Hon Hai Foxconn T77H114 BCM2070 [Single-Chip Bluetooth 2.1 + EDR Adapter]
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub


We can see that in LINE 5 that my mouse was recognized. But only my keyboard and my touchpad works.

My xorg.conf is:
Code:

Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "Screen0" 0 0
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

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

Section "Module"
   Load  "glx"
EndSection

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

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

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

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"               # [<bool>]
        #Option     "SWcursor"              # [<bool>]
        #Option     "EnablePageFlip"        # [<bool>]
        #Option     "AccelDFS"              # [<bool>]
        #Option     "IgnoreEDID"            # [<bool>]
        #Option     "ColorTiling"           # [<bool>]
        #Option     "ColorTiling2D"         # [<bool>]
        #Option     "RenderAccel"           # [<bool>]
        #Option     "SubPixelOrder"         # [<str>]
        #Option     "AccelMethod"           # <str>
        #Option     "DRI"                   # [<bool>]
        #Option     "TVStandard"            # <str>
        #Option     "EXAVSync"              # [<bool>]
        #Option     "EXAPixmaps"            # [<bool>]
        #Option     "ZaphodHeads"           # <str>
        #Option     "EnablePageFlip"        # [<bool>]
        #Option     "SwapbuffersWait"       # [<bool>]
   Identifier  "Card0"
   Driver      "radeon"
   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 /usr/share/X11/xorg.conf.d/:
Code:

# ls /usr/share/X11/xorg.conf.d/
10-mouse.conf  30-keyboard.conf  50-synaptics.conf


My /usr/share/X11/xorg.conf.d/10-mouse.conf is
Code:

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "evdev"
   Option "Name" "Logitech USB Gaming Mouse"
       Option "Device" "/dev/input/event1"
   Option "Buttons" "8"
        Option "Protocol" "event"
EndSection


My /usr/share/X11/xorg.conf.d/30-keyboard.conf is
Code:

Section "InputClass"
        Identifier "BR keyboard"
        Driver "evdev"
        MatchIsKeyboard "on"
        Option "xkbmodel" "evdev"
        Option "xkblayout" "br"
#       Option "xkbvariant" "deadgraveacute"
#       Option "xkbrules" "base"
EndSection


/usr/share/X11/xorg.conf.d/50-synaptics.conf is
Code:

# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
#       MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "off"
EndSection

# This option enables the bottom right corner to be a right button on
# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Disable clickpad buttons on Apple touchpads"
        MatchProduct "Apple|bcm5974"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection


My emerge info is:
Code:

# emerge --info
Portage 2.1.11.31 (default/linux/amd64/10.0/desktop/gnome, gcc-4.5.4, glibc-2.15-r3, 3.6.11-gentoo x86_64)
=================================================================
System uname: Linux-3.6.11-gentoo-x86_64-AMD_Phenom-tm-_II_P820_Triple-Core_Processor-with-gentoo-2.1
Timestamp of tree: Sun, 30 Dec 2012 22:15:01 +0000
ld GNU ld (GNU Binutils) 2.22
app-shells/bash:          4.2_p37
dev-java/java-config:     2.1.11-r3
dev-lang/python:          2.7.3-r2, 3.2.3
dev-util/cmake:           2.8.9
dev-util/pkgconfig:       0.27.1
sys-apps/baselayout:      2.1-r1
sys-apps/openrc:          0.11.8
sys-apps/sandbox:         2.5
sys-devel/autoconf:       2.13, 2.68
sys-devel/automake:       1.11.6
sys-devel/binutils:       2.22-r1
sys-devel/gcc:            4.5.4
sys-devel/gcc-config:     1.7.3
sys-devel/libtool:        2.4-r1
sys-devel/make:           3.82-r3
sys-kernel/linux-headers: 3.6 (virtual/os-headers)
sys-libs/glibc:           2.15-r3
Repositories: gentoo
ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt /var/lib/hsqldb /var/spool/torque"
CONFIG_PROTECT_MASK="${EPREFIX}/etc/gconf /etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-march=native -O2 -pipe"
DISTDIR="/usr/portage/distfiles"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news parallel-fetch protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="http://gentoo.localhost.net.ar/ http://gentoo.c3sl.ufpr.br/ http://www.las.ic.unicamp.br/pub/gentoo/ http://mirror.datapipe.net/gentoo http://gentoo.mirrors.easynews.com/linux/gentoo/ http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/"
LANG="pt_BR.UTF-8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j4"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY=""
SYNC="rsync://rsync.br.gentoo.org/gentoo-portage"
USE="X a52 aac acl acpi aiglx alps alsa amd64 aoss asf berkdb bluetooth branding bzip2 cairo cdda cdr cli colord consolekit cracklib crypt cups cxx dbus dmx dri dts dvd dvdr eds emboss encode evdev evo exif fam flac fortran gdbm gif glitz gnome gnome-keyring gnome-online-accounts gpm gps gstreamer gtk gtk3 iconv ipv6 java jpeg keyboard lcms ldap libnotify mad mmx mng modules mouse mp3 mp4 mpeg mudflap multilib mysql nautilus ncurses networking networkmanager new-login nls nptl nsplugin ogg opengl openmp pam pango pcre pdf png policykit ppds pppd pulseaudio python qt3support radeon readline samba sdl session socialweb spell sqlite sse sse2 ssl startup-notification static-libs svg symlink synaptics systemd tcpd threads tiff truetype udev udisks unicode upower usb vorbis wxwidgets x264 xcb xcomposite xinerama xml xorg xscreensaver xv xvid zlib" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump" CAMERAS="ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ubx" INPUT_DEVICES="evdev alps keyboard mouse synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="pt_BR" PHP_TARGETS="php5-3" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_2" RUBY_TARGETS="ruby18 ruby19" USERLAND="GNU" VIDEO_CARDS="radeon" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON


My "Xorg.0.log" is:
Code:

[    20.316]
X.Org X Server 1.13.1
Release Date: 2012-12-13
[    20.316] X Protocol Version 11, Revision 0
[    20.316] Build Operating System: Linux 3.6.11-gentoo x86_64 Gentoo
[    20.316] Current Operating System: Linux caaarlos-pc 3.6.11-gentoo #5 SMP Wed Jan 2 12:33:58 BRST 2013 x86_64
[    20.316] Kernel command line: BOOT_IMAGE=/kernel-3.6.11-gentoo root=/dev/sda2 ro
[    20.316] Build Date: 31 December 2012  03:40:19PM
[    20.316] 
[    20.316] Current version of pixman: 0.28.0
[    20.316]    Before reporting problems, check http://wiki.x.org
   to make sure that you have the latest version.
[    20.316] Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    20.316] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jan  8 21:38:02 2013
[    20.346] (==) Using config file: "/etc/X11/xorg.conf"
[    20.346] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    20.425] (==) ServerLayout "X.org Configured"
[    20.425] (**) |-->Screen "Screen0" (0)
[    20.425] (**) |   |-->Monitor "Monitor0"
[    20.425] (**) |   |-->Device "Card0"
[    20.425] (**) |-->Input Device "Mouse0"
[    20.425] (**) |-->Input Device "Keyboard0"
[    20.425] (==) Automatically adding devices
[    20.425] (==) Automatically enabling devices
[    20.425] (==) Automatically adding GPU devices
[    20.448] (**) FontPath set to:
   /usr/share/fonts/misc/,
   /usr/share/fonts/TTF/,
   /usr/share/fonts/OTF/,
   /usr/share/fonts/Type1/,
   /usr/share/fonts/100dpi/,
   /usr/share/fonts/75dpi/,
   /usr/share/fonts/misc/,
   /usr/share/fonts/TTF/,
   /usr/share/fonts/OTF/,
   /usr/share/fonts/Type1/,
   /usr/share/fonts/100dpi/,
   /usr/share/fonts/75dpi/
[    20.449] (**) ModulePath set to "/usr/lib64/xorg/modules"
[    20.449] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    20.449] (WW) Disabling Keyboard0
[    20.449] (II) Loader magic: 0x815c00
[    20.449] (II) Module ABI versions:
[    20.449]    X.Org ANSI C Emulation: 0.4
[    20.449]    X.Org Video Driver: 13.1
[    20.449]    X.Org XInput driver : 18.0
[    20.449]    X.Org Server Extension : 7.0
[    20.449] (II) config/udev: Adding drm device (/dev/dri/card0)
[    20.451] (--) PCI:*(0:1:0:0) 1002:9553:104d:9077 rev 0, Mem @ 0xe0000000/268435456, 0xf4100000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/131072
[    20.451] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    20.466] Initializing built-in extension Generic Event Extension
[    20.466] Initializing built-in extension SHAPE
[    20.466] Initializing built-in extension MIT-SHM
[    20.466] Initializing built-in extension XInputExtension
[    20.466] Initializing built-in extension XTEST
[    20.466] Initializing built-in extension BIG-REQUESTS
[    20.466] Initializing built-in extension SYNC
[    20.466] Initializing built-in extension XKEYBOARD
[    20.466] Initializing built-in extension XC-MISC
[    20.466] Initializing built-in extension XINERAMA
[    20.466] Initializing built-in extension XFIXES
[    20.466] Initializing built-in extension RENDER
[    20.466] Initializing built-in extension RANDR
[    20.466] Initializing built-in extension COMPOSITE
[    20.466] Initializing built-in extension DAMAGE
[    20.466] Initializing built-in extension MIT-SCREEN-SAVER
[    20.466] Initializing built-in extension DOUBLE-BUFFER
[    20.466] Initializing built-in extension RECORD
[    20.466] Initializing built-in extension DPMS
[    20.466] Initializing built-in extension X-Resource
[    20.466] Initializing built-in extension XVideo
[    20.466] Initializing built-in extension XVideo-MotionCompensation
[    20.466] Initializing built-in extension XFree86-VidModeExtension
[    20.466] Initializing built-in extension XFree86-DGA
[    20.466] Initializing built-in extension XFree86-DRI
[    20.466] Initializing built-in extension DRI2
[    20.466] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    20.466] (II) LoadModule: "glx"
[    20.511] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[    20.541] (II) Module glx: vendor="X.Org Foundation"
[    20.542]    compiled for 1.13.1, module version = 1.0.0
[    20.542]    ABI class: X.Org Server Extension, version 7.0
[    20.542] (==) AIGLX enabled
[    20.542] Loading extension GLX
[    20.542] (II) LoadModule: "radeon"
[    20.543] (II) Loading /usr/lib64/xorg/modules/drivers/radeon_drv.so
[    20.589] (II) Module radeon: vendor="X.Org Foundation"
[    20.589]    compiled for 1.13.1, module version = 7.0.0
[    20.589]    Module class: X.Org Video Driver
[    20.589]    ABI class: X.Org Video Driver, version 13.1
[    20.589] (II) LoadModule: "evdev"
[    20.589] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[    20.649] (II) Module evdev: vendor="X.Org Foundation"
[    20.649]    compiled for 1.13.1, module version = 2.7.3
[    20.649]    Module class: X.Org XInput Driver
[    20.649]    ABI class: X.Org XInput driver, version 18.0
[    20.649] (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 FireMV 2400 3155 (PCI),
   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 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 X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (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 FireMV 2400 PCI,
   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 Radeon HD 4850 x2,
   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 Mobility RADEON HD 4870, ATI Radeon 4800 Series,
   ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
   ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
   ATI Mobility Radeon HD 4670, ATI FirePro M5750,
   ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
   ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
   ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
   ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
   ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
   ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
   ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
   ATI FirePro M5750, 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 RV710,
   ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
   ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
   ATI FirePro RG220, ATI Mobility Radeon 4330, 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 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, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
   SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
   ATI Radeon 4100, ATI Mobility Radeon HD 4200,
   ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
   AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
   AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
   AMD Radeon HD 6300 Series Graphics,
   AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
   AMD Firestream 9350, ATI Radeon HD 5800 Series,
   ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
   ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
   ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
   ATI Mobility Radeon HD 5800 Series,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
   ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
   ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
   ATI Mobility Radeon HD 5000 Series,
   ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
   ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
   ATI Mobility Radeon HD 5000 Series,
   ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
   ATI Mobility Radeon Graphics, CEDAR,
   ATI FirePro (FireGL) Graphics Adapter,
   ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
   ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
   CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
   AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
   CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
   BARTS, BARTS, Mobility Radeon HD 6000 Series,
   Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
   AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
   AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
   TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
   TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
   CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
   CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
   ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
   ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
   ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
   TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN, PITCAIRN,
   PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
   PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE, VERDE,
   VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
   VERDE, VERDE, VERDE, VERDE, VERDE
[    20.653] (++) using VT number 7

[    20.677] (II) [KMS] Kernel modesetting enabled.
[    20.677] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[    20.677] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    20.677] (==) RADEON(0): Default visual is TrueColor
[    20.677] (==) RADEON(0): RGB weight 888
[    20.677] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[    20.677] (--) RADEON(0): Chipset: "ATI Mobility Radeon 4500 Series" (ChipID = 0x9553)
[    20.677] (II) Loading sub module "dri2"
[    20.677] (II) LoadModule: "dri2"
[    20.677] (II) Module "dri2" already built-in
[    20.677] (II) Loading sub module "exa"
[    20.677] (II) LoadModule: "exa"
[    20.677] (II) Loading /usr/lib64/xorg/modules/libexa.so
[    20.692] (II) Module exa: vendor="X.Org Foundation"
[    20.692]    compiled for 1.13.1, module version = 2.6.0
[    20.692]    ABI class: X.Org Video Driver, version 13.1
[    20.692] (II) RADEON(0): KMS Color Tiling: enabled
[    20.692] (II) RADEON(0): KMS Color Tiling 2D: enabled
[    20.692] (II) RADEON(0): KMS Pageflipping: enabled
[    20.692] (II) RADEON(0): SwapBuffers wait for vsync: enabled
[    20.692] (II) RADEON(0): Output LVDS using monitor section Monitor0
[    20.706] (II) RADEON(0): Output VGA-0 has no monitor section
[    20.708] (II) RADEON(0): Output HDMI-0 has no monitor section
[    20.708] (II) RADEON(0): EDID for output LVDS
[    20.708] (II) RADEON(0): Manufacturer: LGD  Model: d901  Serial#: 0
[    20.708] (II) RADEON(0): Year: 2008  Week: 0
[    20.708] (II) RADEON(0): EDID Version: 1.3
[    20.709] (II) RADEON(0): Digital Display Input
[    20.709] (II) RADEON(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    20.709] (II) RADEON(0): Gamma: 2.20
[    20.709] (II) RADEON(0): No DPMS capabilities specified
[    20.709] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[    20.709] (II) RADEON(0): First detailed timing is preferred mode
[    20.709] (II) RADEON(0): redX: 0.640 redY: 0.353   greenX: 0.319 greenY: 0.572
[    20.709] (II) RADEON(0): blueX: 0.148 blueY: 0.102   whiteX: 0.313 whiteY: 0.329
[    20.709] (II) RADEON(0): Manufacturer's mask: 0
[    20.709] (II) RADEON(0): Supported detailed timing:
[    20.709] (II) RADEON(0): clock: 72.3 MHz   Image Size:  344 x 194 mm
[    20.709] (II) RADEON(0): h_active: 1366  h_sync: 1414  h_sync_end 1446 h_blank_end 1526 h_border: 0
[    20.709] (II) RADEON(0): v_active: 768  v_sync: 771  v_sync_end 776 v_blanking: 790 v_border: 0
[    20.709] (II) RADEON(0):  LG Display
[    20.709] (II) RADEON(0):  LP156WH1-TLC1
[    20.709] (II) RADEON(0): EDID (in hex):
[    20.709] (II) RADEON(0):    00ffffffffffff0030e401d900000000
[    20.709] (II) RADEON(0):    00120103802213780ade05a35a519226
[    20.709] (II) RADEON(0):    1a505400000001010101010101010101
[    20.709] (II) RADEON(0):    0101010101013e1c56a0500016303020
[    20.709] (II) RADEON(0):    350058c2100000190000000000000000
[    20.709] (II) RADEON(0):    00000000000000000000000000fe004c
[    20.709] (II) RADEON(0):    4720446973706c61790a2020000000fe
[    20.709] (II) RADEON(0):    004c503135365748312d544c4331004e
[    20.709] (II) RADEON(0): Printing probed modes for output LVDS
[    20.709] (II) RADEON(0): Modeline "1366x768"x60.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz eP)
[    20.709] (II) RADEON(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz)
[    20.709] (II) RADEON(0): Modeline "1152x768"x59.8   71.75  1152 1216 1328 1504  768 771 781 798 -hsync +vsync (47.7 kHz)
[    20.709] (II) RADEON(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
[    20.709] (II) RADEON(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
[    20.709] (II) RADEON(0): Modeline "848x480"x59.7   31.50  848 872 952 1056  480 483 493 500 -hsync +vsync (29.8 kHz)
[    20.709] (II) RADEON(0): Modeline "720x480"x59.7   26.75  720 744 808 896  480 483 493 500 -hsync +vsync (29.9 kHz)
[    20.709] (II) RADEON(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
[    20.724] (II) RADEON(0): EDID for output VGA-0
[    20.725] (II) RADEON(0): EDID for output HDMI-0
[    20.725] (II) RADEON(0): Output LVDS connected
[    20.725] (II) RADEON(0): Output VGA-0 disconnected
[    20.725] (II) RADEON(0): Output HDMI-0 disconnected
[    20.725] (II) RADEON(0): Using exact sizes for initial modes
[    20.725] (II) RADEON(0): Output LVDS using initial mode 1366x768
[    20.725] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    20.725] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:20000000 visible:fba0000
[    20.725] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
[    20.725] (==) RADEON(0): DPI set to (96, 96)
[    20.725] (II) Loading sub module "fb"
[    20.725] (II) LoadModule: "fb"
[    20.726] (II) Loading /usr/lib64/xorg/modules/libfb.so
[    20.742] (II) Module fb: vendor="X.Org Foundation"
[    20.742]    compiled for 1.13.1, module version = 1.0.0
[    20.742]    ABI class: X.Org ANSI C Emulation, version 0.4
[    20.742] (II) Loading sub module "ramdac"
[    20.742] (II) LoadModule: "ramdac"
[    20.742] (II) Module "ramdac" already built-in
[    20.742] (--) Depth 24 pixmap format is 32 bpp
[    20.743] (II) RADEON(0): [DRI2] Setup complete
[    20.743] (II) RADEON(0): [DRI2]   DRI driver: r600
[    20.743] (II) RADEON(0): [DRI2]   VDPAU driver: r600
[    20.743] (II) RADEON(0): Front buffer size: 4224K
[    20.743] (II) RADEON(0): VRAM usage limit set to 228096K
[    20.751] (==) RADEON(0): Backing store disabled
[    20.751] (II) RADEON(0): Direct rendering enabled
[    20.751] (II) RADEON(0): Setting EXA maxPitchBytes
[    20.751] (II) EXA(0): Driver allocated offscreen pixmaps
[    20.751] (II) EXA(0): Driver registered support for the following operations:
[    20.751] (II)         Solid
[    20.751] (II)         Copy
[    20.751] (II)         Composite (RENDER acceleration)
[    20.751] (II)         UploadToScreen
[    20.751] (II)         DownloadFromScreen
[    20.751] (II) RADEON(0): Acceleration enabled
[    20.751] (==) RADEON(0): DPMS enabled
[    20.751] (==) RADEON(0): Silken mouse enabled
[    20.751] (II) RADEON(0): Set up textured video
[    20.751] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
[    20.751] (II) RADEON(0): [XvMC] Extension initialized.
[    20.751] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    20.752] (--) RandR disabled
[    21.189] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    21.189] (II) AIGLX: enabled GLX_INTEL_swap_event
[    21.189] (II) AIGLX: enabled GLX_ARB_create_context
[    21.189] (II) AIGLX: enabled GLX_ARB_create_context_profile
[    21.189] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[    21.189] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    21.189] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    21.189] (II) AIGLX: Loaded and initialized r600
[    21.189] (II) GLX: Initialized DRI2 GL provider for screen 0
[    21.204] (II) RADEON(0): Setting screen physical size to 361 x 203
[    21.784] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    21.784] (**) Power Button: Applying InputClass "BR keyboard"
[    21.784] (II) Using input driver 'evdev' for 'Power Button'
[    21.784] (**) Power Button: always reports core events
[    21.784] (**) evdev: Power Button: Device: "/dev/input/event2"
[    21.784] (--) evdev: Power Button: Vendor 0 Product 0x1
[    21.784] (--) evdev: Power Button: Found keys
[    21.784] (II) evdev: Power Button: Configuring as keyboard
[    21.784] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    21.784] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    21.784] (**) Option "xkb_rules" "evdev"
[    21.784] (**) Option "xkb_model" "evdev"
[    21.784] (**) Option "xkb_layout" "br"
[    21.829] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    21.829] (**) Power Button: Applying InputClass "BR keyboard"
[    21.829] (II) Using input driver 'evdev' for 'Power Button'
[    21.829] (**) Power Button: always reports core events
[    21.829] (**) evdev: Power Button: Device: "/dev/input/event0"
[    21.829] (--) evdev: Power Button: Vendor 0 Product 0x1
[    21.829] (--) evdev: Power Button: Found keys
[    21.829] (II) evdev: Power Button: Configuring as keyboard
[    21.829] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[    21.829] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    21.829] (**) Option "xkb_rules" "evdev"
[    21.829] (**) Option "xkb_model" "evdev"
[    21.829] (**) Option "xkb_layout" "br"
[    21.829] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[    21.829] (II) No input driver specified, ignoring this device.
[    21.829] (II) This device may have been added with another device file.
[    21.829] (II) config/udev: Adding drm device (/dev/dri/card0)
[    21.830] (II) config/udev: Adding input device Razer  Razer Abyssus (/dev/input/event4)
[    21.830] (II) No input driver specified, ignoring this device.
[    21.830] (II) This device may have been added with another device file.
[    21.830] (II) config/udev: Adding input device Razer  Razer Abyssus (/dev/input/mouse0)
[    21.830] (II) No input driver specified, ignoring this device.
[    21.830] (II) This device may have been added with another device file.
[    21.830] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    21.830] (**) AT Translated Set 2 keyboard: Applying InputClass "BR keyboard"
[    21.830] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    21.830] (**) AT Translated Set 2 keyboard: always reports core events
[    21.830] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event3"
[    21.830] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    21.830] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    21.830] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    21.830] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[    21.830] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 8)
[    21.830] (**) Option "xkb_rules" "evdev"
[    21.830] (**) Option "xkb_model" "evdev"
[    21.830] (**) Option "xkb_layout" "br"
[    21.831] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/event5)
[    21.831] (II) No input driver specified, ignoring this device.
[    21.831] (II) This device may have been added with another device file.
[    21.831] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/mouse1)
[    21.831] (II) No input driver specified, ignoring this device.
[    21.831] (II) This device may have been added with another device file.
[    21.831] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event6)
[    21.831] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
[    21.831] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
[    21.831] (II) LoadModule: "synaptics"
[    21.831] (II) Loading /usr/lib64/xorg/modules/input/synaptics_drv.so
[    21.845] (II) Module synaptics: vendor="X.Org Foundation"
[    21.845]    compiled for 1.13.1, module version = 1.6.2
[    21.845]    Module class: X.Org XInput Driver
[    21.845]    ABI class: X.Org XInput driver, version 18.0
[    21.845] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
[    21.846] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[    21.846] (**) Option "Device" "/dev/input/event6"
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
[    21.873] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range.  defaulting to 0 - 15
[    21.873] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
[    21.873] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[    21.883] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
[    21.883] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 9)
[    21.883] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
[    21.883] (**) synaptics: AlpsPS/2 ALPS GlidePoint: MaxSpeed is now 1.75
[    21.883] (**) synaptics: AlpsPS/2 ALPS GlidePoint: AccelFactor is now 0.156
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
[    21.883] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
[    21.883] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse2)
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad ignore duplicates"
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
[    21.883] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
[    21.883] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[    21.883] (**) Option "Device" "/dev/input/mouse2"
[    21.897] (EE) synaptics: AlpsPS/2 ALPS GlidePoint: Synaptics driver unable to detect protocol
[    21.897] (EE) PreInit returned 11 for "AlpsPS/2 ALPS GlidePoint"
[    21.897] (II) UnloadModule: "synaptics"
[    25.392] (II) RADEON(0): EDID vendor "LGD", prod id 55553
[    25.392] (II) RADEON(0): Printing DDC gathered Modelines:
[    25.392] (II) RADEON(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz eP)
[    25.413] (II) RADEON(0): EDID vendor "LGD", prod id 55553
[    25.413] (II) RADEON(0): Printing DDC gathered Modelines:
[    25.413] (II) RADEON(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz eP)
[    25.448] (II) RADEON(0): EDID vendor "LGD", prod id 55553
[    25.448] (II) RADEON(0): Printing DDC gathered Modelines:
[    25.448] (II) RADEON(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz eP)
[    25.468] (II) RADEON(0): EDID vendor "LGD", prod id 55553
[    25.468] (II) RADEON(0): Printing DDC gathered Modelines:
[    25.468] (II) RADEON(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz eP)
[    36.069] (II) RADEON(0): EDID vendor "LGD", prod id 55553
[    39.644] (II) RADEON(0): Printing DDC gathered Modelines:
[    39.644] (II) RADEON(0): Modeline "1366x768"x0.0   72.30  1366 1414 1446 1526  768 771 776 790 -hsync -vsync (47.4 kHz eP)
Back to top
View user's profile Send private message
VoidMage
Watchman
Watchman


Joined: 14 Oct 2006
Posts: 6196

PostPosted: Wed Jan 09, 2013 5:55 am    Post subject: Reply with quote

:roll: Overengineered configured files...
So:
- not quite important, but drop the '"touchpad ignore duplicates" ' thing and just filter by path in in the first section (the commented out line)
- for mouse, the standard
Code:
Section "InputClass"
        Identifier "mouses"
        Driver "evdev"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
EndSection

should work - synaptics has a higher number in the name for a reason
- as for the keyboard, odd - the log doesn't show anything wrong with it
Back to top
View user's profile Send private message
caaarlos
Apprentice
Apprentice


Joined: 27 Apr 2012
Posts: 155

PostPosted: Wed Jan 09, 2013 3:01 pm    Post subject: Reply with quote

Thanks VoidMage it works!
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum