summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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---