All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denys@ti.com>
To: Jacob Stiffler <j-stiffler@ti.com>
Cc: meta-ti@yoctoproject.org
Subject: Re: [EXTERNAL] [PATCH v3 5/7] ti-ndk: Adding recipe for ti-ndk
Date: Tue, 26 Sep 2017 14:43:53 -0400	[thread overview]
Message-ID: <20170926184352.GG26843@edge> (raw)
In-Reply-To: <13e21177-ec0f-a885-55a7-3e54e252e014@ti.com>

On Thu, Aug 31, 2017 at 09:28:45AM -0400, Jacob Stiffler wrote:
> 
> 
> On 8/30/2017 6:42 PM, Mahesh Radhakrishnan wrote:
> >Upstreaming recipe for TI RTOS Networking development kit
> >
> >Signed-off-by: Mahesh Radhakrishnan <m-radhakrishnan2@ti.com>
> >---
> >
> >  v3 - Removed references to srcipk
> >  v2 - Added summmary  & merged in to a single recipe
> 
> These files are not merged anymore.

Jake, Mahesh,

Should this be a single recipe? I assume so, as it's only used by RTOS, not 
Linux. Is this critical to resolve? As it blocks multiple recipes depending 
on ndk - transport, board, vps-lld, cmb-addon, and audk2g-addon...


> >  recipes-ti/ndk/ti-ndk.inc           | 21 +++++++++++++++++++++
> >  recipes-ti/ndk/ti-ndk_2.25.01.11.bb | 13 +++++++++++++
> >  2 files changed, 34 insertions(+)
> >  create mode 100644 recipes-ti/ndk/ti-ndk.inc
> >  create mode 100644 recipes-ti/ndk/ti-ndk_2.25.01.11.bb
> >
> >diff --git a/recipes-ti/ndk/ti-ndk.inc b/recipes-ti/ndk/ti-ndk.inc
> >new file mode 100644
> >index 0000000..09d9ea0
> >--- /dev/null
> >+++ b/recipes-ti/ndk/ti-ndk.inc
> >@@ -0,0 +1,21 @@
> >+SUMMARY = "TI RTOS_Networking"
> >+HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ndk/index.html"
> >+SECTION = "devel"
> >+LICENSE = "BSD"
> >+
> >+require recipes-ti/includes/ti-paths.inc
> >+
> >+S = "${WORKDIR}/ndk_${PV}"
> >+
> >+SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ndk/${PV}/exports/ndk_${PV}.zip;name=ndkzip"
> >+
> >+do_install() {
> >+    CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
> >+    install -d ${D}${NDK_INSTALL_DIR_RECIPE}
> >+    cp ${CP_ARGS} ${S}/* ${D}${NDK_INSTALL_DIR_RECIPE}
> >+}
> >+
> >+ALLOW_EMPTY_${PN} = "1"
> >+FILES_${PN}-dev += "${NDK_INSTALL_DIR_RECIPE}"
> >+
> >+INSANE_SKIP_${PN}-dev = "arch ldflags staticdev"
> >diff --git a/recipes-ti/ndk/ti-ndk_2.25.01.11.bb b/recipes-ti/ndk/ti-ndk_2.25.01.11.bb
> >new file mode 100644
> >index 0000000..d5d926b
> >--- /dev/null
> >+++ b/recipes-ti/ndk/ti-ndk_2.25.01.11.bb
> >@@ -0,0 +1,13 @@
> >+require ti-ndk.inc
> >+
> >+PV = "2_25_01_11"
> >+PR = "r0"
> >+
> >+LIC_FILES_CHKSUM = "file://ndk_${PV}_manifest.html;md5=80a8d9b76cf700929d3f5b6df09052d6"
> >+
> >+SRC_URI[ndkzip.md5sum] = "e42bfcc8c3a6d183d60f26ec01ccc79b"
> >+SRC_URI[ndkzip.sha256sum] = "a15bc9b570dc0628dd8b8c3665037a162610a6f86c5f17ebb6a329d3db60f071"
> >+
> >+INHIBIT_PACKAGE_STRIP = "1"
> >+INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
> >+INHIBIT_SYSROOT_STRIP = "1"
> 
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


  reply	other threads:[~2017-09-26 18:44 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-30 22:42 [PATCH v3 1/7] pm-lld-rtos: Adding rtos recipe for pm-lld Mahesh Radhakrishnan
2017-08-30 22:42 ` [PATCH v3 2/7] transport-rtos: Added transport recipes(bmet, nimu, nimu-icss) for rtos Mahesh Radhakrishnan
2017-08-30 22:42 ` [PATCH v3 3/7] vps-lld-rtos: Added rtos recipe for vps-lld Mahesh Radhakrishnan
2017-08-30 22:42 ` [PATCH v3 4/7] cmb-addon-rtos: Adding CMB rtos recipe Mahesh Radhakrishnan
2017-08-31 13:27   ` [EXTERNAL] " Jacob Stiffler
2017-08-30 22:42 ` [PATCH v3 5/7] ti-ndk: Adding recipe for ti-ndk Mahesh Radhakrishnan
2017-08-31 13:28   ` [EXTERNAL] " Jacob Stiffler
2017-09-26 18:43     ` Denys Dmytriyenko [this message]
2017-08-30 22:42 ` [PATCH v3 6/7] pruss-lld: Add rtos recipe & update the version to 1.0.0.7 Mahesh Radhakrishnan
2017-08-30 22:42 ` [PATCH v3 7/7] audk2g-addon-rtos: Adding rtos recipe for audio addons for k2g Mahesh Radhakrishnan
2017-08-31 13:30   ` [EXTERNAL] " Jacob Stiffler
2017-08-31 13:23 ` [EXTERNAL] [PATCH v3 1/7] pm-lld-rtos: Adding rtos recipe for pm-lld Jacob Stiffler
2017-08-31 16:30 ` Denys Dmytriyenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170926184352.GG26843@edge \
    --to=denys@ti.com \
    --cc=j-stiffler@ti.com \
    --cc=meta-ti@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.