summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/recipes-bsp/vpdma-fw
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/vpdma-fw
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/vpdma-fw')
-rw-r--r--meta-ti-bsp/recipes-bsp/vpdma-fw/vpdma-fw_03-2012.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-ti-bsp/recipes-bsp/vpdma-fw/vpdma-fw_03-2012.bb b/meta-ti-bsp/recipes-bsp/vpdma-fw/vpdma-fw_03-2012.bb
index c7b2a7bb..673634da 100644
--- a/meta-ti-bsp/recipes-bsp/vpdma-fw/vpdma-fw_03-2012.bb
+++ b/meta-ti-bsp/recipes-bsp/vpdma-fw/vpdma-fw_03-2012.bb
@@ -16,10 +16,10 @@ S = "${WORKDIR}/vpdma-fw-${PV}"
16TARGET = "vpdma-1b8.bin" 16TARGET = "vpdma-1b8.bin"
17 17
18do_install() { 18do_install() {
19 mkdir -p ${D}${base_libdir}/firmware 19 mkdir -p ${D}${nonarch_base_libdir}/firmware
20 cp ${S}/${TARGET} ${D}${base_libdir}/firmware/${TARGET} 20 cp ${S}/${TARGET} ${D}${nonarch_base_libdir}/firmware/${TARGET}
21} 21}
22 22
23FILES:${PN} += "${base_libdir}/firmware/${TARGET}" 23FILES:${PN} += "${nonarch_base_libdir}/firmware/${TARGET}"
24 24
25PR = "r1" 25PR = "r1"