diff options
author | 2021-12-15 16:10:54 -0500 | |
---|---|---|
committer | 2021-12-15 15:21:36 -0600 | |
commit | 93754925f67c270dcba3e63ec89e121c38803c29 (patch) | |
tree | ed7c84d4d1df940ed82a4e65d0356a9d7b3dbd25 | |
parent | c6ee8a5e9346daab840e529b5d584f8455352854 (diff) | |
download | meta-ti-93754925f67c270dcba3e63ec89e121c38803c29.tar.gz meta-ti-93754925f67c270dcba3e63ec89e121c38803c29.tar.bz2 meta-ti-93754925f67c270dcba3e63ec89e121c38803c29.zip |
vxd-dec-fw: Move firmware one folder up in target
The application expects the pvdec_full_bin.fw to be in /lib/fimware
directory.
Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb index 7a184be7..3563cc7e 100644 --- a/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb +++ b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb @@ -17,8 +17,8 @@ S = "${WORKDIR}/git" TARGET = "pvdec_full_bin.fw" do_install() { - install -d ${D}${base_libdir}/firmware/ti-img - install -m 0644 ${S}/ti-img/${TARGET} ${D}${base_libdir}/firmware/ti-img/${TARGET} + install -d ${D}${base_libdir}/firmware + install -m 0644 ${S}/ti-img/${TARGET} ${D}${base_libdir}/firmware/${TARGET} } FILES:${PN} = "${base_libdir}/firmware" |