1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-06-06 10:50:37 +00:00

ti-sci-fw: Deploy the fw binaries to the deploy directory

Deploy the sysfw binaries to the DEPLOYDIR, to be picked up by the
tisdk-core-bundle... for the prebuilt binaries directory

Signed-off-by: Aniket Limaye <a-limaye@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
Aniket Limaye
2023-10-04 12:04:29 +05:30
committed by Ryan Eatmon
parent 5306d61211
commit 77bdad928a
@@ -1,5 +1,7 @@
SUMMARY = "TI SYSFW/TIFS Firmware"
inherit deploy
require recipes-bsp/ti-linux-fw/ti-linux-fw.inc
COMPATIBLE_MACHINE = "k3r5"
@@ -23,3 +25,12 @@ do_install() {
}
FILES:${PN} = "${nonarch_base_libdir}/firmware"
do_deploy() {
install -d ${DEPLOYDIR}/ti-sysfw
install -m 644 ${S}/ti-sysfw/ti-sci-firmware-* ${DEPLOYDIR}/ti-sysfw
install -m 644 ${S}/ti-sysfw/ti-fs-firmware-* ${DEPLOYDIR}/ti-sysfw
install -m 644 ${S}/ti-sysfw/ti-fs-stub-firmware-* ${DEPLOYDIR}/ti-sysfw
}
addtask deploy before do_build after do_compile