summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2017-11-14 23:15:23 +1000
committerManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2017-11-21 11:19:00 -0800
commit43fbfe482dd57c485080bfb6729e1a4e43954938 (patch)
tree55e61e2c1daf6f7002f8e93bd675cf6926b6c625
parent1b81a517df6b62a37ed7ec14e3c475681ada77d0 (diff)
downloadmeta-xilinx-43fbfe482dd57c485080bfb6729e1a4e43954938.tar.gz
u-boot-xlnx.inc: For ZCU102 populate u-boot-spl.bin
u-boot-spl.bin is used for runqemu execution since boot.bin has a header it cannot be loaded such that the boot.bin image content is at its load address. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r--recipes-bsp/u-boot/u-boot-xlnx.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes-bsp/u-boot/u-boot-xlnx.inc b/recipes-bsp/u-boot/u-boot-xlnx.inc
index 56a14780..5bdf2a1d 100644
--- a/recipes-bsp/u-boot/u-boot-xlnx.inc
+++ b/recipes-bsp/u-boot/u-boot-xlnx.inc
@@ -10,3 +10,8 @@ S = "${WORKDIR}/git"
10FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot:" 10FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot:"
11FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot-xlnx:" 11FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot-xlnx:"
12FILESEXTRAPATHS_prepend := "${@'${THISDIR}/u-boot-xlnx/${XILINX_RELEASE_VERSION}:' if d.getVar('XILINX_RELEASE_VERSION') else ''}" 12FILESEXTRAPATHS_prepend := "${@'${THISDIR}/u-boot-xlnx/${XILINX_RELEASE_VERSION}:' if d.getVar('XILINX_RELEASE_VERSION') else ''}"
13
14do_deploy_append_zcu102-zynqmp () {
15 # deploy u-boot-spl.bin for use by runqemu/QEMU
16 install -Dm 0644 ${B}/spl/u-boot-spl.bin ${DEPLOYDIR}/u-boot-spl.bin
17}