
5 Sep
2025
5 Sep
'25
5:01 p.m.
From: Simon Glass <sjg@chromium.org> The application may not wish to use networking, so avoid setting it up and the associated console output. Signed-off-by: Simon Glass <sjg@chromium.org> --- common/board_r.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/board_r.c b/common/board_r.c index 22506effae6..a19c3138962 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -458,6 +458,9 @@ static int initr_malloc_bootparams(void) #if CONFIG_IS_ENABLED(NET) || CONFIG_IS_ENABLED(NET_LWIP) static int initr_net(void) { + if (gd_ulib()) + return 0; + puts("Net: "); eth_initialize(); #if defined(CONFIG_RESET_PHY_R) -- 2.43.0