diff options
author | 2019-01-22 17:11:05 +0530 | |
---|---|---|
committer | 2019-06-28 15:37:10 -0700 | |
commit | c3dcd6eeaf10ea869bb63dce35b755730b9a6fb2 (patch) | |
tree | 58c037aeeb51c35e28a155a1079596f844fbf8a8 | |
parent | bf188829d22ddb94ecee005574bd0628046ab09d (diff) | |
download | meta-xilinx-c3dcd6eeaf10ea869bb63dce35b755730b9a6fb2.tar.gz meta-xilinx-c3dcd6eeaf10ea869bb63dce35b755730b9a6fb2.tar.bz2 meta-xilinx-c3dcd6eeaf10ea869bb63dce35b755730b9a6fb2.zip |
machine-xilinx-default.inc: Make u-boot.elf as UBOOT_ELF for zynq
CONFIG_REMAKE_ELF is enabled for all zynq boards. Also, using
CONFIG_OF_SEPERATE is recommeneded by u-boot release v2019.01. So,
Deploy u-boot.elf instead of u-boot as u-boot.elf contains dtb. This
would solve the following boot issue:
No valid device tree binary found - please append one to U-Boot binary,
use u-boot-dtb.bin or define CONFIG_OF_EMBED. For sandbox, use -d
<file.dtb> initcall sequence 00461b18 failed at call 004582e0 (err=-1)
Signed-off-by: Sreeja Vadakattu <svadakat@xilinx.com>
Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r-- | meta-xilinx-bsp/conf/machine/include/machine-xilinx-default.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/conf/machine/include/machine-xilinx-default.inc b/meta-xilinx-bsp/conf/machine/include/machine-xilinx-default.inc index 153a47fb..f714a21b 100644 --- a/meta-xilinx-bsp/conf/machine/include/machine-xilinx-default.inc +++ b/meta-xilinx-bsp/conf/machine/include/machine-xilinx-default.inc @@ -23,6 +23,7 @@ UBOOT_SUFFIX_microblaze ?= "bin" UBOOT_BINARY ?= "u-boot.${UBOOT_SUFFIX}" UBOOT_ELF ?= "u-boot" +UBOOT_ELF_zynq ?= "u-boot.elf" UBOOT_ELF_aarch64 ?= "u-boot.elf" #Hardware accelaration |