All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] task-core-lsb: Add absent libraries and commands to task-core-lsb.bb
@ 2011-06-22  6:43 Xiaofeng Yan
  2011-06-22  6:43 ` [PATCH 1/1] " Xiaofeng Yan
  2011-06-22 15:56 ` [PATCH 0/1] " Richard Purdie
  0 siblings, 2 replies; 3+ messages in thread
From: Xiaofeng Yan @ 2011-06-22  6:43 UTC (permalink / raw)
  To: openembedded-core

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

"tools-profile" and tools-testapps" which include three packages "owl-video" , "sysprof" and "alsa-utils-amixer" beside other packages were removed from variable "EXTRA_IMAGE_FEATURES" in meta-yocto/conf/local.conf.sample. The absent libraries in an lsb image depended by the above three packages will be installed into lsb image by dependence relationship.
Absent command:
|--strip
Absent Libraries:
|--libatk-1.0.so.0
|--libgdk-x11-2.0.so
|--libcairo.so.2
|--libpango-1.0.so
|--libpangoft2-1.0.so.0
|--libpangoxft-1.0.so.0
|--libpangocairo-1.0.so 

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

Thanks,
    Xiaofeng Yan <xiaofeng.yan@windriver.com>
---


Xiaofeng Yan (1):
  task-core-lsb: Add absent libraries and commands to task-core-lsb.bb

 meta/recipes-extended/tasks/task-core-lsb.bb |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)




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

* [PATCH 1/1] task-core-lsb: Add absent libraries and commands to task-core-lsb.bb
  2011-06-22  6:43 [PATCH 0/1] task-core-lsb: Add absent libraries and commands to task-core-lsb.bb Xiaofeng Yan
@ 2011-06-22  6:43 ` Xiaofeng Yan
  2011-06-22 15:56 ` [PATCH 0/1] " Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Xiaofeng Yan @ 2011-06-22  6:43 UTC (permalink / raw)
  To: openembedded-core

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

Due to "tools-profile" and  "tools-testapps" were removed from variable \
"EXTRA_IMAGE_FEATURES" in meta-yocto/conf/local.conf.sample, some libraries \
needed by LSB Test Suite were absent in an lsb image. I add these absent \
libraries to task-core-lsb.bb.

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
 meta/recipes-extended/tasks/task-core-lsb.bb |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb
index 9fbacf9..2ec63cc 100644
--- a/meta/recipes-extended/tasks/task-core-lsb.bb
+++ b/meta/recipes-extended/tasks/task-core-lsb.bb
@@ -3,7 +3,7 @@
 #
 
 DESCRIPTION = "Create Small Image Tasks"
-PR = "r4"
+PR = "r5"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
@@ -54,6 +54,7 @@ RDEPENDS_task-core-lsb = "\
 
 RDEPENDS_task-core-sys-extended = "\
     binutils \
+    binutils-symlinks \
     chkconfig \
     curl \
     dhcp-client \
@@ -169,6 +170,9 @@ RDEPENDS_task-core-lsb-graphic-add = "\
     gdk-pixbuf-loader-bmp \
     gdk-pixbuf-loader-ani \
     liberation-fonts \
+    gtk+ \
+    atk \
+    libasound \
 "
 
 RDEPENDS_task-core-lsb-graphic-add_qemux86 = "\
-- 
1.7.0.4




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

* Re: [PATCH 0/1] task-core-lsb: Add absent libraries and commands to task-core-lsb.bb
  2011-06-22  6:43 [PATCH 0/1] task-core-lsb: Add absent libraries and commands to task-core-lsb.bb Xiaofeng Yan
  2011-06-22  6:43 ` [PATCH 1/1] " Xiaofeng Yan
@ 2011-06-22 15:56 ` Richard Purdie
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Purdie @ 2011-06-22 15:56 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Wed, 2011-06-22 at 14:43 +0800, Xiaofeng Yan wrote:
> From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
> 
> "tools-profile" and tools-testapps" which include three packages
> "owl-video" , "sysprof" and "alsa-utils-amixer" beside other packages
> were removed from variable "EXTRA_IMAGE_FEATURES" in
> meta-yocto/conf/local.conf.sample. The absent libraries in an lsb
> image depended by the above three packages will be installed into lsb
> image by dependence relationship.
> Absent command:
> |--strip
> Absent Libraries:
> |--libatk-1.0.so.0
> |--libgdk-x11-2.0.so
> |--libcairo.so.2
> |--libpango-1.0.so
> |--libpangoft2-1.0.so.0
> |--libpangoxft-1.0.so.0
> |--libpangocairo-1.0.so 
> 
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>   Branch: xiaofeng/task-core-lsb
>   Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/task-core-lsb
> 
> Thanks,
>     Xiaofeng Yan <xiaofeng.yan@windriver.com>
> ---
> 
> 
> Xiaofeng Yan (1):
>   task-core-lsb: Add absent libraries and commands to task-core-lsb.bb

Merged to master, thanks.

Richard




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

end of thread, other threads:[~2011-06-22 16:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-22  6:43 [PATCH 0/1] task-core-lsb: Add absent libraries and commands to task-core-lsb.bb Xiaofeng Yan
2011-06-22  6:43 ` [PATCH 1/1] " Xiaofeng Yan
2011-06-22 15:56 ` [PATCH 0/1] " 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.