You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/03/07 09:46:04 UTC

[incubator-nuttx] 01/03: drivers/serial/Kconfig: fix configure warnning

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 64708ddc7a3ca25fd1bf29e30ace3238c9f93e2d
Author: ligd <li...@xiaomi.com>
AuthorDate: Fri Mar 5 22:29:18 2021 +0800

    drivers/serial/Kconfig: fix configure warnning
    
    user should select the default action by self:
    warning: (TTY_SIGINT) selects SIG_SIGKILL_ACTION which has unmet direct dependencies (SIG_DEFAULT)
    
    Change-Id: Ied9899d18156742ce4998b40d53a481262dcd84a
    Signed-off-by: ligd <li...@xiaomi.com>
---
 drivers/serial/Kconfig | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index 22e6b14..2dd39d7 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -177,7 +177,6 @@ config SERIAL_TERMIOS
 config TTY_SIGINT
 	bool "Support SIGINT"
 	default n
-	select SIG_SIGKILL_ACTION
 	depends on SERIAL_TERMIOS
 	---help---
 		Whether support Ctrl-c/x event.  Enabled automatically for console
@@ -222,7 +221,6 @@ config TTY_SIGINT_CHAR
 config TTY_SIGTSTP
 	bool "Support SIGTSTP"
 	default n
-	select CONFIG_SIG_SIGSTOP_ACTION
 	depends on SERIAL_TERMIOS
 	---help---
 		Whether support Ctrl-z event.  Enabled automatically for console