All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] lksctp-tools: Add recipe for lksctp
@ 2014-02-23  2:46 Sam Nelson
  2014-02-24 16:00 ` Maupin, Chase
  2014-02-24 18:09 ` Denys Dmytriyenko
  0 siblings, 2 replies; 5+ messages in thread
From: Sam Nelson @ 2014-02-23  2:46 UTC (permalink / raw)
  To: meta-arago

- The linux kernel Stream control transmission protocol
- Original recipe by Jingting Zhou

Signed-off-by: Sam Nelson <sam.nelson@ti.com>

---
Updated RREPLACES_${PN}
Fix build issue with .so
---
---
 .../recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb |   51 ++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100755 meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb

diff --git a/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb
new file mode 100755
index 0000000..5c75552
--- /dev/null
+++ b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb
@@ -0,0 +1,51 @@
+DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol (lksctp) project"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "LGPLv2"
+LIC_FILES_CHKSUM = "file://src/include/netinet/sctp.h;md5=8089fbe48b63b73c8d091bee750b2ebc"
+
+INC_PR = "r0"
+PR = "${INC_PR}.0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
+SRC_URI[sha256sum] = "e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
+
+S = "${WORKDIR}/${BPN}-${PV}"
+
+BBCLASSEXTEND = "native"
+
+inherit autotools pkgconfig binconfig
+
+do_install_append_virtclass-native() {
+	:
+}
+
+RREPLACES_${PN} = "lksctp"
+
+LEAD_SONAME = "libsctp.so"
+
+PACKAGES =+ "${PN}-withsctp ${PN}-utils"
+
+FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
+            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
+            ${base_libdir}/*${SOLIBS}"
+
+FILES_${PN}-dev += " \
+  ${datadir}/lksctp-tools/checksctp.c \
+  ${datadir}/lksctp-tools/sctp_socket.c \
+  ${datadir}/lksctp-tools/sctp_bind.c \
+  ${datadir}/lksctp-tools/sctp_darn.c \
+  ${datadir}/lksctp-tools/sctp_load_libs.c \
+  ${datadir}/lksctp-tools/sctp_sockopt.c \
+  ${datadir}/lksctp-tools/sctp_socket.h \
+  ${datadir}/lksctp-tools/sctp_test.c \
+  ${datadir}/lksctp-tools/sctp_darn.h \
+  ${libdir}/lksctp-tools/lib*.so"
+
+FILES_${PN}-utils = " \
+  ${bindir}/sctp_test \
+  ${bindir}/sctp_darn \
+  ${bindir}/checksctp \
+  ${bindir}/withsctp"
-- 
1.7.9.5



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

* Re: [PATCH v2] lksctp-tools: Add recipe for lksctp
  2014-02-23  2:46 [PATCH v2] lksctp-tools: Add recipe for lksctp Sam Nelson
@ 2014-02-24 16:00 ` Maupin, Chase
  2014-02-24 17:44   ` Denys Dmytriyenko
  2014-02-24 18:09 ` Denys Dmytriyenko
  1 sibling, 1 reply; 5+ messages in thread
From: Maupin, Chase @ 2014-02-24 16:00 UTC (permalink / raw)
  To: Nelson, Sam, meta-arago

>-----Original Message-----
>From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
>bounces@arago-project.org] On Behalf Of Nelson, Sam
>Sent: Saturday, February 22, 2014 8:47 PM
>To: meta-arago@arago-project.org
>Subject: [meta-arago] [PATCH v2] lksctp-tools: Add recipe for
>lksctp
>
>- The linux kernel Stream control transmission protocol
>- Original recipe by Jingting Zhou

Can you please give a more descriptive statement about where this recipe came from?  What layer for example, a URL to the original recipe.

Also, can you split this into two patches?  One that adds the original recipe and one that splits out your changes so it is easier to tell what has been modified on top.

>
>Signed-off-by: Sam Nelson <sam.nelson@ti.com>
>
>---
>Updated RREPLACES_${PN}
>Fix build issue with .so
>---
>---
> .../recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb |   51
>++++++++++++++++++++
> 1 file changed, 51 insertions(+)
> create mode 100755 meta-arago-extras/recipes-bsp/lksctp-
>tools/lksctp-tools_1.0.7.bb
>
>diff --git a/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-
>tools_1.0.7.bb b/meta-arago-extras/recipes-bsp/lksctp-
>tools/lksctp-tools_1.0.7.bb
>new file mode 100755
>index 0000000..5c75552
>--- /dev/null
>+++ b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-
>tools_1.0.7.bb
>@@ -0,0 +1,51 @@
>+DESCRIPTION = "The Linux Kernel Stream Control Transmission
>Protocol (lksctp) project"
>+SECTION = "libs"
>+PRIORITY = "optional"
>+LICENSE = "LGPLv2"
>+LIC_FILES_CHKSUM =
>"file://src/include/netinet/sctp.h;md5=8089fbe48b63b73c8d091bee750
>b2ebc"
>+
>+INC_PR = "r0"
>+PR = "${INC_PR}.0"
>+
>+SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-
>${PV}.tar.gz"
>+
>+SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
>+SRC_URI[sha256sum] =
>"e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
>+
>+S = "${WORKDIR}/${BPN}-${PV}"
>+
>+BBCLASSEXTEND = "native"
>+
>+inherit autotools pkgconfig binconfig
>+
>+do_install_append_virtclass-native() {
>+	:
>+}
>+
>+RREPLACES_${PN} = "lksctp"
>+
>+LEAD_SONAME = "libsctp.so"
>+
>+PACKAGES =+ "${PN}-withsctp ${PN}-utils"
>+
>+FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
>+            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
>+            ${base_libdir}/*${SOLIBS}"
>+
>+FILES_${PN}-dev += " \
>+  ${datadir}/lksctp-tools/checksctp.c \
>+  ${datadir}/lksctp-tools/sctp_socket.c \
>+  ${datadir}/lksctp-tools/sctp_bind.c \
>+  ${datadir}/lksctp-tools/sctp_darn.c \
>+  ${datadir}/lksctp-tools/sctp_load_libs.c \
>+  ${datadir}/lksctp-tools/sctp_sockopt.c \
>+  ${datadir}/lksctp-tools/sctp_socket.h \
>+  ${datadir}/lksctp-tools/sctp_test.c \
>+  ${datadir}/lksctp-tools/sctp_darn.h \
>+  ${libdir}/lksctp-tools/lib*.so"
>+
>+FILES_${PN}-utils = " \
>+  ${bindir}/sctp_test \
>+  ${bindir}/sctp_darn \
>+  ${bindir}/checksctp \
>+  ${bindir}/withsctp"
>--
>1.7.9.5
>
>_______________________________________________
>meta-arago mailing list
>meta-arago@arago-project.org
>http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH v2] lksctp-tools: Add recipe for lksctp
  2014-02-24 16:00 ` Maupin, Chase
@ 2014-02-24 17:44   ` Denys Dmytriyenko
  2014-02-24 18:13     ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2014-02-24 17:44 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago

On Mon, Feb 24, 2014 at 04:00:25PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Nelson, Sam
> >Sent: Saturday, February 22, 2014 8:47 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH v2] lksctp-tools: Add recipe for
> >lksctp
> >
> >- The linux kernel Stream control transmission protocol
> >- Original recipe by Jingting Zhou
> 
> Can you please give a more descriptive statement about where this recipe 
> came from?  What layer for example, a URL to the original recipe.

Actually, since this is coming from a forked meta-arago-mcsdk and maybe even 
from a private tree, I'd rather not advertise the information such as URL. If 
you want to mention it, just say it comes from previous version of MCSDK...


> Also, can you split this into two patches?  One that adds the original 
> recipe and one that splits out your changes so it is easier to tell what has 
> been modified on top.

??? I think you are missing the fact that it's an in-house recipe, not coming 
from Open Source...


> >Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> >
> >---
> >Updated RREPLACES_${PN}
> >Fix build issue with .so
> >---
> >---
> > .../recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb |   51
> >++++++++++++++++++++
> > 1 file changed, 51 insertions(+)
> > create mode 100755 meta-arago-extras/recipes-bsp/lksctp-
> >tools/lksctp-tools_1.0.7.bb
> >
> >diff --git a/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-
> >tools_1.0.7.bb b/meta-arago-extras/recipes-bsp/lksctp-
> >tools/lksctp-tools_1.0.7.bb
> >new file mode 100755
> >index 0000000..5c75552
> >--- /dev/null
> >+++ b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-
> >tools_1.0.7.bb
> >@@ -0,0 +1,51 @@
> >+DESCRIPTION = "The Linux Kernel Stream Control Transmission
> >Protocol (lksctp) project"
> >+SECTION = "libs"
> >+PRIORITY = "optional"
> >+LICENSE = "LGPLv2"
> >+LIC_FILES_CHKSUM =
> >"file://src/include/netinet/sctp.h;md5=8089fbe48b63b73c8d091bee750
> >b2ebc"
> >+
> >+INC_PR = "r0"
> >+PR = "${INC_PR}.0"
> >+
> >+SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-
> >${PV}.tar.gz"
> >+
> >+SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
> >+SRC_URI[sha256sum] =
> >"e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
> >+
> >+S = "${WORKDIR}/${BPN}-${PV}"
> >+
> >+BBCLASSEXTEND = "native"
> >+
> >+inherit autotools pkgconfig binconfig
> >+
> >+do_install_append_virtclass-native() {
> >+	:
> >+}
> >+
> >+RREPLACES_${PN} = "lksctp"
> >+
> >+LEAD_SONAME = "libsctp.so"
> >+
> >+PACKAGES =+ "${PN}-withsctp ${PN}-utils"
> >+
> >+FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
> >+            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
> >+            ${base_libdir}/*${SOLIBS}"
> >+
> >+FILES_${PN}-dev += " \
> >+  ${datadir}/lksctp-tools/checksctp.c \
> >+  ${datadir}/lksctp-tools/sctp_socket.c \
> >+  ${datadir}/lksctp-tools/sctp_bind.c \
> >+  ${datadir}/lksctp-tools/sctp_darn.c \
> >+  ${datadir}/lksctp-tools/sctp_load_libs.c \
> >+  ${datadir}/lksctp-tools/sctp_sockopt.c \
> >+  ${datadir}/lksctp-tools/sctp_socket.h \
> >+  ${datadir}/lksctp-tools/sctp_test.c \
> >+  ${datadir}/lksctp-tools/sctp_darn.h \
> >+  ${libdir}/lksctp-tools/lib*.so"
> >+
> >+FILES_${PN}-utils = " \
> >+  ${bindir}/sctp_test \
> >+  ${bindir}/sctp_darn \
> >+  ${bindir}/checksctp \
> >+  ${bindir}/withsctp"
> >--
> >1.7.9.5
> >
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH v2] lksctp-tools: Add recipe for lksctp
  2014-02-23  2:46 [PATCH v2] lksctp-tools: Add recipe for lksctp Sam Nelson
  2014-02-24 16:00 ` Maupin, Chase
@ 2014-02-24 18:09 ` Denys Dmytriyenko
  1 sibling, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2014-02-24 18:09 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-arago

On Sat, Feb 22, 2014 at 09:46:39PM -0500, Sam Nelson wrote:
> - The linux kernel Stream control transmission protocol
> - Original recipe by Jingting Zhou
> 
> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> 
> ---
> Updated RREPLACES_${PN}
> Fix build issue with .so
> ---
> ---
>  .../recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb |   51 ++++++++++++++++++++
>  1 file changed, 51 insertions(+)
>  create mode 100755 meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb
> 
> diff --git a/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb
> new file mode 100755
> index 0000000..5c75552
> --- /dev/null
> +++ b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb
> @@ -0,0 +1,51 @@
> +DESCRIPTION = "The Linux Kernel Stream Control Transmission Protocol (lksctp) project"
> +SECTION = "libs"
> +PRIORITY = "optional"

PRIORITY no longer exists in Yocto, that was only applicable to OE-Classic


> +LICENSE = "LGPLv2"
> +LIC_FILES_CHKSUM = "file://src/include/netinet/sctp.h;md5=8089fbe48b63b73c8d091bee750b2ebc"

Entire file? Could be Ok, just checking if you rather want just the header 
instead.


> +
> +INC_PR = "r0"
> +PR = "${INC_PR}.0"

There's no .inc file, so no need to use INC_PR.


> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
> +SRC_URI[sha256sum] = "e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
> +
> +S = "${WORKDIR}/${BPN}-${PV}"
> +
> +BBCLASSEXTEND = "native"
> +
> +inherit autotools pkgconfig binconfig
> +
> +do_install_append_virtclass-native() {
> +	:
> +}

I don't get it - you requested native build with BBCLASSEXTEND and then you 
disable do_install for it? Why? Actually, it's not even overwrite, it's append 
and it doesn't make any sense...


> +
> +RREPLACES_${PN} = "lksctp"

And by this point I decided to find where this recipe really comes from... :) 
Well, it appears it was available back in OE-Classic and had all those same 
strange things. But, some of those may be just cruft from previous revisions, 
so we should clean it up...

So, let's see:

1. Drop PRIORITY
2. May want to fix LIC_FILES_CHKSUM to not checksum the entire file
3. Drop INC_PR
4. Question - is this a native/host package, or just the target. If only 
target, drop BBLASSEXTEND
5. If 4 is true, also drop do_install_append_virtclass-native()
6. Drop RREPLACES
7. Try dropping LEAD_SONAME, but may still be required due to nonstandard lib
8. PACKAGES defines ${PN}-withsctp and ${PN}-utils, but FILES_* lists don't 
match
9. Probably want ${PN}-utils to be changed to just ${PN}, as PN=lksctp-tools

Let me know if you have any questions.

-- 
Denys


> +
> +LEAD_SONAME = "libsctp.so"
> +
> +PACKAGES =+ "${PN}-withsctp ${PN}-utils"
> +
> +FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
> +            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
> +            ${base_libdir}/*${SOLIBS}"
> +
> +FILES_${PN}-dev += " \
> +  ${datadir}/lksctp-tools/checksctp.c \
> +  ${datadir}/lksctp-tools/sctp_socket.c \
> +  ${datadir}/lksctp-tools/sctp_bind.c \
> +  ${datadir}/lksctp-tools/sctp_darn.c \
> +  ${datadir}/lksctp-tools/sctp_load_libs.c \
> +  ${datadir}/lksctp-tools/sctp_sockopt.c \
> +  ${datadir}/lksctp-tools/sctp_socket.h \
> +  ${datadir}/lksctp-tools/sctp_test.c \
> +  ${datadir}/lksctp-tools/sctp_darn.h \
> +  ${libdir}/lksctp-tools/lib*.so"
> +
> +FILES_${PN}-utils = " \
> +  ${bindir}/sctp_test \
> +  ${bindir}/sctp_darn \
> +  ${bindir}/checksctp \
> +  ${bindir}/withsctp"
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH v2] lksctp-tools: Add recipe for lksctp
  2014-02-24 17:44   ` Denys Dmytriyenko
@ 2014-02-24 18:13     ` Denys Dmytriyenko
  0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2014-02-24 18:13 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago

On Mon, Feb 24, 2014 at 12:44:48PM -0500, Denys Dmytriyenko wrote:
> On Mon, Feb 24, 2014 at 04:00:25PM +0000, Maupin, Chase wrote:
> > >-----Original Message-----
> > >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > >bounces@arago-project.org] On Behalf Of Nelson, Sam
> > >Sent: Saturday, February 22, 2014 8:47 PM
> > >To: meta-arago@arago-project.org
> > >Subject: [meta-arago] [PATCH v2] lksctp-tools: Add recipe for
> > >lksctp
> > >
> > >- The linux kernel Stream control transmission protocol
> > >- Original recipe by Jingting Zhou
> > 
> > Can you please give a more descriptive statement about where this recipe 
> > came from?  What layer for example, a URL to the original recipe.
> 
> Actually, since this is coming from a forked meta-arago-mcsdk and maybe even 
> from a private tree, I'd rather not advertise the information such as URL. If 
> you want to mention it, just say it comes from previous version of MCSDK...
> 
> 
> > Also, can you split this into two patches?  One that adds the original 
> > recipe and one that splits out your changes so it is easier to tell what has 
> > been modified on top.
> 
> ??? I think you are missing the fact that it's an in-house recipe, not coming 
> from Open Source...

Ok, and after looking at it closer, the recipe originally comes from Classic 
OpenEmbedded. It was picked up mostly as is to previous versions of MCSDK...


> > >Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > >
> > >---
> > >Updated RREPLACES_${PN}
> > >Fix build issue with .so
> > >---
> > >---
> > > .../recipes-bsp/lksctp-tools/lksctp-tools_1.0.7.bb |   51
> > >++++++++++++++++++++
> > > 1 file changed, 51 insertions(+)
> > > create mode 100755 meta-arago-extras/recipes-bsp/lksctp-
> > >tools/lksctp-tools_1.0.7.bb
> > >
> > >diff --git a/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-
> > >tools_1.0.7.bb b/meta-arago-extras/recipes-bsp/lksctp-
> > >tools/lksctp-tools_1.0.7.bb
> > >new file mode 100755
> > >index 0000000..5c75552
> > >--- /dev/null
> > >+++ b/meta-arago-extras/recipes-bsp/lksctp-tools/lksctp-
> > >tools_1.0.7.bb
> > >@@ -0,0 +1,51 @@
> > >+DESCRIPTION = "The Linux Kernel Stream Control Transmission
> > >Protocol (lksctp) project"
> > >+SECTION = "libs"
> > >+PRIORITY = "optional"
> > >+LICENSE = "LGPLv2"
> > >+LIC_FILES_CHKSUM =
> > >"file://src/include/netinet/sctp.h;md5=8089fbe48b63b73c8d091bee750
> > >b2ebc"
> > >+
> > >+INC_PR = "r0"
> > >+PR = "${INC_PR}.0"
> > >+
> > >+SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/lksctp-tools-
> > >${PV}.tar.gz"
> > >+
> > >+SRC_URI[md5sum] = "047562b40537eb3be5d5ec3ae0a2198b"
> > >+SRC_URI[sha256sum] =
> > >"e920e89d110cff9847f1d86a1d7a23a156a8abcc9e65a35655d687fd08377595"
> > >+
> > >+S = "${WORKDIR}/${BPN}-${PV}"
> > >+
> > >+BBCLASSEXTEND = "native"
> > >+
> > >+inherit autotools pkgconfig binconfig
> > >+
> > >+do_install_append_virtclass-native() {
> > >+	:
> > >+}
> > >+
> > >+RREPLACES_${PN} = "lksctp"
> > >+
> > >+LEAD_SONAME = "libsctp.so"
> > >+
> > >+PACKAGES =+ "${PN}-withsctp ${PN}-utils"
> > >+
> > >+FILES_${PN} = "${libexecdir}/* ${libdir}/lib*${SOLIBS} \
> > >+            ${sysconfdir} ${sharedstatedir} ${localstatedir} \
> > >+            ${base_libdir}/*${SOLIBS}"
> > >+
> > >+FILES_${PN}-dev += " \
> > >+  ${datadir}/lksctp-tools/checksctp.c \
> > >+  ${datadir}/lksctp-tools/sctp_socket.c \
> > >+  ${datadir}/lksctp-tools/sctp_bind.c \
> > >+  ${datadir}/lksctp-tools/sctp_darn.c \
> > >+  ${datadir}/lksctp-tools/sctp_load_libs.c \
> > >+  ${datadir}/lksctp-tools/sctp_sockopt.c \
> > >+  ${datadir}/lksctp-tools/sctp_socket.h \
> > >+  ${datadir}/lksctp-tools/sctp_test.c \
> > >+  ${datadir}/lksctp-tools/sctp_darn.h \
> > >+  ${libdir}/lksctp-tools/lib*.so"
> > >+
> > >+FILES_${PN}-utils = " \
> > >+  ${bindir}/sctp_test \
> > >+  ${bindir}/sctp_darn \
> > >+  ${bindir}/checksctp \
> > >+  ${bindir}/withsctp"
> > >--
> > >1.7.9.5
> > >
> > >_______________________________________________
> > >meta-arago mailing list
> > >meta-arago@arago-project.org
> > >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2014-02-24 18:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-23  2:46 [PATCH v2] lksctp-tools: Add recipe for lksctp Sam Nelson
2014-02-24 16:00 ` Maupin, Chase
2014-02-24 17:44   ` Denys Dmytriyenko
2014-02-24 18:13     ` Denys Dmytriyenko
2014-02-24 18:09 ` Denys Dmytriyenko

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.