All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image
@ 2011-05-17  6:01 Xiaofeng Yan
  2011-05-17  6:01 ` [PATCH 1/3] lsb: Install init-functions to rpm package Xiaofeng Yan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Xiaofeng Yan @ 2011-05-17  6:01 UTC (permalink / raw)
  To: poky

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

These files are needed by LSB Test Suite. So I push them to poky.


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

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


Xiaofeng Yan (3):
  lsb: Install init-functions to rpm package
  lsbsetup: Add a link for lsb test
  task-core-lsb: Add libQtOpenGL.so* library to lsb-image

 meta/recipes-extended/lsb/lsb_1.4.bb         |    6 ++++--
 meta/recipes-extended/lsb/lsbsetup_0.9.bb    |    8 +++++---
 meta/recipes-extended/tasks/task-core-lsb.bb |    9 ++++++++-
 3 files changed, 17 insertions(+), 6 deletions(-)



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

* [PATCH 1/3] lsb: Install init-functions to rpm package
  2011-05-17  6:01 [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image Xiaofeng Yan
@ 2011-05-17  6:01 ` Xiaofeng Yan
  2011-05-17  6:01 ` [PATCH 2/3] lsbsetup: Add a link for lsb test Xiaofeng Yan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Xiaofeng Yan @ 2011-05-17  6:01 UTC (permalink / raw)
  To: poky

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

The script init-functions can't be built into rpm package of lsb.
I modify lsb_1.4.bb to add this script to rpm package of lsb.

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

diff --git a/meta/recipes-extended/lsb/lsb_1.4.bb b/meta/recipes-extended/lsb/lsb_1.4.bb
index 166ba4c..fd0f12c 100644
--- a/meta/recipes-extended/lsb/lsb_1.4.bb
+++ b/meta/recipes-extended/lsb/lsb_1.4.bb
@@ -3,7 +3,7 @@ SECTION = "console/utils"
 HOMEPAGE = "http://prdownloads.sourceforge.net/lsb"
 PRIORITY = "required"
 LICENSE = "GPLv2+"
-PR = "r0"
+PR = "r1"
 
 LIC_FILES_CHKSUM = "file://README;md5=12da544b1a3a5a1795a21160b49471cf"
 
@@ -94,4 +94,6 @@ do_install_append(){
                ln -sf ld.so.1 ld-lsb-ppc32.so.3
        fi	
 }
-FILES_${PN} += "/lib64"
+FILES_${PN} += "/lib64 \
+                ${base_libdir}/lsb/* \
+               "
-- 
1.7.0.4



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

* [PATCH 2/3] lsbsetup: Add a link for lsb test
  2011-05-17  6:01 [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image Xiaofeng Yan
  2011-05-17  6:01 ` [PATCH 1/3] lsb: Install init-functions to rpm package Xiaofeng Yan
@ 2011-05-17  6:01 ` Xiaofeng Yan
  2011-05-17  6:01 ` [PATCH 3/3] task-core-lsb: Add libQtOpenGL.so* library to lsb-image Xiaofeng Yan
  2011-05-17 14:27 ` [PATCH 0/3] Add init-functions, libQtOpenGL.so* " Richard Purdie
  3 siblings, 0 replies; 5+ messages in thread
From: Xiaofeng Yan @ 2011-05-17  6:01 UTC (permalink / raw)
  To: poky

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

Link /usr/lib/sendmail to /usr/sbin/sendmail

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

diff --git a/meta/recipes-extended/lsb/lsbsetup_0.9.bb b/meta/recipes-extended/lsb/lsbsetup_0.9.bb
index b0d0a3f..f3651e2 100644
--- a/meta/recipes-extended/lsb/lsbsetup_0.9.bb
+++ b/meta/recipes-extended/lsb/lsbsetup_0.9.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "auto-setup environment for lsb test"
 SECTION = "console/utils"
 PRIORITY = "required"
 LICENSE = "GPLv2"
-PR = "r2"
+PR = "r3"
 
 LIC_FILES_CHKSUM = "file://LSB_Setup.sh;beginline=3;endline=16;md5=97451c7c0786ce5bbe9ac58042945583"
 
@@ -17,7 +17,9 @@ do_install() {
         install -d  ${D}/usr/lib/lsb
         ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/install_initd
         ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/remove_initd
-        ln -sf ${base_sbindir}/sendmail ${D}/${libdir}/lsb/sendmail
+        ln -sf ${sbindir}/sendmail ${D}/${libdir}/sendmail
 }
 
-FILES_${PN} += "${libdir}/lsb"
+FILES_${PN} += "${libdir}/lsb \
+               ${libdir}/* \
+               "
-- 
1.7.0.4



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

* [PATCH 3/3] task-core-lsb: Add libQtOpenGL.so* library to lsb-image
  2011-05-17  6:01 [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image Xiaofeng Yan
  2011-05-17  6:01 ` [PATCH 1/3] lsb: Install init-functions to rpm package Xiaofeng Yan
  2011-05-17  6:01 ` [PATCH 2/3] lsbsetup: Add a link for lsb test Xiaofeng Yan
@ 2011-05-17  6:01 ` Xiaofeng Yan
  2011-05-17 14:27 ` [PATCH 0/3] Add init-functions, libQtOpenGL.so* " Richard Purdie
  3 siblings, 0 replies; 5+ messages in thread
From: Xiaofeng Yan @ 2011-05-17  6:01 UTC (permalink / raw)
  To: poky

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

The library libQtOpenGL.so* is needed by LSB Test Suite.
So I add them to lsb-image for platform emenlow and mpc8315e.

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

diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb
index 6de24b4..d9b358d 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 = "r3"
+PR = "r4"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
                     file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
@@ -177,6 +177,13 @@ RDEPENDS_task-core-lsb-graphic-add_atom-pc = "\
 RDEPENDS_task-core-lsb-graphic-add_qemuppc = "\
     libqtopengl4 \
 "
+RDEPENDS_task-core-lsb-graphic-add_emenlow = "\
+    libqtopengl4 \
+"
+
+RDEPENDS_task-core-lsb-graphic-add_mpc8315e-rdb = "\
+    libqtopengl4 \
+"
 
 #    mesa-dri 
 
-- 
1.7.0.4



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

* Re: [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image
  2011-05-17  6:01 [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image Xiaofeng Yan
                   ` (2 preceding siblings ...)
  2011-05-17  6:01 ` [PATCH 3/3] task-core-lsb: Add libQtOpenGL.so* library to lsb-image Xiaofeng Yan
@ 2011-05-17 14:27 ` Richard Purdie
  3 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2011-05-17 14:27 UTC (permalink / raw)
  To: Xiaofeng Yan; +Cc: poky

On Tue, 2011-05-17 at 14:01 +0800, Xiaofeng Yan wrote:
> From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
> 
> These files are needed by LSB Test Suite. So I push them to poky.
> 
> 
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>   Branch: xiaofeng/lsb
>   Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/lsb
> 
> Thanks,
>     Xiaofeng Yan <xiaofeng.yan@windriver.com>
> ---
> 
> 
> Xiaofeng Yan (3):
>   lsb: Install init-functions to rpm package
>   lsbsetup: Add a link for lsb test
>   task-core-lsb: Add libQtOpenGL.so* library to lsb-image

Merged to master, thanks.

Richard



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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-17  6:01 [PATCH 0/3] Add init-functions, libQtOpenGL.so* to lsb-image Xiaofeng Yan
2011-05-17  6:01 ` [PATCH 1/3] lsb: Install init-functions to rpm package Xiaofeng Yan
2011-05-17  6:01 ` [PATCH 2/3] lsbsetup: Add a link for lsb test Xiaofeng Yan
2011-05-17  6:01 ` [PATCH 3/3] task-core-lsb: Add libQtOpenGL.so* library to lsb-image Xiaofeng Yan
2011-05-17 14:27 ` [PATCH 0/3] Add init-functions, libQtOpenGL.so* " 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.