diff options
author | Chase Douglas <chase.douglas@canonical.com> | 2012-04-18 10:30:18 -0700 |
---|---|---|
committer | Chase Douglas <chase.douglas@canonical.com> | 2012-04-18 10:30:18 -0700 |
commit | 15bcb46183f73025485a63d10947403da1ff412e (patch) | |
tree | 8805a613ae4fddb9a5ba8b4d8768099e9e32fa71 | |
parent | 49f6f2deb544163823ecc8ec127162c0774acc00 (diff) |
Provide a full server layout in dummy.conf
The X.org server uses the first server layout, and provides one if none
are found. If a layout is specified in /usr/share/X11/xorg.conf.d, the
dummy video device configuration may not be used.
This change ensures that the dummy video device is used by providing a
full server layout in the main configuration file.
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
-rw-r--r-- | data/xorg/gtest/dummy.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/xorg/gtest/dummy.conf b/data/xorg/gtest/dummy.conf index 5600991..3aaa5c7 100644 --- a/data/xorg/gtest/dummy.conf +++ b/data/xorg/gtest/dummy.conf @@ -1,3 +1,13 @@ +Section "ServerLayout" + Identifier "Dummy layout" + Screen 0 "Dummy screen" 0 0 +EndSection + +Section "Screen" + Identifier "Dummy screen" + Device "Dummy video device" +EndSection + Section "Device" Identifier "Dummy video device" Driver "dummy" |