From a450190c11fe50ac5e7cc843fd90aecd7071ab00 Mon Sep 17 00:00:00 2001 From: Aniket Limaye Date: Wed, 4 Oct 2023 12:04:30 +0530 Subject: 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 Signed-off-by: Ryan Eatmon --- meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-ti-bsp') diff --git a/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb b/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb index f635565d..49638ee9 100644 --- a/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb +++ b/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb @@ -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 } -- cgit v1.2.3-54-g00ecf