summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-10-29 18:46:08 -0600
committerTom Rini <[email protected]>2024-10-29 18:46:08 -0600
commit5cca0e3f6e0ff17db92476235ea1bb9cd8cbc9eb (patch)
tree8ae4389d02430cc97d25546be0c00cf5ae6ea7d6 /tools
parent2d79d1004d8d2ec8522c520dc205c8f199fd035e (diff)
parentd88bcd6d247a2b5d1683e393d8c9dc0259cd29f0 (diff)
Merge tag 'u-boot-imx-master-20241029' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/23092 - Implement i.MX93 erratum fix on the dwc_eth_qos driver to fix RMII. - Add support for Emcraft Systems NavQ+. - Fix the size of IVT + CSF blob tacked on to u-boot.itb.
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/etype/nxp_imx8mcst.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/binman/etype/nxp_imx8mcst.py b/tools/binman/etype/nxp_imx8mcst.py
index a7d8db4eec4..dd9f226b751 100644
--- a/tools/binman/etype/nxp_imx8mcst.py
+++ b/tools/binman/etype/nxp_imx8mcst.py
@@ -165,6 +165,8 @@ class Entry_nxp_imx8mcst(Entry_mkimage):
args = ['-i', cfg_fname, '-o', output_fname]
if self.cst.run_cmd(*args) is not None:
outdata = tools.read_file(output_fname)
+ # fixme: 0x2000 should be CONFIG_CSF_SIZE
+ outdata += tools.get_bytes(0, 0x2000 - 0x20 - len(outdata))
return data + outdata
else:
# Bintool is missing; just use the input data as the output