From: Fabio Berton Date: Thu, 10 Nov 2016 17:23:18 +0000 (-0200) Subject: fm-ucode: Add B variable to SOURCE parameter in install command X-Git-Tag: 2.2~147 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e9d8f4f608220f986708d4ca2bfdec55e2f680da;p=meta-freescale.git fm-ucode: Add B variable to SOURCE parameter in install command Signed-off-by: Fabio Berton Signed-off-by: Otavio Salvador --- diff --git a/recipes-dpaa/fm-ucode/fm-ucode_git.bb b/recipes-dpaa/fm-ucode/fm-ucode_git.bb index 566a6e39..c6a5b8b7 100644 --- a/recipes-dpaa/fm-ucode/fm-ucode_git.bb +++ b/recipes-dpaa/fm-ucode/fm-ucode_git.bb @@ -23,13 +23,13 @@ REGLEX_ls1043ardb = "t2080" do_install () { UCODE=`echo ${REGLEX} | sed -e 's,-.*$,,' -e 's,[a-zA-Z]*$,,'` install -d ${D}/boot - install -m 644 fsl_fman_ucode_${UCODE}*.bin ${D}/boot/ + install -m 644 ${B}/fsl_fman_ucode_${UCODE}*.bin ${D}/boot/ } do_deploy () { UCODE=`echo ${REGLEX} | sed -e 's,-.*$,,' -e 's,[a-zA-Z]*$,,'` install -d ${DEPLOYDIR}/ - install -m 644 fsl_fman_ucode_${UCODE}*.bin ${DEPLOYDIR}/ + install -m 644 ${B}/fsl_fman_ucode_${UCODE}*.bin ${DEPLOYDIR} } addtask deploy before do_build after do_install