[PATCH 4/7] linux-kbuild: fix: ensure selected configs were turned on in original

From: David Hunter
Date: Fri Sep 13 2024 - 13:13:23 EST


Ensure that only modules that were turned on in the original config are
turned on in the new config file. When ensuring that the config
dependencies are met, turning on the config options in the new config
leads to warnings and errors later in this script, especially for badly
constructed original config files.

One example could be a config option that is depended on by a module
needed in the new config but is not turned on in the original config
file. If this config needs to be selected, warnings will show up in the
standard output.

Signed-off-by: David Hunter <david.hunter.linux@xxxxxxxxx>
---
scripts/kconfig/streamline_config.pl | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index bb1f19a1ab5e..26e544744579 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -459,7 +459,9 @@ sub parse_config_depends
next;
}

- if (!defined($configs{$conf})) {
+ # This script does not turn on any modules, so make sure the config
+ # options are on in the original.
+ if (!defined($configs{$conf}) && defined($orig_configs{$conf})) {
# We must make sure that this config has its
# dependencies met.
$repeat = 1; # do again
--
2.43.0