ti-dm-dw: Preserve structure of the deployed ti-dm-fw binaries

Preserve the directory structure of the deployed dm firmware so that one
can directly specify the deploy directory for binman based u-boot build.

Additionally, this makes it easier to preserve the same structure inside
the prebuilt-images directory of the tisdk-core-bundle for the same reason.

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-05 12:08:25 -05:00
committed by Ryan Eatmon
parent 01bd31052e
commit 6fe2ea45e6
+3 -3
View File
@@ -67,11 +67,11 @@ do_install() {
do_deploy() {
# DM Firmware is needed for rebuilding U-Boot
install -d ${DEPLOYDIR}
install -d ${DEPLOYDIR}/${DM_FW_DIR}
for FW_NAME in ${DM_FW_LIST}
do
install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME} ${DEPLOYDIR}/
install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME}.signed ${DEPLOYDIR}/
install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME} ${DEPLOYDIR}/${DM_FW_DIR}
install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME}.signed ${DEPLOYDIR}/${DM_FW_DIR}
done
}