summaryrefslogtreecommitdiffstats
path: root/meta/packages/xorg-xserver/xserver-xf86-dri-lite/xorg.conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/xorg-xserver/xserver-xf86-dri-lite/xorg.conf')
-rw-r--r--meta/packages/xorg-xserver/xserver-xf86-dri-lite/xorg.conf73
1 files changed, 73 insertions, 0 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-dri-lite/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-dri-lite/xorg.conf
new file mode 100644
index 0000000000..e3ffbe6ed3
--- /dev/null
+++ b/meta/packages/xorg-xserver/xserver-xf86-dri-lite/xorg.conf
@@ -0,0 +1,73 @@
1
2Section "Files"
3EndSection
4
5Section "InputDevice"
6 Identifier "Synaptics Touchpad"
7 Driver "synaptics"
8 Option "SendCoreEvents" "true"
9 Option "Device" "/dev/psaux"
10 Option "Protocol" "auto-dev"
11 Option "HorizEdgeScroll" "0"
12EndSection
13
14Section "InputDevice"
15 Driver "wacom"
16 Identifier "stylus"
17 Option "Device" "/dev/input/wacom"
18 Option "Type" "stylus"
19 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
20EndSection
21
22Section "InputDevice"
23 Driver "wacom"
24 Identifier "eraser"
25 Option "Device" "/dev/input/wacom"
26 Option "Type" "eraser"
27 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
28EndSection
29
30Section "InputDevice"
31 Driver "wacom"
32 Identifier "cursor"
33 Option "Device" "/dev/input/wacom"
34 Option "Type" "cursor"
35 Option "ForceDevice" "ISDV4" # Tablet PC ONLY
36EndSection
37
38Section "Device"
39 Identifier "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
40 Driver "intel"
41 BusID "PCI:0:2:0"
42 Option "AccelMethod" "EXA"
43EndSection
44
45Section "Monitor"
46 Identifier "Generic Monitor"
47 Option "DPMS"
48EndSection
49
50Section "Screen"
51 Identifier "Default Screen"
52 Device "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
53 Monitor "Generic Monitor"
54 DefaultDepth 24
55 SubSection "Display"
56 Modes "1024x768" "720x400" "640x480"
57 Virtual 3000 2048
58 EndSubSection
59EndSection
60
61Section "ServerLayout"
62 Identifier "Default Layout"
63 Screen "Default Screen"
64 InputDevice "Generic Keyboard"
65 InputDevice "Configured Mouse"
66
67# Uncomment if you have a wacom tablet
68# InputDevice "stylus" "SendCoreEvents"
69# InputDevice "cursor" "SendCoreEvents"
70# InputDevice "eraser" "SendCoreEvents"
71 InputDevice "Synaptics Touchpad"
72EndSection
73