From f74dc3f37142c1efca6aabac243dfe6caafefccc Mon Sep 17 00:00:00 2001 From: Manjukumar Matha Date: Fri, 2 Feb 2018 15:19:26 -0800 Subject: u-boot-xlnx.inc: Deploy u-boot-spl.bin only if present There are instances when SPL can be completely disabled, in such cases do_deploy will error out complaining u-boot-spl.bin not found. This patch fixes the issue by deploying u-boot-spl.bin only if it is present Reviewed-by: Alistair Francis Signed-off-by: Manjukumar Matha --- meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-xlnx.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-xlnx.inc b/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-xlnx.inc index 90e0ab25..ec421810 100644 --- a/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-xlnx.inc +++ b/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-xlnx.inc @@ -20,5 +20,7 @@ FILESEXTRAPATHS_prepend := "${@'${THISDIR}/u-boot-xlnx/${XILINX_RELEASE_VERSION} do_deploy_append_zcu102-zynqmp () { # deploy u-boot-spl.bin for use by runqemu/QEMU - install -Dm 0644 ${B}/spl/u-boot-spl.bin ${DEPLOYDIR}/u-boot-spl.bin + if [ -e ${B}/spl/u-boot-spl.bin ];then + install -Dm 0644 ${B}/spl/u-boot-spl.bin ${DEPLOYDIR}/u-boot-spl.bin + fi } -- cgit v1.2.3-54-g00ecf