mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
fdt: add call to ft_board_setup_ex() for ks2 boards
When updating the board FDT, some of the operations are performed by ft_board_setup_ex() and should be executed also by the fdt command. Signed-off-by: Nicholas Faustini <nicholas.faustini@azcomtech.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
8afd4ea5b9
commit
2c76d311a4
1 changed files with 3 additions and 0 deletions
|
@ -596,6 +596,9 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
fdt_strerror(err));
|
||||
return CMD_RET_FAILURE;
|
||||
}
|
||||
#ifdef CONFIG_SOC_KEYSTONE
|
||||
ft_board_setup_ex(working_fdt, gd->bd);
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
/* Create a chosen node */
|
||||
|
|
Loading…
Add table
Reference in a new issue