mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
kconfig: make local .config default for streamline_config
As Andi Kleen pointed out, most people would expect that the local .config file to be based for a streamline config. This patch changes the order of searching for a config file to consider the .config in the local directory first. Reported-by: Andi Kleen <andi@firstfloor.org> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
810b2be656
commit
a9024838d0
1 changed files with 4 additions and 4 deletions
|
@ -49,6 +49,10 @@ my $uname = `uname -r`;
|
|||
chomp $uname;
|
||||
|
||||
my @searchconfigs = (
|
||||
{
|
||||
"file" => ".config",
|
||||
"exec" => "cat",
|
||||
},
|
||||
{
|
||||
"file" => "/proc/config.gz",
|
||||
"exec" => "zcat",
|
||||
|
@ -82,10 +86,6 @@ my @searchconfigs = (
|
|||
"exec" => "scripts/extract-ikconfig",
|
||||
"test" => "scripts/extract-ikconfig",
|
||||
},
|
||||
{
|
||||
"file" => ".config",
|
||||
"exec" => "cat",
|
||||
},
|
||||
);
|
||||
|
||||
sub find_config {
|
||||
|
|
Loading…
Reference in a new issue