[PATCH] board: adi: Fix missing semicolon in nfsroot
Greg Malysa
malysagreg at gmail.com
Wed Nov 26 20:50:31 CET 2025
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 <malysagreg at gmail.com>
---
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.49.1
base-commit: caa740df9cae5ddc74b18b88a4fea43e27b2fdf6
branch: uboot-master
More information about the U-Boot
mailing list