summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2016-09-03 23:29:11 +1000
committerNathan Rossi <nathan@nathanrossi.com>2016-09-28 23:16:11 +1000
commit06c755302e1ca7a24371367fa17b54a858be69bb (patch)
tree0c58e5461580cd0f7530f412bb3767ac9d97fcfe
parent893ac4f2e357dccde3499d6750e1976a75e7a252 (diff)
downloadmeta-xilinx-06c755302e1ca7a24371367fa17b54a858be69bb.tar.gz
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 <nathan@nathanrossi.com>
-rw-r--r--recipes-bsp/reference-design/kc705-bitstream_2016.1.bb6
1 files 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
8 8
9COMPATIBLE_MACHINE = "kc705-microblazeel" 9COMPATIBLE_MACHINE = "kc705-microblazeel"
10 10
11inherit deploy
12
11SRC_URI = "http://www.xilinx.com/support/documentation/boards_and_kits/k7_emb/2016_1/xilinx-kc705-axi-full-2016.1.tar" 13SRC_URI = "http://www.xilinx.com/support/documentation/boards_and_kits/k7_emb/2016_1/xilinx-kc705-axi-full-2016.1.tar"
12SRC_URI[md5sum] = "59ade57ab0a15c8700c129f040fe4c75" 14SRC_URI[md5sum] = "59ade57ab0a15c8700c129f040fe4c75"
13SRC_URI[sha256sum] = "8e3e5c5d30e6d02eaa58cb6e9255b8d6456857185744904fb931e3d8e44ba62e" 15SRC_URI[sha256sum] = "8e3e5c5d30e6d02eaa58cb6e9255b8d6456857185744904fb931e3d8e44ba62e"
@@ -32,9 +34,9 @@ do_compile() {
32} 34}
33 35
34do_deploy () { 36do_deploy () {
35 install -d ${DEPLOY_DIR_IMAGE} 37 install -d ${DEPLOYDIR}
36 if [ -e ${D}/boot/download.bit ]; then 38 if [ -e ${D}/boot/download.bit ]; then
37 install ${D}/boot/download.bit ${DEPLOY_DIR_IMAGE}/download.bit 39 install ${D}/boot/download.bit ${DEPLOYDIR}/download.bit
38 fi 40 fi
39} 41}
40 42