blob: d191868ae491f76719ab9ef08619eb0ffc3759c2 [file] [log] [blame]
Brad Bishop93fb5352015-09-09 03:59:20 +00001
2Section "Files"
3EndSection
4
5Section "InputDevice"
6 Identifier "Generic Keyboard"
7 Driver "evdev"
8 Option "CoreKeyboard"
9 Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd"
10 Option "XkbRules" "xorg"
11 Option "XkbModel" "evdev"
12 Option "XkbLayout" "us"
13EndSection
14
15Section "InputDevice"
16 Identifier "Configured Mouse"
17 Driver "mouse"
18
19 Option "CorePointer"
20 Option "Device" "/dev/input/mice"
21 Option "Protocol" "ImPS/2"
22 Option "ZAxisMapping" "4 5"
23 Option "Emulate3Buttons" "true"
24EndSection
25
26Section "InputDevice"
27 Identifier "Qemu Tablet"
28 Driver "evdev"
29 Option "CorePointer"
30 Option "Device" "/dev/input/touchscreen0"
31 Option "USB" "on"
32EndSection
33
34Section "Device"
35 Identifier "Graphics Controller"
36 Driver "fbdev"
37
38EndSection
39
40Section "Monitor"
41 Identifier "Generic Monitor"
42 Option "DPMS"
43 # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz
44 Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync
45 # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
46 ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
47 # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
48 ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
49 # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
50 ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
51 # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
52 ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
53EndSection
54
55Section "Screen"
56 Identifier "Default Screen"
57 Device "Graphics Controller"
58 Monitor "Generic Monitor"
59 SubSection "Display"
60 Modes "640x480"
61 EndSubSection
62EndSection
63
64Section "ServerLayout"
65 Identifier "Default Layout"
66 Screen "Default Screen"
67 InputDevice "Generic Keyboard"
68 # InputDevice "Configured Mouse"
69 InputDevice "QEMU Tablet"
70 Option "AllowEmptyInput" "no"
71EndSection