[U-Boot] [PATCH 8/8] board: stm32f429-evaluation: Add set_env_soc_name() in board_late_init()
patrice.chotard at st.com
patrice.chotard at st.com
Wed Jan 31 16:09:07 UTC 2018
From: Patrice Chotard <patrice.chotard at st.com>
Add set_env_soc_name() call in board_late_init() to set environment
variable "soc_name" with the name of current STM32 SoC.
Signed-off-by: Christophe Priouzeau <christophe.priouzeau at st.com>
Signed-off-by: Patrice Chotard <patrice.chotard at st.com>
---
board/st/stm32f429-evaluation/stm32f429-evaluation.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/board/st/stm32f429-evaluation/stm32f429-evaluation.c b/board/st/stm32f429-evaluation/stm32f429-evaluation.c
index 25e020784d62..108b22a8dcba 100644
--- a/board/st/stm32f429-evaluation/stm32f429-evaluation.c
+++ b/board/st/stm32f429-evaluation/stm32f429-evaluation.c
@@ -54,6 +54,13 @@ int board_init(void)
return 0;
}
+int board_late_init(void)
+{
+ set_env_soc_name(get_cpu_id());
+
+ return 0;
+}
+
#ifdef CONFIG_MISC_INIT_R
int misc_init_r(void)
{
--
1.9.1
More information about the U-Boot
mailing list