summaryrefslogtreecommitdiffstats
path: root/meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-09-29 19:47:52 +0000
committerRichard Purdie <richard@openedhand.com>2008-09-29 19:47:52 +0000
commit05107cfb6911b8bf7559d5e4da54f770d7790830 (patch)
tree50047df674a7a94ffebb26ab90c758543e6dc056 /meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf
parent897f19396598874fafe8ad9f966175b009b7deef (diff)
downloadpoky-05107cfb6911b8bf7559d5e4da54f770d7790830.tar.gz
xserver-xf86-lite: Add a non-dri version of the server for use when dri/gl isn't appropriate
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5323 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf')
-rw-r--r--meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf87
1 files changed, 87 insertions, 0 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf
new file mode 100644
index 0000000000..44a530e0f9
--- /dev/null
+++ b/meta/packages/xorg-xserver/xserver-xf86-lite/xorg.conf
@@ -0,0 +1,87 @@
1
2Section "Files"
3EndSection
4
5Section "InputDevice"
6 Identifier "Generic Keyboard"
7 Driver "kbd"
8 Option "CoreKeyboard"
9 Option "XkbRules" "xorg"
10 Option "XkbModel" "pc105"
11 Option "XkbLayout" "us"
12EndSection
13
14Section "InputDevice"
15 Identifier "Configured Mouse"
16 Driver "mouse"
17 Option "CorePointer"
18 Option "Device" "/dev/input/mice"
19 Option "Protocol" "ImPS/2"
20 Option "ZAxisMapping" "4 5"
21 Option "Emulate3Buttons" "true"
22EndSection
23
24Section "InputDevice"
25 Identifier "Synaptics Touchpad"
26 Driver "synaptics"
27 Option "SendCoreEvents" "true"
28 Option "Device" "/dev/psaux"
29 Option "Protocol" "auto-dev"
30 Option "HorizEdgeScroll" "0"
31EndSection
32
33Section "InputDevice"
34 Driver "wacom"
35 Identifier "stylus"
36 Option "Device" "/dev/input/wacom"
37 Option "Type" "stylus"
38 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
39EndSection
40
41Section "InputDevice"
42 Driver "wacom"
43 Identifier "eraser"
44 Option "Device" "/dev/input/wacom"
45 Option "Type" "eraser"
46 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
47EndSection
48
49Section "InputDevice"
50 Driver "wacom"
51 Identifier "cursor"
52 Option "Device" "/dev/input/wacom"
53 Option "Type" "cursor"
54 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
55EndSection
56
57Section "Device"
58 Identifier "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
59 Driver "intel"
60 BusID "PCI:0:2:0"
61EndSection
62
63Section "Monitor"
64 Identifier "Generic Monitor"
65 Option "DPMS"
66EndSection
67
68Section "Screen"
69 Identifier "Default Screen"
70 Device "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
71 Monitor "Generic Monitor"
72 DefaultDepth 24
73EndSection
74
75Section "ServerLayout"
76 Identifier "Default Layout"
77 Screen "Default Screen"
78 InputDevice "Generic Keyboard"
79 InputDevice "Configured Mouse"
80
81# Uncomment if you have a wacom tablet
82# InputDevice "stylus" "SendCoreEvents"
83# InputDevice "cursor" "SendCoreEvents"
84# InputDevice "eraser" "SendCoreEvents"
85 InputDevice "Synaptics Touchpad"
86EndSection
87