6e9039bb08
fs/userfs: This completes coding of the UserFS client and of the UserFS feature in general. This feature is being merged to main now because I believe it is innocuous. It is, however, untesed. The next step will be to develop a test case to verify the feature. fs/userfs: Completes the request logic for the UserFS client. Still need the logic that receives the responses. fs/userfs: Completes coding for most of the server side of the user filesystem logic. fs/userfs: Big design changes, simplications. Use Unix domain local sockets instead of message queues. Easier to transfer big data in local sockets than message queues. Remove character drvier 'factory' it is not necessary. fs/userfs: Minor reparitioning; volume private info does not need to be held on the OS client side. libc/userfs: Add some of the server side logic. fs/userfs: Add some UserFS initialization logic. fs/userfs: Add frame work for the UserFS proxy. Remove all references to a block driver. There is no block dricer... what was I thinking? fs/userfs: Add some initialization of the character driver, 'factory' device. fs/userfs: Rename from fusefs to userfs to that we don't stomp on someone else's cool name. Add a header file describing the fusefs interface.
91 lines
2.9 KiB
Plaintext
91 lines
2.9 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
comment "File system configuration"
|
|
|
|
config DISABLE_MOUNTPOINT
|
|
bool "Disable support for mount points"
|
|
default n
|
|
|
|
config FS_AUTOMOUNTER
|
|
bool "Auto-mounter"
|
|
default n
|
|
depends on !DISABLE_MOUNTPOINT
|
|
select SCHED_LPWORK
|
|
---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_FEATURES
|
|
---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
|
|
default n if !DEFAULT_SMALL
|
|
---help---
|
|
Disable certain operations on pseudo-file systems include mkdir,
|
|
rmdir, unlink, and rename. These are necessary for the logical
|
|
completeness of the illusion created by the pseudo-filesystem.
|
|
However, in practical embedded system, they are seldom needed and
|
|
you can save a little FLASH space by disabling the capability.
|
|
|
|
config PSEUDOFS_SOFTLINKS
|
|
bool "Pseudo-filesystem soft links"
|
|
default n
|
|
depends on !DISABLE_PSEUDOFS_OPERATIONS
|
|
---help---
|
|
Enable support for soft links in the pseudeo file system. Soft
|
|
links are not supported within mounted volumes by any NuttX file
|
|
system. However, if this option is selected, then soft links
|
|
may be add in the pseudo file system. This might be useful, for
|
|
to link a directory in the pseudo-file system, such as /bin, to
|
|
to a directory in a mounted volume, say /mnt/sdcard/bin.
|
|
|
|
config FS_READABLE
|
|
bool
|
|
default n
|
|
---help---
|
|
Automatically selected if any readable file system is selected
|
|
|
|
config FS_WRITABLE
|
|
bool "Writable file system"
|
|
default n
|
|
---help---
|
|
Automatically selected if any writable file system is selected. If
|
|
not selected, support for writing will be disabled in all block
|
|
drivers and also the block-to-character (BCH) layer and the MTD FTL
|
|
layer.
|
|
|
|
This selection can also be manually selected. You might want to do
|
|
this if there are no writable file systems enabled, but you still
|
|
want support for write access in block drivers and/or FTL.
|
|
|
|
source fs/aio/Kconfig
|
|
source fs/semaphore/Kconfig
|
|
source fs/mqueue/Kconfig
|
|
source fs/shm/Kconfig
|
|
source fs/mmap/Kconfig
|
|
source fs/fat/Kconfig
|
|
source fs/nfs/Kconfig
|
|
source fs/nxffs/Kconfig
|
|
source fs/romfs/Kconfig
|
|
source fs/tmpfs/Kconfig
|
|
source fs/smartfs/Kconfig
|
|
source fs/binfs/Kconfig
|
|
source fs/procfs/Kconfig
|
|
source fs/unionfs/Kconfig
|
|
source fs/userfs/Kconfig
|
|
source fs/hostfs/Kconfig
|