TS-7990 NFS boot: Difference between revisions

From embeddedTS Manuals
(Created page with "U-boot includes support for NFS which can be used to load your kernel, device tree binary, and root filesystem. Our default environment contains the nfsboot command which can...")
 
(Better wording)
Line 1: Line 1:
U-boot includes support for NFS which can be used to load your kernel, device tree binary, and root filesystem.  Our default environment contains the nfsboot command which can be updated to boot NFS on your network:
U-Boot includes support for NFS client which can be used to load the kernel, device tree binary, and root filesystem across the network.  Our default environment contains the nfsboot command which can be updated to boot NFS on your network:


<source lang=bash>
<source lang=bash>

Revision as of 16:59, 24 July 2017

U-Boot includes support for NFS client which can be used to load the kernel, device tree binary, and root filesystem across the network. Our default environment contains the nfsboot command which can be updated to boot NFS on your network:

# Set this to your NFS server ip
env set nfsroot 192.168.0.36:/mnt/storage/imx6/
env save
# Boot to NFS once
run nfsboot;

# To make the NFS boot the persistent default
env set bootcmd run nfsboot;
env save