]> code.ossystems Code Review - meta-freescale.git/commitdiff
dpl-examples: install dtb files in custom folder
authorChunrong Guo <chunrong.guo@nxp.com>
Thu, 19 Oct 2017 08:31:30 +0000 (16:31 +0800)
committerOtavio Salvador <otavio@ossystems.com.br>
Sat, 28 Oct 2017 13:39:37 +0000 (11:39 -0200)
* fix missing dtb files in custom path

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
recipes-dpaa2/dpl-examples/dpl-examples_git.bb

index 9991d4029622e5df814f577ff6bb0084f92d2549..6ec067d6194015dd388edb855a88f8d677a0fbb8 100644 (file)
@@ -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