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-bsp/recipes-bsp/goodix-fw | |
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-bsp/recipes-bsp/goodix-fw')
-rw-r--r-- | meta-ti-bsp/recipes-bsp/goodix-fw/goodix-fw_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-ti-bsp/recipes-bsp/goodix-fw/goodix-fw_git.bb b/meta-ti-bsp/recipes-bsp/goodix-fw/goodix-fw_git.bb index 1f1c2b81..00a6e51b 100644 --- a/meta-ti-bsp/recipes-bsp/goodix-fw/goodix-fw_git.bb +++ b/meta-ti-bsp/recipes-bsp/goodix-fw/goodix-fw_git.bb | |||
@@ -19,8 +19,8 @@ ORIGIN = "DRA71x-RevA-GT9271_SpecDig_Config.bin" | |||
19 | TARGET = "goodix_9271_cfg.bin" | 19 | TARGET = "goodix_9271_cfg.bin" |
20 | 20 | ||
21 | do_install() { | 21 | do_install() { |
22 | install -d ${D}${base_libdir}/firmware | 22 | install -d ${D}${nonarch_base_libdir}/firmware |
23 | install -m 0644 ${S}/ti-evm/${ORIGIN} ${D}${base_libdir}/firmware/${TARGET} | 23 | install -m 0644 ${S}/ti-evm/${ORIGIN} ${D}${nonarch_base_libdir}/firmware/${TARGET} |
24 | } | 24 | } |
25 | 25 | ||
26 | FILES:${PN} = "${base_libdir}/firmware" | 26 | FILES:${PN} = "${nonarch_base_libdir}/firmware" |