diff options
| author | Greg Malysa <[email protected]> | 2025-11-26 14:50:31 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-27 09:27:03 -0600 |
| commit | 70ab39e2305f6ab9b7b1752e26b0e4293129009b (patch) | |
| tree | 3c780e11ce2502f8a775b587d898ce8f23e490ea /include/env | |
| parent | f06e1c04bffb89cd14d559c8d3e219ab2b815093 (diff) | |
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 <[email protected]>
Diffstat (limited to 'include/env')
| -rw-r--r-- | include/env/adi/adi_boot.env | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
