From: Doug Anderson Date: Wed, 17 Apr 2013 16:13:42 +0000 (+0000) Subject: Call bootstage_relocate() after malloc is initted X-Git-Tag: v2013.07-rc1~1^2~54^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=158e7d059c3493f33147d4027dfa0306e1bd1179;p=kernel%2Fu-boot.git Call bootstage_relocate() after malloc is initted In a previous CL we added the bootstage_relocate(), which should be called after malloc is initted. Now we call it on generic board. Signed-off-by: Doug Anderson Signed-off-by: Simon Glass Reviewed-by: Simon Glass --- diff --git a/common/board_r.c b/common/board_r.c index f801e41..fd1fd31 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -765,6 +765,7 @@ init_fnc_t init_sequence_r[] = { #endif initr_barrier, initr_malloc, + bootstage_relocate, #ifdef CONFIG_ARCH_EARLY_INIT_R arch_early_init_r, #endif