Advertisement
xtiansimon

xinitrc & xresources

Sep 4th, 2013
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 41.72 KB | None | 0 0
  1. 1) xinitrc
  2. 2) xResources
  3. 3) Xorg.0.log
  4. 4) startx output
  5.  
  6. -------------------------------------------------------------------
  7. 1) xinitrc
  8.   # !/bin/sh
  9. # ~/.xinitrc
  10. #
  11. # Post-install 08-30-2013, -CS
  12. # Hand written according to instructions at archlinux/evilwm
  13. # also added from wiki.archlinux.org/.../Xinitrc
  14.  
  15. if [ -d /etc/X11/xinit/xinitrc.d ]; then
  16.         for f in /etc/X11/xinit/xinitrc.d/*; do
  17.                 [ -x "$f" ] && . "$f"
  18.         done
  19.         unset f
  20. fi
  21.  
  22. # added from wiki.archlinux.org/.../X_resources
  23. # enables xterm settings file on xwindows startup...
  24. #[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
  25.  
  26. # update x resources db
  27. xrdb -load ~/.Xresources        
  28.  
  29. # sets the cursor icon
  30. xsetroot -cursor_name left_ptr &  
  31. xsetroot -solid \#3f3f3f
  32.  
  33. xset +fp /usr/share/fonts/local
  34. # man page says this is usually only done to reset font path
  35. # after adding a new font
  36. #xset fp rehash
  37.  
  38. # archlinux.org/../xinitrc instructs to add this as list line
  39. exec evilwm -snap 10 -bw 2 -fg red          
  40.  
  41. -------------------------------------------------------------------
  42. 2) Xresources
  43.  
  44. !
  45. ! Xresources config for xterm
  46. ! wiki.archlinux.org/.../X_resources
  47. ! comment character the ! and not #??
  48. ! post-install 08-31-2013, -CS
  49. !
  50.  
  51. ! wiki.archlinux.org/.../Xterm
  52. xterm*termName:           xterm-256color
  53. xTerm*locale:             true
  54. xterm*saveLines:              4096
  55. xterm*bellIsUrgent:       false
  56. xterm*VT100.geometry:     80x25
  57. xterm*faceName:           Terminus:style=Regular:size=10
  58. xterm*dynamicColors:      true
  59. xterm*utf8:               2
  60. xterm*toolBar:            false
  61.  
  62. ! test 16-colors
  63. ! terminal colors
  64. *background: #000000
  65. *foreground: #ccccff
  66.  
  67. ! Black (not tango) + DarkGrey
  68.  *color0:  #000000
  69.  *color8:  #555753
  70. ! DarkRed + Red
  71.  *color1:  #ff6565
  72.  *color9:  #ff8d8d
  73. ! DarkGreen + Green
  74.  *color2:  #93d44f
  75.  *color10: #c8e7a8
  76. ! DarkYellow + Yellow
  77.  *color3:  #eab93d
  78.  *color11: #ffc123
  79. ! DarkBlue + Blue
  80.  *color4:  #204a87
  81.  *color12: #3465a4
  82. ! DarkMagenta + Magenta
  83.  *color5:  #ce5c00
  84.  *color13: #f57900
  85. ! DarkCyan + Cyan (both not tango)
  86.  *color6:  #89b6e2
  87.  *color14: #46a4ff
  88. ! LightGrey + White
  89.  *color7:  #cccccc
  90.  *color15: #ffffff
  91.  
  92. ! wiki.archlinux.org/.../Man_Page
  93. ! colored man pages
  94. *VT100.colorBDMode:     true
  95. *VT100.colorBD:         red
  96. *VT100.colorULMode:     true
  97. *VT100.colorUL:         cyan
  98.  
  99. ! xclock
  100. xclock*update:            1
  101. xclock*analog:            false
  102. xclock*Foreground:        white
  103. xclock*background:        black
  104.  
  105. -------------------------------------------------------------------
  106. 3) Xorg.0.log
  107.  
  108. [ 16974.822]
  109. X.Org X Server 1.14.2
  110. Release Date: 2013-06-25
  111. [ 16974.822] X Protocol Version 11, Revision 0
  112. [ 16974.823] Build Operating System: Linux 3.9.7-1-ARCH i686
  113. [ 16974.823] Current Operating System: Linux frylock 3.10.9-1-ARCH #1 SMP PREEMPT Wed Aug 21 14:37:01 CEST 2013 i686
  114. [ 16974.823] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/cryptVG-root rw cryptdevice=/dev/sda3:cryptVG root=/dev/mapper/cryptVG-root resume=/dev/mapper/cryptVG-swap floppy.allowed_drive_mask=0
  115. [ 16974.824] Build Date: 01 July 2013  10:52:25AM
  116. [ 16974.825]  
  117. [ 16974.825] Current version of pixman: 0.30.2
  118. [ 16974.826]    Before reporting problems, check http://wiki.x.org
  119.     to make sure that you have the latest version.
  120. [ 16974.826] Markers: (--) probed, (**) from config file, (==) default setting,
  121.     (++) from command line, (!!) notice, (II) informational,
  122.     (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
  123. [ 16974.828] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep  4 06:31:53 2013
  124. [ 16974.829] (==) Using config directory: "/etc/X11/xorg.conf.d"
  125. [ 16974.829] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
  126. [ 16974.830] (==) No Layout section.  Using the first Screen section.
  127. [ 16974.830] (==) No screen section available. Using defaults.
  128. [ 16974.830] (**) |-->Screen "Default Screen Section" (0)
  129. [ 16974.830] (**) |   |-->Monitor "<default monitor>"
  130. [ 16974.830] (==) No monitor specified for screen "Default Screen Section".
  131.     Using a default monitor configuration.
  132. [ 16974.830] (==) Automatically adding devices
  133. [ 16974.830] (==) Automatically enabling devices
  134. [ 16974.830] (==) Automatically adding GPU devices
  135. [ 16974.830] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
  136. [ 16974.830]    Entry deleted from font path.
  137. [ 16974.830] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
  138. [ 16974.830]    Entry deleted from font path.
  139. [ 16974.830] (WW) The directory "/usr/share/fonts/75dpi/" does not exist.
  140. [ 16974.831]    Entry deleted from font path.
  141. [ 16974.831] (==) FontPath set to:
  142.     /usr/share/fonts/misc/,
  143.     /usr/share/fonts/TTF/,
  144.     /usr/share/fonts/100dpi/
  145. [ 16974.831] (==) ModulePath set to "/usr/lib/xorg/modules"
  146. [ 16974.831] (II) The server relies on udev to provide the list of input devices.
  147.     If no devices become available, reconfigure udev or disable AutoAddDevices.
  148. [ 16974.831] (II) Loader magic: 0x8258620
  149. [ 16974.831] (II) Module ABI versions:
  150. [ 16974.831]    X.Org ANSI C Emulation: 0.4
  151. [ 16974.831]    X.Org Video Driver: 14.1
  152. [ 16974.831]    X.Org XInput driver : 19.1
  153. [ 16974.831]    X.Org Server Extension : 7.0
  154. [ 16974.832] (II) xfree86: Adding drm device (/dev/dri/card0)
  155. [ 16974.835] (--) PCI:*(0:1:0:0) 1002:4c57:1014:0527 rev 0, Mem @ 0xe0000000/134217728, 0xc0100000/65536, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
  156. [ 16974.836] Initializing built-in extension Generic Event Extension
  157. [ 16974.836] Initializing built-in extension SHAPE
  158. [ 16974.837] Initializing built-in extension MIT-SHM
  159. [ 16974.837] Initializing built-in extension XInputExtension
  160. [ 16974.837] Initializing built-in extension XTEST
  161. [ 16974.837] Initializing built-in extension BIG-REQUESTS
  162. [ 16974.838] Initializing built-in extension SYNC
  163. [ 16974.838] Initializing built-in extension XKEYBOARD
  164. [ 16974.838] Initializing built-in extension XC-MISC
  165. [ 16974.839] Initializing built-in extension SECURITY
  166. [ 16974.839] Initializing built-in extension XINERAMA
  167. [ 16974.839] Initializing built-in extension XFIXES
  168. [ 16974.840] Initializing built-in extension RENDER
  169. [ 16974.840] Initializing built-in extension RANDR
  170. [ 16974.840] Initializing built-in extension COMPOSITE
  171. [ 16974.841] Initializing built-in extension DAMAGE
  172. [ 16974.841] Initializing built-in extension MIT-SCREEN-SAVER
  173. [ 16974.841] Initializing built-in extension DOUBLE-BUFFER
  174. [ 16974.842] Initializing built-in extension RECORD
  175. [ 16974.842] Initializing built-in extension DPMS
  176. [ 16974.842] Initializing built-in extension X-Resource
  177. [ 16974.842] Initializing built-in extension XVideo
  178. [ 16974.842] Initializing built-in extension XVideo-MotionCompensation
  179. [ 16974.842] Initializing built-in extension XFree86-VidModeExtension
  180. [ 16974.842] Initializing built-in extension XFree86-DGA
  181. [ 16974.843] Initializing built-in extension XFree86-DRI
  182. [ 16974.843] Initializing built-in extension DRI2
  183. [ 16974.843] (II) "glx" will be loaded by default.
  184. [ 16974.843] (II) LoadModule: "dri2"
  185. [ 16974.843] (II) Module "dri2" already built-in
  186. [ 16974.844] (II) LoadModule: "glamoregl"
  187. [ 16974.844] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
  188. [ 16974.851] (II) Module glamoregl: vendor="X.Org Foundation"
  189. [ 16974.851]    compiled for 1.14.2, module version = 0.5.1
  190. [ 16974.851]    ABI class: X.Org ANSI C Emulation, version 0.4
  191. [ 16974.851] (II) LoadModule: "glx"
  192. [ 16974.852] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
  193. [ 16974.852] (II) Module glx: vendor="X.Org Foundation"
  194. [ 16974.852]    compiled for 1.14.2, module version = 1.0.0
  195. [ 16974.852]    ABI class: X.Org Server Extension, version 7.0
  196. [ 16974.852] (==) AIGLX enabled
  197. [ 16974.855] Loading extension GLX
  198. [ 16974.855] (==) Matched ati as autoconfigured driver 0
  199. [ 16974.855] (==) Matched ati as autoconfigured driver 1
  200. [ 16974.855] (==) Matched vesa as autoconfigured driver 2
  201. [ 16974.855] (==) Matched modesetting as autoconfigured driver 3
  202. [ 16974.855] (==) Matched fbdev as autoconfigured driver 4
  203. [ 16974.855] (==) Assigned the driver to the xf86ConfigLayout
  204. [ 16974.855] (II) LoadModule: "ati"
  205. [ 16974.855] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
  206. [ 16974.855] (II) Module ati: vendor="X.Org Foundation"
  207. [ 16974.855]    compiled for 1.14.2, module version = 7.2.0
  208. [ 16974.855]    Module class: X.Org Video Driver
  209. [ 16974.856]    ABI class: X.Org Video Driver, version 14.1
  210. [ 16974.856] (II) LoadModule: "radeon"
  211. [ 16974.856] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
  212. [ 16974.857] (II) Module radeon: vendor="X.Org Foundation"
  213. [ 16974.857]    compiled for 1.14.2, module version = 7.2.0
  214. [ 16974.857]    Module class: X.Org Video Driver
  215. [ 16974.857]    ABI class: X.Org Video Driver, version 14.1
  216. [ 16974.857] (II) LoadModule: "vesa"
  217. [ 16974.858] (WW) Warning, couldn't open module vesa
  218. [ 16974.858] (II) UnloadModule: "vesa"
  219. [ 16974.858] (II) Unloading vesa
  220. [ 16974.858] (EE) Failed to load module "vesa" (module does not exist, 0)
  221. [ 16974.858] (II) LoadModule: "modesetting"
  222. [ 16974.859] (WW) Warning, couldn't open module modesetting
  223. [ 16974.859] (II) UnloadModule: "modesetting"
  224. [ 16974.859] (II) Unloading modesetting
  225. [ 16974.859] (EE) Failed to load module "modesetting" (module does not exist, 0)
  226. [ 16974.859] (II) LoadModule: "fbdev"
  227. [ 16974.860] (WW) Warning, couldn't open module fbdev
  228. [ 16974.860] (II) UnloadModule: "fbdev"
  229. [ 16974.860] (II) Unloading fbdev
  230. [ 16974.860] (EE) Failed to load module "fbdev" (module does not exist, 0)
  231. [ 16974.860] (II) RADEON: Driver for ATI Radeon chipsets:
  232.     ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
  233.     ATI Radeon Mobility X300 (M24) 3152 (PCIE),
  234.     ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
  235.     ATI Radeon X600 (RV380) 3E50 (PCIE),
  236.     ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
  237.     ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
  238.     ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
  239.     ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
  240.     ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
  241.     ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
  242.     ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
  243.     ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
  244.     ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
  245.     ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
  246.     ATI Radeon IGP330M/340M/350M (U2) 4337,
  247.     ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
  248.     ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
  249.     ATI Radeon X800PRO (R420) JI (AGP),
  250.     ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
  251.     ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
  252.     ATI Radeon Mobility 9800 (M18) JN (AGP),
  253.     ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
  254.     ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
  255.     ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
  256.     ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
  257.     ATI Radeon Mobility M7 LW (AGP),
  258.     ATI Mobility FireGL 7800 M7 LX (AGP),
  259.     ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
  260.     ATI FireGL Mobility 9000 (M9) Ld (AGP),
  261.     ATI Radeon Mobility 9000 (M9) Lf (AGP),
  262.     ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
  263.     ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
  264.     ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
  265.     ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
  266.     ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
  267.     ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
  268.     ATI Radeon Mobility 9600 (M10) NQ (AGP),
  269.     ATI Radeon Mobility 9600 (M11) NR (AGP),
  270.     ATI Radeon Mobility 9600 (M10) NS (AGP),
  271.     ATI FireGL Mobility T2 (M10) NT (AGP),
  272.     ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
  273.     ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
  274.     ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
  275.     ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
  276.     ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
  277.     ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
  278.     ATI Radeon Mobility X300 (M22) 5460 (PCIE),
  279.     ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
  280.     ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
  281.     ATI Radeon X800PRO (R423) UI (PCIE),
  282.     ATI Radeon X800LE (R423) UJ (PCIE),
  283.     ATI Radeon X800SE (R423) UK (PCIE),
  284.     ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
  285.     ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
  286.     ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
  287.     ATI FireGL unknown (R423) UR (PCIE),
  288.     ATI FireGL unknown (R423) UT (PCIE),
  289.     ATI Mobility FireGL V5000 (M26) (PCIE),
  290.     ATI Mobility FireGL V5000 (M26) (PCIE),
  291.     ATI Mobility Radeon X700 XL (M26) (PCIE),
  292.     ATI Mobility Radeon X700 (M26) (PCIE),
  293.     ATI Mobility Radeon X700 (M26) (PCIE),
  294.     ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
  295.     ATI Radeon Mobility 9100 IGP (U3) 5835,
  296.     ATI Radeon XPRESS 200 5954 (PCIE),
  297.     ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
  298.     ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
  299.     ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
  300.     ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
  301.     ATI Radeon XPRESS 200M 5975 (PCIE),
  302.     ATI Radeon XPRESS 200 5A41 (PCIE),
  303.     ATI Radeon XPRESS 200M 5A42 (PCIE),
  304.     ATI Radeon XPRESS 200 5A61 (PCIE),
  305.     ATI Radeon XPRESS 200M 5A62 (PCIE),
  306.     ATI Radeon X300 (RV370) 5B60 (PCIE),
  307.     ATI Radeon X600 (RV370) 5B62 (PCIE),
  308.     ATI Radeon X550 (RV370) 5B63 (PCIE),
  309.     ATI FireGL V3100 (RV370) 5B64 (PCIE),
  310.     ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
  311.     ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
  312.     ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
  313.     ATI Mobility Radeon X800 XT (M28) (PCIE),
  314.     ATI Mobility FireGL V5100 (M28) (PCIE),
  315.     ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
  316.     ATI Radeon X850 XT PE (R480) (PCIE),
  317.     ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
  318.     ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
  319.     ATI Radeon X850 XT (R480) (PCIE),
  320.     ATI Radeon X800XT (R423) 5D57 (PCIE),
  321.     ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
  322.     ATI Radeon X700 PRO (RV410) (PCIE),
  323.     ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
  324.     ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
  325.     ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
  326.     ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
  327.     ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
  328.     ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
  329.     ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
  330.     ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
  331.     ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
  332.     ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
  333.     ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
  334.     ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
  335.     ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
  336.     ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
  337.     ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
  338.     ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
  339.     ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
  340.     ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
  341.     ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
  342.     ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
  343.     ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
  344.     ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
  345.     ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
  346.     ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
  347.     ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
  348.     ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
  349.     ATI Mobility Radeon X1700, ATI Radeon X2300HD,
  350.     ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
  351.     ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
  352.     ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
  353.     ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
  354.     ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
  355.     ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
  356.     ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
  357.     ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
  358.     ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
  359.     ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
  360.     ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
  361.     ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
  362.     ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
  363.     ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
  364.     ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
  365.     ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
  366.     ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
  367.     ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
  368.     ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
  369.     ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
  370.     AMD FireStream 9250, ATI FirePro V8700 (FireGL),
  371.     ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
  372.     ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
  373.     ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
  374.     ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
  375.     ATI Mobility Radeon HD 4670, ATI FirePro M5750,
  376.     ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
  377.     ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
  378.     ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
  379.     ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
  380.     ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
  381.     ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
  382.     ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
  383.     ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
  384.     ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
  385.     ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
  386.     ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
  387.     ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
  388.     ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
  389.     ATI Mobility Radeon HD 3850 X2, ATI RV670,
  390.     ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
  391.     ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
  392.     ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
  393.     ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
  394.     ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
  395.     ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
  396.     ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
  397.     ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
  398.     ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
  399.     ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
  400.     ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
  401.     ATI FireGL V3600, ATI Radeon HD 2600 LE,
  402.     ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
  403.     ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
  404.     ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
  405.     ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
  406.     ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
  407.     ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
  408.     ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
  409.     ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
  410.     ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
  411.     ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
  412.     ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
  413.     ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
  414.     ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
  415.     SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
  416.     ATI Radeon 4100, ATI Mobility Radeon HD 4200,
  417.     ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
  418.     AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
  419.     AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
  420.     AMD Radeon HD 6300 Series Graphics,
  421.     AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
  422.     ATI FirePro (FireGL) Graphics Adapter,
  423.     ATI FirePro (FireGL) Graphics Adapter,
  424.     ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
  425.     AMD Firestream 9350, ATI Radeon HD 5800 Series,
  426.     ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
  427.     ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
  428.     ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
  429.     ATI Mobility Radeon HD 5800 Series,
  430.     ATI FirePro (FireGL) Graphics Adapter,
  431.     ATI FirePro (FireGL) Graphics Adapter,
  432.     ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
  433.     ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
  434.     ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
  435.     ATI Mobility Radeon HD 5000 Series,
  436.     ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
  437.     ATI FirePro (FireGL) Graphics Adapter,
  438.     ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
  439.     ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
  440.     ATI Mobility Radeon HD 5000 Series,
  441.     ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
  442.     ATI Mobility Radeon Graphics, CEDAR,
  443.     ATI FirePro (FireGL) Graphics Adapter,
  444.     ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
  445.     ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
  446.     CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
  447.     AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
  448.     CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
  449.     BARTS, BARTS, Mobility Radeon HD 6000 Series,
  450.     Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
  451.     AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
  452.     AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
  453.     TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
  454.     TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
  455.     CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
  456.     CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
  457.     ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
  458.     ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
  459.     ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
  460.     ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
  461.     TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
  462.     TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
  463.     PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
  464.     VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
  465.     VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
  466.     VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
  467.     OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
  468.     HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
  469.     BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
  470.     KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
  471.     KABINI, KABINI, KABINI
  472. [ 16974.876] (++) using VT number 1
  473.  
  474. [ 16974.877] (II) [KMS] Kernel modesetting enabled.
  475. [ 16974.877] (II) RADEON(0): Creating default Display subsection in Screen section
  476.     "Default Screen Section" for depth/fbbpp 24/32
  477. [ 16974.877] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
  478. [ 16974.877] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
  479. [ 16974.877] (==) RADEON(0): Default visual is TrueColor
  480. [ 16974.877] (==) RADEON(0): RGB weight 888
  481. [ 16974.877] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
  482. [ 16974.877] (--) RADEON(0): Chipset: "ATI Radeon Mobility M7 LW (AGP)" (ChipID = 0x4c57)
  483. [ 16974.878] (II) Loading sub module "dri2"
  484. [ 16974.878] (II) LoadModule: "dri2"
  485. [ 16974.878] (II) Module "dri2" already built-in
  486. [ 16974.878] (II) Loading sub module "exa"
  487. [ 16974.878] (II) LoadModule: "exa"
  488. [ 16974.878] (II) Loading /usr/lib/xorg/modules/libexa.so
  489. [ 16974.878] (II) Module exa: vendor="X.Org Foundation"
  490. [ 16974.878]    compiled for 1.14.2, module version = 2.6.0
  491. [ 16974.879]    ABI class: X.Org Video Driver, version 14.1
  492. [ 16974.879] (II) RADEON(0): KMS Color Tiling: disabled
  493. [ 16974.879] (II) RADEON(0): KMS Color Tiling 2D: disabled
  494. [ 16974.879] (II) RADEON(0): KMS Pageflipping: enabled
  495. [ 16974.879] (II) RADEON(0): SwapBuffers wait for vsync: enabled
  496. [ 16974.885] (II) RADEON(0): Output VGA-0 has no monitor section
  497. [ 16974.885] (II) RADEON(0): Output LVDS has no monitor section
  498. [ 16974.892] (II) RADEON(0): Output S-video has no monitor section
  499. [ 16974.898] (II) RADEON(0): EDID for output VGA-0
  500. [ 16974.898] (II) RADEON(0): EDID for output LVDS
  501. [ 16974.898] (II) RADEON(0): Printing probed modes for output LVDS
  502. [ 16974.898] (II) RADEON(0): Modeline "1024x768"x60.0   65.00  1024 1040 1176 1344  768 770 776 806 (48.4 kHz eP)
  503. [ 16974.898] (II) RADEON(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
  504. [ 16974.898] (II) RADEON(0): Modeline "848x480"x59.7   31.50  848 872 952 1056  480 483 493 500 -hsync +vsync (29.8 kHz)
  505. [ 16974.898] (II) RADEON(0): Modeline "720x480"x59.7   26.75  720 744 808 896  480 483 493 500 -hsync +vsync (29.9 kHz)
  506. [ 16974.898] (II) RADEON(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
  507. [ 16974.905] (II) RADEON(0): EDID for output S-video
  508. [ 16974.916] (II) RADEON(0): Output VGA-0 disconnected
  509. [ 16974.916] (II) RADEON(0): Output LVDS connected
  510. [ 16974.916] (II) RADEON(0): Output S-video disconnected
  511. [ 16974.916] (II) RADEON(0): Using exact sizes for initial modes
  512. [ 16974.916] (II) RADEON(0): Output LVDS using initial mode 1024x768
  513. [ 16974.916] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
  514. [ 16974.916] (II) RADEON(0): mem size init: gart size :fdff000 vram size: s:2000000 visible:1f00000
  515. [ 16974.916] (II) RADEON(0): EXA: Driver will not allow EXA pixmaps in VRAM
  516. [ 16974.916] (==) RADEON(0): DPI set to (96, 96)
  517. [ 16974.916] (II) Loading sub module "fb"
  518. [ 16974.916] (II) LoadModule: "fb"
  519. [ 16974.917] (II) Loading /usr/lib/xorg/modules/libfb.so
  520. [ 16974.917] (II) Module fb: vendor="X.Org Foundation"
  521. [ 16974.917]    compiled for 1.14.2, module version = 1.0.0
  522. [ 16974.917]    ABI class: X.Org ANSI C Emulation, version 0.4
  523. [ 16974.917] (II) Loading sub module "ramdac"
  524. [ 16974.918] (II) LoadModule: "ramdac"
  525. [ 16974.918] (II) Module "ramdac" already built-in
  526. [ 16974.918] (--) Depth 24 pixmap format is 32 bpp
  527. [ 16974.918] (II) RADEON(0): [DRI2] Setup complete
  528. [ 16974.918] (II) RADEON(0): [DRI2]   DRI driver: radeon
  529. [ 16974.918] (II) RADEON(0): [DRI2]   VDPAU driver: radeon
  530. [ 16974.918] (II) RADEON(0): Front buffer size: 3072K
  531. [ 16974.918] (II) RADEON(0): VRAM usage limit set to 25776K
  532. [ 16974.919] (==) RADEON(0): Backing store disabled
  533. [ 16974.919] (II) RADEON(0): Direct rendering enabled
  534. [ 16974.919] (II) RADEON(0): Render acceleration enabled for R100 type cards.
  535. [ 16974.919] (II) EXA(0): Driver allocated offscreen pixmaps
  536. [ 16974.919] (II) EXA(0): Driver registered support for the following operations:
  537. [ 16974.919] (II)         Solid
  538. [ 16974.919] (II)         Copy
  539. [ 16974.919] (II)         Composite (RENDER acceleration)
  540. [ 16974.919] (II)         UploadToScreen
  541. [ 16974.919] (II)         DownloadFromScreen
  542. [ 16974.919] (II) RADEON(0): Acceleration enabled
  543. [ 16974.919] (==) RADEON(0): DPMS enabled
  544. [ 16974.919] (==) RADEON(0): Silken mouse enabled
  545. [ 16974.919] (II) RADEON(0): Set up textured video
  546. [ 16974.919] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
  547. [ 16974.919] (II) RADEON(0): [XvMC] Extension initialized.
  548. [ 16974.919] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
  549. [ 16974.920] (--) RandR disabled
  550. [ 16974.983] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
  551. [ 16974.983] (II) AIGLX: enabled GLX_INTEL_swap_event
  552. [ 16974.983] (II) AIGLX: enabled GLX_ARB_create_context
  553. [ 16974.983] (II) AIGLX: enabled GLX_ARB_create_context_profile
  554. [ 16974.983] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
  555. [ 16974.983] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
  556. [ 16974.983] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
  557. [ 16974.984] (II) AIGLX: Loaded and initialized radeon
  558. [ 16974.984] (II) GLX: Initialized DRI2 GL provider for screen 0
  559. [ 16975.036] (II) RADEON(0): Setting screen physical size to 270 x 203
  560. [ 16975.333] (II) config/udev: Adding input device Power Button (/dev/input/event3)
  561. [ 16975.333] (**) Power Button: Applying InputClass "evdev keyboard catchall"
  562. [ 16975.333] (**) Power Button: Applying InputClass "Keyboard Defaults"
  563. [ 16975.333] (II) LoadModule: "evdev"
  564. [ 16975.334] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
  565. [ 16975.335] (II) Module evdev: vendor="X.Org Foundation"
  566. [ 16975.335]    compiled for 1.14.2, module version = 2.8.1
  567. [ 16975.335]    Module class: X.Org XInput Driver
  568. [ 16975.335]    ABI class: X.Org XInput driver, version 19.1
  569. [ 16975.335] (II) Using input driver 'evdev' for 'Power Button'
  570. [ 16975.335] (**) Power Button: always reports core events
  571. [ 16975.335] (**) evdev: Power Button: Device: "/dev/input/event3"
  572. [ 16975.335] (--) evdev: Power Button: Vendor 0 Product 0x1
  573. [ 16975.335] (--) evdev: Power Button: Found keys
  574. [ 16975.335] (II) evdev: Power Button: Configuring as keyboard
  575. [ 16975.335] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
  576. [ 16975.335] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
  577. [ 16975.335] (**) Option "xkb_rules" "evdev"
  578. [ 16975.335] (**) Option "xkb_model" "pc104"
  579. [ 16975.335] (**) Option "xkb_layout" "us"
  580. [ 16975.335] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
  581. [ 16975.440] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
  582. [ 16975.440] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
  583. [ 16975.440] (**) Video Bus: Applying InputClass "Keyboard Defaults"
  584. [ 16975.440] (II) Using input driver 'evdev' for 'Video Bus'
  585. [ 16975.440] (**) Video Bus: always reports core events
  586. [ 16975.440] (**) evdev: Video Bus: Device: "/dev/input/event4"
  587. [ 16975.440] (--) evdev: Video Bus: Vendor 0 Product 0x6
  588. [ 16975.440] (--) evdev: Video Bus: Found keys
  589. [ 16975.440] (II) evdev: Video Bus: Configuring as keyboard
  590. [ 16975.440] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input4/event4"
  591. [ 16975.440] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
  592. [ 16975.440] (**) Option "xkb_rules" "evdev"
  593. [ 16975.440] (**) Option "xkb_model" "pc104"
  594. [ 16975.441] (**) Option "xkb_layout" "us"
  595. [ 16975.441] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
  596. [ 16975.442] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
  597. [ 16975.442] (II) No input driver specified, ignoring this device.
  598. [ 16975.442] (II) This device may have been added with another device file.
  599. [ 16975.443] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
  600. [ 16975.443] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
  601. [ 16975.443] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
  602. [ 16975.443] (II) Using input driver 'evdev' for 'Sleep Button'
  603. [ 16975.444] (**) Sleep Button: always reports core events
  604. [ 16975.444] (**) evdev: Sleep Button: Device: "/dev/input/event2"
  605. [ 16975.444] (--) evdev: Sleep Button: Vendor 0 Product 0x3
  606. [ 16975.444] (--) evdev: Sleep Button: Found keys
  607. [ 16975.444] (II) evdev: Sleep Button: Configuring as keyboard
  608. [ 16975.444] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2/event2"
  609. [ 16975.444] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
  610. [ 16975.444] (**) Option "xkb_rules" "evdev"
  611. [ 16975.444] (**) Option "xkb_model" "pc104"
  612. [ 16975.444] (**) Option "xkb_layout" "us"
  613. [ 16975.444] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
  614. [ 16975.445] (II) config/udev: Adding drm device (/dev/dri/card0)
  615. [ 16975.447] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
  616. [ 16975.447] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
  617. [ 16975.447] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
  618. [ 16975.447] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
  619. [ 16975.447] (**) AT Translated Set 2 keyboard: always reports core events
  620. [ 16975.447] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
  621. [ 16975.447] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
  622. [ 16975.447] (--) evdev: AT Translated Set 2 keyboard: Found keys
  623. [ 16975.447] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
  624. [ 16975.447] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
  625. [ 16975.447] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
  626. [ 16975.447] (**) Option "xkb_rules" "evdev"
  627. [ 16975.447] (**) Option "xkb_model" "pc104"
  628. [ 16975.447] (**) Option "xkb_layout" "us"
  629. [ 16975.447] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
  630. [ 16975.449] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
  631. [ 16975.449] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
  632. [ 16975.449] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
  633. [ 16975.449] (II) LoadModule: "synaptics"
  634. [ 16975.450] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
  635. [ 16975.450] (II) Module synaptics: vendor="X.Org Foundation"
  636. [ 16975.450]    compiled for 1.14.1, module version = 1.7.1
  637. [ 16975.450]    Module class: X.Org XInput Driver
  638. [ 16975.451]    ABI class: X.Org XInput driver, version 19.1
  639. [ 16975.451] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
  640. [ 16975.451] (**) SynPS/2 Synaptics TouchPad: always reports core events
  641. [ 16975.451] (**) Option "Device" "/dev/input/event7"
  642. [ 16975.578] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472 (res 88)
  643. [ 16975.578] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448 (res 110)
  644. [ 16975.578] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
  645. [ 16975.578] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
  646. [ 16975.578] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
  647. [ 16975.578] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
  648. [ 16975.579] (**) Option "TapButton1" "0"
  649. [ 16975.579] (**) Option "TapButton2" "0"
  650. [ 16975.579] (**) Option "TapButton3" "0"
  651. [ 16975.579] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
  652. [ 16975.579] (**) SynPS/2 Synaptics TouchPad: always reports core events
  653. [ 16975.645] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event7"
  654. [ 16975.645] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
  655. [ 16975.645] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
  656. [ 16975.645] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
  657. [ 16975.645] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
  658. [ 16975.646] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
  659. [ 16975.646] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
  660. [ 16975.646] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
  661. [ 16975.646] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
  662. [ 16975.646] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
  663. [ 16975.647] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
  664. [ 16975.647] (II) No input driver specified, ignoring this device.
  665. [ 16975.647] (II) This device may have been added with another device file.
  666. [ 16975.648] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event8)
  667. [ 16975.648] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
  668. [ 16975.648] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
  669. [ 16975.648] (**) TPPS/2 IBM TrackPoint: always reports core events
  670. [ 16975.648] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event8"
  671. [ 16975.648] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
  672. [ 16975.648] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
  673. [ 16975.648] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
  674. [ 16975.648] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
  675. [ 16975.648] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
  676. [ 16975.648] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
  677. [ 16975.649] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
  678. [ 16975.649] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input8/event8"
  679. [ 16975.649] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 11)
  680. [ 16975.649] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
  681. [ 16975.649] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
  682. [ 16975.649] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
  683. [ 16975.649] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
  684. [ 16975.649] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
  685. [ 16975.650] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
  686. [ 16975.650] (II) No input driver specified, ignoring this device.
  687. [ 16975.650] (II) This device may have been added with another device file.
  688. [ 16975.651] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
  689. [ 16975.651] (II) No input driver specified, ignoring this device.
  690. [ 16975.651] (II) This device may have been added with another device file.
  691. [ 16975.653] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event5)
  692. [ 16975.653] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
  693. [ 16975.653] (**) ThinkPad Extra Buttons: Applying InputClass "Keyboard Defaults"
  694. [ 16975.653] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
  695. [ 16975.653] (**) ThinkPad Extra Buttons: always reports core events
  696. [ 16975.653] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event5"
  697. [ 16975.653] (--) evdev: ThinkPad Extra Buttons: Vendor 0x1014 Product 0x5054
  698. [ 16975.653] (--) evdev: ThinkPad Extra Buttons: Found keys
  699. [ 16975.653] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
  700. [ 16975.653] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event5"
  701. [ 16975.653] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 12)
  702. [ 16975.653] (**) Option "xkb_rules" "evdev"
  703. [ 16975.653] (**) Option "xkb_model" "pc104"
  704. [ 16975.653] (**) Option "xkb_layout" "us"
  705. [ 16975.654] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
  706. [ 16977.566] (II) Server zapped. Shutting down.
  707. [ 16977.953] (II) evdev: ThinkPad Extra Buttons: Close
  708. [ 16977.953] (II) UnloadModule: "evdev"
  709. [ 16977.953] (II) evdev: TPPS/2 IBM TrackPoint: Close
  710. [ 16977.953] (II) UnloadModule: "evdev"
  711. [ 16977.953] (II) UnloadModule: "synaptics"
  712. [ 16977.953] (II) evdev: AT Translated Set 2 keyboard: Close
  713. [ 16977.954] (II) UnloadModule: "evdev"
  714. [ 16977.954] (II) evdev: Sleep Button: Close
  715. [ 16977.954] (II) UnloadModule: "evdev"
  716. [ 16977.954] (II) evdev: Video Bus: Close
  717. [ 16977.954] (II) UnloadModule: "evdev"
  718. [ 16977.954] (II) evdev: Power Button: Close
  719. [ 16977.954] (II) UnloadModule: "evdev"
  720. [ 16977.997] (EE) Server terminated successfully (0). Closing log file.
  721. -------------------------------------------------------------------
  722. 4) startx output
  723. [root@frylock ~]# startx
  724.  
  725.  
  726. X.Org X Server 1.14.2
  727. Release Date: 2013-06-25
  728. X Protocol Version 11, Revision 0
  729. Build Operating System: Linux 3.9.7-1-ARCH i686
  730. Current Operating System: Linux frylock 3.10.9-1-ARCH #1 SMP PREEMPT Wed Aug 21 14:37:01 CEST 2013 i686
  731. Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/cryptVG-root rw cryptdevice=/dev/sda3:cryptVG root=/dev/mapper/cryptVG-root resume=/dev/mapper/cryptVG-swap floppy.allowed_drive_mask=0
  732. Build Date: 01 July 2013  10:52:25AM
  733.  
  734. Current version of pixman: 0.30.2
  735.     Before reporting problems, check http://wiki.x.org
  736.     to make sure that you have the latest version.
  737. Markers: (--) probed, (**) from config file, (==) default setting,
  738.     (++) from command line, (!!) notice, (II) informational,
  739.     (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
  740. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep  4 06:31:53 2013
  741. (==) Using config directory: "/etc/X11/xorg.conf.d"
  742. (==) Using system config directory "/usr/share/X11/xorg.conf.d"
  743. Initializing built-in extension Generic Event Extension
  744. Initializing built-in extension SHAPE
  745. Initializing built-in extension MIT-SHM
  746. Initializing built-in extension XInputExtension
  747. Initializing built-in extension XTEST
  748. Initializing built-in extension BIG-REQUESTS
  749. Initializing built-in extension SYNC
  750. Initializing built-in extension XKEYBOARD
  751. Initializing built-in extension XC-MISC
  752. Initializing built-in extension SECURITY
  753. Initializing built-in extension XINERAMA
  754. Initializing built-in extension XFIXES
  755. Initializing built-in extension RENDER
  756. Initializing built-in extension RANDR
  757. Initializing built-in extension COMPOSITE
  758. Initializing built-in extension DAMAGE
  759. Initializing built-in extension MIT-SCREEN-SAVER
  760. Initializing built-in extension DOUBLE-BUFFER
  761. Initializing built-in extension RECORD
  762. Initializing built-in extension DPMS
  763. Initializing built-in extension X-Resource
  764. Initializing built-in extension XVideo
  765. Initializing built-in extension XVideo-MotionCompensation
  766. Initializing built-in extension XFree86-VidModeExtension
  767. Initializing built-in extension XFree86-DGA
  768. Initializing built-in extension XFree86-DRI
  769. Initializing built-in extension DRI2
  770. Loading extension GLX
  771. (II) [KMS] Kernel modesetting enabled.
  772. XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
  773.  
  774.      after 359 requests (222 known processed) with 0 events remaining.
  775.  
  776. xinit: connection to X server lost
  777.  
  778.  
  779. waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement