From: Denys Dmytriyenko <denys@ti.com>
To: Jacob Stiffler <j-stiffler@ti.com>
Cc: meta-ti@yoctoproject.org
Subject: Re: [PATCH] ti-xdctools: Add version 3.31.02.38.
Date: Tue, 4 Aug 2015 22:23:48 -0400 [thread overview]
Message-ID: <20150805022348.GU1040@edge> (raw)
In-Reply-To: <20150728191435.GK1040@edge>
Jake,
Will you resubmit this one with the necessary flags?
--
Denys
On Tue, Jul 28, 2015 at 03:14:36PM -0400, Denys Dmytriyenko wrote:
> I was holding it together with bios update patches.
>
> BTW, this patch will also benefit from -C --find-copies-harder flags, as it
> moves majority of code from one file to another, basically clobbering the
> patch with unnecessary duplication in additions and deletions.
>
> --
> Denys
>
>
> On Tue, Jul 28, 2015 at 11:20:20AM -0400, Jacob Stiffler wrote:
> > Ping.
> >
> > On 7/7/2015 9:04 AM, Jacob Stiffler wrote:
> > >* This version adheres to the new "core" package format.
> > >* Add the version-indepedent include file for the core packages
> > >* Extract common information between the core and legacy packages
> > > into the ti-xdctools-common.inc file.
> > >
> > >Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> > >---
> > > recipes-ti/devtools/ti-xdctools-common.inc | 54 +++++++++++++++++++++++++
> > > recipes-ti/devtools/ti-xdctools-core.inc | 5 +++
> > > recipes-ti/devtools/ti-xdctools.inc | 54 +------------------------
> > > recipes-ti/devtools/ti-xdctools_3.31.02.38.bb | 9 +++++
> > > 4 files changed, 69 insertions(+), 53 deletions(-)
> > > create mode 100644 recipes-ti/devtools/ti-xdctools-common.inc
> > > create mode 100644 recipes-ti/devtools/ti-xdctools-core.inc
> > > create mode 100644 recipes-ti/devtools/ti-xdctools_3.31.02.38.bb
> > >
> > >diff --git a/recipes-ti/devtools/ti-xdctools-common.inc b/recipes-ti/devtools/ti-xdctools-common.inc
> > >new file mode 100644
> > >index 0000000..2d5f2d7
> > >--- /dev/null
> > >+++ b/recipes-ti/devtools/ti-xdctools-common.inc
> > >@@ -0,0 +1,54 @@
> > >+DESCRIPTION = "TI XDCtools (RTSC - Real Time Software Components - http://rtsc.eclipse.org)"
> > >+HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc"
> > >+SECTION = "devel"
> > >+LICENSE = "BSD & GPLv2"
> > >+
> > >+require recipes-ti/includes/ti-paths.inc
> > >+require recipes-ti/includes/ti-staging.inc
> > >+
> > >+do_install() {
> > >+ install -d ${D}${XDC_INSTALL_DIR_RECIPE}
> > >+ cp -pPrf ${S}/* ${D}${XDC_INSTALL_DIR_RECIPE}
> > >+}
> > >+
> > >+INSANE_SKIP_${PN} = "installed-vs-shipped"
> > >+
> > >+# Prevent internal libs from getting picked up
> > >+PRIVATE_LIBS = " \
> > >+libncdb.so \
> > >+libcdb.so \
> > >+libjavaplugin_oji.so \
> > >+libjavaplugin_jni.so \
> > >+libjsound.so \
> > >+libinstrument.so \
> > >+libjawt.so \
> > >+libzip.so \
> > >+libjava_crw_demo.so \
> > >+libjavaplugin_nscp_gcc29.so \
> > >+libhprof.so \
> > >+libcmm.so \
> > >+libjdwp.so \
> > >+libmlib_image.so \
> > >+libjpeg.so \
> > >+libverify.so \
> > >+libjavaplugin_nscp.so \
> > >+libmanagement.so \
> > >+libunpack.so \
> > >+librmi.so \
> > >+libJdbcOdbc.so \
> > >+libawt.so \
> > >+libnet.so \
> > >+libjaas_unix.so \
> > >+libnio.so \
> > >+libdcpr.so \
> > >+libioser12.so \
> > >+libjsoundalsa.so \
> > >+libjava.so \
> > >+libfontmanager.so \
> > >+libdt_socket.so \
> > >+libmawt.so \
> > >+libjvm.so \
> > >+libhpi.so \
> > >+lib.so \
> > >+libcairo.so.2 \
> > >+"
> > >diff --git a/recipes-ti/devtools/ti-xdctools-core.inc b/recipes-ti/devtools/ti-xdctools-core.inc
> > >new file mode 100644
> > >index 0000000..47f73b6
> > >--- /dev/null
> > >+++ b/recipes-ti/devtools/ti-xdctools-core.inc
> > >@@ -0,0 +1,5 @@
> > >+require ti-xdctools-common.inc
> > >+
> > >+S = "${WORKDIR}/xdctools_${PV}_core"
> > >+
> > >+SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc/${PV}/exports/xdccore/xdctools_${PV}_core_linux.zip;name=xdczip"
> > >diff --git a/recipes-ti/devtools/ti-xdctools.inc b/recipes-ti/devtools/ti-xdctools.inc
> > >index 547a555..1415f83 100644
> > >--- a/recipes-ti/devtools/ti-xdctools.inc
> > >+++ b/recipes-ti/devtools/ti-xdctools.inc
> > >@@ -1,10 +1,4 @@
> > >-DESCRIPTION = "TI XDCtools (RTSC - Real Time Software Components - http://rtsc.eclipse.org)"
> > >-HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc"
> > >-SECTION = "devel"
> > >-LICENSE = "BSD & GPLv2"
> > >-
> > >-require ../includes/ti-paths.inc
> > >-require ../includes/ti-staging.inc
> > >+require ti-xdctools-common.inc
> > > require ../includes/ti-eula-unpack.inc
> > > S = "${WORKDIR}/xdctools_${PV}"
> > >@@ -14,49 +8,3 @@ SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rt
> > > BINFILE="xdctools_setuplinux_${PV}.bin"
> > > TI_BIN_UNPK_CMDS="Y:workdir:Y"
> > > TI_BIN_UNPK_WDEXT="/ti"
> > >-
> > >-do_install() {
> > >- install -d ${D}${XDC_INSTALL_DIR_RECIPE}
> > >- cp -pPrf ${S}/* ${D}${XDC_INSTALL_DIR_RECIPE}
> > >-}
> > >-
> > >-# Prevent internal libs from getting picked up
> > >-PRIVATE_LIBS = " \
> > >-libncdb.so \
> > >-libcdb.so \
> > >-libjavaplugin_oji.so \
> > >-libjavaplugin_jni.so \
> > >-libjsound.so \
> > >-libinstrument.so \
> > >-libjawt.so \
> > >-libzip.so \
> > >-libjava_crw_demo.so \
> > >-libjavaplugin_nscp_gcc29.so \
> > >-libhprof.so \
> > >-libcmm.so \
> > >-libjdwp.so \
> > >-libmlib_image.so \
> > >-libjpeg.so \
> > >-libverify.so \
> > >-libjavaplugin_nscp.so \
> > >-libmanagement.so \
> > >-libunpack.so \
> > >-librmi.so \
> > >-libJdbcOdbc.so \
> > >-libawt.so \
> > >-libnet.so \
> > >-libjaas_unix.so \
> > >-libnio.so \
> > >-libdcpr.so \
> > >-libioser12.so \
> > >-libjsoundalsa.so \
> > >-libjava.so \
> > >-libfontmanager.so \
> > >-libdt_socket.so \
> > >-libmawt.so \
> > >-libjvm.so \
> > >-libhpi.so \
> > >-lib.so \
> > >-libcairo.so.2 \
> > >-"
> > >-
> > >diff --git a/recipes-ti/devtools/ti-xdctools_3.31.02.38.bb b/recipes-ti/devtools/ti-xdctools_3.31.02.38.bb
> > >new file mode 100644
> > >index 0000000..5e970ee
> > >--- /dev/null
> > >+++ b/recipes-ti/devtools/ti-xdctools_3.31.02.38.bb
> > >@@ -0,0 +1,9 @@
> > >+require ti-xdctools-core.inc
> > >+
> > >+PV = "3_31_02_38"
> > >+PR = "r0"
> > >+
> > >+LIC_FILES_CHKSUM = "file://docs/license/xdc/shelf/package.html;md5=9dbb0095cdb8b35508b344aa4f1de333"
> > >+
> > >+SRC_URI[xdczip.md5sum] = "c76b3d90c3e25d199765557e393d165b"
> > >+SRC_URI[xdczip.sha256sum] = "c0e1f6911f2294bfb76471fac1a0ceac3e89c7eb1300f84d2571bf78cb62a7d2"
> >
> > --
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
> --
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
prev parent reply other threads:[~2015-08-05 2:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-07 13:04 [PATCH] ti-xdctools: Add version 3.31.02.38 Jacob Stiffler
2015-07-28 15:20 ` Jacob Stiffler
2015-07-28 19:14 ` Denys Dmytriyenko
2015-08-05 2:23 ` Denys Dmytriyenko [this message]
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=20150805022348.GU1040@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.