From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andre Przywara Date: Sat, 22 Dec 2018 01:34:20 +0000 Subject: [U-Boot] [PATCH 1/3] tools: mkimage: Add missing names for imx8mimage and loadables In-Reply-To: <20181222013422.16967-1-andre.przywara@arm.com> References: <20181222013422.16967-1-andre.przywara@arm.com> Message-ID: <20181222013422.16967-2-andre.przywara@arm.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de At the moment "mkimage -T list" starts with two unknown entries, because their IH_TYPE_ name is not listed in the uimage_type table. Add those two entries to get an OCD-compatible image type listing. Signed-off-by: Andre Przywara --- common/image.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/image.c b/common/image.c index 0659133fcc..3ff713a521 100644 --- a/common/image.c +++ b/common/image.c @@ -140,7 +140,9 @@ static const table_entry_t uimage_type[] = { { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",}, + { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",}, { IH_TYPE_INVALID, "invalid", "Invalid Image", }, + { IH_TYPE_LOADABLE, "loadable", "Typeless Image", }, { IH_TYPE_MULTI, "multi", "Multi-File Image", }, { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, -- 2.14.5