summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorNicholas Faustini <nicholas.faustini@azcomtech.com>2018-10-03 12:58:48 +0200
committerTom Rini <trini@konsulko.com>2018-10-10 13:32:41 -0400
commit2c76d311a4de1ee70a6ee0adc0bedbd26de69f5f (patch)
treed1900a7a71f977c59d58917db1c86d4f0d75037b /cmd
parent8afd4ea5b9d5d9a18db4e9fee16d89999711d205 (diff)
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>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/fdt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/fdt.c b/cmd/fdt.c
index 28de467f96..8a19a3fdbf 100644
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -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 */