[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#578243: marked as done (Impossible to change bell pitch)



Your message dated Sun, 30 Jan 2011 06:07:30 +0100
with message-id <20110130050730.GA28584@debian.org>
and subject line Re: Bug#578243: patch
has caused the Debian Bug report #578243,
regarding Impossible to change bell pitch
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
578243: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578243
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-core
Version: 2:1.7.6-2
Severity: normal

Hi.

With xorg-xserver around 1.7, changes to the keyboard bell have no effect.

Steps to reproduce:

  1. Start a fresh X.org server:

  xinit /usr/bin/xterm -- :1

  2. Play the bell:

  xset b 50 400; printf '\a'

  3. Repeat with 800 instead of 400.

  Expected result: bell of a different pitch.
  Actual result: bell of the same pitch.

Suggested fix: the simple patch below fixes the problem.

Explanation: the pitch change is done to "virtual core keyboard" but not to
"virtual core keyboard XTEST". The servers then plays two bells, one with
the altered pitch and one with the default pitch. As the PC speaker can only
play one sound, the second one takes precedence.

This patch makes the use of IsMaster consistent with other similar loops in
the same source file. Furthermore, the current version is absurd, as
keyboard = PickKeyboard(client) is always a master keyboard.

Regards,

-- 
  Nicolas George

---------------------------------------------------------------------------

diff -ru xorg-server.orig/dix/devices.c xorg-server/dix/devices.c
--- xorg-server.orig/dix/devices.c	2010-03-12 05:38:21.000000000 +0100
+++ xorg-server/dix/devices.c	2010-04-18 10:02:38.000000000 +0200
@@ -1956,7 +1956,7 @@
     keyboard = PickKeyboard(client);
 
     for (pDev = inputInfo.devices; pDev; pDev = pDev->next) {
-        if ((pDev == keyboard || (!IsMaster(keyboard) && pDev->u.master == keyboard)) &&
+        if ((pDev == keyboard || (!IsMaster(pDev) && pDev->u.master == keyboard)) &&
             pDev->kbdfeed && pDev->kbdfeed->CtrlProc) {
             ret = XaceHook(XACE_DEVICE_ACCESS, client, pDev, DixManageAccess);
 	    if (ret != Success)
@@ -1965,7 +1965,7 @@
     }
 
     for (pDev = inputInfo.devices; pDev; pDev = pDev->next) {
-        if ((pDev == keyboard || (!IsMaster(keyboard) && pDev->u.master == keyboard)) &&
+        if ((pDev == keyboard || (!IsMaster(pDev) && pDev->u.master == keyboard)) &&
             pDev->kbdfeed && pDev->kbdfeed->CtrlProc) {
             ret = DoChangeKeyboardControl(client, pDev, vlist, vmask);
             if (ret != Success)

---------------------------------------------------------------------------


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Sep 26  2007 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1877152 Apr 18 10:28 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility X700 (PCIE)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 8395 Dec 18 20:31 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
###########################################################################
# Software configuration
###########################################################################

Section "Files"
	FontPath	"/usr/share/fonts/X11/misc"
	FontPath	"/usr/share/fonts/X11/100dpi/:unscaled"
	FontPath	"/usr/share/fonts/X11/75dpi/:unscaled"
	FontPath	"/usr/share/fonts/X11/Type1"
	FontPath	"/usr/share/fonts/X11/CID"
	FontPath	"/usr/share/fonts/X11/100dpi"
	FontPath	"/usr/share/fonts/X11/75dpi"
        # paths to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
	#ModulePath	"/opt/xf86-video-ati-20080719/lib/xorg/modules,/usr/lib/xorg/modules"
EndSection

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"GLcore"
	Load	"dri"
	Load	"glx"
	Load	"extmod"
	Load	"freetype"
	#Load	"int10"
	Load	"type1"
	Load	"vbe"
	Load	"xtrap"
	Load	"record"
	SubSection  "extmod"
		Option    "omit xfree86-dga"
	EndSubSection
EndSection

Section "Extensions"
	Option		"Composite"	"Enable"
EndSection

Section "ServerFlags"
	Option		"AutoAddDevices" "false"
EndSection

###########################################################################
# Input devices
###########################################################################

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"fr"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"CorePointer"
	#Option		"Device"		"/dev/input/event5"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
	Option		"SHMConfig"		"on"
	Option		"TapButton1"		"1"
	Option		"RTCornerButton"	"2"
	Option		"AreaRightEdge"		"5420"
	Option		"AreaTopEdge"		"1800"
EndSection

Section "InputDevice"
	Identifier	"Generic Mouse"
	Driver		"mouse"
	Option		"SendCoreEvents"	"true"
	#Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"false"
	Option		"ZAxisMapping"		"4 5"
EndSection

###########################################################################
# Output devices
###########################################################################

Section "Device"
	Identifier	"ATI Card"
	Driver		"ati"
	VendorName	"ATI Technologies Inc"
	BoardName	"Radeon Mobility X700 (PCIE)"
	BusID		"PCI:1:0:0"
	#Option		"MonitorLayout"		"LVDS, NONE"
	Option		"AccelMethod"		"EXA"
	#Option		"AccelMethod"		"XAA"
EndSection

Section "Device"
	Identifier	"ATI Card for Compiz"
	Driver		"ati"
	VendorName	"ATI Technologies Inc"
	BoardName	"Radeon Mobility X700 (PCIE)"
	BusID		"PCI:1:0:0"
	Option		"MonitorLayout"		"LVDS, NONE"
	#Option		"AccelMethod"		"EXA"
	Option		"XAANoOffscreenPixmaps"	"true"
EndSection

Section "Device"
	Identifier	"FGLRX Card"
	Driver		"fglrx"
	#Option		"NoDDC"
	#Option		"MonitorLayout"		"LVDS,CRT"
	#Option		"PanelSize"		"1680x1050"
	Option		"no_accel"		"no"
	Option		"no_dri"		"no"
	Option		"mtrr"			"off"
	Option		"DesktopSetup"		"Single"
	Option		"ScreenOverlap"     	"0" 
	Option		"GammaCorrectionI"	"0x06419064"
	Option		"GammaCorrectionII"	"0x06419064"
	Option		"Capabilities"      	"0x00000000"
	Option		"CapabilitiesEx"    	"0x00000000"
	Option		"VideoOverlay"      	"on"
	Option		"OpenGLOverlay"     	"off"
	Option		"CenterMode"        	"off"
	Option		"PseudoColorVisuals"	"off"
	Option		"Stereo"            	"off"
	Option		"StereoSyncEnable"  	"1"
	Option		"FSAAEnable"        	"no"
	Option		"FSAAScale"         	"1"
	Option		"FSAADisableGamma"  	"no"
	Option		"FSAACustomizeMSPos"	"no"
	Option		"FSAAMSPosX0"       	"0.000000"
	Option		"FSAAMSPosY0"       	"0.000000"
	Option		"FSAAMSPosX1"       	"0.000000"
	Option		"FSAAMSPosY1"       	"0.000000"
	Option		"FSAAMSPosX2"       	"0.000000"
	Option		"FSAAMSPosY2"       	"0.000000"
	Option		"FSAAMSPosX3"       	"0.000000"
	Option		"FSAAMSPosY3"       	"0.000000"
	Option		"FSAAMSPosX4"       	"0.000000"
	Option		"FSAAMSPosY4"       	"0.000000"
	Option		"FSAAMSPosX5"       	"0.000000"
	Option		"FSAAMSPosY5"       	"0.000000"
	Option		"UseFastTLS"        	"0"
	Option		"BlockSignalsOnLock"	"on"
	Option		"UseInternalAGPGART"	"yes"
	Option		"ForceGenericCPU"   	"no"
	BusID		"PCI:1:0:0"
	Screen 0
EndSection

Section "Device"
	Identifier	"FGLRX Card Second Monitor"
	Driver		"fglrx"
	#Option		"NoDDC"
	#Option		"MonitorLayout"		"LVDS,CRT"
	#Option		"PanelSize"		"1680x1050"
	Option		"no_accel"		"no"
	Option		"no_dri"		"no"
	Option		"mtrr"			"off"
	Option		"DesktopSetup"		"Single,Reverse"
	Option		"ScreenOverlap"     	"0" 
	Option		"GammaCorrectionI"	"0x06419064"
	Option		"GammaCorrectionII"	"0x06419064"
	Option		"Capabilities"      	"0x00000000"
	Option		"CapabilitiesEx"    	"0x00000000"
	Option		"VideoOverlay"      	"on"
	Option		"OpenGLOverlay"     	"off"
	Option		"CenterMode"        	"off"
	Option		"PseudoColorVisuals"	"off"
	Option		"Stereo"            	"off"
	Option		"StereoSyncEnable"  	"1"
	Option		"FSAAEnable"        	"no"
	Option		"FSAAScale"         	"1"
	Option		"FSAADisableGamma"  	"no"
	Option		"FSAACustomizeMSPos"	"no"
	Option		"FSAAMSPosX0"       	"0.000000"
	Option		"FSAAMSPosY0"       	"0.000000"
	Option		"FSAAMSPosX1"       	"0.000000"
	Option		"FSAAMSPosY1"       	"0.000000"
	Option		"FSAAMSPosX2"       	"0.000000"
	Option		"FSAAMSPosY2"       	"0.000000"
	Option		"FSAAMSPosX3"       	"0.000000"
	Option		"FSAAMSPosY3"       	"0.000000"
	Option		"FSAAMSPosX4"       	"0.000000"
	Option		"FSAAMSPosY4"       	"0.000000"
	Option		"FSAAMSPosX5"       	"0.000000"
	Option		"FSAAMSPosY5"       	"0.000000"
	Option		"UseFastTLS"        	"0"
	Option		"BlockSignalsOnLock"	"on"
	Option		"UseInternalAGPGART"	"yes"
	Option		"ForceGenericCPU"   	"no"
	BusID		"PCI:1:0:0"
	Screen 0
EndSection

Section "Device"
	Identifier	"VESA Card"
	Driver		"vesa"
EndSection

Section "Monitor"
	Identifier	"LCD Monitor"
	Option		"DPMS"
	DisplaySize	330 206
EndSection

###########################################################################
# Screens and layouts
###########################################################################

Section "Screen"
	Identifier	"ATI Screen"
	Device		"ATI Card"
	#Monitor		"LCD Monitor"
	Option		"Monitor-LVDS" "LCD Monitor"
	DefaultDepth	24
	Subsection "Display"
		Depth	24
		Modes	"1680x1050" "1280x800"
		#Virtual	4080 4080 # maximum synchro
		#Virtual	3968 4080 # maximum je-sais-plus-quoi
		Virtual	3600 1200 # 1680+1920  1200
		#Virtual	1920 2250 # 1920  1050+1200
	EndSubsection
EndSection

Section "Screen"
	Identifier	"ATI Screen for Compiz"
	Device		"ATI Card for Compiz"
	Monitor		"LCD Monitor"
	DefaultDepth	24
	Subsection "Display"
		Depth	24
		Modes	"1680x1050" "1280x800"
	EndSubsection
EndSection

Section "Screen"
	Identifier	"FGLRX Screen"
	Device		"FGLRX Card"
	Monitor		"LCD Monitor"
	DefaultDepth	24
	Subsection "Display"
		Depth	24
		Modes	"1680x1050" "1280x800"
		#Modes	"1280x1024"
	EndSubsection
EndSection

Section "Screen"
	Identifier	"FGLRX Screen Second Monitor"
	Device		"FGLRX Card Second Monitor"
	Monitor		"LCD Monitor"
	DefaultDepth	24
	Subsection "Display"
		Depth	24
		Modes	"1280x1024"
	EndSubsection
EndSection

Section "Screen"
	Identifier	"VESA Screen"
	Device		"VESA Card"
	Monitor		"LCD Monitor"
	DefaultDepth	24
	SubSection "Display"
		Depth	24
		Modes	"1680x1050" "1400x1050" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"ATI"
	Screen		"ATI Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Synaptics Touchpad"
	InputDevice	"Generic Mouse"
EndSection

Section "ServerLayout"
	Identifier	"ATI_for_Compiz"
	Screen		"ATI Screen for Compiz"
	InputDevice	"Generic Keyboard"
	InputDevice	"Synaptics Touchpad"
	InputDevice	"Generic Mouse"
EndSection

Section "ServerLayout"
	Identifier	"FGLRX"
	Screen		"FGLRX Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Synaptics Touchpad"
	InputDevice	"Generic Mouse"
EndSection

Section "ServerLayout"
	Identifier	"FGLRX2"
	Screen		"FGLRX Screen Second Monitor"
	InputDevice	"Generic Keyboard"
	InputDevice	"Synaptics Touchpad"
	InputDevice	"Generic Mouse"
EndSection

Section "ServerLayout"
	Identifier	"VESA"
	Screen		"VESA Screen"
	InputDevice	"Generic Keyboard"
	#InputDevice	"Synaptics Touchpad"
	InputDevice	"Generic Mouse"
EndSection

Section "DRI"
	Mode	0666
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 42816 Dec 16  2007 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 41607 Apr 18 10:30 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30.5-she-seel x86_64 Debian
Current Operating System: Linux she-seel 2.6.30.5-she-seel #3 PREEMPT Mon Aug 24 15:29:32 CEST 2009 x86_64
Kernel command line: root=/dev/hda1
Build Date: 18 April 2010  10:13:38AM
xorg-server 2:1.7.6-2 (Timo Aaltonen <tjaalton@ubuntu.com>) 
Current version of pixman: 0.16.4
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 18 10:30:55 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "ATI"
(**) |-->Screen "ATI Screen" (0)
(**) |   |-->Monitor "<default monitor>"
(**) |   |-->Device "ATI Card"
(==) No monitor specified for screen "ATI Screen".
	Using a default monitor configuration.
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Synaptics Touchpad"
(**) |-->Input Device "Generic Mouse"
(**) Option "AutoAddDevices" "false"
(**) Not automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/CID" does not exist.
	Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID".
	Entry deleted from font path.
	(Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID").
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
	Entry deleted from font path.
(**) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is enabled
(II) Loader magic: 0x7c51a0
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.4
	X.Org Video Driver: 6.0
	X.Org XInput driver : 7.0
	X.Org Server Extension : 2.0
(++) using VT number 7

(WW) xf86OpenConsole: setpgid failed: Operation not permitted
(WW) xf86OpenConsole: setsid failed: Operation not permitted
(--) PCI:*(0:1:0:0) 1002:5653:1025:007e ATI Technologies Inc Radeon Mobility X700 (PCIE) rev 0, Mem @ 0xc8000000/134217728, 0xc0100000/65536, I/O @ 0x00009000/256, BIOS @ 0x????????/131072
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
(II) "dbe" will be loaded by default.
(II) "glx" will be loaded. This was enabled by default and also specified in the config file.
(II) "record" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri2" will be loaded by default.
(II) LoadModule: "i2c"
(II) Module "i2c" already built-in
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension SELinux
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.1.0
	ABI class: X.Org Video Driver, version 6.0
(II) LoadModule: "xtrap"
(WW) Warning, couldn't open module xtrap
(II) UnloadModule: "xtrap"
(EE) Failed to load module "xtrap" (module does not exist, 0)
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "extmod"
(II) Reloading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Loading extension SELinux
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.1.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "ati"
(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
(II) Module ati: vendor="X.Org Foundation"
	compiled for 1.7.5, module version = 6.12.6
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 6.0
(II) LoadModule: "radeon"
(II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
(II) Module radeon: vendor="X.Org Foundation"
	compiled for 1.7.5, module version = 6.12.6
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 6.0
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
	compiled for 1.7.0, module version = 1.4.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 7.0
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
	compiled for 1.7.3.902, module version = 1.2.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 7.0
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 1.7.0, module version = 1.5.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 7.0
(II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
	ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon 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 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 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 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 HD 4350,
	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
	ATI Mobility Radeon 4500 Series, ATI FirePro RG220, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon RV710,
	ATI Radeon HD 3470, ATI Mobility Radeon HD 3430,
	ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450,
	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450,
	ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260,
	ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
	ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650,
	ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700,
	ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics,
	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4290
(II) Primary Device is: PCI 01@00:00:0
(WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
(II) RADEON(0): TOTO SAYS 00000000c0100000
(II) RADEON(0): MMIO registers at 0x00000000c0100000: size 64KB
(II) RADEON(0): PCI bus 1 card 0 func 0
(**) RADEON(0): Depth 24, (--) framebuffer bpp 32
(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) RADEON(0): Default visual is TrueColor
(**) RADEON(0): Option "AccelMethod" "EXA"
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules/libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 0.1.0
	ABI class: X.Org Video Driver, version 6.0
(II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(==) RADEON(0): RGB weight 888
(II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
(--) RADEON(0): Chipset: "ATI Mobility Radeon X700 (M26) (PCIE)" (ChipID = 0x5653)
(--) RADEON(0): Linear framebuffer at 0x00000000c8000000
(II) RADEON(0): PCIE card detected
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org Video Driver, version 6.0
(II) RADEON(0): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(II) RADEON(0): ATOM BIOS detected
(II) RADEON(0): ATOM BIOS Rom: 
	SubsystemVendorID: 0x1025 SubsystemID: 0x007e
	IOBaseAddress: 0x9000
	Filename:             
	BIOS Bootup Message: 
Quanta/Acer ZF3 RX480/M26-P BR13394/Rel9.10.1.14/CL192294                   

(II) RADEON(0): Framebuffer space used by Firmware (kb): 20
(II) RADEON(0): Start of VRAM area used by Firmware: 0x7ffb000
(II) RADEON(0): AtomBIOS requests 20kB of VRAM scratch space
(II) RADEON(0): AtomBIOS VRAM scratch base: 0x7ffb000
(II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead
(II) RADEON(0): Default Engine Clock: 358000
(II) RADEON(0): Default Memory Clock: 330000
(II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 500000
(II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 200000
(II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500
(II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000
(II) RADEON(0): Maximum Pixel Clock: 400000
(II) RADEON(0): Reference Clock: 27000
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.30.0
(==) RADEON(0): Page Flipping disabled
(II) RADEON(0): Will try to use DMA for Xv image transfers
(II) RADEON(0): Generation 2 PCI interface, using max accessible memory
(II) RADEON(0): Detected total video RAM=131072K, accessible=131072K (PCI BAR=131072K)
(--) RADEON(0): Mapped VideoRAM: 131072 kByte (128 bit DDR SDRAM)
(II) RADEON(0): Color tiling enabled by default
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Module "i2c" already built-in
(II) RADEON(0): ref_freq: 2700, min_out_pll: 20000, max_out_pll: 50000, min_in_pll: 100, max_in_pll: 1350, xclk: 40000, sclk: 358.000000, mclk: 330.000000
(II) RADEON(0): PLL parameters: rf=2700 rd=7 min=20000 max=50000; xclk=40000
(WW) RADEON(0): LVDS Info:
XRes: 1680, YRes: 1050, DotClock: 121000
HBlank: 196, HOverPlus: 24, HSyncWidth: 88
VBlank: 15, VOverPlus: 1, VSyncWidth: 3
(II) RADEON(0): Skipping TV-Out
(II) RADEON(0): TMDS PLL from BIOS: 16500 b0112
encoder: 0x4
encoder: 0x1
encoder: 0x2
(II) RADEON(0): Output VGA-0 has no monitor section
(II) RADEON(0): I2C bus "VGA-0" initialized.
(II) RADEON(0): Output LVDS using monitor section LCD Monitor
(II) RADEON(0): I2C bus "LVDS" initialized.
(II) RADEON(0): Output DVI-0 has no monitor section
(II) RADEON(0): I2C bus "DVI-0" initialized.
(II) RADEON(0): Port0:
  XRANDR name: VGA-0
  Connector: VGA
  CRT1: INTERNAL_DAC1
  DDC reg: 0x60
(II) RADEON(0): Port1:
  XRANDR name: LVDS
  Connector: LVDS
  LCD1: INTERNAL_LVDS
  DDC reg: 0x1a8
(II) RADEON(0): Port2:
  XRANDR name: DVI-0
  Connector: DVI-I
  DFP1: INTERNAL_TMDS1
  DDC reg: 0x64
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
Dac detection success
(II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
finished output detect: 0
(II) RADEON(0): I2C device "LVDS:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "LVDS:E-EDID segment register" registered at address 0x60.
(II) RADEON(0): EDID for output LVDS
(II) RADEON(0): Manufacturer: SEC  Model: 0  Serial#: 0
(II) RADEON(0): Year: 2003  Week: 0
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max Image Size [cm]: horiz.: 33  vert.: 21
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): No DPMS capabilities specified
(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.310 greenY: 0.550
(II) RADEON(0): blueX: 0.155 blueY: 0.155   whiteX: 0.313 whiteY: 0.329
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported detailed timing:
(II) RADEON(0): clock: 121.0 MHz   Image Size:  331 x 207 mm
(II) RADEON(0): h_active: 1680  h_sync: 1704  h_sync_end 1792 h_blank_end 1876 h_border: 0
(II) RADEON(0): v_active: 1050  v_sync: 1051  v_sync_end 1054 v_blanking: 1065 v_border: 0
(II) RADEON(0): Unknown vendor-specific block f
(II) RADEON(0):  SAMSUNG
(II) RADEON(0):  LTN154P1-L02
(II) RADEON(0): EDID (in hex):
(II) RADEON(0): 	00ffffffffffff004ca3000000000000
(II) RADEON(0): 	000d0103802115780a87f594574f8c27
(II) RADEON(0): 	27505400000001010101010101010101
(II) RADEON(0): 	010101010101442f90c4601a0f401858
(II) RADEON(0): 	13004bcf100000190000000f00000000
(II) RADEON(0): 	00000000003cd2026401000000fe0053
(II) RADEON(0): 	414d53554e470a2020202020000000fe
(II) RADEON(0): 	004c544e31353450312d4c30320a00fe
(II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
(II) RADEON(0): EDID data from the display on output: LVDS ----------------------
(II) RADEON(0): Manufacturer: SEC  Model: 0  Serial#: 0
(II) RADEON(0): Year: 2003  Week: 0
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max Image Size [cm]: horiz.: 33  vert.: 21
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): No DPMS capabilities specified
(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.310 greenY: 0.550
(II) RADEON(0): blueX: 0.155 blueY: 0.155   whiteX: 0.313 whiteY: 0.329
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported detailed timing:
(II) RADEON(0): clock: 121.0 MHz   Image Size:  331 x 207 mm
(II) RADEON(0): h_active: 1680  h_sync: 1704  h_sync_end 1792 h_blank_end 1876 h_border: 0
(II) RADEON(0): v_active: 1050  v_sync: 1051  v_sync_end 1054 v_blanking: 1065 v_border: 0
(II) RADEON(0): Unknown vendor-specific block f
(II) RADEON(0):  SAMSUNG
(II) RADEON(0):  LTN154P1-L02
(II) RADEON(0): EDID (in hex):
(II) RADEON(0): 	00ffffffffffff004ca3000000000000
(II) RADEON(0): 	000d0103802115780a87f594574f8c27
(II) RADEON(0): 	27505400000001010101010101010101
(II) RADEON(0): 	010101010101442f90c4601a0f401858
(II) RADEON(0): 	13004bcf100000190000000f00000000
(II) RADEON(0): 	00000000003cd2026401000000fe0053
(II) RADEON(0): 	414d53554e470a2020202020000000fe
(II) RADEON(0): 	004c544e31353450312d4c30320a00fe
finished output detect: 1
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
Unhandled monitor type 0
finished output detect: 2
finished all detect
before xf86InitialConfiguration
Dac detection success
(II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
(II) RADEON(0): EDID for output VGA-0
(II) RADEON(0): EDID for output LVDS
(II) RADEON(0): Manufacturer: SEC  Model: 0  Serial#: 0
(II) RADEON(0): Year: 2003  Week: 0
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max Image Size [cm]: horiz.: 33  vert.: 21
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): No DPMS capabilities specified
(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.310 greenY: 0.550
(II) RADEON(0): blueX: 0.155 blueY: 0.155   whiteX: 0.313 whiteY: 0.329
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported detailed timing:
(II) RADEON(0): clock: 121.0 MHz   Image Size:  331 x 207 mm
(II) RADEON(0): h_active: 1680  h_sync: 1704  h_sync_end 1792 h_blank_end 1876 h_border: 0
(II) RADEON(0): v_active: 1050  v_sync: 1051  v_sync_end 1054 v_blanking: 1065 v_border: 0
(II) RADEON(0): Unknown vendor-specific block f
(II) RADEON(0):  SAMSUNG
(II) RADEON(0):  LTN154P1-L02
(II) RADEON(0): EDID (in hex):
(II) RADEON(0): 	00ffffffffffff004ca3000000000000
(II) RADEON(0): 	000d0103802115780a87f594574f8c27
(II) RADEON(0): 	27505400000001010101010101010101
(II) RADEON(0): 	010101010101442f90c4601a0f401858
(II) RADEON(0): 	13004bcf100000190000000f00000000
(II) RADEON(0): 	00000000003cd2026401000000fe0053
(II) RADEON(0): 	414d53554e470a2020202020000000fe
(II) RADEON(0): 	004c544e31353450312d4c30320a00fe
(II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
(II) RADEON(0): EDID data from the display on output: LVDS ----------------------
(II) RADEON(0): Manufacturer: SEC  Model: 0  Serial#: 0
(II) RADEON(0): Year: 2003  Week: 0
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max Image Size [cm]: horiz.: 33  vert.: 21
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): No DPMS capabilities specified
(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.310 greenY: 0.550
(II) RADEON(0): blueX: 0.155 blueY: 0.155   whiteX: 0.313 whiteY: 0.329
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported detailed timing:
(II) RADEON(0): clock: 121.0 MHz   Image Size:  331 x 207 mm
(II) RADEON(0): h_active: 1680  h_sync: 1704  h_sync_end 1792 h_blank_end 1876 h_border: 0
(II) RADEON(0): v_active: 1050  v_sync: 1051  v_sync_end 1054 v_blanking: 1065 v_border: 0
(II) RADEON(0): Unknown vendor-specific block f
(II) RADEON(0):  SAMSUNG
(II) RADEON(0):  LTN154P1-L02
(II) RADEON(0): EDID (in hex):
(II) RADEON(0): 	00ffffffffffff004ca3000000000000
(II) RADEON(0): 	000d0103802115780a87f594574f8c27
(II) RADEON(0): 	27505400000001010101010101010101
(II) RADEON(0): 	010101010101442f90c4601a0f401858
(II) RADEON(0): 	13004bcf100000190000000f00000000
(II) RADEON(0): 	00000000003cd2026401000000fe0053
(II) RADEON(0): 	414d53554e470a2020202020000000fe
(II) RADEON(0): 	004c544e31353450312d4c30320a00fe
(II) RADEON(0): EDID vendor "SEC", prod id 0
(II) RADEON(0): Printing probed modes for output LVDS
(II) RADEON(0): Modeline "1680x1050"x60.6  121.00  1680 1704 1792 1876  1050 1051 1054 1065 -hsync -vsync (64.5 kHz)
(II) RADEON(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz)
(II) RADEON(0): Modeline "1280x1024"x59.9  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
(II) RADEON(0): Modeline "1440x900"x59.9  106.50  1440 1528 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz)
(II) RADEON(0): Modeline "1280x960"x59.9  101.25  1280 1360 1488 1696  960 963 967 996 -hsync +vsync (59.7 kHz)
(II) RADEON(0): Modeline "1280x854"x59.9   89.25  1280 1352 1480 1680  854 857 867 887 -hsync +vsync (53.1 kHz)
(II) RADEON(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz)
(II) RADEON(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz)
(II) RADEON(0): Modeline "1152x768"x59.8   71.75  1152 1216 1328 1504  768 771 781 798 -hsync +vsync (47.7 kHz)
(II) RADEON(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
(II) RADEON(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
(II) RADEON(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
(II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
Unhandled monitor type 0
(II) RADEON(0): EDID for output DVI-0
(II) RADEON(0): Output VGA-0 disconnected
(II) RADEON(0): Output LVDS connected
(II) RADEON(0): Output DVI-0 disconnected
(II) RADEON(0): Using user preference for initial modes
(II) RADEON(0): Output LVDS using initial mode 1680x1050
(II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
after xf86InitialConfiguration
(==) RADEON(0): DPI set to (96, 96)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Module "ramdac" already built-in
(**) RADEON(0): Using EXA acceleration architecture
(II) Loading sub module "exa"
(II) LoadModule: "exa"
(II) Loading /usr/lib/xorg/modules/libexa.so
(II) Module exa: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 2.5.0
	ABI class: X.Org Video Driver, version 6.0
(==) RADEON(0): Assuming overlay scaler buffer width is 1536
(II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
(!!) RADEON(0): For information on using the multimedia capabilities
	of this adapter, please see http://gatos.sf.net.
(!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
(--) Depth 24 pixmap format is 32 bpp
(II) RADEON(0): RADEONScreenInit c8000000 0 0
Entering TV Save
Save TV timing tables
saveTimingTables: reading timing tables
TV Save done
disable LVDS
(II) RADEON(0): Dynamic Clock Scaling Disabled
(==) RADEON(0): Using 24 bit depth buffer
(II) RADEON(0): RADEONInitMemoryMap() : 
(II) RADEON(0):   mem_size         : 0x08000000
(II) RADEON(0):   MC_FB_LOCATION   : 0xcfffc800
(II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
(II) RADEON(0): Depth moves disabled by default
(II) RADEON(0): Allocating from a screen of 131040 kb
(II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x010b3000
(II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x010b7000
(II) RADEON(0): Will use 17100 kb for front buffer at offset 0x00000000
(II) RADEON(0): Will use 32 kb for PCI GART at offset 0x07ff8000
(II) RADEON(0): Will use 17100 kb for back buffer at offset 0x010bb000
(II) RADEON(0): Will use 17100 kb for depth buffer at offset 0x0216e000
(II) RADEON(0): Will use 39424 kb for textures at offset 0x03221000
(II) RADEON(0): Will use 40284 kb for X Server offscreen at offset 0x058a1000
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) [drm] DRM interface version 1.3
(II) [drm] DRM open master succeeded.
(II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
(II) RADEON(0): [drm] framebuffer handle = 0xc8000000
(II) RADEON(0): [drm] added 1 reserved context for kernel
(II) RADEON(0): X context handle = 0x1
(II) RADEON(0): [drm] installed DRM signal handler
(II) RADEON(0): [pci] 32768 kB allocated with handle 0x0119b200
(II) RADEON(0): [pci] ring handle = 0x1efff000
(II) RADEON(0): [pci] Ring mapped at 0x7f95c27a6000
(II) RADEON(0): [pci] Ring contents 0x00000000
(II) RADEON(0): [pci] ring read ptr handle = 0x2f000000
(II) RADEON(0): [pci] Ring read ptr mapped at 0x7f95c28be000
(II) RADEON(0): [pci] Ring read ptr contents 0x00000000
(II) RADEON(0): [pci] vertex/indirect buffers handle = 0x1f000000
(II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x7f95b54be000
(II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000
(II) RADEON(0): [pci] GART texture map handle = 0x1f001000
(II) RADEON(0): [pci] GART Texture map mapped at 0x7f95b383e000
(II) RADEON(0): [drm] register handle = 0x2fff9000
(II) RADEON(0): [dri] Visual configs initialized
(II) RADEON(0): RADEONRestoreMemMapRegisters() : 
(II) RADEON(0):   MC_FB_LOCATION   : 0xcfffc800 0xcfffc800
(II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
(==) RADEON(0): Backing store disabled
(II) RADEON(0): [DRI] installation complete
(II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
(II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
(II) RADEON(0): [drm] dma control initialized, using IRQ 18
(II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
(II) RADEON(0): Direct rendering enabled
(II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
(II) RADEON(0): Setting EXA maxPitchBytes
(II) RADEON(0): num quad-pipes is 2
(II) EXA(0): Offscreen pixmap area of 41250816 bytes
(II) EXA(0): Driver registered support for the following operations:
(II)         Solid
(II)         Copy
(II)         Composite (RENDER acceleration)
(II)         UploadToScreen
(II)         DownloadFromScreen
(II) RADEON(0): Acceleration enabled
(==) RADEON(0): DPMS enabled
(==) RADEON(0): Silken mouse enabled
(II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
(II) Loading sub module "theatre_detect"
(II) LoadModule: "theatre_detect"
(II) Loading /usr/lib/xorg/modules/multimedia/theatre_detect_drv.so
(II) Module theatre_detect: vendor="X.Org Foundation"
	compiled for 1.7.5, module version = 1.0.0
	ABI class: X.Org Video Driver, version 6.0
(II) RADEON(0): no multimedia table present, disabling Rage Theatre.
(II) RADEON(0): Set up overlay video
(II) RADEON(0): Set up textured video
disable primary dac
disable LVDS
disable LVDS
init memmap
init common
init crtc1
init pll1
freq: 121000000
best_freq: 120535714
best_feedback_div: 125
best_ref_div: 7
best_post_div: 4
restore memmap
(II) RADEON(0): RADEONRestoreMemMapRegisters() : 
(II) RADEON(0):   MC_FB_LOCATION   : 0xcfffc800 0xcfffc800
(II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
restore common
restore crtc1
restore pll1
finished PLL1
set RMX
set LVDS
enable LVDS
disable primary dac
(II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
(--) RandR disabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
SELinux: Disabled on system, not enabling in X server
(II) AIGLX: Screen 0 is not DRI2 capable
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 12, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 12, (OK)
drmOpenByBusid: drmOpenMinor returns 12
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) AIGLX: enabled GLX_MESA_copy_sub_buffer
(II) AIGLX: enabled GLX_SGI_make_current_read
(II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
(II) AIGLX: enabled GLX_texture_from_pixmap with driver support
(II) AIGLX: Loaded and initialized /usr/lib/dri/r300_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(II) RADEON(0): Setting screen physical size to 330 x 206
(**) Option "CoreKeyboard"
(**) Generic Keyboard: always reports core events
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Generic Keyboard: XkbModel: "pc105"
(**) Option "XkbLayout" "fr"
(**) Generic Keyboard: XkbLayout: "fr"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(II) Synaptics touchpad driver version 1.2.1
(--) Synaptics Touchpad auto-dev sets device to /dev/input/event6
(**) Option "Device" "/dev/input/event6"
(II) Synaptics Touchpad: x-axis range 1472 - 5472
(II) Synaptics Touchpad: y-axis range 1408 - 4448
(II) Synaptics Touchpad: pressure range 0 - 255
(II) Synaptics Touchpad: finger width range 0 - 0
(II) Synaptics Touchpad: buttons: left right middle double triple
(**) Option "SHMConfig" "on"
(**) Option "AreaTopEdge" "1800"
(**) Option "AreaRightEdge" "5420"
(**) Option "HorizScrollDelta" "0"
(**) Option "RTCornerButton" "2"
(**) Option "TapButton1" "1"
(--) Synaptics Touchpad: touchpad found
(**) Option "CorePointer"
(**) Synaptics Touchpad: always reports core events
(II) XINPUT: Adding extended input device "Synaptics Touchpad" (type: TOUCHPAD)
(**) Synaptics Touchpad: (accel) keeping acceleration scheme 1
(**) Synaptics Touchpad: (accel) acceleration profile 0
(**) Synaptics Touchpad: (accel) acceleration factor: 2.000
(**) Synaptics Touchpad: (accel) acceleration threshold: 4
(--) Synaptics Touchpad: touchpad found
(**) Option "Protocol" "ImPS/2"
(**) Generic Mouse: Device: "/dev/input/mice"
(**) Generic Mouse: Protocol: "ImPS/2"
(**) Option "SendCoreEvents" "true"
(**) Generic Mouse: always reports core events
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "false"
(**) Option "ZAxisMapping" "4 5"
(**) Generic Mouse: ZAxisMapping: buttons 4 and 5
(**) Generic Mouse: Buttons: 9
(**) Generic Mouse: Sensitivity: 1
(II) XINPUT: Adding extended input device "Generic Mouse" (type: MOUSE)
(**) Generic Mouse: (accel) keeping acceleration scheme 1
(**) Generic Mouse: (accel) acceleration profile 0
(**) Generic Mouse: (accel) acceleration factor: 2.000
(**) Generic Mouse: (accel) acceleration threshold: 4
(II) Generic Mouse: ps2EnableDataReporting: succeeded
(II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device Power Button (/dev/input/event1)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device Lid Switch (/dev/input/event2)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device Power Button (/dev/input/event3)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device Sleep Button (/dev/input/event4)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device PC Speaker (/dev/input/event5)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event7)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse1)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device USBPS2 (/dev/input/event8)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device USBPS2 (/dev/input/event9)
(II) AutoAddDevices is off - not adding device.
(II) config/udev: Adding input device USBPS2 (/dev/input/mouse2)
(II) AutoAddDevices is off - not adding device.

udev information:
P: /class/input/input0/event0
N: input/event0
S: char/13:64
S: input/by-path/platform-i8042-serio-0-event-kbd
E: UDEV_LOG=3
E: DEVPATH=/class/input/input0/event0
E: MAJOR=13
E: MINOR=64
E: PHYSDEVPATH=/devices/platform/i8042/serio0
E: PHYSDEVBUS=serio
E: PHYSDEVDRIVER=atkbd
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event0
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_SERIAL=noserial
E: ID_PATH=platform-i8042-serio-0
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: DEVLINKS=/dev/char/13:64 /dev/input/by-path/platform-i8042-serio-0-event-kbd
E: XKBOPTIONS=compose:menu,terminate:ctrl_alt_bksp
E: x11_driver=evdev
E: DMI_VENDOR=Acer, inc.

P: /class/input/input1/event1
N: input/event1
S: char/13:65
E: UDEV_LOG=3
E: DEVPATH=/class/input/input1/event1
E: MAJOR=13
E: MINOR=65
E: PHYSDEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00
E: PHYSDEVBUS=acpi
E: PHYSDEVDRIVER=button
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event1
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: DEVLINKS=/dev/char/13:65
E: XKBOPTIONS=compose:menu,terminate:ctrl_alt_bksp
E: x11_driver=evdev
E: DMI_VENDOR=Acer, inc.

P: /class/input/input2/event2
N: input/event2
S: char/13:66
E: UDEV_LOG=3
E: DEVPATH=/class/input/input2/event2
E: MAJOR=13
E: MINOR=66
E: PHYSDEVPATH=/devices/LNXSYSTM:00/device:00/PNP0C0D:00
E: PHYSDEVBUS=acpi
E: PHYSDEVDRIVER=button
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event2
E: ID_INPUT=1
E: DMI_VENDOR=Acer, inc.
E: DEVLINKS=/dev/char/13:66

P: /class/input/input3/event3
N: input/event3
S: char/13:67
E: UDEV_LOG=3
E: DEVPATH=/class/input/input3/event3
E: MAJOR=13
E: MINOR=67
E: PHYSDEVPATH=/devices/LNXSYSTM:00/device:00/PNP0C0C:00
E: PHYSDEVBUS=acpi
E: PHYSDEVDRIVER=button
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event3
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: DEVLINKS=/dev/char/13:67
E: XKBOPTIONS=compose:menu,terminate:ctrl_alt_bksp
E: x11_driver=evdev
E: DMI_VENDOR=Acer, inc.

P: /class/input/input4/event4
N: input/event4
S: char/13:68
E: UDEV_LOG=3
E: DEVPATH=/class/input/input4/event4
E: MAJOR=13
E: MINOR=68
E: PHYSDEVPATH=/devices/LNXSYSTM:00/device:00/PNP0C0E:00
E: PHYSDEVBUS=acpi
E: PHYSDEVDRIVER=button
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event4
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: DEVLINKS=/dev/char/13:68
E: XKBOPTIONS=compose:menu,terminate:ctrl_alt_bksp
E: x11_driver=evdev
E: DMI_VENDOR=Acer, inc.

P: /class/input/input5/event5
N: input/event5
S: char/13:69
S: input/by-path/platform-pcspkr-event-spkr
E: UDEV_LOG=3
E: DEVPATH=/class/input/input5/event5
E: MAJOR=13
E: MINOR=69
E: PHYSDEVPATH=/devices/platform/pcspkr
E: PHYSDEVBUS=platform
E: PHYSDEVDRIVER=pcspkr
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event5
E: ID_INPUT=1
E: ID_SERIAL=noserial
E: ID_PATH=platform-pcspkr
E: DMI_VENDOR=Acer, inc.
E: DEVLINKS=/dev/char/13:69 /dev/input/by-path/platform-pcspkr-event-spkr

P: /class/input/input6/event6
N: input/event6
S: char/13:70
S: input/by-path/platform-i8042-serio-4-event-mouse
E: UDEV_LOG=3
E: DEVPATH=/class/input/input6/event6
E: MAJOR=13
E: MINOR=70
E: PHYSDEVPATH=/devices/platform/i8042/serio4
E: PHYSDEVBUS=serio
E: PHYSDEVDRIVER=psmouse
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event6
E: ID_INPUT=1
E: ID_INPUT_TOUCHPAD=1
E: ID_SERIAL=noserial
E: ID_PATH=platform-i8042-serio-4
E: x11_driver=synaptics
E: DMI_VENDOR=Acer, inc.
E: DEVLINKS=/dev/char/13:70 /dev/input/by-path/platform-i8042-serio-4-event-mouse

P: /class/input/input7/event7
N: input/event7
S: char/13:71
S: input/by-id/usb-Logitech_USB-PS_2_Optical_Mouse-event-mouse
S: input/by-path/pci-0000:00:13.2-usb-0:6.2:1.0-event-mouse
E: UDEV_LOG=3
E: DEVPATH=/class/input/input7/event7
E: MAJOR=13
E: MINOR=71
E: PHYSDEVPATH=/devices/pci0000:00/0000:00:13.2/usb1/1-6/1-6.2/1-6.2:1.0
E: PHYSDEVBUS=usb
E: PHYSDEVDRIVER=usbhid
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event7
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: ID_MODEL=USB-PS_2_Optical_Mouse
E: ID_MODEL_ENC=USB-PS\x2f2\x20Optical\x20Mouse
E: ID_MODEL_ID=c03e
E: ID_REVISION=2000
E: ID_SERIAL=Logitech_USB-PS_2_Optical_Mouse
E: ID_TYPE=hid
E: ID_BUS=usb
E: ID_USB_INTERFACES=:030102:
E: ID_USB_INTERFACE_NUM=00
E: ID_USB_DRIVER=usbhid
E: ID_PATH=pci-0000:00:13.2-usb-0:6.2:1.0
E: x11_driver=evdev
E: DEVLINKS=/dev/char/13:71 /dev/input/by-id/usb-Logitech_USB-PS_2_Optical_Mouse-event-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:6.2:1.0-event-mouse

P: /class/input/input8/event8
N: input/event8
S: char/13:72
S: input/by-id/usb-0d3d_USBPS2-event-kbd
S: input/by-path/pci-0000:00:13.2-usb-0:6.4:1.0-event-kbd
E: UDEV_LOG=3
E: DEVPATH=/class/input/input8/event8
E: MAJOR=13
E: MINOR=72
E: PHYSDEVPATH=/devices/pci0000:00/0000:00:13.2/usb1/1-6/1-6.4/1-6.4:1.0
E: PHYSDEVBUS=usb
E: PHYSDEVDRIVER=usbhid
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event8
E: ID_INPUT=1
E: ID_INPUT_KEY=1
E: ID_INPUT_KEYBOARD=1
E: ID_VENDOR=0d3d
E: ID_VENDOR_ENC=0d3d
E: ID_VENDOR_ID=0d3d
E: ID_MODEL=USBPS2
E: ID_MODEL_ENC=USBPS2
E: ID_MODEL_ID=0001
E: ID_REVISION=0001
E: ID_SERIAL=0d3d_USBPS2
E: ID_TYPE=hid
E: ID_BUS=usb
E: ID_USB_INTERFACES=:030101:030102:
E: ID_USB_INTERFACE_NUM=00
E: ID_USB_DRIVER=usbhid
E: ID_PATH=pci-0000:00:13.2-usb-0:6.4:1.0
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: DEVLINKS=/dev/char/13:72 /dev/input/by-id/usb-0d3d_USBPS2-event-kbd /dev/input/by-path/pci-0000:00:13.2-usb-0:6.4:1.0-event-kbd
E: XKBOPTIONS=compose:menu,terminate:ctrl_alt_bksp
E: x11_driver=evdev

P: /class/input/input9/event9
N: input/event9
S: char/13:73
S: input/by-id/usb-0d3d_USBPS2-event-mouse
S: input/by-path/pci-0000:00:13.2-usb-0:6.4:1.1-event-mouse
E: UDEV_LOG=3
E: DEVPATH=/class/input/input9/event9
E: MAJOR=13
E: MINOR=73
E: PHYSDEVPATH=/devices/pci0000:00/0000:00:13.2/usb1/1-6/1-6.4/1-6.4:1.1
E: PHYSDEVBUS=usb
E: PHYSDEVDRIVER=usbhid
E: SUBSYSTEM=input
E: DEVNAME=/dev/input/event9
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_INPUT_KEY=1
E: ID_VENDOR=0d3d
E: ID_VENDOR_ENC=0d3d
E: ID_VENDOR_ID=0d3d
E: ID_MODEL=USBPS2
E: ID_MODEL_ENC=USBPS2
E: ID_MODEL_ID=0001
E: ID_REVISION=0001
E: ID_SERIAL=0d3d_USBPS2
E: ID_TYPE=hid
E: ID_BUS=usb
E: ID_USB_INTERFACES=:030101:030102:
E: ID_USB_INTERFACE_NUM=01
E: ID_USB_DRIVER=usbhid
E: ID_PATH=pci-0000:00:13.2-usb-0:6.4:1.1
E: XKBMODEL=pc105
E: XKBLAYOUT=fr
E: DEVLINKS=/dev/char/13:73 /dev/input/by-id/usb-0d3d_USBPS2-event-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:6.4:1.1-event-mouse
E: XKBOPTIONS=compose:menu,terminate:ctrl_alt_bksp
E: x11_driver=evdev

DRM Information from dmesg:
[    0.000999] No AGP bridge found
[    0.767015] Linux agpgart interface v0.103
[   44.910175] [drm] Initialized drm 1.1.0 20060810
[   44.971513] [drm] Initialized radeon 1.30.0 20080528 for 0000:01:00.0 on minor 0
[   45.647151] [drm] Setting GART location based on new memory map
[   45.648620] [drm] Loading R400 Microcode
[   45.648649] [drm] Num pipes: 2
[   45.648657] [drm] writeback test succeeded in 1 usecs
[  417.674893] [drm] Num pipes: 2
[  423.779454] [drm] Loading R400 Microcode
[  423.779480] [drm] Num pipes: 2
[  560.214100] [drm] Num pipes: 2
[  565.990730] [drm] Loading R400 Microcode
[  565.990755] [drm] Num pipes: 2
[  621.851727] [drm] Num pipes: 2
[  628.075540] [drm] Loading R400 Microcode
[  628.075566] [drm] Num pipes: 2
[  793.500345] [drm] Num pipes: 2
[  799.311367] [drm] Loading R400 Microcode
[  799.311392] [drm] Num pipes: 2
[  904.884198] [drm] Num pipes: 2
[  910.563849] [drm] Loading R400 Microcode
[  910.563874] [drm] Num pipes: 2
[  935.059332] [drm] Num pipes: 2
[  940.748990] [drm] Loading R400 Microcode
[  940.749030] [drm] Num pipes: 2
[ 1056.964512] [drm] Num pipes: 2
[ 1062.700992] [drm] Loading R400 Microcode
[ 1062.701031] [drm] Num pipes: 2
[ 1198.688610] [drm] Num pipes: 2
[ 1204.381249] [drm] Loading R400 Microcode
[ 1204.381274] [drm] Num pipes: 2
[ 1210.538958] [drm] Num pipes: 2
[ 1216.203289] [drm] Loading R400 Microcode
[ 1216.203314] [drm] Num pipes: 2
[ 1218.732475] [drm] Num pipes: 2
[ 1224.448865] [drm] Loading R400 Microcode
[ 1224.448890] [drm] Num pipes: 2
[ 1318.034270] [drm] Num pipes: 2
[ 1323.732084] [drm] Loading R400 Microcode
[ 1323.732109] [drm] Num pipes: 2
[ 1347.503994] [drm] Num pipes: 2
[ 1353.207663] [drm] Loading R400 Microcode
[ 1353.207688] [drm] Num pipes: 2
[ 3408.023531] [drm] Num pipes: 2
[ 3410.390186] [drm] Setting GART location based on new memory map
[ 3410.391755] [drm] Loading R400 Microcode
[ 3410.391784] [drm] Num pipes: 2
[ 3410.391792] [drm] writeback test succeeded in 1 usecs


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30.5-she-seel (PREEMPT)
Locale: LANG=C, LC_CTYPE=fr_FR (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-core depends on:
ii  keyboard-configuration       1.51        system-wide keyboard preferences
ii  libaudit0                    1.7.13-1+b1 Dynamic library for security audit
ii  libc6                        2.10.2-6    Embedded GNU C Library: Shared lib
ii  libdrm2                      2.4.18-3    Userspace interface to kernel DRM 
ii  libgcrypt11                  1.4.5-2     LGPL Crypto library - runtime libr
ii  libpciaccess0                0.11.0-2    Generic PCI access library for X
ii  libpixman-1-0                0.16.4-1    pixel-manipulation library for X a
ii  libselinux1                  2.0.94-1    SELinux runtime shared libraries
ii  libudev0                     150-2       libudev shared library
ii  libxau6                      1:1.0.5-2   X11 authorisation library
ii  libxdmcp6                    1:1.0.3-2   X11 Display Manager Control Protoc
ii  libxfont1                    1:1.4.1-2   X11 font rasterisation library
ii  udev                         149-2       /dev/ and hotplug management daemo
ii  xserver-common               2:1.7.6-2   common files used by various X ser
ii  xserver-xorg                 1:7.5+5     the X.Org X server

Versions of packages xserver-xorg-core recommends:
ii  libgl1-mesa-dri               7.7.1-1    A free implementation of the OpenG

Versions of packages xserver-xorg-core suggests:
ii  xfonts-100dpi                 1:1.0.1    100 dpi fonts for X
ii  xfonts-75dpi                  1:1.0.1    75 dpi fonts for X
ii  xfonts-scalable               1:1.0.1-1  scalable fonts for X

-- no debconf information

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Version: 2:1.7.7-9

Jay Berkenbilt <qjb@debian.org> (11/08/2010):
> Tim Connors <tconnors@rather.puzzling.org> wrote:
> > Can we get this trivial patch applied?  I know squeeze is frozen,
> > but this is a bug fix for a problem that is otherwise going to
> > leave squeeze with an Xserver that can't change the bell
> > properties at all, and we've had the patch for ages now, and it's
> > relatively well tested.
> >
> > I have personally applied the patch in the same way all other
> > debian patches have been applied in debian/patches, and it works.
> > We don't need to wait for it to trickle down from upstream (where
> > of course it already exists) do we?
> 
> I was just about to ask for the same thing.

You both are welcome to join pkg-xorg and help us/me get work done.

Nicolas, thanks for your patch and for getting this upstream'd.

KiBi.

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply to: