summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/recipes-bsp/vpe-tests
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2022-02-22 04:14:01 +0000
committerRyan Eatmon <reatmon@ti.com>2022-02-22 12:01:39 -0600
commitfa8035fc263960e06742945da00cb4777e4b24f7 (patch)
tree592e8178d7b5f719480172a83eaa80c34cf0fbd9 /meta-ti-bsp/recipes-bsp/vpe-tests
parentd39f85d1d079e14b89768b7a9d3adb059013e07b (diff)
downloadmeta-ti-fa8035fc263960e06742945da00cb4777e4b24f7.tar.gz
meta-ti: use nonarch_base_libdir for firmware installations
Firmware images should always be installed under /lib and hence should use nonarch_base_libdir, as regular base_libdir is configuration-specific and doesn't always resolve to /lib. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/recipes-bsp/vpe-tests')
-rw-r--r--meta-ti-bsp/recipes-bsp/vpe-tests/vpe-tests_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-ti-bsp/recipes-bsp/vpe-tests/vpe-tests_git.bb b/meta-ti-bsp/recipes-bsp/vpe-tests/vpe-tests_git.bb
index 9447f44d..5ca6b62e 100644
--- a/meta-ti-bsp/recipes-bsp/vpe-tests/vpe-tests_git.bb
+++ b/meta-ti-bsp/recipes-bsp/vpe-tests/vpe-tests_git.bb
@@ -25,6 +25,6 @@ EXTRA_OEMAKE = 'CROSS_COMPILE="${TARGET_PREFIX}" CC="${TARGET_PREFIX}gcc ${FLOAT
25 25
26do_install() { 26do_install() {
27 oe_runmake DESTDIR="${D}" install 27 oe_runmake DESTDIR="${D}" install
28 rm -rf ${D}${base_libdir}/firmware/vpdma-*.bin 28 rm -rf ${D}${nonarch_base_libdir}/firmware/vpdma-*.bin
29 rmdir -p ${D}${base_libdir}/firmware || true 29 rmdir -p ${D}${nonarch_base_libdir}/firmware || true
30} 30}