diff options
author | 2016-07-28 19:05:36 +0000 | |
---|---|---|
committer | 2016-07-29 17:51:52 -0400 | |
commit | 49fe9230f5c0bd7c8b72e5275b8c4dba4018c377 (patch) | |
tree | 994f605c78ad211e1a9d1c2871b4fc5cc84c2cd2 | |
parent | a3eb80a83d6886335619b1ca538ca9d8b72bd502 (diff) | |
download | meta-ti-49fe9230f5c0bd7c8b72e5275b8c4dba4018c377.tar.gz meta-ti-49fe9230f5c0bd7c8b72e5275b8c4dba4018c377.tar.bz2 meta-ti-49fe9230f5c0bd7c8b72e5275b8c4dba4018c377.zip |
ipumm-fw: cleanup recipe for pre-built binary
Signed-off-by: Karthik Ramanan <a0393906@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-bsp/ipumm-fw/ipumm-fw_3.00.08.02.bb | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.08.02.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.08.02.bb deleted file mode 100644 index 8b077b04..00000000 --- a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.08.02.bb +++ /dev/null @@ -1,35 +0,0 @@ -python __anonymous() { - features = bb.data.getVar("MACHINE_FEATURES", d, 1) - if not features: - return - if "mmip" not in features: - raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES') -} - -DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode" -LICENSE = "TI-TSPA" - -LIC_FILES_CHKSUM = "file://MMIP-${PV}-Manifest.doc;md5=81f4b23808c36c9223523f43e35d291c" - -COMPATIBLE_MACHINE = "dra7xx" -PACKAGE_ARCH = "${MACHINE_ARCH}" - -RDEPENDS_${PN} = " libdce" - -SRC_URI = "http://downloads.ti.com/infotainment/esd/jacinto6/glsdk/ipumm/3_00_08_02/exports/ipumm-dra7xx-evm-${PV}.tar.gz;protocol=http" - -SRC_URI[md5sum] = "53f47909c2e2575b188bba9ddc325437" -SRC_URI[sha256sum] = "4ac7598bbbb5dd0cd6504906afe0e09d76ba612a3c326e45425e67535e5f2d09" - -S = "${WORKDIR}/ipumm-dra7xx-evm-${PV}" - -TARGET = "dra7-ipu2-fw.xem4" - -do_install() { - mkdir -p ${D}${base_libdir}/firmware - cp ${S}/firmware/${TARGET} ${D}${base_libdir}/firmware/${TARGET} -} - -FILES_${PN} += "${base_libdir}/firmware/${TARGET}" - -PR = "r2" |