summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/xorg-xserver/xserver-xorg-conf/htcdream/xorg.conf
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-graphics/xorg-xserver/xserver-xorg-conf/htcdream/xorg.conf')
-rw-r--r--meta-oe/recipes-graphics/xorg-xserver/xserver-xorg-conf/htcdream/xorg.conf69
1 files changed, 69 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xorg-xserver/xserver-xorg-conf/htcdream/xorg.conf b/meta-oe/recipes-graphics/xorg-xserver/xserver-xorg-conf/htcdream/xorg.conf
new file mode 100644
index 000000000..be3c6ec54
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-xserver/xserver-xorg-conf/htcdream/xorg.conf
@@ -0,0 +1,69 @@
1Section "Monitor"
2 Identifier "Monitor0"
3 Mode "320x480"
4 DotClock 0
5 HTimings 320 320 320 320
6 VTimings 480 480 480 480
7 Flags "-HSync" "-VSync"
8 EndMode
9EndSection
10
11Section "Device"
12 Identifier "fbdev"
13 Driver "fbdev"
14 Option "ShadowFB" "on"
15 Option "Rotate" "CW" # comment for disabling rotation
16EndSection
17
18Section "Screen"
19 Identifier "Framebuffer"
20 Device "fbdev"
21 Monitor "Monitor0"
22 DefaultFbBpp 16
23 SubSection "Display"
24 Depth 16
25 Modes "320x480"
26 EndSubSection
27EndSection
28
29
30Section "ServerLayout"
31 Identifier "Builtin Default Layout"
32 Screen "Framebuffer"
33 InputDevice "Trackball"
34 InputDevice "Touchscreen"
35 InputDevice "Keyboard"
36EndSection
37
38Section "InputDevice"
39 Identifier "Trackball"
40 Driver "evdev"
41 Option "Device" "/dev/input/event2"
42 Option "ScreenNumber" "0"
43 Option "ReportingMode" "Raw"
44 Option "SwapAxes" "True" # comment for disabling rotation
45 Option "InvertY" "True" # comment for disabling rotation
46EndSection
47
48
49Section "InputDevice"
50 Identifier "Touchscreen"
51 Driver "evdev"
52 Option "Device" "/dev/input/event1"
53 Option "SwapAxes" "True" # comment for disabling rotation
54 Option "InvertY" "True" # comment for disabling rotation
55 Option "ReportingMode" "Raw"
56EndSection
57
58Section "InputDevice"
59 Identifier "Keyboard"
60 Driver "kbd"
61 Option "XkbLayout" "us"
62 Option "XkbModel" "htcdream"
63EndSection
64
65
66Section "ServerFlags"
67 Option "AutoAddDevices" "false"
68EndSection
69