Adding NFS support
Completed goals
2012/05/21 - Achieve connection to a NFSv3 server.
2012/05/30 - Design a SUN ONC RPC layer for iPXE.
2012/06/22 - Get the port of the NFS server and the MOUNT service.
2012/06/25 - Get the root filehandle
2012/06/27 - Achieve sending of a LOOKUP query via the RPC layer. A LOOKUP query allows one the get a file handle from a path, this handle can then be used to access the file.
2012/07/01 - Achieve sending of a READ query via the RPC layer. A READ query allows one to get the content of a file by its file handle.
2012/07/01 - iPXE is now able to load an image via NFS.
2012/08/06 - Symlinked images can now be downloaded.
How to get a file via NFS in iPXE
Since NFS support has been merged in the main tree, you no longer need to checkout my repository.
Enable NFS support:
echo "#define DOWNLOAD_PROTO_NFS" >> config/local/general.h
You can now compile iPXE:
make
URI are in this form:
nfs://server-address/mountpoint/path/to/file
where path/to/the/file is relative to the mountpoint.
Links and references
Git repository:
NFSv3:
NFSv4