diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-06-21 16:08:57 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-29 12:34:42 +0100 |
commit | 0f806dfec85639d9e8875554500b6da8dfb3f59c (patch) | |
tree | e595978b7f07315cd1c38a6b1cc2a3adb4237a1a | |
parent | 9207cd40153148f71788d30697a055fe846e8927 (diff) | |
download | openembedded-core-0f806dfec85639d9e8875554500b6da8dfb3f59c.tar.gz openembedded-core-0f806dfec85639d9e8875554500b6da8dfb3f59c.tar.bz2 openembedded-core-0f806dfec85639d9e8875554500b6da8dfb3f59c.tar.xz openembedded-core-0f806dfec85639d9e8875554500b6da8dfb3f59c.zip |
qemux86/xorg.conf: no DefaultDepth for VMware SVGA driver
VMware SVGA driver needs to have same depth between the host and the guest. Or put in
other word, the depth read by the guest is the value read from host. The guest is not
allowed to change virtual depth to other value. With DefaultDepth option xorg.conf,
vmware driver rejects to work with suggestion "Please do not specify a depth on the
command line or via the config file".
Signed-off-by Kevin Tian <kevin.tian@intel.com>
-rw-r--r-- | meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf | 1 | ||||
-rw-r--r-- | meta/packages/xorg-xserver/xserver-xf86-config_0.1.bb | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf index 7f5bfa70e..4216de7bd 100644 --- a/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf +++ b/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf @@ -53,7 +53,6 @@ Section "Screen" Identifier "Default Screen" Device "Graphics Controller" Monitor "Generic Monitor" - DefaultDepth 24 SubSection "Display" Modes "640x480" EndSubSection diff --git a/meta/packages/xorg-xserver/xserver-xf86-config_0.1.bb b/meta/packages/xorg-xserver/xserver-xf86-config_0.1.bb index 2089e26a6..058670d36 100644 --- a/meta/packages/xorg-xserver/xserver-xf86-config_0.1.bb +++ b/meta/packages/xorg-xserver/xserver-xf86-config_0.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "X.Org X server configuration file" HOMEPAGE = "http://www.x.org" SECTION = "x11/base" LICENSE = "MIT-X" -PR = "r7" +PR = "r8" SRC_URI = "file://xorg.conf" |