diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-04-18 19:01:34 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 20:36:11 +0100 |
commit | 876e020be334a9350094dbd1a29b9e49eceed603 (patch) | |
tree | f77a0a3a92d7a0fa457ff20be54954e1779eee3b | |
parent | 578937213c6db9fa99981778ce61210e391b19a7 (diff) | |
download | openembedded-core-876e020be334a9350094dbd1a29b9e49eceed603.tar.gz openembedded-core-876e020be334a9350094dbd1a29b9e49eceed603.tar.bz2 openembedded-core-876e020be334a9350094dbd1a29b9e49eceed603.zip |
xserver-xf86-config: set DefaultDepth to 16 for qemumips
Apparently, the default qemumips color depth was set to 8 and the colors were not
displayed properly. cirrusfb driver doensn't seem to accept color depth
as a kernel parameter, so we have to do it here.
[YOCTO #4340]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf index 629ae214e8..e6c8b514e3 100644 --- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf @@ -54,6 +54,7 @@ Section "Screen" Identifier "Default Screen" Device "Graphics Controller" Monitor "Generic Monitor" + DefaultDepth 16 SubSection "Display" Modes "640x480" EndSubSection |