diff options
author | Enric Balletbo i Serra <eballetbo@iseebcn.com> | 2009-09-28 10:30:53 +0200 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-10-14 16:18:17 +0100 |
commit | 65b24a0d83f7e835d5d03f9ef1020b25d5a3f9e9 (patch) | |
tree | 995ba8b2b7340c8ee9a2b050efdea3a65f4b9924 /meta/packages/xorg-xserver/xserver-xf86-config | |
parent | f4ccb8fb83d75fff898706f09e285faef25cc81a (diff) | |
download | poky-65b24a0d83f7e835d5d03f9ef1020b25d5a3f9e9.tar.gz |
xserver-xf86-config: Add version for IGEP v2 board
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/xorg-xserver/xserver-xf86-config')
-rw-r--r-- | meta/packages/xorg-xserver/xserver-xf86-config/igep0020b/xorg.conf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-config/igep0020b/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-config/igep0020b/xorg.conf new file mode 100644 index 0000000000..154497003a --- /dev/null +++ b/meta/packages/xorg-xserver/xserver-xf86-config/igep0020b/xorg.conf | |||
@@ -0,0 +1,48 @@ | |||
1 | |||
2 | Section "Files" | ||
3 | EndSection | ||
4 | |||
5 | Section "InputDevice" | ||
6 | Identifier "Generic Keyboard" | ||
7 | Driver "kbd" | ||
8 | Option "CoreKeyboard" | ||
9 | Option "XkbRules" "xorg" | ||
10 | Option "XkbModel" "pc105" | ||
11 | Option "XkbLayout" "us" | ||
12 | EndSection | ||
13 | |||
14 | Section "InputDevice" | ||
15 | Identifier "Configured Mouse" | ||
16 | Driver "mouse" | ||
17 | Option "CorePointer" | ||
18 | Option "Device" "/dev/input/mice" | ||
19 | Option "Protocol" "ImPS/2" | ||
20 | Option "ZAxisMapping" "4 5" | ||
21 | Option "Emulate3Buttons" "true" | ||
22 | EndSection | ||
23 | |||
24 | Section "Device" | ||
25 | Identifier "OMAPFB Graphics Controller" | ||
26 | Driver "omapfb" | ||
27 | EndSection | ||
28 | |||
29 | Section "Monitor" | ||
30 | Identifier "Generic Monitor" | ||
31 | Option "DPMS" | ||
32 | EndSection | ||
33 | |||
34 | Section "Screen" | ||
35 | Identifier "Default Screen" | ||
36 | Device "OMAPFB Graphics Controller" | ||
37 | Monitor "Generic Monitor" | ||
38 | DefaultDepth 16 | ||
39 | EndSection | ||
40 | |||
41 | Section "ServerLayout" | ||
42 | Identifier "Default Layout" | ||
43 | Screen "Default Screen" | ||
44 | InputDevice "Generic Keyboard" | ||
45 | InputDevice "Configured Mouse" | ||
46 | Option "AllowEmptyInput" "no" | ||
47 | EndSection | ||
48 | |||