diff options
-rw-r--r-- | meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb | 6 |
1 files changed, 3 insertions, 3 deletions
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() { | |||
67 | 67 | ||
68 | do_deploy() { | 68 | do_deploy() { |
69 | # DM Firmware is needed for rebuilding U-Boot | 69 | # DM Firmware is needed for rebuilding U-Boot |
70 | install -d ${DEPLOYDIR} | 70 | install -d ${DEPLOYDIR}/${DM_FW_DIR} |
71 | for FW_NAME in ${DM_FW_LIST} | 71 | for FW_NAME in ${DM_FW_LIST} |
72 | do | 72 | do |
73 | install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME} ${DEPLOYDIR}/ | 73 | install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME} ${DEPLOYDIR}/${DM_FW_DIR} |
74 | install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME}.signed ${DEPLOYDIR}/ | 74 | install -m 0644 ${S}/${DM_FW_DIR}/${FW_NAME}.signed ${DEPLOYDIR}/${DM_FW_DIR} |
75 | done | 75 | done |
76 | } | 76 | } |
77 | 77 | ||