nuttx-apps/system/dd/Kconfig
dongjiuzhu1 5585c9d347 nshlib/dd: remove nsh dd cmd
using system/dd to instead nsh dd cmd
remove related to config, file.

Signed-off-by: dongjiuzhu1 <dongjiuzhu1@xiaomi.com>
2025-04-20 00:41:18 +08:00

33 lines
673 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_DD
tristate "system 'dd' command"
default !DEFAULT_SMALL
---help---
Enable support for the system 'dd' command.
if SYSTEM_DD
config SYSTEM_DD_PROGNAME
string "dd program name"
default "dd"
---help---
This is the name of the program that will be used when the dd
program is installed.
config SYSTEM_DD_PRIORITY
int "dd task priority"
default 100
config SYSTEM_DD_STACKSIZE
int "dd stack size"
default DEFAULT_TASK_STACKSIZE
config SYSTEM_DD_STATS
bool "dd: Support transfer statistics"
default y
endif