diff options
Diffstat (limited to 'scripts/kconfig/streamline_config.pl')
| -rw-r--r-- | scripts/kconfig/streamline_config.pl | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index 4606cdfb859..9cb8522d8d2 100644 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -219,6 +219,13 @@ sub read_kconfig {  	    $depends{$config} = $1;  	} elsif ($state eq "DEP" && /^\s*depends\s+on\s+(.*)$/) {  	    $depends{$config} .= " " . $1; +	} elsif ($state eq "DEP" && /^\s*def(_(bool|tristate)|ault)\s+(\S.*)$/) { +	    my $dep = $3; +	    if ($dep !~ /^\s*(y|m|n)\s*$/) { +		$dep =~ s/.*\sif\s+//; +		$depends{$config} .= " " . $dep; +		dprint "Added default depends $dep to $config\n"; +	    }  	# Get the configs that select this config  	} elsif ($state ne "NONE" && /^\s*select\s+(\S+)/) { @@ -582,7 +589,7 @@ while ($repeat) {      # Now we need to see if we have to check selects;      loop_select; -}	     +}  my %setconfigs;  | 
