zephyr/drivers/console/shells/Kconfig
Anas Nashif b27d3a8a60 shell: split kernel shell into separate module
Add kernel functions to kernel module and make it part
of the shell sample.

Change-Id: If5e8ff8ce7b8edbbb8d62509964700b007eaf88b
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-11-04 13:48:15 +00:00

21 lines
363 B
Plaintext

config ENABLE_SHELL
bool
prompt "Shell support"
default n
help
Enabling shell services. If it is enabled, kernel shell commands are
also available for use.
if ENABLE_SHELL
config KERNEL_SHELL
bool "Enable kernel shell"
default n
help
This shell provides access to basic kernel data like version, uptime
and other useful information.
endif