packages: move Xorg category to its own feed, move X-related packages as well
[openwrt/svn-archive/feeds.git] / xorg / xorg / xserver / xorg-server / files / config.xorg / generic
1 # xorg configuration
2
3 Section "ServerLayout"
4 Identifier "Default Layout"
5 Screen 0 "Screen0" 0 0
6 InputDevice "Mouse0" "CorePointer"
7 InputDevice "Mouse1" "CorePointer"
8 InputDevice "Keyboard0" "CoreKeyboard"
9 EndSection
10
11 Section "Module"
12 Load "dbe"
13 Load "extmod"
14 Load "fbdevhw"
15 # Load "glx"
16 Load "record"
17 Load "freetype"
18 Load "type1"
19 EndSection
20
21 Section "InputDevice"
22 Identifier "Keyboard0"
23 Driver "keyboard"
24 EndSection
25
26 Section "InputDevice"
27 Identifier "Mouse0"
28 Driver "mouse"
29 Option "Protocol" "PS/2"
30 Option "Device" "/dev/psaux"
31 EndSection
32
33 Section "InputDevice"
34 Identifier "Mouse1"
35 Driver "mouse"
36 Option "Protocol" "IMPS/2"
37 Option "Device" "/dev/input/mice"
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 "Videocard0"
49 Driver "vesa"
50 VendorName "Videocard vendor"
51 BoardName "Vesa driver"
52 EndSection
53
54 Section "Device"
55 Identifier "FBDev"
56 Driver "fbdev"
57 EndSection
58
59 Section "Screen"
60 Identifier "Screen0"
61 Device "Videocard0"
62 Monitor "Monitor0"
63 EndSection
64