diff options
author | Adrian Alonso <aalonso00@gmail.com> | 2010-08-03 06:23:22 +0000 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-08-04 19:47:04 +0200 |
commit | 5020cb3eba1a11a891a15a3d6894c34908d04d89 (patch) | |
tree | 072872583e5f3b8c0a0197e7e9079d87f7bb7be6 /recipes/xorg-xserver/xserver-xorg-conf | |
parent | d54cdeee2d34518442f0f685bb5e494047f4ce4b (diff) |
xorg-xserver-conf: virtex5 machine support
* Add xorg conf for xilinx virtex5 family targets
* Increase PR
* v2 reorder patch set
Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/xorg-xserver/xserver-xorg-conf')
-rw-r--r-- | recipes/xorg-xserver/xserver-xorg-conf/xilinx-virtex5/xorg.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/xilinx-virtex5/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/xilinx-virtex5/xorg.conf new file mode 100644 index 0000000000..61f0f9fcdd --- /dev/null +++ b/recipes/xorg-xserver/xserver-xorg-conf/xilinx-virtex5/xorg.conf @@ -0,0 +1,38 @@ +# Xorg conf file for Xilinx platforms +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" +EndSection + +Section "InputDevice" + Identifier "Mouse" + Driver "mouse" + Option "protocol" "auto" + Option "device" "/dev/input/mice" +EndSection + +Section "ServerLayout" + Identifier "Default Layout" + Screen 0 "Default Screen" 0 0 + InputDevice "Keyboard" + InputDevice "Mouse" +EndSection |