From 70ab39e2305f6ab9b7b1752e26b0e4293129009b Mon Sep 17 00:00:00 2001 From: Greg Malysa Date: Wed, 26 Nov 2025 14:50:31 -0500 Subject: [PATCH] board: adi: Fix missing semicolon in nfsroot The nfsroot constructed as part of the default Analog Devices boot strategy is missing a semicolon between the server ip and the root path itself. This adds the missing semicolon. Signed-off-by: Greg Malysa --- include/env/adi/adi_boot.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/env/adi/adi_boot.env b/include/env/adi/adi_boot.env index d56b14f5172..7f0dfe15ff9 100644 --- a/include/env/adi/adi_boot.env +++ b/include/env/adi/adi_boot.env @@ -41,7 +41,7 @@ addip=setenv bootargs ${bootargs} ip=${ipaddr}:${serverip}:${gatewayip}:${netmas /* Boot modes are selectable and should be defined in the board env before including */ #if defined(USE_NFS) // rootpath is set by CONFIG_ROOTPATH -nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}${rootpath},tcp,nfsvers=3 ${adi_bootargs} +nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath},tcp,nfsvers=3 ${adi_bootargs} nfsboot=run init_ethernet; tftp ${loadaddr} ${tftp_dir_prefix}${imagefile}; run nfsargs; -- 2.47.3