mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-17 04:36:58 +02:00
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>
18 lines
336 B
INI
18 lines
336 B
INI
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2023 Mathieu Othacehe <m.othacehe@gmail.com>
|
|
*/
|
|
|
|
BOOT_FROM SD 0x400
|
|
SOC_TYPE IMX9
|
|
CONTAINER
|
|
#ifdef CONFIG_IMX91
|
|
IMAGE A55 bl31.bin 0x204C0000
|
|
#else
|
|
IMAGE A55 bl31.bin 0x204E0000
|
|
#endif
|
|
IMAGE A55 u-boot.bin CONFIG_TEXT_BASE
|
|
#ifdef CONFIG_OPTEE
|
|
IMAGE A55 tee.bin 0x96000000
|
|
#endif
|