]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
binman: Add optee binary to i.MX9 platform types
authorMathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Wed, 10 Jun 2026 14:17:09 +0000 (16:17 +0200)
committerFabio Estevam <festevam@gmail.com>
Fri, 26 Jun 2026 20:08:59 +0000 (17:08 -0300)
OP-TEE tee.bin is generated externally and might be missing during the
build.

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
tools/binman/etype/nxp_imx9image.py

index e0e806f2b7f3656af455cd1ff178dc75024b192f..138563ba33ae4d2d9c8ff756838a378cf647ef10 100644 (file)
@@ -36,7 +36,8 @@ class Entry_nxp_imx9image(Entry_mkimage):
             'append', 'boot-from', 'cntr-version', 'container', 'dummy-ddr',
             'dummy-v2x', 'hold', 'image', 'soc-type'
         ]
-        external_files = ['oei-m33-tcm.bin', 'm33_image.bin', 'bl31.bin']
+        external_files = ['oei-m33-tcm.bin', 'm33_image.bin', 'bl31.bin',
+                          'tee.bin']
 
         with open(self.config_filename, 'w', encoding='utf-8') as f:
             for prop in self._node.props.values():