[U-Boot] [PATCH 7/7] warp7: Specify a default CONFIG_OPTEE_LOAD_ADDR if non provided
Bryan O'Donoghue
bryan.odonoghue at linaro.org
Wed May 8 18:14:48 UTC 2019
If no CONFIG_OPTEE_LOAD_ADDR is provided i.e. you are not loading OPTEE
into memory in u-boot, then just set the non-existent CONFIG option to
zero, elsewise stringify(CONFIG_OPTEE_LOAD_ADDR) will return
"CONFIG_OPTEE_LOAD_ADDR" - which looks weird in the u-boot environment.
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue at linaro.org>
---
include/configs/warp7.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/configs/warp7.h b/include/configs/warp7.h
index bab23cfdca..8c31d72205 100644
--- a/include/configs/warp7.h
+++ b/include/configs/warp7.h
@@ -45,6 +45,10 @@
#define BOOT_SCR_STRING "source ${bootscriptaddr}\0"
#endif
+#ifndef CONFIG_OPTEE_LOAD_ADDR
+#define CONFIG_OPTEE_LOAD_ADDR 0
+#endif
+
#define CONFIG_EXTRA_ENV_SETTINGS \
CONFIG_DFU_ENV_SETTINGS \
"script=boot.scr\0" \
--
2.21.0
More information about the U-Boot
mailing list