nuttx-apps/testing/sd_stress/Kconfig
Stuart Ianna 4576b3923c testing/sd_stress: Port sdstress testing utility from PX4-Autopilot.
Add port of the sdstress utility from PX4-Autopilot:  https://github.com/PX4/PX4-Autopilot

This tool is useful for verifying correct operation of SD, EMMC, or other mountpoints.
2023-10-25 15:41:27 +08:00

36 lines
832 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_SD_STRESS
tristate "SD stress program"
depends on ALLOW_BSD_COMPONENTS
default n
---help---
SD stress application based on https://github.com/PX4/PX4-Autopilot/blob/main/src/systemcmds/sd_stress/sd_stress.cpp
if TESTING_SD_STRESS
config TESTING_SD_STRESS_PROGNAME
string "Program name"
default "sdstress"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config TESTING_SD_STRESS_PRIORITY
int "SD stress task priority"
default 100
config TESTING_SD_STRESS_STACKSIZE
int "SD stress stack size"
default DEFAULT_TASK_STACKSIZE
config TESTING_SD_STRESS_DEVICE
string "SD / MMC mount point"
default "/mnt"
endif