]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
tools: imx8image: fix soc variable for ULP
authorGary Bisson <bisson.gary@gmail.com>
Mon, 5 Aug 2024 21:25:07 +0000 (23:25 +0200)
committerFabio Estevam <festevam@denx.de>
Tue, 13 Aug 2024 11:28:24 +0000 (08:28 -0300)
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>
tools/imx8image.c

index 76d0cd62dcc8ee4f27044ea0e7f64a0b7348b4eb..53ab16637bad8edfbe9e6658ef5c78afc1637c54 100644 (file)
@@ -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 {