2018-10-04 21:17:00 +08:00
|
|
|
# Kconfig.backends - Shell badckends configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig SHELL_BACKENDS
|
|
|
|
bool "Enable shell backends"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable shell backends.
|
|
|
|
|
|
|
|
if SHELL_BACKENDS
|
|
|
|
|
|
|
|
config SHELL_BACKEND_SERIAL
|
|
|
|
bool "Enable serial backends."
|
|
|
|
default y
|
|
|
|
select SERIAL
|
|
|
|
help
|
|
|
|
Enable serial backends.
|
|
|
|
|
2018-10-02 20:47:20 +08:00
|
|
|
config SHELL_BACKEND_DUMMY
|
|
|
|
bool "Enable dummy backend."
|
|
|
|
help
|
2018-10-17 18:16:06 +08:00
|
|
|
Enable dummy backend which can be used to execute commands with no
|
|
|
|
need for physical transport interface.
|
2018-10-02 20:47:20 +08:00
|
|
|
|
2018-10-04 21:17:00 +08:00
|
|
|
endif # SHELL_BACKENDS
|