From b788499815bfc1974d4277c0a261b9a7c24aa816 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Mon, 16 Nov 2009 10:17:24 +0100 Subject: recipes/ti: merge in updates * New codec recipes from Arago team in Germantown * Updated dm6446 and dm355 from Brijesh Singh * cmem, gst-ti and dmai fixes from Brijesh Singh angstrom: introduce SOC_FAMILY and start using it TI recipes as a testing ground * SOC_FAMILY tells you which system on chip is used in the MACHINE, e.g. omap3, dm355, pxa25x, s3c24xx. This avoids having to duplicate lots of overrides in machine specific recipes. This is *NOT* intended to be used as a package arch. --- recipes/ti/ti-codecs-omapl137_1.0.bb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 recipes/ti/ti-codecs-omapl137_1.0.bb (limited to 'recipes/ti/ti-codecs-omapl137_1.0.bb') diff --git a/recipes/ti/ti-codecs-omapl137_1.0.bb b/recipes/ti/ti-codecs-omapl137_1.0.bb new file mode 100644 index 0000000000..269f9a3e00 --- /dev/null +++ b/recipes/ti/ti-codecs-omapl137_1.0.bb @@ -0,0 +1,23 @@ +require ti-codec.inc + +# Should be replaced with real http URL, but for now create codec combo tar from DVSDK installation. +SRC_URI = "http://install.source.dir.local/omapl137_dvsdk_combos_1_0.tar.gz" + +S = "${WORKDIR}/omapl137_dvsdk_combos_1_0" + +# Yes, the xdc stuff still breaks with a '.' in PWD +PV = "1_0" +PR = "r1" + +do_compile() { + echo "do nothing" +} + +do_install () { + install -d ${D}/${installdir}/codec-combo + cd ${S} + for file in `find . -name *.x64P`; do + cp ${file} ${D}/${installdir}/codec-combo + done +} + -- cgit 1.2.3-korg