summaryrefslogtreecommitdiff
path: root/common/cmd_bootm.c
diff options
context:
space:
mode:
authorGerald Van Baren <vanbaren@cideas.com>2007-07-10 20:40:39 -0400
committerGerald Van Baren <vanbaren@cideas.com>2007-08-10 19:21:36 -0400
commite125a2ffc209dd34794e326c7175658253beadf3 (patch)
tree55b0415c7e61a8a79466a0044a28b680668b4dcf /common/cmd_bootm.c
parentfd61e55dd8cb52ce3ff91b3917af26e24b6b0845 (diff)
Call ft_board_setup() from the bootm command.
In the patch titled "Create new fdt boardsetup command..." I removed the call to ft_board_setup() from the routine fdt_chosen(), but I forgot to add a direct call back into cmd_bootm.c This fixes the oversight by adding the direct call to the bootm command. Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r--common/cmd_bootm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 6ce62be91f..981ffc5000 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -973,6 +973,10 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
do_reset (cmdtp, flag, argc, argv);
}
#endif
+#ifdef CONFIG_OF_BOARD_SETUP
+ /* Call the board-specific fixup routine */
+ ft_board_setup(fdt, gd->bd);
+#endif
#endif /* CONFIG_OF_LIBFDT */
#if defined(CONFIG_OF_FLAT_TREE)
/* move of_flat_tree if needed */