nuttx-apps/system/lzf/Kconfig

32 lines
616 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_LZF
bool "LZF compression tool"
default n
depends on LIBC_LZF
---help---
Enable theLZF compression tool
if SYSTEM_LZF
config SYSTEM_LZF_PROGNAME
string "Program name"
default "lzf"
depends on BUILD_KERNEL
---help---
This is the name of the program that will be use when the NSH ELF
program is installed.
config SYSTEM_LZF_PRIORITY
int "LZF tool task priority"
default 100
config SYSTEM_LZF_STACKSIZE
int "LZF tool stack size"
default 2048
endif