u-boot/common/board_f.c
.. .. @@ -21,6 +21,7 @@ 21 21 #include <init_helpers.h> 22 22 #include <malloc.h> 23 23 #include <mapmem.h> 24 +#include <mp_boot.h>24 25 #include <os.h> 25 26 #include <post.h> 26 27 #include <relocate.h> .. .. @@ -254,6 +255,9 @@ 254 255 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */ 255 256 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE; 256 257 #endif 258 +#ifdef CONFIG_MP_BOOT259 + mpb_init_x(3);260 +#endif257 261 return 0; 258 262 } 259 263