summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2012-01-10 11:09:56 +0100
committerHans de Goede <hdegoede@redhat.com>2012-01-10 13:26:58 +0100
commit7ff55ae020d3adee31d25d58ca043086eed2844b (patch)
treed254d6789c694cf28b70a904830841008e50462d /data
parent10ab81dee0f73df55be6bfab22c4fbce9473f6ff (diff)
downloadvd_agent-7ff55ae020d3adee31d25d58ca043086eed2844b.tar.gz
vd_agent-7ff55ae020d3adee31d25d58ca043086eed2844b.tar.xz
vd_agent-7ff55ae020d3adee31d25d58ca043086eed2844b.zip
Add a RHEL-5 README and xorg.conf example file
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'data')
-rw-r--r--data/xorg.conf.RHEL-542
1 files changed, 42 insertions, 0 deletions
diff --git a/data/xorg.conf.RHEL-5 b/data/xorg.conf.RHEL-5
new file mode 100644
index 0000000..67fd5be
--- /dev/null
+++ b/data/xorg.conf.RHEL-5
@@ -0,0 +1,42 @@
+Section "ServerLayout"
+ Identifier "Default Layout"
+ Screen 0 "Screen0" 0 0
+ InputDevice "Keyboard0" "CoreKeyboard"
+ InputDevice "Mouse" "CorePointer"
+ InputDevice "Tablet" "SendCoreEvents"
+EndSection
+
+Section "InputDevice"
+ Identifier "Keyboard0"
+ Driver "kbd"
+ Option "XkbModel" "pc105"
+ Option "XkbLayout" "us"
+EndSection
+
+Section "InputDevice"
+ Identifier "Mouse"
+ Driver "mouse"
+ Option "Device" "/dev/input/mice"
+ #Option "Emulate3Buttons" "yes"
+EndSection
+
+Section "InputDevice"
+ Identifier "Tablet"
+ Driver "evdev"
+ Option "Device" "/dev/input/event3"
+EndSection
+
+Section "Device"
+ Identifier "Videocard0"
+ Driver "qxl"
+EndSection
+
+Section "Screen"
+ Identifier "Screen0"
+ Device "Videocard0"
+ DefaultDepth 24
+ SubSection "Display"
+ Viewport 0 0
+ Depth 24
+ EndSubSection
+EndSection