mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-04 11:04:13 +08:00

Summary: 1.ftpd 2.unionfs 3.userfs 4.nxffs 5.smart Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
40 lines
854 B
Plaintext
40 lines
854 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_UNIONFS
|
|
tristate "Union file system example"
|
|
default n
|
|
depends on FS_ROMFS && FS_UNIONFS && BUILD_FLAT
|
|
---help---
|
|
Enable the Union File System example
|
|
|
|
if EXAMPLES_UNIONFS
|
|
|
|
config EXAMPLES_UNIONFS_MOUNTPT
|
|
string "Union FS mount point"
|
|
default "/mnt/unionfs"
|
|
|
|
config EXAMPLES_UNIONFS_RAMDEVNO_A
|
|
int "File system 1 RAM disk device number"
|
|
default 1
|
|
|
|
config EXAMPLES_UNIONFS_RAMDEVNO_B
|
|
int "File system 1 RAM disk device number"
|
|
default 2
|
|
|
|
config EXAMPLES_UNIONFS_SECTORSIZE
|
|
int "ROMFS sector size"
|
|
default 64
|
|
|
|
config EXAMPLES_UNIONFS_TMPA
|
|
string "File system 1 temporary point"
|
|
default "/mnt/a"
|
|
|
|
config EXAMPLES_UNIONFS_TMPB
|
|
string "File system 2 temporary point"
|
|
default "/mnt/b"
|
|
|
|
endif
|