All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1]qemuppc:Add libqtopengl4 support for ppc
@ 2011-04-04 14:25 Mei Lei
  2011-04-04 14:25 ` [PATCH 1/1] qemuppc: add libqtopengl4 " Mei Lei
  2011-04-04 16:26 ` [PATCH 0/1]qemuppc:Add libqtopengl4 support " Richard Purdie
  0 siblings, 2 replies; 3+ messages in thread
From: Mei Lei @ 2011-04-04 14:25 UTC (permalink / raw)
  To: poky

From: Mei Lei <lei.mei@intel.com>

Modify some configs for ppc to enable the libqtopengl4 support.
This fixes BUG 848

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: lmei3/task-poky-lsb
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lmei3/task-poky-lsb

Thanks,
    Mei Lei <lei.mei@intel.com>
---


Mei Lei (1):
  qemuppc: add libqtopengl4 for ppc

 meta/conf/machine/qemuppc.conf               |    2 ++
 meta/recipes-extended/tasks/task-poky-lsb.bb |    3 +++
 meta/recipes-qt/qt4/qt4-x11-free.inc         |    1 +
 3 files changed, 6 insertions(+), 0 deletions(-)



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] qemuppc: add libqtopengl4 for ppc
  2011-04-04 14:25 [PATCH 0/1]qemuppc:Add libqtopengl4 support for ppc Mei Lei
@ 2011-04-04 14:25 ` Mei Lei
  2011-04-04 16:26 ` [PATCH 0/1]qemuppc:Add libqtopengl4 support " Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Mei Lei @ 2011-04-04 14:25 UTC (permalink / raw)
  To: poky

From: Mei Lei <lei.mei@intel.com>

Modify some configs for ppc to enable the libqtopengl4 support.
This fixes [YOCTO #848]

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/conf/machine/qemuppc.conf               |    2 ++
 meta/recipes-extended/tasks/task-poky-lsb.bb |    3 +++
 meta/recipes-qt/qt4/qt4-x11-free.inc         |    1 +
 3 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/meta/conf/machine/qemuppc.conf b/meta/conf/machine/qemuppc.conf
index 83d0841..bfbcc7f 100644
--- a/meta/conf/machine/qemuppc.conf
+++ b/meta/conf/machine/qemuppc.conf
@@ -4,6 +4,8 @@
 
 TARGET_ARCH = "powerpc"
 
+PREFERRED_PROVIDER_virtual/libgl  = "mesa-xlib"
+
 require conf/machine/include/qemu.inc
 require conf/machine/include/tune-ppc603e.inc
 
diff --git a/meta/recipes-extended/tasks/task-poky-lsb.bb b/meta/recipes-extended/tasks/task-poky-lsb.bb
index 7b3c41a..6fea613 100644
--- a/meta/recipes-extended/tasks/task-poky-lsb.bb
+++ b/meta/recipes-extended/tasks/task-poky-lsb.bb
@@ -172,6 +172,9 @@ RDEPENDS_task-poky-lsb-graphic-add_qemux86 = "\
 RDEPENDS_task-poky-lsb-graphic-add_atom-pc = "\
     libqtopengl4 \
 "
+RDEPENDS_task-poky-lsb-graphic-add_qemuppc = "\
+    libqtopengl4 \
+"
 
 #    mesa-dri 
 
diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc
index 057a129..306adb9 100644
--- a/meta/recipes-qt/qt4/qt4-x11-free.inc
+++ b/meta/recipes-qt/qt4/qt4-x11-free.inc
@@ -12,6 +12,7 @@ QT_GLFLAGS ?= "-no-opengl"
 QT_GLFLAGS_qemux86 = "-opengl"
 QT_GLFLAGS_emenlow = "-opengl"
 QT_GLFLAGS_atom-pc = "-opengl"
+QT_GLFLAGS_qemuppc = "-opengl"
 QT_CONFIG_FLAGS += "-no-xinerama -no-xkb ${QT_GLFLAGS}"
 QT_BASE_NAME ?= "qt4"
 QT_BASE_LIB  ?= "libqt"
-- 
1.6.3.3



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1]qemuppc:Add libqtopengl4 support for ppc
  2011-04-04 14:25 [PATCH 0/1]qemuppc:Add libqtopengl4 support for ppc Mei Lei
  2011-04-04 14:25 ` [PATCH 1/1] qemuppc: add libqtopengl4 " Mei Lei
@ 2011-04-04 16:26 ` Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2011-04-04 16:26 UTC (permalink / raw)
  To: Mei Lei; +Cc: poky

On Tue, 2011-01-04 at 22:28 +0800, Mei Lei wrote:
> From: Mei Lei <lei.mei@intel.com>
> 
> Modify some configs for ppc to enable the libqtopengl4 support.
> This fixes BUG 848
> 
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>   Branch: lmei3/task-poky-lsb
>   Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lmei3/task-poky-lsb
> 
> Thanks,
>     Mei Lei <lei.mei@intel.com>
> ---
> 
> 
> Mei Lei (1):
>   qemuppc: add libqtopengl4 for ppc

Merged to master, thanks.

Richard



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-04 16:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-04 14:25 [PATCH 0/1]qemuppc:Add libqtopengl4 support for ppc Mei Lei
2011-04-04 14:25 ` [PATCH 1/1] qemuppc: add libqtopengl4 " Mei Lei
2011-04-04 16:26 ` [PATCH 0/1]qemuppc:Add libqtopengl4 support " Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.