[PATCH 3/5] board: gateworks: venice: display DTB used

Tim Harvey tharvey at gateworks.com
Thu Jul 1 02:07:40 CEST 2021


Display the DTB file used for U-Boot.

Signed-off-by: Tim Harvey <tharvey at gateworks.com>
---
 board/gateworks/venice/imx8mm_venice.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/board/gateworks/venice/imx8mm_venice.c b/board/gateworks/venice/imx8mm_venice.c
index 1d51b6ea9b..cb00f532bf 100644
--- a/board/gateworks/venice/imx8mm_venice.c
+++ b/board/gateworks/venice/imx8mm_venice.c
@@ -42,12 +42,16 @@ int board_fit_config_name_match(const char *name)
 {
 	int i  = 0;
 	const char *dtb;
+	static char init;
 	char buf[32];
 
 	do {
 		dtb = gsc_get_dtb_name(i++, buf, sizeof(buf));
-		if (!strcmp(dtb, name))
+		if (!strcmp(dtb, name)) {
+			if (!init++)
+				printf("DTB     : %s\n", name);
 			return 0;
+		}
 	} while (dtb);
 
 	return -1;
-- 
2.17.1



More information about the U-Boot mailing list