Files
openharmony_kernel_liteos_m/components/shell/Kconfig
Caoruihong 7e673430dc feat(build): support Kconfig
Kconfig usages are the same with liteos_a

Signed-off-by: Caoruihong <crh.cao@huawei.com>
Change-Id: I9aacbb69da88d5427cced89d1a49cb1041afa998
2021-11-05 12:18:04 +08:00

37 lines
700 B
Plaintext

config SHELL
bool "Enable Shell"
default n
depends on DEBUG_VERSION
select USE_SHELL
help
Answer Y to enable LiteOS support shell cmd.
config USE_SHELL
bool
default n
menu "Functionality of Shell"
depends on SHELL
config SHELL_PRIO
int "Shell Task Priority"
default 3
range 1 31
depends on SHELL
config SHELL_LK
bool "Enable Shell lk"
default y
depends on DEBUG_VERSION && SHELL
help
Answer Y to enable LiteOS support shell lk.
config SHELL_DMESG
bool "Enable Shell dmesg"
default n
depends on DEBUG_VERSION && SHELL && SHELL_CMD_DEBUG
help
Answer Y to enable LiteOS support shell dmesg.
endmenu