diff options
author | Adrian Alonso <aalonso00@gmail.com> | 2010-05-13 03:46:39 +0000 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2010-05-24 21:02:49 +0200 |
commit | 05f7fb1f639a1fbaa87fcff87b7628ad30ffec92 (patch) | |
tree | de601c00b6bc7cfa10eac23120b6d619703b5757 /recipes/xorg-xserver/xserver-xorg-conf | |
parent | b8b73ed5d50d784160a2a37046ed1678e576fdfc (diff) |
xserver-xorg-conf: Add xilinx-ml507 config
* xorg config file for xilinx-ml507 target platform
Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
Diffstat (limited to 'recipes/xorg-xserver/xserver-xorg-conf')
-rw-r--r-- | recipes/xorg-xserver/xserver-xorg-conf/xilinx-ml507/xorg.conf | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/xilinx-ml507/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/xilinx-ml507/xorg.conf new file mode 100644 index 0000000000..2950193ce3 --- /dev/null +++ b/recipes/xorg-xserver/xserver-xorg-conf/xilinx-ml507/xorg.conf @@ -0,0 +1,39 @@ +Section "Monitor" + Identifier "LCD Panel" +EndSection + +Section "Device" + Identifier "Xilinx frame buffer" + Driver "fbdev" +EndSection + +Section "Screen" + Identifier "Default Screen" + Device "Xilinx frame buffer" + Monitor "LCD Panel" + SubSection "Display" + Depth 24 + Modes "640x480" + EndSubSection +EndSection + +Section "InputDevice" + Identifier "Keyboard" + Driver "kbd" +# Option "XkbLayout" "es" +# Option "XkbModel" "pc105" +EndSection + +Section "InputDevice" + Identifier "Mouse" + Driver "mouse" + Option "protocol" "auto" + Option "device" "/dev/input/mice" +EndSection + +Section "ServerLayout" + Identifier "Default Layout" + Screen "Default Screen" + InputDevice "Keyboard" + InputDevice "Mouse" +EndSection |