[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240913171205.22126-8-david.hunter.linux@gmail.com>
Date: Fri, 13 Sep 2024 13:12:02 -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 7/7] linux-kbuild: fix: process config options set to "y"
The goal of "make localmodconfig" is to turn off modules that are not
necessary. Some modules are necessary because they are depended on by
config options set with a "y."
Process configs set to "y" so that the modules that are depended on
will not be turned off later.
Signed-off-by: David Hunter <david.hunter.linux@...il.com>
---
scripts/kconfig/streamline_config.pl | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 948437aac535..762bf80408c7 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -466,6 +466,11 @@ foreach my $line (@config_file) {
if (/(CONFIG_[$valid]*)=(m|y)/) {
$orig_configs{$1} = $2;
+ # all configs options set to 'y' need to be processed
+ if($2 eq "y") {
+ $configs{$1}= $2;
+ }
+
}
}
@@ -596,9 +601,11 @@ sub loop_depend {
forloop:
foreach my $config (keys %configs) {
- # If this config is not a module, we do not need to process it
- if (defined($orig_configs{$config}) && $orig_configs{$config} ne "m") {
- next forloop;
+ # If this config is not set in the original config,
+ # we do not need to process it
+ if (defined($orig_configs{$config}) && $orig_configs{$config} ne "m"
+ && $orig_configs{$config} ne "y") {
+ next forloop;
}
$config =~ s/^CONFIG_//;
--
2.43.0
Powered by blists - more mailing lists