TS-7990 NFS boot

From embeddedTS Manuals
Revision as of 17:33, 18 August 2016 by Mark (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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:

# 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