imx9: container.cfg: Guard tee.bin inclusion
authorFabio Estevam <festevam@denx.de>
Thu, 27 Feb 2025 16:50:01 +0000 (13:50 -0300)
committerFabio Estevam <festevam@gmail.com>
Thu, 13 Mar 2025 18:15:50 +0000 (15:15 -0300)
Guard the inclusion of tee.bin with the CONFIG_OPTEE symbol to fix the
following build warning:

  CHECK    u-boot-container.cfgout
WARNING './tee.bin' not found, resulting binary may be not-functional
  BINMAN  .binman_stamp
  OFCHK   .config

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
arch/arm/mach-imx/imx9/container.cfg

index 91a9731..a018c36 100644 (file)
@@ -12,4 +12,6 @@ IMAGE A55 bl31.bin 0x204C0000
 IMAGE A55 bl31.bin 0x204E0000
 #endif
 IMAGE A55 u-boot.bin CONFIG_TEXT_BASE
+#ifdef CONFIG_OPTEE
 IMAGE A55 tee.bin 0x96000000
+#endif