summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3240g-eval/nsh2/appconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/stm3240g-eval/nsh2/appconfig')
-rw-r--r--nuttx/configs/stm3240g-eval/nsh2/appconfig14
1 files changed, 13 insertions, 1 deletions
diff --git a/nuttx/configs/stm3240g-eval/nsh2/appconfig b/nuttx/configs/stm3240g-eval/nsh2/appconfig
index 843c00e04..83ff084aa 100644
--- a/nuttx/configs/stm3240g-eval/nsh2/appconfig
+++ b/nuttx/configs/stm3240g-eval/nsh2/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 library
+# Uncomment netutils/ftpd to include an FTP server library
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