mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-31 11:31:32 +00:00
ARM: zynq: Add support for SPL_LOAD_FIT
Enable minimal function to be able to compile SPL_LOAD_FIT. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
73dc3fa6fe
commit
9a23f458cb
1 changed files with 10 additions and 0 deletions
|
@ -90,3 +90,13 @@ __weak void ps7_init(void)
|
||||||
* board/xilinx/zynq/(platform)/ps7_init_gpl.c, if it exists.
|
* board/xilinx/zynq/(platform)/ps7_init_gpl.c, if it exists.
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_SPL_LOAD_FIT
|
||||||
|
int board_fit_config_name_match(const char *name)
|
||||||
|
{
|
||||||
|
/* Just empty function now - can't decide what to choose */
|
||||||
|
debug("%s: %s\n", __func__, name);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue