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-dm6446_2.05.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-dm6446_2.05.bb')
-rw-r--r-- | recipes/ti/ti-codec-combo-dm6446_2.05.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/recipes/ti/ti-codec-combo-dm6446_2.05.bb b/recipes/ti/ti-codec-combo-dm6446_2.05.bb new file mode 100644 index 0000000000..07d9dffe6b --- /dev/null +++ b/recipes/ti/ti-codec-combo-dm6446_2.05.bb @@ -0,0 +1,40 @@ +DEPENDS="ti-codec-engine ti-dsplink-module" + +require ti-codec.inc +require ti-codec-combo-dm6446.inc + +SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/S1SDKLNX/DVSDK_2_00/exports/dm6446_codecs_setuplinux_2_00_00_22.bin" + +S = "${WORKDIR}/dvsdk_2_00_00_22/dm6446_dvsdk_combos_2_05" +BINFILE = "dm6446_codecs_setuplinux_2_00_00_22.bin" + +export ${CODEGEN_INSTALL_DIR} + +# Yes, the xdc stuff still breaks with a '.' in PWD +PV = "205" +PR = "r15" + +do_configure () { + find . -name *.x64P | xargs rm -rf {} +} + +do_compile() { + make BIOS_INSTALL_DIR=${BIOS_INSTALL_DIR} \ + XDC_INSTALL_DIR=${XDC_INSTALL_DIR} \ + CE_INSTALL_DIR=${CE_INSTALL_DIR} \ + FC_INSTALL_DIR=${FC_INSTALL_DIR} \ + CMEM_INSTALL_DIR=${CMEM_INSTALL_DIR} \ + XDAIS_INSTALL_DIR=${XDAIS_INSTALL_DIR} \ + LINK_INSTALL_DIR=${LINK_INSTALL_DIR} \ + CODEGEN_INSTALL_DIR=${CODEGEN_INSTALL_DIR} \ + XDCARGS=\"eval\" +} + +do_install () { + install -d ${D}/${installdir}/codec-combo + cd ${S} + for file in `find . -name *.x64P`; do + cp ${file} ${D}/${installdir}/codec-combo + done +} + |