May 2017
Beginner to intermediate
470 pages
10h 49m
English
When we have a NFS-capable kernel, we need to set up the NFS server on our development host so that we can mount to the NFS folders exported by our NFS server. We can check whether the NFS server is already installed or not using the following command:
$ dpkg -l | grep nfs
If the NFS server is not installed, we can install it using the following command:
$ sudo apt-get install nfs-kernel-server
Once we have a NFS server ready, we need to export our root filesystem through NFS. We will use the AOSP build output folder as we mentioned previously. We can add the following line to the /etc/exports configuration file:
$AOSP/out/target/product/ *(rw,sync,insecure,no_subtree_check,async)
After that, we execute the ...
Read now
Unlock full access