diff options
author | Gary Bisson <bisson.gary@gmail.com> | 2024-08-05 23:25:07 +0200 |
---|---|---|
committer | Fabio Estevam <festevam@denx.de> | 2024-08-13 08:28:24 -0300 |
commit | 1e0b91d6fc07557faef0f458a3095b67c4557c50 (patch) | |
tree | 24c3286f8ff06a9dd189a341070d45af3f6b274a | |
parent | 06dceeba3d4515ccfbe37b8989ee047a7628aee3 (diff) | |
download | u-boot-1e0b91d6fc07557faef0f458a3095b67c4557c50.tar.gz u-boot-1e0b91d6fc07557faef0f458a3095b67c4557c50.tar.bz2 u-boot-1e0b91d6fc07557faef0f458a3095b67c4557c50.zip |
tools: imx8image: fix soc variable for ULP
Currently the ULP token sets the soc as IMX9, making it impossible to
differentiate the two families of processors.
However, since the 8ULP requires specific binaries like upower which do
not exist in 93, they need to be separated.
Fixes: 6ec65c8558f (tools: image: support i.MX93)
Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | tools/imx8image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/imx8image.c b/tools/imx8image.c index 76d0cd62dc..53ab16637b 100644 --- a/tools/imx8image.c +++ b/tools/imx8image.c @@ -119,7 +119,7 @@ static void parse_cfg_cmd(image_t *param_stack, int32_t cmd, char *token, } else if (!strncmp(token, "IMX8QM", 6)) { soc = QM; } else if (!strncmp(token, "ULP", 3)) { - soc = IMX9; + soc = ULP; } else if (!strncmp(token, "IMX9", 4)) { soc = IMX9; } else { |