From: Tien Fong Chee <tien.fong.c...@intel.com> Add default U-Boot fitImage file so that fit features can be supported and loaded by SPL.
Signed-off-by: Tien Fong Chee <tien.fong.c...@intel.com> Signed-off-by: Sieu Mun Tang <sieu.mun.t...@intel.com> --- board/altera/arria10-socdk/fit_uboot.its | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 board/altera/arria10-socdk/fit_uboot.its diff --git a/board/altera/arria10-socdk/fit_uboot.its b/board/altera/arria10-socdk/fit_uboot.its new file mode 100644 index 0000000000..aa80e8e278 --- /dev/null +++ b/board/altera/arria10-socdk/fit_uboot.its @@ -0,0 +1,43 @@ +// SPDX-License-Identifier: GPL-2.0 + /* + * Copyright (C) 2019 Intel Corporation <www.intel.com> + * + */ + +/dts-v1/; + +/ { + description = "FIT image with boot binaries"; + #address-cells = <1>; + + images { + uboot { + description = "U-Boot (32-bit)"; + data = /incbin/("../../../u-boot-nodtb.bin"); + type = "standalone"; + os = "U-Boot"; + arch = "arm"; + compression = "none"; + load = <0x01000040>; + entry = <0x01000040>; + }; + + fdt { + description = "U-Boot DTB"; + data = /incbin/("../../../u-boot.dtb"); + type = "flat_dt"; + os = "U-Boot"; + arch = "arm"; + compression = "none"; + }; + }; + + configurations { + default = "conf"; + conf { + description = "Intel Arria10 SoCDK"; + loadables = "uboot"; + fdt = "fdt"; + }; + }; +}; -- 2.25.1