diff options
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 |