nuttx-apps/fsutils/flashtool/Kconfig
zhengyu9 b78ab0c6e8 fsutils/flashtool: add flashtool command support
Introducing flashtool command with following capabilities:
- Flash geometry information display
- Bad blocks checking
- Page contents read/write
- Block erase
- Full flash erase

Signed-off-by: zhengyu9 <zhengyu9@xiaomi.com>
2025-12-23 11:25:16 -05:00

29 lines
653 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config FSUTILS_FLASHTOOL
tristate "FLASH Tool Command"
default n
depends on MTD
depends on BCH
---help---
Enable support for the FLASH tool.
if FSUTILS_FLASHTOOL
config FSUTILS_FLASHTOOL_STACKSIZE
int "flashtool stack size"
default DEFAULT_TASK_STACKSIZE
---help---
This is the stack size that will be used when starting the flashtool.
config FSUTILS_FLASHTOOL_PRIORITY
int "flashtool priority"
default 100
---help---
This is the task priority that will be used when starting the flashtool.
endif