diff --git a/Documentation/NfsHowto.html b/Documentation/NfsHowto.html
index e62af074e2..0f08f4abe5 100644
--- a/Documentation/NfsHowto.html
+++ b/Documentation/NfsHowto.html
@@ -27,6 +27,14 @@
+
|
@@ -54,6 +62,45 @@
|
+
+
+
+ The NFS client is easily added to your configuration:
+ You simply need to add CONFIG_NFS to your nuttx/.config file.
+ There are, however, a few dependencies on other system settings:
+
+
+ -
+ First, there are number of things that you must configure in order to be able to use any file system:
+
+
+ -
+
CONFIG_NFILE_DESCRIPTORS > 0 . You must include support for file descriptors.
+
+ -
+
CONFIG_DISABLE_MOUNTPOINT=n . You must include support for mount points in the psuedo-file system.
+
+
+ -
+ And there are several dependencies on the networking configuration.
+ At a minimum, you need to have the following selections:
+
+
+ -
+
CONFIG_NET=y . General networking support.
+
+ -
+
CONFIG_NET_UDP=y . Support for UDP.
+
+
+
+
|