2016-12-24 03:06:46 +08:00
|
|
|
# Kconfig - Shell configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-12-24 03:06:46 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
config CONSOLE_SHELL
|
2018-07-12 19:26:29 +08:00
|
|
|
bool "Enable console input handler [ Experimental ]"
|
2016-12-24 03:06:46 +08:00
|
|
|
select CONSOLE_HANDLER
|
2018-06-08 03:30:21 +08:00
|
|
|
select CONSOLE_SUBSYS
|
2016-12-24 03:06:46 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Shell implementation based on CONSOLE_HANDLER.
|
2016-12-24 03:06:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
if CONSOLE_SHELL
|
2017-01-24 17:18:26 +08:00
|
|
|
|
2016-12-24 03:06:46 +08:00
|
|
|
config CONSOLE_SHELL_STACKSIZE
|
2018-07-12 19:26:29 +08:00
|
|
|
int "Console handler shell stack size"
|
2016-12-24 03:06:46 +08:00
|
|
|
default 2000
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Stack size for the console handler shell.
|
2016-12-24 03:06:46 +08:00
|
|
|
|
2017-01-24 17:18:26 +08:00
|
|
|
config CONSOLE_SHELL_MAX_CMD_QUEUED
|
|
|
|
int "Shell's command queue size"
|
|
|
|
default 3
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Maximum size of the queue for input commands.
|
2016-12-24 03:06:46 +08:00
|
|
|
|
|
|
|
source "subsys/shell/modules/Kconfig"
|
|
|
|
|
|
|
|
endif
|