aboutsummaryrefslogtreecommitdiff
path: root/tools/imagetool.h
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2018-11-20 10:19:36 +0000
committerStefano Babic <sbabic@denx.de>2019-01-01 14:12:18 +0100
commit6609c2663c9c9699f3d279ccea599e5d18578b20 (patch)
treec45d3d2be7c2da3e754bdab8117efde9b68cde2b /tools/imagetool.h
parentea91031b223223667b8dbbaec7fa7bbb51f96a0b (diff)
downloadu-boot-6609c2663c9c9699f3d279ccea599e5d18578b20.zip
u-boot-6609c2663c9c9699f3d279ccea599e5d18578b20.tar.gz
u-boot-6609c2663c9c9699f3d279ccea599e5d18578b20.tar.bz2
tools: add i.MX8M image support
i.MX8M bootable image type is like i.MX6/7, but there is signed HDMI firmware image in front of A53 bootable image, which is also has an IVT header. Here we also include fit image to generate a bootable image. Signed-off-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'tools/imagetool.h')
-rw-r--r--tools/imagetool.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/imagetool.h b/tools/imagetool.h
index 3fcfb44..7147142 100644
--- a/tools/imagetool.h
+++ b/tools/imagetool.h
@@ -233,6 +233,7 @@ time_t imagetool_get_source_date(
void pbl_load_uboot(int fd, struct image_tool_params *mparams);
int zynqmpbif_copy_image(int fd, struct image_tool_params *mparams);
int imx8image_copy_image(int fd, struct image_tool_params *mparams);
+int imx8mimage_copy_image(int fd, struct image_tool_params *mparams);
#define ___cat(a, b) a ## b
#define __cat(a, b) ___cat(a, b)