Corrected problem that prevented xserver init script from stopping xserver.
[profile/ivi/xorg-x11-server-misc.git] / i386-common / xorg.conf
1 Section "ServerLayout"
2         Identifier              "Test Layout"
3         Screen          0       "Screen0" 0 0
4 EndSection
5
6 Section "Screen"
7         Identifier              "Screen0"
8         Device                  "intel"
9         Monitor                 "Monitor0"
10         #       SubSection              "Display"
11         #               Modes           "480x800"
12         #       EndSubSection
13 EndSection
14
15 Section "Monitor"
16         Identifier              "Monitor0"
17         Option                  "DPMS"  "true"
18 EndSection
19
20 Section "ServerFlags"
21         Option "blank time"     "0"
22         Option "standby time"   "0"
23         Option "suspend time"   "0"
24         Option "off time"       "0"
25 EndSection
26
27 Section "Device"
28         Identifier              "intel"
29         Driver                  "intel"
30         Option                  "fbdev"         "/dev/fb0"
31 EndSection
32
33 Section "InputClass"
34         Identifier "evdev pointer catchall"
35         MatchIsPointer "on"
36         MatchDevicePath "/dev/input/event*"
37         Driver "evdev"
38 EndSection
39
40 Section "InputClass"
41         Identifier "evdev keyboard catchall"
42         MatchIsKeyboard "on"
43         MatchDevicePath "/dev/input/event*"
44         Driver "evdev"
45 EndSection