diff options
| author | Roger Monk <r-monk@ti.com> | 2010-10-06 23:31:10 (GMT) |
|---|---|---|
| committer | Koen Kooi <koen@openembedded.org> | 2010-10-07 07:52:13 (GMT) |
| commit | 32336b9a0e785f2f13d8cc36aefcaa2be27141da (patch) | |
| tree | f1e137a03621e5631a671b3b756d29f1040befc8 | |
| parent | c71ed1f946f0ed65efba13a2ceb2aaaa31f129ae (diff) | |
| download | openembedded-32336b9a0e785f2f13d8cc36aefcaa2be27141da.tar.gz openembedded-32336b9a0e785f2f13d8cc36aefcaa2be27141da.tar.bz2 | |
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.inc | 22 | ||||
| -rw-r--r-- | recipes/ti/ti-paths.inc | 2 |
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 0000000..cd6ad6e --- /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 5677b4b..d67f44e 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}" |
