diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-06-18 07:43:08 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-08-20 20:28:40 +0200 |
commit | 57a1c3a667fd354a5bd8fd0c915919dbcac4289d (patch) | |
tree | a06ea100c6dd41c7377a5740a3f0bc79c9e71219 /recipes/xorg-xserver/xserver-xorg-conf | |
parent | dee18c9bc51a16f9e1f7e23e2d9807b0ff0a2690 (diff) |
xserver-xorg-conf: add xorg.conf for spitz
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/xorg-xserver/xserver-xorg-conf')
-rw-r--r-- | recipes/xorg-xserver/xserver-xorg-conf/spitz/xorg.conf | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/spitz/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/spitz/xorg.conf new file mode 100644 index 0000000000..224df5c8b0 --- /dev/null +++ b/recipes/xorg-xserver/xserver-xorg-conf/spitz/xorg.conf @@ -0,0 +1,49 @@ +Section "Device" + Identifier "Generic Video Card" + Driver "fbdev" + Option "UseFBDev" "true" + Option "Rotate" "CW" +EndSection + +Section "Monitor" + Identifier "Generic Monitor" + Option "DPMS" + HorizSync 28-32 + VertRefresh 43-60 +EndSection + +Section "Screen" + Identifier "Default Screen" + Device "Generic Video Card" + Monitor "Generic Monitor" + DefaultDepth 16 + SubSection "Display" + Depth 1 + Modes "640x480" + EndSubSection + SubSection "Display" + Depth 4 + Modes "640x480" + EndSubSection + SubSection "Display" + Depth 8 + Modes "640x480" + EndSubSection + SubSection "Display" + Depth 15 + Modes "640x480" + EndSubSection + SubSection "Display" + Depth 16 + Modes "640x480" + EndSubSection + SubSection "Display" + Depth 24 + Modes "640x480" + EndSubSection +EndSection + +Section "ServerLayout" + Identifier "Default Layout" + Screen "Default Screen" +EndSection |