diff options
author | Denys Dmytriyenko <denys@konsulko.com> | 2022-02-22 04:14:01 +0000 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2022-02-22 12:01:39 -0600 |
commit | fa8035fc263960e06742945da00cb4777e4b24f7 (patch) | |
tree | 592e8178d7b5f719480172a83eaa80c34cf0fbd9 /meta-ti-extras/recipes-ti | |
parent | d39f85d1d079e14b89768b7a9d3adb059013e07b (diff) | |
download | meta-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-extras/recipes-ti')
-rw-r--r-- | meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb index 60230a07..999993ea 100644 --- a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb +++ b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb | |||
@@ -5,7 +5,7 @@ require ti-ipc-rtos.inc | |||
5 | DEPENDS = "ti-xdctools-native ti-sysbios doxygen-native zip-native" | 5 | DEPENDS = "ti-xdctools-native ti-sysbios doxygen-native zip-native" |
6 | 6 | ||
7 | PACKAGES =+ "${PN}-fw" | 7 | PACKAGES =+ "${PN}-fw" |
8 | FILES:${PN}-fw = "${base_libdir}/firmware/*" | 8 | FILES:${PN}-fw = "${nonarch_base_libdir}/firmware/*" |
9 | FILES:${PN}-dev += "${IPC_INSTALL_DIR_RECIPE}" | 9 | FILES:${PN}-dev += "${IPC_INSTALL_DIR_RECIPE}" |
10 | 10 | ||
11 | INSANE_SKIP:${PN}-fw += "arch" | 11 | INSANE_SKIP:${PN}-fw += "arch" |
@@ -68,8 +68,8 @@ do_install() { | |||
68 | install -d ${D}${IPC_INSTALL_DIR_RECIPE} | 68 | install -d ${D}${IPC_INSTALL_DIR_RECIPE} |
69 | cp ${CP_ARGS} ${IPC_PACKAGE_DIR}/* -d ${D}${IPC_INSTALL_DIR_RECIPE} | 69 | cp ${CP_ARGS} ${IPC_PACKAGE_DIR}/* -d ${D}${IPC_INSTALL_DIR_RECIPE} |
70 | 70 | ||
71 | install -d ${D}${base_libdir}/firmware/ipc | 71 | install -d ${D}${nonarch_base_libdir}/firmware/ipc |
72 | cp ${CP_ARGS} ${S}/packages/ti/ipc/tests/bin/* ${D}${base_libdir}/firmware/ipc || true | 72 | cp ${CP_ARGS} ${S}/packages/ti/ipc/tests/bin/* ${D}${nonarch_base_libdir}/firmware/ipc || true |
73 | } | 73 | } |
74 | 74 | ||
75 | KFDSPNUM = "0" | 75 | KFDSPNUM = "0" |