iop32x: moved to targets feed
[openwrt.git] / target / linux / x86 / olpc / base-files / etc / X11 / xorg.conf
1 # xorg configuration
2
3 Section "ServerLayout"
4         Identifier     "Default Layout"
5         Screen      0  "Screen0" 0 0
6         InputDevice    "Mouse0" "CorePointer"
7         InputDevice    "Keyboard0" "CoreKeyboard"
8 EndSection
9
10 Section "Files"
11         FontPath     "/usr/lib/X11/fonts/misc"
12 EndSection
13
14 Section "Module"
15         Load  "dbe"
16         Load  "extmod"
17         Load  "fbdevhw"
18 #       Load  "glx"
19         Load  "record"
20         Load  "freetype"
21         Load  "type1"
22 EndSection
23
24 Section "InputDevice"
25         Identifier  "Keyboard0"
26         Driver      "keyboard"
27         Option      "XkbModel" "pc105"
28         Option      "XkbLayout" "us"
29 EndSection
30
31 Section "InputDevice"
32         Identifier  "Mouse0"
33         Driver      "mouse"
34         Option      "Protocol" "PS/2"
35         Option      "Device" "/dev/psaux"
36         Option      "ZAxisMapping" "4 5"
37         Option      "Emulate3Buttons" "yes"
38 EndSection
39
40 Section "Monitor"
41         Identifier   "Monitor0"
42         VendorName   "Monitor Vendor"
43         ModelName    "OWRT"
44         Option       "dpms"
45 EndSection
46
47 Section "Device"
48         Identifier  "FBDev"
49         Driver      "fbdev"
50         #Option     "shadowfb" "off"
51         VideoRam    4096
52 EndSection
53
54 Section "Screen"
55     Identifier  "Screen0"
56     Device      "FBDev"
57     Monitor     "Monitor0"
58     DefaultDepth 16
59
60     SubSection "Display"
61         Depth           16
62         Modes           "1200x900-75"
63     EndSubsection
64
65 EndSection
66
67 Section "DRI"
68         Group        0
69         Mode         0666
70 EndSection
71