summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-04 22:49:42 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-04 22:49:42 +0000
commitefb4bf7dca5d637268c6d70eec2880352047e34c (patch)
tree122b575d72a4acd8c97b8601fa16c4332059e54e /nuttx
parent89195d1c46a0c742e74ea46e449b10b97c7b220a (diff)
downloadpx4-nuttx-efb4bf7dca5d637268c6d70eec2880352047e34c.tar.gz
px4-nuttx-efb4bf7dca5d637268c6d70eec2880352047e34c.tar.bz2
px4-nuttx-efb4bf7dca5d637268c6d70eec2880352047e34c.zip
Add build environment for the FTP daemon
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4370 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/Documentation/NuttX.html4
-rw-r--r--nuttx/configs/stm3240g-eval/nsh/appconfig14
2 files changed, 15 insertions, 3 deletions
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index bf0647b25..51ac872aa 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: January 16, 2012</p>
+ <p>Last Updated: February 4, 2012</p>
</td>
</tr>
</table>
@@ -543,7 +543,7 @@
<td><br></td>
<td>
<p>
- <li>Networking utilities (DHCP server and client, SMTP client, TELNET client, FTP client, TFTP client, HTTP server and client)</li>
+ <li>Networking utilities (DHCP server and client, SMTP client, TELNET client, FTP server and client, TFTP client, HTTP server and client)</li>
</p>
</tr>
<tr>
diff --git a/nuttx/configs/stm3240g-eval/nsh/appconfig b/nuttx/configs/stm3240g-eval/nsh/appconfig
index 94f0c53f9..9567dd792 100644
--- a/nuttx/configs/stm3240g-eval/nsh/appconfig
+++ b/nuttx/configs/stm3240g-eval/nsh/appconfig
@@ -42,13 +42,17 @@ CONFIGURED_APPS += examples/nsh
CONFIGURED_APPS += system/readline
CONFIGURED_APPS += nshlib
-# Networking libraries
+# Networking libraries.
+# Uncomment netutils/ftpc to include an FTP client
+# Uncomment netutils/ftpd to include an FTP server
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/webclient
CONFIGURED_APPS += netutils/tftpc
+#CONFIGURED_APPS += netutils/ftpc
+#CONFIGURED_APPS += netutils/ftpd
ifeq ($(CONFIG_NSH_TELNET),y)
CONFIGURED_APPS += netutils/telnetd
endif
@@ -71,3 +75,11 @@ endif
ifeq ($(CONFIG_I2C),y)
CONFIGURED_APPS += system/i2c
endif
+
+# Uncomment examples/ftpc to include the FTP client example
+# Uncomment examples/ftpd to include the FTP daemon example
+
+ifeq ($(CONFIG_NET),y)
+#CONFIGURED_APPS += examples/ftpc
+#CONFIGURED_APPS += examples/ftpd
+endif