From: Abel Vesa Date: Fri, 1 Feb 2019 16:40:13 +0000 (+0000) Subject: board: mx6sabreauto: Add board_fit_config_name_match to support FIT in SPL X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=90571a4a199c8c0c41bbdb310e63485dfeecfa3e;p=project%2Fbcm63xx%2Fu-boot.git board: mx6sabreauto: Add board_fit_config_name_match to support FIT in SPL This matches one of the following three boards (or fails): - imx6q-sabreauto - imx6qp-sabreauto - imx6dl-sabreauto Signed-off-by: Abel Vesa Reviewed-by: Peng Fan Reviewed-by: Fabio Estevam Reviewed-by: Lukasz Majewski --- diff --git a/board/freescale/mx6sabreauto/mx6sabreauto.c b/board/freescale/mx6sabreauto/mx6sabreauto.c index c1bef8507c..c8f126377c 100644 --- a/board/freescale/mx6sabreauto/mx6sabreauto.c +++ b/board/freescale/mx6sabreauto/mx6sabreauto.c @@ -1097,3 +1097,21 @@ void board_init_f(ulong dummy) board_init_r(NULL, 0); } #endif + +#ifdef CONFIG_SPL_LOAD_FIT +int board_fit_config_name_match(const char *name) +{ + if (is_mx6dq()) { + if (!strcmp(name, "imx6q-sabreauto")) + return 0; + } else if (is_mx6dqp()) { + if (!strcmp(name, "imx6qp-sabreauto")) + return 0; + } else if (is_mx6dl()) { + if (!strcmp(name, "imx6dl-sabreauto")) + return 0; + } + + return -1; +} +#endif