From 2b26ab132d1b33b91c84c6d732456200e8c5ee77 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Fri, 24 Nov 2023 08:39:05 +0000 Subject: [PATCH] add support 4g -- >ppp --- u-boot/common/board_f.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/u-boot/common/board_f.c b/u-boot/common/board_f.c index 190e5a4..dd76efc 100644 --- a/u-boot/common/board_f.c +++ b/u-boot/common/board_f.c @@ -21,6 +21,7 @@ #include <init_helpers.h> #include <malloc.h> #include <mapmem.h> +#include <mp_boot.h> #include <os.h> #include <post.h> #include <relocate.h> @@ -254,6 +255,9 @@ /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */ gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE; #endif +#ifdef CONFIG_MP_BOOT + mpb_init_x(3); +#endif return 0; } -- Gitblit v1.6.2