summaryrefslogtreecommitdiffstats
path: root/recipes-bsp
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2020-04-07 02:36:59 +0000
committerDenys Dmytriyenko <denys@ti.com>2020-04-08 18:25:24 +0000
commit71ec36a62a4d2704b47481bbb92ae05d19ba5529 (patch)
tree42cb89fbe5c51db07112851625231fd88c8abbf1 /recipes-bsp
parentd969a033475370f5f5e5ed470d416e371214e5a1 (diff)
downloadmeta-ti-71ec36a62a4d2704b47481bbb92ae05d19ba5529.tar.gz
ipumm: require mmip machine feature, cleanup
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp')
-rw-r--r--recipes-bsp/ipumm-fw/ipumm-fw_git.bb16
1 files changed, 6 insertions, 10 deletions
diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb
index 2ef21016..4f6ae89e 100644
--- a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb
+++ b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb
@@ -1,19 +1,15 @@
1python __anonymous() { 1SUMMARY = "Firmware for IPU to suppor Accelerated MM decode and encode"
2 features = d.getVar("MACHINE_FEATURES")
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
9DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
10LICENSE = "TI-TSPA" 2LICENSE = "TI-TSPA"
11 3
12LIC_FILES_CHKSUM = "file://Texas_Instruments_ipumm_Manifest.pdf;md5=5cc572579f07af266ab57fc17d762c7f" 4LIC_FILES_CHKSUM = "file://Texas_Instruments_ipumm_Manifest.pdf;md5=5cc572579f07af266ab57fc17d762c7f"
13 5
14COMPATIBLE_MACHINE = "dra7xx" 6COMPATIBLE_MACHINE = "dra7xx"
15 7
16RDEPENDS_${PN} = " libdce" 8inherit features_check
9
10REQUIRED_MACHINE_FEATURES = "mmip"
11
12RDEPENDS_${PN} = "libdce"
17 13
18SRC_URI = "git://git.ti.com/ivimm/ipumm.git;protocol=git" 14SRC_URI = "git://git.ti.com/ivimm/ipumm.git;protocol=git"
19 15