summaryrefslogtreecommitdiff
path: root/nuttx/fs/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-29 12:50:08 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-29 12:50:08 -0600
commit8ec40df444bb4f187781ef25b0a3e62db798435e (patch)
treebbd4196b8c2eb46ba62c10438b4030578ef01ead /nuttx/fs/Kconfig
parent881c7646f3de2554846bc14805c84840da4982fa (diff)
downloadpx4-nuttx-8ec40df444bb4f187781ef25b0a3e62db798435e.tar.gz
px4-nuttx-8ec40df444bb4f187781ef25b0a3e62db798435e.tar.bz2
px4-nuttx-8ec40df444bb4f187781ef25b0a3e62db798435e.zip
Add support for an automounter that will automatically mount and unmount a file system a media is inserted and removed
Diffstat (limited to 'nuttx/fs/Kconfig')
-rw-r--r--nuttx/fs/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/nuttx/fs/Kconfig b/nuttx/fs/Kconfig
index b175276fa..12a68e36b 100644
--- a/nuttx/fs/Kconfig
+++ b/nuttx/fs/Kconfig
@@ -9,6 +9,26 @@ config DISABLE_MOUNTPOINT
bool "Disable support for mount points"
default n
+config FS_AUTOMOUNTER
+ bool "Auto-mounter"
+ default n
+ depends on !DISABLE_MOUNTPOINT
+ ---help---
+ The automounter provides an OS-internal mechanism for automatically
+ mounting and unmounting removable media as the media is inserted and
+ removed. See include/nuttx/fs/automout.h for interfacing details.
+
+config FS_AUTOMOUNTER_DEBUG
+ bool "Auto-mounter debug"
+ default n
+ depends on FS_AUTOMOUNTER && DEBUG
+ ---help---
+ Normally, the auto-mounter will generate debug output when sub-system
+ level file system debug is enabled. This option will select debug
+ output from the logic related to the auto-mount feature even when file
+ system debug is not enable. This is useful primarily for in vivo
+ unit testing of the auto-mount feature.
+
config DISABLE_PSEUDOFS_OPERATIONS
bool "Disable pseudo-filesystem operations"
default y if DEFAULT_SMALL