public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [[PATCH] colibri_imx6: add board_fit_config_name_match to support FIT in SPL
@ 2021-05-30 10:45 liu.ming50
  0 siblings, 0 replies; 7+ messages in thread
From: liu.ming50 @ 2021-05-30 10:45 UTC (permalink / raw)
  To: u-boot; +Cc: sergio.prado, max.krummenacher, marcel.ziswiler, Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

Only one dtb is currently supported, so match with imx6-colibri.

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
---
 board/toradex/colibri_imx6/colibri_imx6.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/board/toradex/colibri_imx6/colibri_imx6.c b/board/toradex/colibri_imx6/colibri_imx6.c
index c0e7754469..587d92a8e9 100644
--- a/board/toradex/colibri_imx6/colibri_imx6.c
+++ b/board/toradex/colibri_imx6/colibri_imx6.c
@@ -1081,6 +1081,16 @@ void board_init_f(ulong dummy)
 	board_init_r(NULL, 0);
 }
 
+#ifdef CONFIG_SPL_LOAD_FIT
+int board_fit_config_name_match(const char *name)
+{
+	if (!strcmp(name, "imx6-colibri"))
+		return 0;
+
+	return -1;
+}
+#endif
+
 void reset_cpu(void)
 {
 }
-- 
2.29.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [[PATCH] colibri_imx6: add board_fit_config_name_match to support FIT in SPL
@ 2021-05-31  7:06 liu.ming50
  2021-05-31 14:09 ` Marcel Ziswiler
  2021-05-31 14:36 ` Sean Anderson
  0 siblings, 2 replies; 7+ messages in thread
From: liu.ming50 @ 2021-05-31  7:06 UTC (permalink / raw)
  To: u-boot; +Cc: sergio.prado, max.krummenacher, marcel.ziswiler, Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

Only one dtb is currently supported, so match with imx6-colibri.

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
---
 board/toradex/colibri_imx6/colibri_imx6.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/board/toradex/colibri_imx6/colibri_imx6.c b/board/toradex/colibri_imx6/colibri_imx6.c
index c0e7754469..587d92a8e9 100644
--- a/board/toradex/colibri_imx6/colibri_imx6.c
+++ b/board/toradex/colibri_imx6/colibri_imx6.c
@@ -1081,6 +1081,16 @@ void board_init_f(ulong dummy)
 	board_init_r(NULL, 0);
 }
 
+#ifdef CONFIG_SPL_LOAD_FIT
+int board_fit_config_name_match(const char *name)
+{
+	if (!strcmp(name, "imx6-colibri"))
+		return 0;
+
+	return -1;
+}
+#endif
+
 void reset_cpu(void)
 {
 }
-- 
2.29.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-06-02  3:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-30 10:45 [[PATCH] colibri_imx6: add board_fit_config_name_match to support FIT in SPL liu.ming50
  -- strict thread matches above, loose matches on Subject: below --
2021-05-31  7:06 liu.ming50
2021-05-31 14:09 ` Marcel Ziswiler
2021-05-31 14:36 ` Sean Anderson
2021-06-01 15:58   ` Ming Liu
2021-06-02  3:03     ` Sean Anderson
2021-06-01 16:00   ` Ming Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox