aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoger Monk <r-monk@ti.com>2010-10-07 00:31:10 +0100
committerKoen Kooi <koen@openembedded.org>2010-10-07 09:52:13 +0200
commit32336b9a0e785f2f13d8cc36aefcaa2be27141da (patch)
treef1e137a03621e5631a671b3b756d29f1040befc8
parentc71ed1f946f0ed65efba13a2ceb2aaaa31f129ae (diff)
downloadopenembedded-32336b9a0e785f2f13d8cc36aefcaa2be27141da.tar.gz
ti-ipc: Add Initial Support for TI IPC (Inter Process Communication) Support Software
* This contains IPC support software for uni- and multi- processor communications tools Signed-off-by: Roger Monk <r-monk@ti.com> Signed-off-by: Koen Kooi <k-kooi@ti.com>
-rw-r--r--recipes/ti/ti-ipc.inc22
-rw-r--r--recipes/ti/ti-paths.inc2
2 files changed, 24 insertions, 0 deletions
diff --git a/recipes/ti/ti-ipc.inc b/recipes/ti/ti-ipc.inc
new file mode 100644
index 0000000000..cd6ad6e3d5
--- /dev/null
+++ b/recipes/ti/ti-ipc.inc
@@ -0,0 +1,22 @@
+DESCRIPTION = "TI Inter Process Ccommunication (IPC) Mechanisms (for Uni- and Multi- Processor Configurations)"
+HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ipc/index.html"
+SECTION = "devel"
+LICENSE = "TI"
+
+require ti-paths.inc
+require ti-staging.inc
+require ti-eula-unpack.inc
+
+PR = "r2"
+
+S = "${WORKDIR}/ipc_${PV}"
+
+SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ipc/${PV}/exports/ipc_setuplinux_${PV}.bin;name=ipcbin"
+
+BINFILE="ipc_setuplinux_${PV}.bin"
+TI_BIN_UNPK_CMDS="Y: qY:workdir:Y"
+
+do_install() {
+ install -d ${D}${IPC_INSTALL_DIR_RECIPE}
+ cp -pPrf ${S}/* ${D}${IPC_INSTALL_DIR_RECIPE}
+}
diff --git a/recipes/ti/ti-paths.inc b/recipes/ti/ti-paths.inc
index 5677b4bd8e..d67f44e838 100644
--- a/recipes/ti/ti-paths.inc
+++ b/recipes/ti/ti-paths.inc
@@ -14,6 +14,7 @@ export LINUXUTILS_INSTALL_DIR_RECIPE = "${installdir}/ti-linuxutils-tree"
export CMEM_INSTALL_DIR_RECIPE = "${installdir}/ti-linuxutils-tree"
export LINK_INSTALL_DIR_RECIPE = "${installdir}/ti-dsplink-tree"
export SYSLINK_INSTALL_DIR_RECIPE = "${installdir}/ti-syslink-tree"
+export IPC_INSTALL_DIR_RECIPE = "${installdir}/ti-ipc-tree"
export LPM_INSTALL_DIR_RECIPE = "${installdir}/ti-local-power-manager-tree"
export DMAI_INSTALL_DIR_RECIPE = "${installdir}/ti-dmai-tree"
export CODEC_INSTALL_DIR_RECIPE = "${installdir}/ti-codecs-tree"
@@ -37,6 +38,7 @@ export LINUXUTILS_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${LINUXUT
export CMEM_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${CMEM_INSTALL_DIR_RECIPE}"
export LINK_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${LINK_INSTALL_DIR_RECIPE}"
export SYSLINK_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${SYSLINK_INSTALL_DIR_RECIPE}"
+export IPC_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${IPC_INSTALL_DIR_RECIPE}"
export LPM_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${LPM_INSTALL_DIR_RECIPE}"
export DMAI_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${DMAI_INSTALL_DIR_RECIPE}"
export CODEC_INSTALL_DIR = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}${CODEC_INSTALL_DIR_RECIPE}"