[U-Boot] [PATCH v2 07/22] board: mx6sabreauto: Add board_fit_config_name_match to support FIT in SPL
Peng Fan
peng.fan at nxp.com
Tue Jan 29 13:30:49 UTC 2019
> -----Original Message-----
> From: Abel Vesa
> Sent: 2019年1月29日 19:31
> To: Tom Rini <trini at konsulko.com>; Fabio Estevam
> <fabio.estevam at nxp.com>; u-boot at lists.denx.de; dl-uboot-imx
> <uboot-imx at nxp.com>; Peng Fan <peng.fan at nxp.com>
> Cc: Nitin Garg <nitin.garg at nxp.com>; Abel Vesa <abel.vesa at nxp.com>
> Subject: [PATCH v2 07/22] 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 <abel.vesa at nxp.com>
> ---
> board/freescale/mx6sabreauto/mx6sabreauto.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/board/freescale/mx6sabreauto/mx6sabreauto.c
> b/board/freescale/mx6sabreauto/mx6sabreauto.c
> index c1bef85..c8f1263 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
Reviewed-by: Peng Fan <peng.fan at nxp.com>
> --
> 2.7.4
More information about the U-Boot
mailing list