* [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112
@ 2011-06-09 7:03 Yu Ke
2011-06-09 7:03 ` [PATCH 1/1] sato-sdk: add mesa-demos application Yu Ke
2011-06-09 18:14 ` [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 Saul Wold
0 siblings, 2 replies; 3+ messages in thread
From: Yu Ke @ 2011-06-09 7:03 UTC (permalink / raw)
To: openembedded-core
The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53:
Khem Raj (1):
package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0"
are available in the git repository at:
git://git.pokylinux.org/poky-contrib kyu3/bug1112
http://git.pokylinux.org/cgit.cgi//log/?h=kyu3/bug1112
Yu Ke (1):
sato-sdk: add mesa-demos application
meta/classes/core-image.bbclass | 1 +
meta/recipes-sato/images/core-image-sato-sdk.bb | 2 +-
meta/recipes-sato/tasks/task-core.bb | 6 +++++-
3 files changed, 7 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/1] sato-sdk: add mesa-demos application 2011-06-09 7:03 [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 Yu Ke @ 2011-06-09 7:03 ` Yu Ke 2011-06-09 18:14 ` [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 Saul Wold 1 sibling, 0 replies; 3+ messages in thread From: Yu Ke @ 2011-06-09 7:03 UTC (permalink / raw) To: openembedded-core Q/A requires more demo applications to test graphics. This patch add x11-demos feature category, and add it to sato-sdk. Currently mesa-demos is the only recips in x11-demos, and this can be extended in the future when more demo apps are added Fix [YOCTO #1112] Signed-off-by: Yu Ke <ke.yu@intel.com> --- meta/classes/core-image.bbclass | 1 + meta/recipes-sato/images/core-image-sato-sdk.bb | 2 +- meta/recipes-sato/tasks/task-core.bb | 6 +++++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass index c8c6a57..d00c20a 100644 --- a/meta/classes/core-image.bbclass +++ b/meta/classes/core-image.bbclass @@ -93,6 +93,7 @@ POKY_BASE_INSTALL = '\ \ ${@base_contains("IMAGE_FEATURES", "package-management", "${ROOTFS_PKGMANAGE}", "${ROOTFS_PKGMANAGE_BOOTSTRAP}",d)} \ ${@base_contains("IMAGE_FEATURES", "qt4-pkgs", "task-core-qt-demos", "",d)} \ + ${@base_contains("IMAGE_FEATURES", "x11-demos", "task-core-x11-demos", "",d)} \ ${POKY_EXTRA_INSTALL} \ ' diff --git a/meta/recipes-sato/images/core-image-sato-sdk.bb b/meta/recipes-sato/images/core-image-sato-sdk.bb index ee9d799..3240a7d 100644 --- a/meta/recipes-sato/images/core-image-sato-sdk.bb +++ b/meta/recipes-sato/images/core-image-sato-sdk.bb @@ -2,7 +2,7 @@ # Copyright (C) 2007 OpenedHand Ltd. # -IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} tools-debug tools-profile tools-sdk dev-pkgs qt4-pkgs" +IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} tools-debug tools-profile tools-sdk dev-pkgs qt4-pkgs x11-demos" LICENSE = "MIT" diff --git a/meta/recipes-sato/tasks/task-core.bb b/meta/recipes-sato/tasks/task-core.bb index a595ad7..22e5754 100644 --- a/meta/recipes-sato/tasks/task-core.bb +++ b/meta/recipes-sato/tasks/task-core.bb @@ -6,7 +6,7 @@ DESCRIPTION = "Tasks for OpenedHand Poky" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" -PR = "r34" +PR = "r35" PACKAGES = "\ task-core-apps-console \ @@ -21,6 +21,7 @@ PACKAGES = "\ task-core-x11-base \ task-core-x11-base-dbg \ task-core-x11-base-dev \ + task-core-x11-demos \ " PACKAGE_ARCH = "${MACHINE_ARCH}" @@ -71,3 +72,6 @@ RDEPENDS_task-core-apps-x11-core = "\ RDEPENDS_task-core-apps-x11-games = "\ oh-puzzles" + +RDEPENDS_task-core-x11-demos = "\ + mesa-demos" -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 2011-06-09 7:03 [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 Yu Ke 2011-06-09 7:03 ` [PATCH 1/1] sato-sdk: add mesa-demos application Yu Ke @ 2011-06-09 18:14 ` Saul Wold 1 sibling, 0 replies; 3+ messages in thread From: Saul Wold @ 2011-06-09 18:14 UTC (permalink / raw) To: Patches and discussions about the oe-core layer On 06/09/2011 12:03 AM, Yu Ke wrote: > The following changes since commit c412674cf818e77e35857fb93353e392e7ac9e53: > Khem Raj (1): > package.bbclass,prserv.bbclass: Compare USE_PR_SERV with "1" or "0" > > are available in the git repository at: > > git://git.pokylinux.org/poky-contrib kyu3/bug1112 > http://git.pokylinux.org/cgit.cgi//log/?h=kyu3/bug1112 > > Yu Ke (1): > sato-sdk: add mesa-demos application > > meta/classes/core-image.bbclass | 1 + > meta/recipes-sato/images/core-image-sato-sdk.bb | 2 +- > meta/recipes-sato/tasks/task-core.bb | 6 +++++- > 3 files changed, 7 insertions(+), 2 deletions(-) > Ke, I discussed this with Richard and we applied a different patch that adds mesa-demos to an existing task called task-core-tools-testapps and then ensure that it is part of sato-sdk. We also cleaned up the EXTRA_IMAGE_FEATURES include by default in local.conf to not include all the tools and testapps, but only the debug tweaks. This will give a truer representation of the sato and lsb images sizes (when built without -dev or -sdk). Sau! > > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core > ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-06-09 18:17 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-06-09 7:03 [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 Yu Ke 2011-06-09 7:03 ` [PATCH 1/1] sato-sdk: add mesa-demos application Yu Ke 2011-06-09 18:14 ` [PATCH 0/1] add mesa-demos to sato-sdk to fix bug 1112 Saul Wold
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox