diff options
author | Karthik Ramanan <a0393906@ti.com> | 2016-07-12 12:58:40 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-07-19 21:41:56 -0400 |
commit | 40bfd01824abb9da80d0e54ded36595de84e226c (patch) | |
tree | 1213d737310ab2d078428930eebd3d2203eff1be | |
parent | 543dac569bb64a3b75e549fb17a5ef65d590dc1b (diff) | |
download | meta-ti-40bfd01824abb9da80d0e54ded36595de84e226c.tar.gz |
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 <a0393906@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-bsp/ipumm-fw/ipumm-fw_git.bb | 4 |
1 files changed, 3 insertions, 1 deletions
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() { | |||
53 | } | 53 | } |
54 | 54 | ||
55 | TARGET = "dra7-ipu2-fw.xem4" | 55 | TARGET = "dra7-ipu2-fw.xem4" |
56 | TARGET_MAP = "platform/ti/dce/baseimage/package/cfg/out/ipu/release/ipu.xem4.map" | ||
56 | 57 | ||
57 | do_install() { | 58 | do_install() { |
58 | install -d ${D}${base_libdir}/firmware | 59 | install -d ${D}${base_libdir}/firmware |
59 | install -m 0644 ${S}/${TARGET} ${D}${base_libdir}/firmware/${TARGET}.${BPN} | 60 | install -m 0644 ${S}/${TARGET} ${D}${base_libdir}/firmware/${TARGET}.${BPN} |
61 | install -m 0644 ${S}/${TARGET_MAP} ${D}${base_libdir}/firmware/${TARGET}.map | ||
60 | } | 62 | } |
61 | 63 | ||
62 | ALTERNATIVE_${PN} = "dra7-ipu2-fw.xem4" | 64 | ALTERNATIVE_${PN} = "dra7-ipu2-fw.xem4" |
@@ -66,4 +68,4 @@ ALTERNATIVE_PRIORITY = "20" | |||
66 | 68 | ||
67 | FILES_${PN} += "${base_libdir}/firmware/*" | 69 | FILES_${PN} += "${base_libdir}/firmware/*" |
68 | 70 | ||
69 | PR = "r1" | 71 | PR = "r2" |