ccimx93: add support to build FIT images
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
3eed042d80
commit
be04b21ecd
|
|
@ -8,9 +8,16 @@ require conf/machine/include/imx-digi-base.inc
|
|||
require conf/machine/include/arm/armv8-2a/tune-cortexa55.inc
|
||||
|
||||
# Platform u-boot settings
|
||||
UBOOT_DTB_LOADADDRESS = "0x83000000"
|
||||
UBOOT_DTBO_LOADADDRESS = "0x83000000"
|
||||
UBOOT_ENTRYPOINT = "0x80400000"
|
||||
UBOOT_ENV = "boot"
|
||||
UBOOT_PREFIX = "imx-boot"
|
||||
UBOOT_SUFFIX = "bin"
|
||||
|
||||
# Platform kernel settings
|
||||
KERNEL_CLASSES = "kernel-fitimage"
|
||||
|
||||
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
||||
EXTRA_IMAGEDEPENDS += "imx-boot"
|
||||
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
||||
|
|
|
|||
|
|
@ -84,6 +84,10 @@ if test "${module_has_npu}" = "1" && test -z "${disable_npu}"; then
|
|||
setenv overlays _ov_som_npu_ccimx93.dtbo,${overlays}
|
||||
fi
|
||||
|
||||
if test "${dboot_kernel_var}" = "fitimage"; then
|
||||
# Set temp var to avoid re-loading fitimage
|
||||
setenv temp-fitimg-loaded yes
|
||||
fi
|
||||
dboot linux mmc ${mmcbootdev}:${mmcpart}
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in New Issue