aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorPeng Fan2018-10-15 23:50:30 -0500
committerStefano Babic2018-10-22 06:01:27 -0500
commita2b96ece5be146f4995d737f047e5bbb76079b8f (patch)
treeaf073ae6b90dcac0396ccedcade989453a6984e0 /common
parentd0dd73974c613650cb0c3d32a734a954cedc9f8a (diff)
downloadu-boot-a2b96ece5be146f4995d737f047e5bbb76079b8f.tar.gz
u-boot-a2b96ece5be146f4995d737f047e5bbb76079b8f.tar.xz
u-boot-a2b96ece5be146f4995d737f047e5bbb76079b8f.zip
tools: add i.MX8/8X image support
i.MX8/8X bootable image type is container type. The bootable image, containers a container set which supports two container. The 1st container is for SECO firmware, the 2nd container needs to include scfw, m4_0/1 image, ACore images per your requirement. Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'common')
-rw-r--r--common/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c
index 4f201289ee..1c3a7720cb 100644
--- a/common/image.c
+++ b/common/image.c
@@ -139,6 +139,7 @@ static const table_entry_t uimage_type[] = {
139 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, 139 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
140 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, 140 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
141 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, 141 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
142 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
142 { IH_TYPE_INVALID, "invalid", "Invalid Image", }, 143 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
143 { IH_TYPE_MULTI, "multi", "Multi-File Image", }, 144 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
144 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, 145 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},