You are not logged in.

#1 2013-03-23 00:52:41

camerongray
Member
From: Edinburgh, Scotland
Registered: 2013-03-13
Posts: 3
Website

Cannot run in framebuffer mode

I have just installed Arch on my ThinkPad x220 and configured X to support both my internal LCD as well as my external USB monitor that uses Displaylink.

I have (From memory) installed the following graphics drivers: xf86-video-intel, xf86-video-displaylink and xf86-video-fbdev.

When I try to start x with the USB monitor disconnected, everything works fine but as soon as I try to start x with it plugged in, I get an error in the log stating that "Cannot run in framebuffer mode, please specifiy BusIDs for all framebuffer devices" as can be seen below I have specified BusIDs for both devices.

If I comment out the last two lines in the ServerLayout and try to start x with the USB monitor connected it works fine.

What I want is to be able to use the USB monitor to extend my desktop but be able to use the laptop's internal LCD on its own when I don't have the USB monitor connected.

My xorg.conf:

Section "Device"
Identifier      "intel"
driver          "intel"
BusID		"PCI:0:2:0"
EndSection

Section "Device"
Identifier      "dl1"
driver          "fbdev"
Option  "fbdev" "/dev/fb1"
BusID		"USB"
EndSection

Section "Monitor"
Identifier "monitor0"
EndSection

Section "Monitor"
Identifier "monitor1"
EndSection

Section "Screen"
Identifier "screen0"
Device "dl1"
Monitor "monitor0"
DefaultDepth 16
EndSection

Section "Screen"
Identifier "screen1"
Device "intel"
Monitor "monitor1"
DefaultDepth 16
EndSection

Section "ServerLayout"
Identifier     "multihead"
Screen      0  "screen0"
Screen      1  "screen1" LeftOf "screen0"
Option    "Xinerama" "off"
EndSection

My error log from when I try to start x with the USB monitor connected:

[  1519.870] 
X.Org X Server 1.14.0
Release Date: 2013-03-05
[  1519.873] X Protocol Version 11, Revision 0
[  1519.875] Build Operating System: Linux 3.8.2-1-ARCH x86_64 
[  1519.876] Current Operating System: Linux localhost 3.8.4-1-ARCH #1 SMP PREEMPT Wed Mar 20 22:10:25 CET 2013 x86_64
[  1519.876] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=07d0daf8-43f7-4294-a552-48d5f0521ae3 ro
[  1519.877] Build Date: 09 March 2013  11:43:05AM
[  1519.877]  
[  1519.878] Current version of pixman: 0.28.2
[  1519.879] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1519.879] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1519.881] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar 23 00:43:24 2013
[  1519.881] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1519.881] (==) ServerLayout "multihead"
[  1519.881] (**) |-->Screen "screen0" (0)
[  1519.881] (**) |   |-->Monitor "monitor0"
[  1519.881] (**) |   |-->Device "dl1"
[  1519.881] (**) |-->Screen "screen1" (1)
[  1519.881] (**) |   |-->Monitor "monitor1"
[  1519.881] (**) |   |-->Device "intel"
[  1519.881] (**) Option "Xinerama" "off"
[  1519.881] (==) Automatically adding devices
[  1519.881] (==) Automatically enabling devices
[  1519.881] (==) Automatically adding GPU devices
[  1519.881] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  1519.881] 	Entry deleted from font path.
[  1519.881] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1519.881] 	Entry deleted from font path.
[  1519.881] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  1519.881] 	Entry deleted from font path.
[  1519.881] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1519.881] 	Entry deleted from font path.
[  1519.881] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1519.881] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1519.881] 	Entry deleted from font path.
[  1519.881] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1519.881] (==) FontPath set to:
	/usr/share/fonts/misc/
[  1519.881] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1519.881] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1519.881] (II) Loader magic: 0x7fdc20
[  1519.881] (II) Module ABI versions:
[  1519.881] 	X.Org ANSI C Emulation: 0.4
[  1519.881] 	X.Org Video Driver: 14.1
[  1519.881] 	X.Org XInput driver : 19.1
[  1519.881] 	X.Org Server Extension : 7.0
[  1519.882] (II) config/udev: Adding drm device (/dev/dri/card0)
[  1519.883] (--) PCI:*(0:0:2:0) 8086:0126:17aa:21da rev 9, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00005000/64
[  1519.884] Initializing built-in extension Generic Event Extension
[  1519.884] Initializing built-in extension SHAPE
[  1519.885] Initializing built-in extension MIT-SHM
[  1519.885] Initializing built-in extension XInputExtension
[  1519.886] Initializing built-in extension XTEST
[  1519.886] Initializing built-in extension BIG-REQUESTS
[  1519.887] Initializing built-in extension SYNC
[  1519.887] Initializing built-in extension XKEYBOARD
[  1519.887] Initializing built-in extension XC-MISC
[  1519.888] Initializing built-in extension SECURITY
[  1519.888] Initializing built-in extension XINERAMA
[  1519.889] Initializing built-in extension XFIXES
[  1519.889] Initializing built-in extension RENDER
[  1519.890] Initializing built-in extension RANDR
[  1519.890] Initializing built-in extension COMPOSITE
[  1519.891] Initializing built-in extension DAMAGE
[  1519.891] Initializing built-in extension MIT-SCREEN-SAVER
[  1519.892] Initializing built-in extension DOUBLE-BUFFER
[  1519.892] Initializing built-in extension RECORD
[  1519.893] Initializing built-in extension DPMS
[  1519.893] Initializing built-in extension X-Resource
[  1519.893] Initializing built-in extension XVideo
[  1519.894] Initializing built-in extension XVideo-MotionCompensation
[  1519.894] Initializing built-in extension XFree86-VidModeExtension
[  1519.895] Initializing built-in extension XFree86-DGA
[  1519.895] Initializing built-in extension XFree86-DRI
[  1519.896] Initializing built-in extension DRI2
[  1519.896] (II) LoadModule: "glx"
[  1519.896] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1519.896] (II) Module glx: vendor="X.Org Foundation"
[  1519.896] 	compiled for 1.14.0, module version = 1.0.0
[  1519.896] 	ABI class: X.Org Server Extension, version 7.0
[  1519.896] (==) AIGLX enabled
[  1519.896] Loading extension GLX
[  1519.896] (II) LoadModule: "fbdev"
[  1519.896] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[  1519.896] (II) Module fbdev: vendor="X.Org Foundation"
[  1519.897] 	compiled for 1.14.0, module version = 0.4.3
[  1519.897] 	Module class: X.Org Video Driver
[  1519.897] 	ABI class: X.Org Video Driver, version 14.1
[  1519.897] (II) LoadModule: "intel"
[  1519.897] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  1519.897] (II) Module intel: vendor="X.Org Foundation"
[  1519.897] 	compiled for 1.14.0, module version = 2.21.5
[  1519.897] 	Module class: X.Org Video Driver
[  1519.897] 	ABI class: X.Org Video Driver, version 14.1
[  1519.897] (II) FBDEV: driver for framebuffer: fbdev
[  1519.897] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
	Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
	Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
	Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
	Haswell Server (GT2+), Haswell SDV Desktop (GT1),
	Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
	Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
	Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
	Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
	Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
	Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
	Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
	Haswell ULT Server (GT1), Haswell ULT Server (GT2),
	Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
	Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
	Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
	Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
	Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
	ValleyView PO board
[  1519.897] (++) using VT number 1

[  1519.897] (WW) Falling back to old probe method for fbdev
[  1519.897] (II) Loading sub module "fbdevhw"
[  1519.897] (II) LoadModule: "fbdevhw"
[  1519.897] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[  1519.897] (II) Module fbdevhw: vendor="X.Org Foundation"
[  1519.897] 	compiled for 1.14.0, module version = 0.0.2
[  1519.897] 	ABI class: X.Org Video Driver, version 14.1
[  1519.897] (II) FBDEV(0): using /dev/fb1
[  1519.897] 
Fatal server error:
[  1519.897] Cannot run in framebuffer mode. Please specify busIDs        for all framebuffer devices
[  1519.897] 
[  1519.897] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[  1519.897] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  1519.897] (EE) 
[  1519.901] Server terminated with error (1). Closing log file.

Any help is greatly appreciated,
Cameron

Offline

#2 2013-03-23 15:20:44

David Batson
Member
Registered: 2011-10-13
Posts: 640

Re: Cannot run in framebuffer mode

Do you have acpi installed?  You should be able to use Fn + F7 to toggle the displays.  Might need to create a couple of text files though to have this work.

Just an idea, instead of Xinerama you could try xrandr in a script.  I've done that before, but haven't messed with it lately.  Type xrandr by itself in terminal to see the display options (such as LVDS1, VGA1, HDMI1) that are available.
http://forums.fedoraforum.org/showpost. … ostcount=6

Offline

#3 2013-03-23 16:14:41

camerongray
Member
From: Edinburgh, Scotland
Registered: 2013-03-13
Posts: 3
Website

Re: Cannot run in framebuffer mode

David Batson wrote:

Do you have acpi installed?  You should be able to use Fn + F7 to toggle the displays.  Might need to create a couple of text files though to have this work.

Just an idea, instead of Xinerama you could try xrandr in a script.  I've done that before, but haven't messed with it lately.  Type xrandr by itself in terminal to see the display options (such as LVDS1, VGA1, HDMI1) that are available.
http://forums.fedoraforum.org/showpost. … ostcount=6

I don't have ACPI but I don't think that would help since in order to start X with my USB monitor connected I have to remove the internal LCD from my serverlayout.

If I run xrandr on my internal LCD it lists all the interfaces in the laptop but not the displaylink device and if I run it on the displaylink device it only shows the displaylink device.

Offline

#4 2013-03-23 17:45:01

David Batson
Member
Registered: 2011-10-13
Posts: 640

Re: Cannot run in framebuffer mode

I don't have any experience with displaylink.  I've only used VGA output in the past.

I do see this regarding framebuffer.  Makes me think you should not be using xf86-video-fbdev.
https://wiki.archlinux.org/index.php/Ke … de_Setting
http://en.gentoo-wiki.com/wiki/Kernel_Mode_Setting

Offline

#5 2013-03-23 17:56:30

David Batson
Member
Registered: 2011-10-13
Posts: 640

Re: Cannot run in framebuffer mode

Regarding starting X with your monitor connected, I don't know.  I just now tried my external TV monitor connected via Displayport > HDMI with my X220 (hadn't tried it before).  While in the XFCE desktop I just plugged it in, pressed Fn + F7 and was given a graphical menu to choose Laptop, HDMI1, or Both displays cloned.  It all works.

I do not have xf86-video-fbdev or xf86-video-displaylink installed.

# pacman -Ss xf86 | grep installed
extra/libxxf86dga 1.1.3-1 [installed]
extra/libxxf86vm 1.1.2-1 [installed]
extra/xf86-input-evdev 2.7.3-3 (xorg-drivers xorg) [installed]
extra/xf86-video-intel 2.21.5-1 (xorg-drivers xorg) [installed]
extra/xf86dgaproto 2.1-2 [installed]
extra/xf86vidmodeproto 2.3.1-2 [installed]
multilib/lib32-libxxf86vm 1.1.2-1 [installed]

Offline

#6 2013-03-23 18:06:52

David Batson
Member
Registered: 2011-10-13
Posts: 640

Re: Cannot run in framebuffer mode

I just set the display to laptop only, rebooted with the DisplayPort cable attached and got cloned displays on the laptop and TV.

Here is my xorg.conf file.  Haven't changed it in quite awhile.  Probably have some erroneous entries in there, but I am not having any problems that I am aware of.   From a pacman query, it looks like I have Xinerama installed, but it's not mentioned in my xorg.conf file.

cat /etc/X11/xorg.conf
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	Screen      1  "Screen1" RightOf "Screen0"
	Screen      2  "Screen2" RightOf "Screen1"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

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

Section "Module"
	Load  "dri2"
	Load  "dri"
	Load  "extmod"
	Load  "record"
	Load  "glx"
	Load  "dbe"
EndSection

Section "ServerFlags"
	Option	    "AIGLX" "on"
EndSection

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

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

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

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

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

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "DRI"                	# [<bool>]
        #Option     "ColorKey"           	# <i>
        #Option     "VideoKey"           	# <i>
        #Option     "FallbackDebug"      	# [<bool>]
        #Option     "Tiling"             	# [<bool>]
        #Option     "LinearFramebuffer"  	# [<bool>]
        #Option     "Shadow"             	# [<bool>]
        #Option     "SwapbuffersWait"    	# [<bool>]
        #Option     "TripleBuffer"       	# [<bool>]
        #Option     "XvMC"               	# [<bool>]
        #Option     "XvPreferOverlay"    	# [<bool>]
        #Option     "DebugFlushBatches"  	# [<bool>]
        #Option     "DebugFlushCaches"   	# [<bool>]
        #Option     "DebugWait"          	# [<bool>]
        #Option     "HotPlug"            	# [<bool>]
        #Option     "RelaxedFencing"     	# [<bool>]
	Identifier  "Card0"
	Driver      "intel"
	BusID       "PCI:0:2:0"
EndSection

Section "Device"

        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "Rotate"             	# <str>
        #Option     "fbdev"              	# <str>
        #Option     "debug"              	# [<bool>]
	Identifier  "Card1"
	Driver      "fbdev"
	BusID       "PCI:0:2:0"
EndSection

Section "Device"

        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "DefaultRefresh"     	# [<bool>]
        #Option     "ModeSetClearScreen" 	# [<bool>]
	Identifier  "Card2"
	Driver      "vesa"
	BusID       "PCI:0:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen2"
	Device     "Card2"
	Monitor    "Monitor2"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

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

Last edited by David Batson (2013-03-23 18:07:27)

Offline

#7 2013-03-23 18:57:07

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: Cannot run in framebuffer mode

Please use the edit button rather than repeatedly bumping your thread...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#8 2013-04-16 23:05:47

wassy
Member
Registered: 2013-04-16
Posts: 6

Re: Cannot run in framebuffer mode

I managed to get xf86-video-fbdev-for-displaylink installed. Had to move the modules to the correct location in /usr/lib/xorg/modules/driver/ and change the bitdepth to 16 in order for it to work. But I still get the module unload of whichever module is next. Whether intel or fbdev.

[    14.539] 
X.Org X Server 1.14.0
Release Date: 2013-03-05
[    14.540] X Protocol Version 11, Revision 0
[    14.540] Build Operating System: Linux 3.8.2-1-ARCH x86_64 
[    14.540] Current Operating System: Linux arch.agioit.com 3.8.7-1-ARCH #1 SMP PREEMPT Sat Apr 13 09:01:47 CEST 2013 x86_64
[    14.540] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b6ac9907-e07a-4c63-b4be-6660e0c85139 ro quiet
[    14.540] Build Date: 09 March 2013  11:43:05AM
[    14.540]  
[    14.540] Current version of pixman: 0.28.2
[    14.540] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    14.540] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    14.540] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 16 12:56:35 2013
[    14.705] (==) Using config file: "/etc/X11/xorg.conf"
[    14.705] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    14.705] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    14.862] (==) ServerLayout "Layout0"
[    14.862] (**) |-->Screen "Screen0" (0)
[    14.862] (**) |   |-->Monitor "DisplayLinkMonitor"
[    14.862] (**) |   |-->Device "DisplayLinkDevice"
[    14.862] (**) |-->Screen "Screen1" (1)
[    14.862] (**) |   |-->Monitor "Monitor0"
[    14.862] (**) |   |-->Device "Card0"
[    14.862] (**) |-->Screen "Screen2" (2)
[    14.862] (**) |   |-->Monitor "Monitor1"
[    14.862] (**) |   |-->Device "Card1"
[    14.862] (**) |-->Input Device "Keyboard0"
[    14.862] (**) |-->Input Device "Mouse0"
[    14.862] (**) Option "Xinerama" "On"
[    14.862] (==) Automatically adding devices
[    14.862] (==) Automatically enabling devices
[    14.862] (==) Automatically adding GPU devices
[    14.863] (**) Xinerama: enabled
[    15.083] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    15.084] 	Entry deleted from font path.
[    15.084] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    15.084] 	Entry deleted from font path.
[    15.122] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[    15.122] (==) ModulePath set to "/usr/lib/xorg/modules"
[    15.122] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    15.122] (WW) Disabling Keyboard0
[    15.122] (WW) Disabling Mouse0
[    15.122] (II) Loader magic: 0x7fdc20
[    15.122] (II) Module ABI versions:
[    15.122] 	X.Org ANSI C Emulation: 0.4
[    15.122] 	X.Org Video Driver: 14.1
[    15.122] 	X.Org XInput driver : 19.1
[    15.122] 	X.Org Server Extension : 7.0
[    15.122] (II) config/udev: Adding drm device (/dev/dri/card0)
[    15.124] (--) PCI:*(0:0:2:0) 8086:0126:106b:00e6 rev 9, Mem @ 0xa0000000/4194304, 0x90000000/268435456, I/O @ 0x00002000/64
[    15.137] Initializing built-in extension Generic Event Extension
[    15.137] Initializing built-in extension SHAPE
[    15.137] Initializing built-in extension MIT-SHM
[    15.137] Initializing built-in extension XInputExtension
[    15.137] Initializing built-in extension XTEST
[    15.137] Initializing built-in extension BIG-REQUESTS
[    15.137] Initializing built-in extension SYNC
[    15.137] Initializing built-in extension XKEYBOARD
[    15.137] Initializing built-in extension XC-MISC
[    15.137] Initializing built-in extension SECURITY
[    15.137] Initializing built-in extension XINERAMA
[    15.137] Initializing built-in extension XFIXES
[    15.137] Initializing built-in extension RENDER
[    15.137] Initializing built-in extension RANDR
[    15.137] Initializing built-in extension COMPOSITE
[    15.137] Initializing built-in extension DAMAGE
[    15.137] Initializing built-in extension MIT-SCREEN-SAVER
[    15.137] Initializing built-in extension DOUBLE-BUFFER
[    15.137] Initializing built-in extension RECORD
[    15.137] Initializing built-in extension DPMS
[    15.137] Initializing built-in extension X-Resource
[    15.137] Initializing built-in extension XVideo
[    15.138] Initializing built-in extension XVideo-MotionCompensation
[    15.138] Initializing built-in extension XFree86-VidModeExtension
[    15.138] Initializing built-in extension XFree86-DGA
[    15.138] Initializing built-in extension XFree86-DRI
[    15.138] Initializing built-in extension DRI2
[    15.138] (II) "glx" will be loaded by default.
[    15.138] (II) LoadModule: "dri2"
[    15.138] (II) Module "dri2" already built-in
[    15.138] (II) LoadModule: "glamoregl"
[    15.144] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    15.389] (II) Module glamoregl: vendor="X.Org Foundation"
[    15.389] 	compiled for 1.14.0, module version = 0.5.0
[    15.389] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.389] (II) LoadModule: "glx"
[    15.426] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    15.436] (II) Module glx: vendor="X.Org Foundation"
[    15.436] 	compiled for 1.14.0, module version = 1.0.0
[    15.436] 	ABI class: X.Org Server Extension, version 7.0
[    15.436] (==) AIGLX enabled
[    15.437] Loading extension GLX
[    15.437] (II) LoadModule: "fbdev"
[    15.437] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    15.444] (II) Module fbdev: vendor="X.Org Foundation"
[    15.445] 	compiled for 1.14.0, module version = 0.4.3
[    15.445] 	Module class: X.Org Video Driver
[    15.445] 	ABI class: X.Org Video Driver, version 14.1
[    15.445] (II) LoadModule: "intel"
[    15.445] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    15.481] (II) Module intel: vendor="X.Org Foundation"
[    15.481] 	compiled for 1.14.0, module version = 2.21.6
[    15.481] 	Module class: X.Org Video Driver
[    15.481] 	ABI class: X.Org Video Driver, version 14.1
[    15.481] (II) FBDEV: driver for framebuffer: fbdev
[    15.481] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
	Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
	Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
	Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
	Haswell Server (GT2+), Haswell SDV Desktop (GT1),
	Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
	Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
	Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
	Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
	Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
	Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
	Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
	Haswell ULT Server (GT1), Haswell ULT Server (GT2),
	Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
	Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
	Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
	Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
	Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
	ValleyView PO board
[    15.482] (++) using VT number 7

[    15.494] (II) Loading sub module "fbdevhw"
[    15.494] (II) LoadModule: "fbdevhw"
[    15.494] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    15.510] (II) Module fbdevhw: vendor="X.Org Foundation"
[    15.510] 	compiled for 1.14.0, module version = 0.0.2
[    15.510] 	ABI class: X.Org Video Driver, version 14.1
[    15.510] (**) FBDEV(0): claimed PCI slot 0@0:2:0
[    15.510] (II) FBDEV(0): using /dev/fb1
[    15.511] (II) FBDEV(0): Creating default Display subsection in Screen section
	"Screen0" for depth/fbbpp 16/16
[    15.511] (**) FBDEV(0): Depth 16, (--) framebuffer bpp 16
[    15.511] (==) FBDEV(0): RGB weight 565
[    15.511] (==) FBDEV(0): Default visual is TrueColor
[    15.511] (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
[    15.511] (II) FBDEV(0): hardware: udlfb (video memory: 4052kB)
[    15.511] (**) FBDEV(0): Option "fbdev" "/dev/fb1"
[    15.511] (II) FBDEV(0): checking modes against framebuffer device...
[    15.511] (II) FBDEV(0): checking modes against monitor...
[    15.511] (--) FBDEV(0): Virtual size is 1920x1080 (pitch 1920)
[    15.511] (**) FBDEV(0):  Built-in mode "current": 138.5 MHz, 66.6 kHz, 59.9 Hz
[    15.511] (II) FBDEV(0): Modeline "current"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1111 -hsync +vsync -csync (66.6 kHz b)
[    15.511] (==) FBDEV(0): DPI set to (96, 96)
[    15.511] (II) Loading sub module "fb"
[    15.511] (II) LoadModule: "fb"
[    15.511] (II) Loading /usr/lib/xorg/modules/libfb.so
[    15.513] (II) Module fb: vendor="X.Org Foundation"
[    15.513] 	compiled for 1.14.0, module version = 1.0.0
[    15.513] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.513] (**) FBDEV(0): using shadow framebuffer
[    15.513] (II) Loading sub module "shadow"
[    15.513] (II) LoadModule: "shadow"
[    15.513] (II) Loading /usr/lib/xorg/modules/libshadow.so
[    15.520] (II) Module shadow: vendor="X.Org Foundation"
[    15.520] 	compiled for 1.14.0, module version = 1.1.0
[    15.520] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.520] (II) UnloadModule: "intel"
[    15.520] (II) Unloading intel
[    15.546] (==) FBDEV(0): Backing store disabled
[    15.546] (==) FBDEV(0): DPMS enabled
[    15.546] (==) RandR enabled
[    15.554] (II) AIGLX: Screen 0 is not DRI2 capable
[    15.554] (II) AIGLX: Screen 0 is not DRI capable
[    16.124] (II) AIGLX: Loaded and initialized swrast
[    16.124] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[    16.464] (II) config/udev: Adding input device Power Button (/dev/input/event8)
[    16.464] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    16.464] (II) LoadModule: "evdev"
[    16.465] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.487] (II) Module evdev: vendor="X.Org Foundation"
[    16.487] 	compiled for 1.14.0, module version = 2.8.0
[    16.487] 	Module class: X.Org XInput Driver
[    16.487] 	ABI class: X.Org XInput driver, version 19.1
[    16.487] (II) Using input driver 'evdev' for 'Power Button'
[    16.487] (**) Power Button: always reports core events
[    16.487] (**) evdev: Power Button: Device: "/dev/input/event8"
[    16.487] (--) evdev: Power Button: Vendor 0 Product 0x1
[    16.488] (--) evdev: Power Button: Found keys
[    16.488] (II) evdev: Power Button: Configuring as keyboard
[    16.488] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event8"
[    16.488] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    16.488] (**) Option "xkb_rules" "evdev"
[    16.488] (**) Option "xkb_model" "evdev"
[    16.488] (**) Option "xkb_layout" "us"
[    16.518] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[    16.518] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    16.518] (II) Using input driver 'evdev' for 'Video Bus'
[    16.518] (**) Video Bus: always reports core events
[    16.518] (**) evdev: Video Bus: Device: "/dev/input/event9"
[    16.518] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    16.518] (--) evdev: Video Bus: Found keys
[    16.518] (II) evdev: Video Bus: Configuring as keyboard
[    16.518] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9/event9"
[    16.518] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    16.518] (**) Option "xkb_rules" "evdev"
[    16.518] (**) Option "xkb_model" "evdev"
[    16.518] (**) Option "xkb_layout" "us"
[    16.519] (II) config/udev: Adding input device Power Button (/dev/input/event6)
[    16.519] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    16.519] (II) Using input driver 'evdev' for 'Power Button'
[    16.519] (**) Power Button: always reports core events
[    16.519] (**) evdev: Power Button: Device: "/dev/input/event6"
[    16.519] (--) evdev: Power Button: Vendor 0 Product 0x1
[    16.519] (--) evdev: Power Button: Found keys
[    16.519] (II) evdev: Power Button: Configuring as keyboard
[    16.519] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6/event6"
[    16.519] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    16.519] (**) Option "xkb_rules" "evdev"
[    16.519] (**) Option "xkb_model" "evdev"
[    16.519] (**) Option "xkb_layout" "us"
[    16.521] (II) config/udev: Adding input device Sleep Button (/dev/input/event7)
[    16.521] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    16.521] (II) Using input driver 'evdev' for 'Sleep Button'
[    16.521] (**) Sleep Button: always reports core events
[    16.521] (**) evdev: Sleep Button: Device: "/dev/input/event7"
[    16.521] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    16.521] (--) evdev: Sleep Button: Found keys
[    16.521] (II) evdev: Sleep Button: Configuring as keyboard
[    16.521] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7/event7"
[    16.521] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    16.521] (**) Option "xkb_rules" "evdev"
[    16.521] (**) Option "xkb_model" "evdev"
[    16.521] (**) Option "xkb_layout" "us"
[    16.522] (II) config/udev: Adding drm device (/dev/dri/card0)
[    16.523] (II) config/udev: Adding input device Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) (/dev/input/event0)
[    16.523] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
[    16.523] (II) Using input driver 'evdev' for 'Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)'
[    16.523] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): always reports core events
[    16.523] (**) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Device: "/dev/input/event0"
[    16.523] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Vendor 0x45e Product 0x39
[    16.523] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found 9 mouse buttons
[    16.523] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
[    16.523] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found relative axes
[    16.523] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found x and y relative axes
[    16.523] (II) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Configuring as mouse
[    16.523] (II) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Adding scrollwheel support
[    16.523] (**) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
[    16.523] (**) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    16.523] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.0/input/input0/event0"
[    16.523] (II) XINPUT: Adding extended input device "Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)" (type: MOUSE, id 10)
[    16.523] (II) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): initialized for relative axes.
[    16.524] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
[    16.524] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
[    16.524] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
[    16.524] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
[    16.524] (II) config/udev: Adding input device Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) (/dev/input/mouse0)
[    16.524] (II) No input driver specified, ignoring this device.
[    16.524] (II) This device may have been added with another device file.
[    16.525] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event3)
[    16.525] (II) No input driver specified, ignoring this device.
[    16.525] (II) This device may have been added with another device file.
[    16.525] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event4)
[    16.526] (II) No input driver specified, ignoring this device.
[    16.526] (II) This device may have been added with another device file.
[    16.526] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event10)
[    16.526] (II) No input driver specified, ignoring this device.
[    16.526] (II) This device may have been added with another device file.
[    16.526] (II) config/udev: Adding input device HDA Intel PCH SPDIF In (/dev/input/event11)
[    16.526] (II) No input driver specified, ignoring this device.
[    16.526] (II) This device may have been added with another device file.
[    16.527] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
[    16.527] (II) No input driver specified, ignoring this device.
[    16.527] (II) This device may have been added with another device file.
[    16.527] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event13)
[    16.527] (II) No input driver specified, ignoring this device.
[    16.527] (II) This device may have been added with another device file.
[    16.527] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event1)
[    16.527] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
[    16.527] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
[    16.527] (**) Microsoft Wired Keyboard 600: always reports core events
[    16.527] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event1"
[    16.527] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
[    16.527] (--) evdev: Microsoft Wired Keyboard 600: Found keys
[    16.527] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
[    16.527] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.2/2-1.2:1.0/input/input1/event1"
[    16.527] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 11)
[    16.527] (**) Option "xkb_rules" "evdev"
[    16.527] (**) Option "xkb_model" "evdev"
[    16.527] (**) Option "xkb_layout" "us"
[    16.527] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event2)
[    16.527] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
[    16.527] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
[    16.527] (**) Microsoft Wired Keyboard 600: always reports core events
[    16.527] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event2"
[    16.527] (II) evdev: Microsoft Wired Keyboard 600: Using mtdev for this device
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found 1 mouse buttons
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found scroll wheel(s)
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found relative axes
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found absolute axes
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found absolute multitouch axes
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found x and y absolute axes
[    16.528] (--) evdev: Microsoft Wired Keyboard 600: Found keys
[    16.528] (II) evdev: Microsoft Wired Keyboard 600: Forcing relative x/y axes to exist.
[    16.528] (II) evdev: Microsoft Wired Keyboard 600: Configuring as mouse
[    16.528] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
[    16.528] (II) evdev: Microsoft Wired Keyboard 600: Adding scrollwheel support
[    16.528] (**) evdev: Microsoft Wired Keyboard 600: YAxisMapping: buttons 4 and 5
[    16.528] (**) evdev: Microsoft Wired Keyboard 600: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    16.528] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.2/2-1.2:1.1/input/input2/event2"
[    16.528] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 12)
[    16.528] (**) Option "xkb_rules" "evdev"
[    16.528] (**) Option "xkb_model" "evdev"
[    16.528] (**) Option "xkb_layout" "us"
[    16.528] (II) evdev: Microsoft Wired Keyboard 600: initialized for relative axes.
[    16.528] (WW) evdev: Microsoft Wired Keyboard 600: ignoring absolute axes.
[    16.528] (**) Microsoft Wired Keyboard 600: (accel) keeping acceleration scheme 1
[    16.528] (**) Microsoft Wired Keyboard 600: (accel) acceleration profile 0
[    16.528] (**) Microsoft Wired Keyboard 600: (accel) acceleration factor: 2.000
[    16.528] (**) Microsoft Wired Keyboard 600: (accel) acceleration threshold: 4
[    16.528] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/js0)
[    16.528] (II) No input driver specified, ignoring this device.
[    16.528] (II) This device may have been added with another device file.
[    16.528] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[    16.528] (II) No input driver specified, ignoring this device.
[    16.528] (II) This device may have been added with another device file.

Offline

Board footer

Powered by FluxBB