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

Summary: 1.ftpd 2.unionfs 3.userfs 4.nxffs 5.smart Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
31 lines
635 B
Plaintext
31 lines
635 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_USERFS
|
|
tristate "UserFS test"
|
|
depends on FS_USERFS
|
|
default n
|
|
---help---
|
|
Enables a simple test of the UserFS
|
|
|
|
if EXAMPLES_USERFS
|
|
|
|
config EXAMPLES_USERFS_PROGNAME
|
|
string "Program name"
|
|
default "userfs"
|
|
---help---
|
|
This is the name of the program that will be used when the NSH ELF
|
|
program is installed.
|
|
|
|
config EXAMPLES_USERFS_PRIORITY
|
|
int "UserFS task priority"
|
|
default 100
|
|
|
|
config EXAMPLES_USERFS_STACKSIZE
|
|
int "UserFS stack size"
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
endif
|