summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-25 08:43:25 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-25 08:43:25 -0600
commite67abe226d58f9129f101c1869ebb2d452a8a38c (patch)
tree6f91c2eef95530410b3aac3d0332e52eab58665b
parentaf6c065d45e090cd0476bcbabad5569ab2376707 (diff)
downloadnuttx-e67abe226d58f9129f101c1869ebb2d452a8a38c.tar.gz
nuttx-e67abe226d58f9129f101c1869ebb2d452a8a38c.tar.bz2
nuttx-e67abe226d58f9129f101c1869ebb2d452a8a38c.zip
Add some Kconfig dependencies to reduce possibility of bad configurations. Suggested by OrbitalFox
-rw-r--r--apps/netutils/ftpd/Kconfig1
-rw-r--r--nuttx/fs/nfs/Kconfig2
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/netutils/ftpd/Kconfig b/apps/netutils/ftpd/Kconfig
index 43fc70dbd..1034b2206 100644
--- a/apps/netutils/ftpd/Kconfig
+++ b/apps/netutils/ftpd/Kconfig
@@ -6,6 +6,7 @@
config NETUTILS_FTPD
bool "FTP server"
default n
+ depends on NET_TCP && !DISABLE_POLL
---help---
Enable support for the FTP server.
diff --git a/nuttx/fs/nfs/Kconfig b/nuttx/fs/nfs/Kconfig
index c9d944b64..6a06555f4 100644
--- a/nuttx/fs/nfs/Kconfig
+++ b/nuttx/fs/nfs/Kconfig
@@ -6,7 +6,7 @@
config NFS
bool "NFS client file system"
default n
- depends on NET && !DISABLE_MOUNTPOINT
+ depends on NET_UDP && !DISABLE_MOUNTPOINT
select FS_READABLE
select FS_WRITABLE
---help---