Hello Community,
I just got my NFS Root File System working. I created the NFS image as explained in the Getting Started Guide and copied the content on my linux host to the following directory:
/home/maik/omap3evm_nfs
So far so good. I start the board, U-Boot initiates the booting progress. Linux boots from NFS and everything works fine. Unfortunately, I have no write permissions on the OMAP-Side. That means things like "mkdir testDirectory" do not work. I solved the problem by changing the rights on the host side with
sudo chmod -R a+rw ~/omap3evm_nfs/*
and that works but this dirty workaround does not really satisfy me [:P]
Why do I have no permissions to access and manipulate the files? Is this a nfs-server issue?
By the way:
I run nfs-kernel-server and as proposed in the Getting Started Guide added the following line to the /etc/exports file of the server:/home/maik/omap3evm_nfs 192.168.1.10/255.255.255.0(rw,sync,no_subtree_check)
Thanks in advance!
Maik