[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240913171205.22126-2-david.hunter.linux@gmail.com>
Date: Fri, 13 Sep 2024 13:11:56 -0400
From: David Hunter <david.hunter.linux@...il.com>
To: Masahiro Yamada <masahiroy@...nel.org>
Cc: David Hunter <david.hunter.linux@...il.com>,
linux-kbuild@...r.kernel.org,
linux-kernel@...r.kernel.org,
shuah@...nel.org,
javier.carrasco.cruz@...il.com
Subject: [PATCH 1/7] linux-kbuild: fix: config option can be bool
Select configs that do not have a prompt. Config options can be bool or
tristate. Ensure that bool options are also selected.
Signed-off-by: David Hunter <david.hunter.linux@...il.com>
---
scripts/kconfig/streamline_config.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index d51cd7ac15d2..a828d7ab7e26 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -238,7 +238,7 @@ sub read_kconfig {
}
# configs without prompts must be selected
- } elsif ($state ne "NONE" && /^\s*(tristate\s+\S|prompt\b)/) {
+ } elsif ($state ne "NONE" && /^\s*((bool|tristate)\s+\S|prompt\b)/) {
# note if the config has a prompt
$prompts{$config} = 1;
--
2.43.0
Powered by blists - more mailing lists