summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs
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 /nuttx/fs/nfs
parentaf6c065d45e090cd0476bcbabad5569ab2376707 (diff)
downloadpx4-nuttx-e67abe226d58f9129f101c1869ebb2d452a8a38c.tar.gz
px4-nuttx-e67abe226d58f9129f101c1869ebb2d452a8a38c.tar.bz2
px4-nuttx-e67abe226d58f9129f101c1869ebb2d452a8a38c.zip
Add some Kconfig dependencies to reduce possibility of bad configurations. Suggested by OrbitalFox
Diffstat (limited to 'nuttx/fs/nfs')
-rw-r--r--nuttx/fs/nfs/Kconfig2
1 files changed, 1 insertions, 1 deletions
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---