From 5ee81c0d50f3aea3c080f90b68ca95836cfcfd8d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 28 Dec 2014 15:23:05 -0600 Subject: [PATCH] Serial: Allow serial console selection even if /dev/console is disabled: There can still be a serial console with no file system at all --- drivers/serial/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 65131f2b082..1a7c77dfb12 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -599,7 +599,7 @@ choice default NO_SERIAL_CONSOLE if !ARCH_HAVE_OTHER_UART default OTHER_SERIAL_CONSOLE if ARCH_HAVE_OTHER_UART depends on MCU_SERIAL - depends on DEV_CONSOLE + #depends on DEV_CONSOLE - We may have serial console with no file system at all config UART_SERIAL_CONSOLE bool "UART"