From dd77a3ec089fff97da2c3d361d945838b2b88bd4 Mon Sep 17 00:00:00 2001 From: James Mckenzie Date: Sat, 12 Dec 2009 00:57:05 +0000 Subject: [PATCH] don't use the GPU in dom0 --- .../etc/X11/xorg.conf | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 target/generic/target_xenclient_skeleton/etc/X11/xorg.conf diff --git a/target/generic/target_xenclient_skeleton/etc/X11/xorg.conf b/target/generic/target_xenclient_skeleton/etc/X11/xorg.conf new file mode 100644 index 0000000..515bf79 --- /dev/null +++ b/target/generic/target_xenclient_skeleton/etc/X11/xorg.conf @@ -0,0 +1,71 @@ + +# Xorg configuration created by system-config-display + +Section "ServerLayout" + Identifier "Layout0" + Screen 0 "Screen0" 0 0 + InputDevice "Keyboard0" "CoreKeyboard" + InputDevice "Mouse0" "CorePointer" +EndSection + +Section "ServerFlags" + Option "BlankTime" "35000" + Option "StandbyTime" "35000" + Option "SuspendTime" "35000" + Option "OffTime" "35000" + Option "AllowMouseOpenFail" "on" + Option "AllowEmptyInput" "false" + Option "AutoAddDevices" "false" +EndSection + +Section "InputDevice" + Identifier "Keyboard0" + Driver "kbd" + Option "XkbModel" "pc105" + Option "XkbLayout" "us+inet" +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" + ModelName "Monitor0" + Option "dpms" "off" +EndSection + +Section "Monitor" + Identifier "Monitor1" + ModelName "Monitor1" + Option "dpms" "off" + Option "Clone" "True" +EndSection + +Section "Device" + Identifier "intel" + Driver "intel" + Option "FramebufferCompression" "Off" + Option "Tiling" "Off" + Option "Clone" "True" + Option "Monitor-LVDS" "Monitor0" + Option "Monitor-VGA" "Monitor1" + Option "NoAccel" "true" + Option "SWCursor" "boolean" + BusID "PCI:0:2:0" +EndSection + +Section "Screen" + Identifier "Screen0" + Device "intel" + Monitor "Monitor0" + DefaultDepth 24 + SubSection "Display" + Viewport 0 0 + Depth 24 + EndSubSection +EndSection -- 2.39.5