nuttx-apps/system/dd/Kconfig
chenxiaoyi 0c6016475b system: dd: add standalone dd command
enabling SYSTEM_DD will disable nsh_dd by selecting NSH_DISABLE_DD

Signed-off-by: chenxiaoyi <chenxiaoyi@xiaomi.com>
2023-08-09 20:59:40 +08:00

31 lines
623 B
Plaintext

#
# 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 n
select NSH_DISABLE_DD if NSH_LIBRARY
---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
endif