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 | |
parent | f4ccb8fb83d75fff898706f09e285faef25cc81a (diff) | |
download | openembedded-core-65b24a0d83f7e835d5d03f9ef1020b25d5a3f9e9.tar.gz openembedded-core-65b24a0d83f7e835d5d03f9ef1020b25d5a3f9e9.tar.bz2 openembedded-core-65b24a0d83f7e835d5d03f9ef1020b25d5a3f9e9.zip |
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')
-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 @@ + +Section "Files" +EndSection + +Section "InputDevice" + Identifier "Generic Keyboard" + Driver "kbd" + Option "CoreKeyboard" + Option "XkbRules" "xorg" + Option "XkbModel" "pc105" + Option "XkbLayout" "us" +EndSection + +Section "InputDevice" + Identifier "Configured Mouse" + Driver "mouse" + Option "CorePointer" + Option "Device" "/dev/input/mice" + Option "Protocol" "ImPS/2" + Option "ZAxisMapping" "4 5" + Option "Emulate3Buttons" "true" +EndSection + +Section "Device" + Identifier "OMAPFB Graphics Controller" + Driver "omapfb" +EndSection + +Section "Monitor" + Identifier "Generic Monitor" + Option "DPMS" +EndSection + +Section "Screen" + Identifier "Default Screen" + Device "OMAPFB Graphics Controller" + Monitor "Generic Monitor" + DefaultDepth 16 +EndSection + +Section "ServerLayout" + Identifier "Default Layout" + Screen "Default Screen" + InputDevice "Generic Keyboard" + InputDevice "Configured Mouse" + Option "AllowEmptyInput" "no" +EndSection + |