diff options
author | Koen Kooi <koen@openembedded.org> | 2009-08-26 11:35:14 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-08-26 11:35:14 +0200 |
commit | 172cb63ce5e91d489993590ec09e418aba019b4e (patch) | |
tree | e10d322895620ec0c96c2ab0efcd296bfc93b6b9 /recipes/ti/ti-codec-combo-omap3530_3.16.1.bb | |
parent | bac5eef9c8a73672ee114926011addabb36610eb (diff) |
dvsdk: rename to ti now that other things like bitblit live in that dir now
Diffstat (limited to 'recipes/ti/ti-codec-combo-omap3530_3.16.1.bb')
-rw-r--r-- | recipes/ti/ti-codec-combo-omap3530_3.16.1.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/recipes/ti/ti-codec-combo-omap3530_3.16.1.bb b/recipes/ti/ti-codec-combo-omap3530_3.16.1.bb new file mode 100644 index 0000000000..3a9efdd60d --- /dev/null +++ b/recipes/ti/ti-codec-combo-omap3530_3.16.1.bb @@ -0,0 +1,51 @@ +require ti-codec.inc +require ti-codec-combo-omap3530.inc + +SRC_URI = "http://software-dl.ti.com/sdo/sdo_apps_public_sw/omap3530_dvsdk_combos_tspa/omap3530_dvsdk_combos_tspa-3_16_01-Linux-x86.bin" + +# Specify names of the InstallJammer binary file and the tarball it extracts +BINFILE = "omap3530_dvsdk_combos_tspa-3_16_01-Linux-x86.bin" +TARFILE = "omap3530_dvsdk_combos_tspa/omap3530_dvsdk_combos_tspa_3_16_01.tar.gz" + +S = "${WORKDIR}/omap3530_dvsdk_combos_tspa_3_16_01" + +DEPENDS="ti-codec-engine ti-dsplink-module" + +CODEC_INSTALL_DIR = "${S}" + +export CODEGEN_INSTALL_DIR + +# Yes, the xdc stuff still breaks with a '.' in PWD +PV = "3161" +PR = "r17" +do_compile() { + make CE_INSTALL_DIR=${CE_INSTALL_DIR} \ + FC_INSTALL_DIR=${FC_INSTALL_DIR} \ + LINK_INSTALL_DIR=${LINK_INSTALL_DIR} \ + CMEM_INSTALL_DIR=${CMEM_INSTALL_DIR} \ + LPM_INSTALL_DIR=${LPM_INSTALL_DIR} \ + BIOS_INSTALL_DIR=${BIOS_INSTALL_DIR} \ + CODEGEN_INSTALL_DIR=${CODEGEN_INSTALL_DIR} \ + CODEC_INSTALL_DIR=${CODEC_INSTALL_DIR} \ + XDC_INSTALL_DIR=${XDC_INSTALL_DIR} clean + + make CE_INSTALL_DIR=${CE_INSTALL_DIR} \ + FC_INSTALL_DIR=${FC_INSTALL_DIR} \ + LINK_INSTALL_DIR=${LINK_INSTALL_DIR} \ + CMEM_INSTALL_DIR=${CMEM_INSTALL_DIR} \ + LPM_INSTALL_DIR=${LPM_INSTALL_DIR} \ + BIOS_INSTALL_DIR=${BIOS_INSTALL_DIR} \ + CODEGEN_INSTALL_DIR=${CODEGEN_INSTALL_DIR} \ + CODEC_INSTALL_DIR=${CODEC_INSTALL_DIR} \ + XDC_INSTALL_DIR=${XDC_INSTALL_DIR} +} + +do_install () { + install -d ${D}/${installdir}/codec-combo + cd ${S} + for file in `find . -name *.x64P`; do + cp ${file} ${D}/${installdir}/codec-combo + done +} + + |