chenrun1 9c829f6650 examples: Add depends to different test cases
Summary:
  1.ftpd
  2.unionfs
  3.userfs
  4.nxffs
  5.smart

Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
2025-03-06 09:34:24 +01:00

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