January 2018
Intermediate to advanced
456 pages
12h 49m
English
If you are not already running an NFS server, follow the next steps to install and configure one on your Ubuntu 16.04 host:
$ sudo apt-get install nfs-kernel-server
We will use the /nfsroot directory as the root for the NFS server, so we will untar the target's root filesystem from our Yocto build directory in there.
By default, the Wandboard only builds WIC images. We will need to modify our build project to build a compressed copy of the target's root filesystem. For that, follow the next steps:
$ cd /opt/yocto/fsl-community-bsp/wandboard
Edit conf/local.conf and add the following:
IMAGE_FSTYPES = "wic.gz tar.bz2"
This will build a core-image-minimal-wandboard.tar.bz2 file that we can then uncompress under /nfsroot ...
Read now
Unlock full access