diff options
-rw-r--r-- | scripts/kconfig/streamline_config.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index 33689396953a..343a56863660 100644 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl | |||
@@ -396,6 +396,15 @@ foreach my $module (keys(%modules)) { | |||
396 | foreach my $conf (@arr) { | 396 | foreach my $conf (@arr) { |
397 | $configs{$conf} = $module; | 397 | $configs{$conf} = $module; |
398 | dprint "$conf added by direct ($module)\n"; | 398 | dprint "$conf added by direct ($module)\n"; |
399 | if ($debugprint) { | ||
400 | my $c=$conf; | ||
401 | $c =~ s/^CONFIG_//; | ||
402 | if (defined($depends{$c})) { | ||
403 | dprint " deps = $depends{$c}\n"; | ||
404 | } else { | ||
405 | dprint " no deps\n"; | ||
406 | } | ||
407 | } | ||
399 | } | 408 | } |
400 | } else { | 409 | } else { |
401 | # Most likely, someone has a custom (binary?) module loaded. | 410 | # Most likely, someone has a custom (binary?) module loaded. |