[meta-xilinx] [meta-xilinx-bsp][PATCH] u-boot-xlnx.inc: Deploy u-boot-spl.bin only if present
Manjukumar Harthikote Matha
MANJUKUM at xilinx.com
Fri May 25 11:20:28 PDT 2018
Applied
Thanks,
Manju
> -----Original Message-----
> From: Manjukumar Matha [mailto:manjukumar.harthikote-matha at xilinx.com]
> Sent: Friday, February 02, 2018 5:15 PM
> To: meta-xilinx at yoctoproject.org
> Cc: Manjukumar Harthikote Matha <MANJUKUM at xilinx.com>
> Subject: [meta-xilinx-bsp][PATCH] 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
>
> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha at xilinx.com>
> ---
> 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 f9f2a00..95051f5 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
> }
> --
> 2.7.4
More information about the meta-xilinx
mailing list