From 06c755302e1ca7a24371367fa17b54a858be69bb Mon Sep 17 00:00:00 2001 From: Nathan Rossi Date: Sat, 3 Sep 2016 23:29:11 +1000 Subject: kc705-bitstream: Use deploy class to handle shared state Use the deploy class and DEPLOYDIR to ensure that deploy objects are populated into the shared state cache. This ensures that the objects are also correctly populated into the output deploy directory regardless of whether the do_deploy task is executed. Signed-off-by: Nathan Rossi --- recipes-bsp/reference-design/kc705-bitstream_2016.1.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/reference-design/kc705-bitstream_2016.1.bb b/recipes-bsp/reference-design/kc705-bitstream_2016.1.bb index 75689e0e..56bb54dc 100644 --- a/recipes-bsp/reference-design/kc705-bitstream_2016.1.bb +++ b/recipes-bsp/reference-design/kc705-bitstream_2016.1.bb @@ -8,6 +8,8 @@ LIC_FILES_CHKSUM = "file://implementation/system.mmi;md5=1992d9c9006c524f4178949 COMPATIBLE_MACHINE = "kc705-microblazeel" +inherit deploy + SRC_URI = "http://www.xilinx.com/support/documentation/boards_and_kits/k7_emb/2016_1/xilinx-kc705-axi-full-2016.1.tar" SRC_URI[md5sum] = "59ade57ab0a15c8700c129f040fe4c75" SRC_URI[sha256sum] = "8e3e5c5d30e6d02eaa58cb6e9255b8d6456857185744904fb931e3d8e44ba62e" @@ -32,9 +34,9 @@ do_compile() { } do_deploy () { - install -d ${DEPLOY_DIR_IMAGE} + install -d ${DEPLOYDIR} if [ -e ${D}/boot/download.bit ]; then - install ${D}/boot/download.bit ${DEPLOY_DIR_IMAGE}/download.bit + install ${D}/boot/download.bit ${DEPLOYDIR}/download.bit fi } -- cgit v1.2.3-54-g00ecf