diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 9b0c60ce7ef..2fd18b1d8fc 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: January 25, 2011
+Last Updated: February 5, 2011
@@ -4866,6 +4866,36 @@ build +CONFIG_FTPD_VENDORID: The vendor name to use in FTP communications. Default: "NuttX"
+ CONFIG_FTPD_SERVERID: The server name to use in FTP communications. Default: "NuttX FTP Server"
+ CONFIG_FTPD_CMDBUFFERSIZE: The maximum size of one command. Default: 512 bytes.
+ CONFIG_FTPD_DATABUFFERSIZE: The size of the I/O buffer for data transfers. Default: 2048 bytes.
+ CONFIG_FTPD_WORKERSTACKSIZE: The stacksize to allocate for each FTP daemon worker thread. Default: 2048 bytes.
+ + Other required FTPD configuration settings: Of course TCP networking support is required. But here are a couple that are less obvious: +
+CONFIG_DISABLE_PTHREAD=n: pthread support is required
+ CONFIG_DISABLE_POLL=n: poll() support is required
+