Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions drivers/console/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ config CONSOLE_INPUT_MAX_LINE_LEN

config CONSOLE_HAS_DRIVER
bool
default n
help
This is an option to be enabled by console drivers to signal
that some kind of console exists.
Expand All @@ -32,15 +31,13 @@ config CONSOLE_HANDLER
prompt "Enable console input handler"
depends on UART_CONSOLE
select UART_INTERRUPT_DRIVEN
default n
help
This option enables console input handler allowing to write simple
interaction between serial console and the OS.

config UART_CONSOLE
bool
prompt "Use UART for console"
default n
depends on SERIAL && SERIAL_HAS_DRIVER
select CONSOLE_HAS_DRIVER
help
Expand Down Expand Up @@ -70,7 +67,6 @@ config UART_CONSOLE_INIT_PRIORITY
config UART_CONSOLE_DEBUG_SERVER_HOOKS
bool
prompt "Debug server hooks in debug console"
default n
depends on UART_CONSOLE
help
This option allows a debug server agent such as GDB to take over the
Expand All @@ -82,7 +78,6 @@ config UART_CONSOLE_DEBUG_SERVER_HOOKS
config UART_CONSOLE_MCUMGR
bool
prompt "Enable UART console mcumgr passthrough"
default n
depends on UART_CONSOLE
help
Enables the UART console to receive mcumgr frames for image upgrade
Expand All @@ -96,7 +91,6 @@ config USB_UART_CONSOLE
depends on SERIAL
select CONSOLE_HAS_DRIVER
select USB_CDC_ACM
default n
help
Enable this option to use the USB UART for console output. The output
can be viewed from the USB host via /dev/ttyACM* port. Note that console
Expand All @@ -107,7 +101,6 @@ config USB_UART_CONSOLE
config USB_UART_DTR_WAIT
bool
prompt "Wait on DTR control signal"
default n
depends on USB_UART_CONSOLE
help
Enable this option to use flow control on the console. The uart console
Expand All @@ -118,7 +111,6 @@ config RAM_CONSOLE
bool
prompt "Use RAM console"
select CONSOLE_HAS_DRIVER
default n
help
Emit console messages to a RAM buffer "ram_console" which can
be examined at runtime with a debugger. Useful in board bring-up
Expand All @@ -137,7 +129,6 @@ config RTT_CONSOLE
prompt "Use RTT console"
depends on HAS_SEGGER_RTT
select CONSOLE_HAS_DRIVER
default n
help
Emit console messages to a RAM buffer that is then read by the
Segger J-Link software and displayed on a computer in real-time.
Expand All @@ -147,15 +138,13 @@ config IPM_CONSOLE_SENDER
bool
prompt "Inter-processor Mailbox console sender"
select CONSOLE_HAS_DRIVER
default n
help
Enable the sending side of IPM console

config IPM_CONSOLE_RECEIVER
bool
prompt "Inter-processor Mailbox console receiver"
select RING_BUFFER
default n
help
Enable the receiving side of IPM console

Expand Down Expand Up @@ -183,7 +172,6 @@ config UART_PIPE
bool
prompt "Enable pipe UART driver"
select UART_INTERRUPT_DRIVEN
default n
help
Enable pipe UART driver. This driver allows application to communicate
over UART with custom defined protocol. Driver doesn't inspect received
Expand All @@ -204,7 +192,6 @@ config UART_MCUMGR
bool
prompt "Enable mcumgr UART driver"
select UART_INTERRUPT_DRIVEN
default n
help
Enable the mcumgr UART driver. This driver allows the application to
communicate over UART using the mcumgr protocol for image upgrade and
Expand Down
3 changes: 0 additions & 3 deletions drivers/console/Kconfig.telnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

menuconfig TELNET_CONSOLE
bool "Enable a super basic telnet console service"
default n
select NETWORKING
select NET_TCP
help
Expand Down Expand Up @@ -68,7 +67,6 @@ config TELNET_CONSOLE_SEND_THRESHOLD

config TELNET_CONSOLE_SUPPORT_COMMAND
bool "Add support for telnet commands (IAC) [Experimental]"
default n
help
Current support is so limited it's not interesting to enable it.
However, if proven to be needed at some point, it will be possible
Expand Down Expand Up @@ -108,7 +106,6 @@ config SYS_LOG_TELNET_CONSOLE_LEVEL
config TELNET_CONSOLE_DEBUG_DEEP
bool "Forward output to original console handler"
depends on UART_CONSOLE
default n
help
For telnet developers only, this will forward each output to
original console handler. So if by chance telnet seems silent,
Expand Down
2 changes: 0 additions & 2 deletions drivers/console/Kconfig.ws
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

menuconfig WEBSOCKET_CONSOLE
bool "Enable websocket console service"
default n
select NETWORKING
select NET_TCP
select HTTP_PARSER
Expand Down Expand Up @@ -95,7 +94,6 @@ config SYS_LOG_WEBSOCKET_CONSOLE_LEVEL
config WEBSOCKET_CONSOLE_DEBUG_DEEP
bool "Forward output to original console handler"
depends on UART_CONSOLE
default n
help
For WS console developers only, this will forward each output to
original console handler. So if by chance WS console seems silent,
Expand Down