From 40bfd01824abb9da80d0e54ded36595de84e226c Mon Sep 17 00:00:00 2001 From: Karthik Ramanan Date: Tue, 12 Jul 2016 12:58:40 +0000 Subject: [PATCH] ipumm-fw: Install map file into the targetfs This will be required to analyze the remoteproc crash related issues, whenever it occurs. Signed-off-by: Karthik Ramanan Signed-off-by: Denys Dmytriyenko --- recipes-bsp/ipumm-fw/ipumm-fw_git.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb index 331c25dc..3f558478 100644 --- a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb +++ b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb @@ -53,10 +53,12 @@ do_compile() { } TARGET = "dra7-ipu2-fw.xem4" +TARGET_MAP = "platform/ti/dce/baseimage/package/cfg/out/ipu/release/ipu.xem4.map" do_install() { install -d ${D}${base_libdir}/firmware install -m 0644 ${S}/${TARGET} ${D}${base_libdir}/firmware/${TARGET}.${BPN} + install -m 0644 ${S}/${TARGET_MAP} ${D}${base_libdir}/firmware/${TARGET}.map } ALTERNATIVE_${PN} = "dra7-ipu2-fw.xem4" @@ -66,4 +68,4 @@ ALTERNATIVE_PRIORITY = "20" FILES_${PN} += "${base_libdir}/firmware/*" -PR = "r1" +PR = "r2"