Merge branch 'org.openembedded.dev' of git://git.openembedded.net/openembedded into...
[vuplus_openembedded] / packages / xorg-xserver / xserver-xorg / omap3evm / xorg.conf
1
2 # xorg configuration
3
4 Section "ServerLayout"
5         Identifier     "Default Layout"
6         Screen      0  "Screen0" 0 0
7         InputDevice    "touchscreen0" "CorePointer"
8         InputDevice    "Keyboard0" "CoreKeyboard"
9 EndSection
10
11 Section "Files"
12
13 # RgbPath is the location of the RGB database.  Note, this is the name of the 
14 # file minus the extension (like ".txt" or ".db").  There is normally
15 # no need to change the default.
16 # Multiple FontPath entries are allowed (they are concatenated together)
17 # By default, Red Hat 6.0 and later now use a font server independent of
18 # the X server to render fonts.
19 #       FontPath     "unix/:7100"
20         FontPath     "/usr/lib/X11/fonts/misc"
21 EndSection
22
23 Section "Module"
24         Load  "dbe"
25         Load  "extmod"
26         Load  "fbdevhw"
27 #       Load  "glx"
28         Load  "record"
29         Load  "freetype"
30         Load  "type1"
31         Load "tslib"
32 # to enable Xv, link /dev/videox to video device, eg. ln -s video0 /dev/videox
33 #       Load  "z4l"
34 EndSection
35
36 Section "InputDevice"
37
38 # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
39 #       Option  "Xleds"         "1 2 3"
40 # To disable the XKEYBOARD extension, uncomment XkbDisable.
41 #       Option  "XkbDisable"
42 # To customise the XKB settings to suit your keyboard, modify the
43 # lines below (which are the defaults).  For example, for a non-U.S.
44 # keyboard, you will probably want to use:
45 #       Option  "XkbModel"      "pc102"
46 # If you have a US Microsoft Natural keyboard, you can use:
47 #       Option  "XkbModel"      "microsoft"
48 #
49 # Then to change the language, change the Layout setting.
50 # For example, a german layout can be obtained with:
51 #       Option  "XkbLayout"     "de"
52 # or:
53 #       Option  "XkbLayout"     "de"
54 #       Option  "XkbVariant"    "nodeadkeys"
55 #
56 # If you'd like to switch the positions of your capslock and
57 # control keys, use:
58 #       Option  "XkbOptions"    "ctrl:swapcaps"
59 # Or if you just want both to be control, use:
60 #       Option  "XkbOptions"    "ctrl:nocaps"
61 #
62         Identifier  "Keyboard0"
63         Driver      "keyboard"
64         Option      "XkbModel" "pc105"
65         Option      "XkbLayout" "us"
66 EndSection
67
68 Section "InputDevice"
69         Identifier  "touchscreen0"
70         Driver      "tslib"
71         Option      "TslibDevice" "/dev/input/touchscreen0"
72 EndSection
73
74 Section "Monitor"
75         Identifier   "Monitor0"
76         VendorName   "Monitor Vendor"
77         ModelName    "NEC FP2141SB"
78 #       DisplaySize  400 300
79 # Note: setting HorizSync/VertRefresh will override DDC probe
80 #       HorizSync    30.0 - 140.0
81 #       VertRefresh  25.0 - 160.0
82         Option       "dpms"
83 EndSection
84
85 Section "Monitor"
86         Identifier   "Monitor1"
87         VendorName   "Generic Vendor"
88         ModelName    "Generic Monitor"
89         HorizSync    28-50
90         VertRefresh  43-73
91         Modeline     "800x600-60"  40.0000  800  840  976 1056   600  601  605  628
92         Modeline     "800x600-72"  50.0000  800  856  976 1040   600  637  643  666
93         Modeline     "640x480-60"  25.1749  640  656  744  800   480  490  492  525 -HSync -VSync
94         Modeline     "640x480-72"  31.5000  640  664  704  832   480  489  492  520 -HSync -VSync
95         Option       "dpms"
96 EndSection
97
98
99 Section "Device"
100         Identifier  "FBDev"
101         Driver      "omapfb"
102         #Option     "shadowfb" "off"
103 EndSection
104
105 Section "Screen"
106     Identifier  "Screen0"
107     Device      "FBDev"
108     Monitor     "Monitor0"
109     DefaultDepth 16
110
111     SubSection "Display"
112         Depth           8
113         Modes           "1024x768" "800x600" "640x480"
114     EndSubsection
115
116     SubSection "Display"
117         Depth           16
118         Modes           "1024x768" "800x600" "640x480"
119     EndSubsection
120
121     SubSection "Display"
122         Depth           24
123         FbBpp           32
124         Modes           "1024x768" "800x600" "640x480"
125     EndSubsection
126
127 EndSection
128
129 Section "DRI"
130         Group        0
131         Mode         0666
132 EndSection
133