diff options
| author | Karthik Ramanan <a0393906@ti.com> | 2015-08-31 15:24:33 +0000 |
|---|---|---|
| committer | Denys Dmytriyenko <denys@ti.com> | 2015-09-02 09:45:11 -0400 |
| commit | 000fc8922a99bf55d9e82b2c4f49451f2250e409 (patch) | |
| tree | 84f860fe4133155104c1c2a5cc8ff6b792630ae5 | |
| parent | 387a462eea090baaee5049e26e66a20a89b9b053 (diff) | |
| download | meta-ti-000fc8922a99bf55d9e82b2c4f49451f2250e409.tar.gz | |
ipumm-fw: update to 3.00.08.02
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, 35 insertions, 0 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 new file mode 100644 index 00000000..8b077b04 --- /dev/null +++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.08.02.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | python __anonymous() { | ||
| 2 | features = bb.data.getVar("MACHINE_FEATURES", d, 1) | ||
| 3 | if not features: | ||
| 4 | return | ||
| 5 | if "mmip" not in features: | ||
| 6 | raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES') | ||
| 7 | } | ||
| 8 | |||
| 9 | DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode" | ||
| 10 | LICENSE = "TI-TSPA" | ||
| 11 | |||
| 12 | LIC_FILES_CHKSUM = "file://MMIP-${PV}-Manifest.doc;md5=81f4b23808c36c9223523f43e35d291c" | ||
| 13 | |||
| 14 | COMPATIBLE_MACHINE = "dra7xx" | ||
| 15 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 16 | |||
| 17 | RDEPENDS_${PN} = " libdce" | ||
| 18 | |||
| 19 | SRC_URI = "http://downloads.ti.com/infotainment/esd/jacinto6/glsdk/ipumm/3_00_08_02/exports/ipumm-dra7xx-evm-${PV}.tar.gz;protocol=http" | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "53f47909c2e2575b188bba9ddc325437" | ||
| 22 | SRC_URI[sha256sum] = "4ac7598bbbb5dd0cd6504906afe0e09d76ba612a3c326e45425e67535e5f2d09" | ||
| 23 | |||
| 24 | S = "${WORKDIR}/ipumm-dra7xx-evm-${PV}" | ||
| 25 | |||
| 26 | TARGET = "dra7-ipu2-fw.xem4" | ||
| 27 | |||
| 28 | do_install() { | ||
| 29 | mkdir -p ${D}${base_libdir}/firmware | ||
| 30 | cp ${S}/firmware/${TARGET} ${D}${base_libdir}/firmware/${TARGET} | ||
| 31 | } | ||
| 32 | |||
| 33 | FILES_${PN} += "${base_libdir}/firmware/${TARGET}" | ||
| 34 | |||
| 35 | PR = "r2" | ||
