subsys: shell: Add missing dependency to SERIAL
The shell subsystem, as it is today, depends on having a UART, therefore let's add the dependency explicitly in its Kconfig Fixes #10190 Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
This commit is contained in:
parent
c09b76abd0
commit
3e41ac5f04
3 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
CONFIG_PRINTK=y
|
||||
CONFIG_SHELL=y
|
||||
CONFIG_SERIAL=y
|
||||
CONFIG_LOG=y
|
||||
CONFIG_LOG_BACKEND_UART=n
|
||||
CONFIG_KERNEL_SHELL=y
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
CONFIG_PRINTK=y
|
||||
CONFIG_SHELL=y
|
||||
CONFIG_SERIAL=y
|
||||
CONFIG_LOG_BACKEND_UART=n
|
||||
CONFIG_KERNEL_SHELL=n
|
||||
CONFIG_OBJECT_TRACING=y
|
||||
|
|
|
@ -38,6 +38,7 @@ menuconfig SHELL
|
|||
bool "Enable shell"
|
||||
select LOG_RUNTIME_FILTERING
|
||||
select POLL
|
||||
depends on SERIAL
|
||||
|
||||
if SHELL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue