summaryrefslogtreecommitdiffstats
path: root/scripts/imx/imx.c
diff options
context:
space:
mode:
authorAlexander Kurz <akurz@blala.de>2016-09-09 17:43:40 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-09-12 08:23:09 +0200
commit2f9ff8a8f7c54bfed6aa95cf7945f42b1b710767 (patch)
treebdb530d736a47b5ced1423cd5f8b4c6ce057b4fb /scripts/imx/imx.c
parentcf4414f7a2db42857b88134ea3d103d2688edd8c (diff)
downloadbarebox-2f9ff8a8f7c54bfed6aa95cf7945f42b1b710767.tar.gz
barebox-2f9ff8a8f7c54bfed6aa95cf7945f42b1b710767.tar.xz
scripts: imx: add support for i.MX50
Add imximg support for i.MX50 processors which use the i.MX flash header v2 format. Signed-off-by: Alexander Kurz <akurz@blala.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts/imx/imx.c')
-rw-r--r--scripts/imx/imx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/imx/imx.c b/scripts/imx/imx.c
index 4ec8c89541..c8ee3091e0 100644
--- a/scripts/imx/imx.c
+++ b/scripts/imx/imx.c
@@ -219,6 +219,7 @@ struct soc_type {
static struct soc_type socs[] = {
{ .name = "imx25", .header_version = 1, .cpu_type = IMX_CPU_IMX25 },
{ .name = "imx35", .header_version = 1, .cpu_type = IMX_CPU_IMX35 },
+ { .name = "imx50", .header_version = 2, .cpu_type = IMX_CPU_IMX50 },
{ .name = "imx51", .header_version = 1, .cpu_type = IMX_CPU_IMX51 },
{ .name = "imx53", .header_version = 2, .cpu_type = IMX_CPU_IMX53 },
{ .name = "imx6", .header_version = 2, .cpu_type = IMX_CPU_IMX6 },