1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

armv8: layerscape: fix SPL multi DTB loading

Mark board_fit_config_name_match() as weak so a board can overwrite the
empty function.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
Michael Walle
2019-11-24 21:13:21 +01:00
committed by Priyanka Jain
parent d749bf9934
commit 055aa33ff9

View File

@@ -129,7 +129,7 @@ int spl_start_uboot(void)
} }
#endif /* CONFIG_SPL_OS_BOOT */ #endif /* CONFIG_SPL_OS_BOOT */
#ifdef CONFIG_SPL_LOAD_FIT #ifdef CONFIG_SPL_LOAD_FIT
int board_fit_config_name_match(const char *name) __weak int board_fit_config_name_match(const char *name)
{ {
/* Just empty function now - can't decide what to choose */ /* Just empty function now - can't decide what to choose */
debug("%s: %s\n", __func__, name); debug("%s: %s\n", __func__, name);