diff options
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 6ce62be91..981ffc500 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 */ |