All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Add flag opengl into DISTRO_FEATURES
@ 2011-08-16  6:59 Jiajun Xu
  2011-08-16  6:59 ` [PATCH 1/1] poky.conf: add " Jiajun Xu
  0 siblings, 1 reply; 5+ messages in thread
From: Jiajun Xu @ 2011-08-16  6:59 UTC (permalink / raw)
  To: poky

Fix [YOCTO #883]

libsdl will check if opengl is set in DISTRO_FEATURES, then enable
openGL option during do_configure. It is required for 3D game testing.

The following changes since commit a21ff559e7c93e9da61104f4a33e42e6004189fd:

  Fixup remaining bb.msg.domain users (2011-08-15 17:31:52 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib jxu49/bugfix
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jxu49/bugfix

Jiajun Xu (1):
  poky.conf: add flag opengl into DISTRO_FEATURES

 meta-yocto/conf/distro/poky.conf |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)



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

* [PATCH 1/1] poky.conf: add flag opengl into DISTRO_FEATURES
  2011-08-16  6:59 [PATCH 0/1] Add flag opengl into DISTRO_FEATURES Jiajun Xu
@ 2011-08-16  6:59 ` Jiajun Xu
  2011-08-16 14:35   ` Khem Raj
  2011-08-17 14:49   ` Richard Purdie
  0 siblings, 2 replies; 5+ messages in thread
From: Jiajun Xu @ 2011-08-16  6:59 UTC (permalink / raw)
  To: poky

libsdl will check if opengl is set in DISTRO_FEATURES, then enable
openGL option during do_configure. It is required for 3D game testing.

Fix [YOCTO #883]

Signed-off-by: Jiajun Xu <jiajun.xu@intel.com>
---
 meta-yocto/conf/distro/poky.conf |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index 88b8adf..c65cbc4 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -10,7 +10,7 @@ TARGET_VENDOR = "-poky"
 
 LOCALCONF_VERSION = "1"
 
-DISTRO_FEATURES_append = " largefile"
+DISTRO_FEATURES_append = " largefile opengl"
 
 PREFERRED_VERSION_linux-yocto ?= "2.6.37+git%"
 
-- 
1.7.1



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

* Re: [PATCH 1/1] poky.conf: add flag opengl into DISTRO_FEATURES
  2011-08-16  6:59 ` [PATCH 1/1] poky.conf: add " Jiajun Xu
@ 2011-08-16 14:35   ` Khem Raj
  2011-08-16 14:41     ` Xu, Jiajun
  2011-08-17 14:49   ` Richard Purdie
  1 sibling, 1 reply; 5+ messages in thread
From: Khem Raj @ 2011-08-16 14:35 UTC (permalink / raw)
  To: poky

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 08/15/2011 11:59 PM, Jiajun Xu wrote:
> libsdl will check if opengl is set in DISTRO_FEATURES, then enable 
> openGL option during do_configure. It is required for 3D game
> testing.
> 

is it also affecting how qemu is built ?


> Fix [YOCTO #883]
> 
> Signed-off-by: Jiajun Xu <jiajun.xu@intel.com> --- 
> meta-yocto/conf/distro/poky.conf |    2 +- 1 files changed, 1
> insertions(+), 1 deletions(-)
> 
> diff --git a/meta-yocto/conf/distro/poky.conf
> b/meta-yocto/conf/distro/poky.conf index 88b8adf..c65cbc4 100644 ---
> a/meta-yocto/conf/distro/poky.conf +++
> b/meta-yocto/conf/distro/poky.conf @@ -10,7 +10,7 @@ TARGET_VENDOR =
> "-poky"
> 
> LOCALCONF_VERSION = "1"
> 
> -DISTRO_FEATURES_append = " largefile" +DISTRO_FEATURES_append = "
> largefile opengl"
> 
> PREFERRED_VERSION_linux-yocto ?= "2.6.37+git%"
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk5KgEkACgkQuwUzVZGdMxSsbgCdE2H7I8C9LywfUnYEmreGB2+9
2uwAn3iKwGpobq1ZVK4D11IZAeLLkXk5
=XlfZ
-----END PGP SIGNATURE-----


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

* Re: [PATCH 1/1] poky.conf: add flag opengl into DISTRO_FEATURES
  2011-08-16 14:35   ` Khem Raj
@ 2011-08-16 14:41     ` Xu, Jiajun
  0 siblings, 0 replies; 5+ messages in thread
From: Xu, Jiajun @ 2011-08-16 14:41 UTC (permalink / raw)
  To: Khem Raj, poky

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> On 08/15/2011 11:59 PM, Jiajun Xu wrote:
>> libsdl will check if opengl is set in DISTRO_FEATURES, then enable
>> openGL option during do_configure. It is required for 3D game testing.
>> 
> 
> is it also affecting how qemu is built ?

No. In libsdl.bb, it will only check opengl flag for target version build. For nativesdk version, it will not set and use opengl.

Best Regards,
Jiajun



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

* Re: [PATCH 1/1] poky.conf: add flag opengl into DISTRO_FEATURES
  2011-08-16  6:59 ` [PATCH 1/1] poky.conf: add " Jiajun Xu
  2011-08-16 14:35   ` Khem Raj
@ 2011-08-17 14:49   ` Richard Purdie
  1 sibling, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2011-08-17 14:49 UTC (permalink / raw)
  To: Jiajun Xu; +Cc: poky

On Tue, 2011-08-16 at 14:59 +0800, Jiajun Xu wrote:
> libsdl will check if opengl is set in DISTRO_FEATURES, then enable
> openGL option during do_configure. It is required for 3D game testing.
> 
> Fix [YOCTO #883]
> 
> Signed-off-by: Jiajun Xu <jiajun.xu@intel.com>

Merged to master, thanks.

Richard



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

end of thread, other threads:[~2011-08-17 14:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-16  6:59 [PATCH 0/1] Add flag opengl into DISTRO_FEATURES Jiajun Xu
2011-08-16  6:59 ` [PATCH 1/1] poky.conf: add " Jiajun Xu
2011-08-16 14:35   ` Khem Raj
2011-08-16 14:41     ` Xu, Jiajun
2011-08-17 14:49   ` 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.