From: Chunrong Guo Date: Thu, 19 Oct 2017 08:31:30 +0000 (+0800) Subject: dpl-examples: install dtb files in custom folder X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=95c0a4b993bc1ebad4cbfd655e57ad83e30e1d4d;p=meta-freescale.git dpl-examples: install dtb files in custom folder * fix missing dtb files in custom path Signed-off-by: Chunrong Guo Signed-off-by: Otavio Salvador --- diff --git a/recipes-dpaa2/dpl-examples/dpl-examples_git.bb b/recipes-dpaa2/dpl-examples/dpl-examples_git.bb index 9991d402..6ec067d6 100644 --- a/recipes-dpaa2/dpl-examples/dpl-examples_git.bb +++ b/recipes-dpaa2/dpl-examples/dpl-examples_git.bb @@ -17,11 +17,13 @@ REGLEX_ls1088a = "ls1088a" do_install () { install -d ${D}/boot install -m 644 ${S}/${REGLEX}/RDB/*.dtb ${D}/boot + install -m 644 ${S}/${REGLEX}/RDB/custom/*.dtb ${D}/boot } do_deploy () { install -d ${DEPLOYDIR}/dpl-examples install -m 644 ${S}/${REGLEX}/RDB/*.dtb ${DEPLOYDIR}/dpl-examples + install -m 644 ${S}/${REGLEX}/RDB/custom/*.dtb ${DEPLOYDIR}/dpl-examples } addtask deploy before do_build after do_install