diff options
author | Yuta Ando <yuta.and@gmail.com> | 2012-10-01 23:24:30 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-13 05:38:39 +0900 |
commit | e878ead68937be79e530ea9bf568766ab454e3ee (patch) | |
tree | 415bbb903c16357d9679316154875a6a7e4fcd2a | |
parent | 0699c6dd66e7083f837cfe620837ddcf10649b89 (diff) | |
download | linux-3.10-e878ead68937be79e530ea9bf568766ab454e3ee.tar.gz linux-3.10-e878ead68937be79e530ea9bf568766ab454e3ee.tar.bz2 linux-3.10-e878ead68937be79e530ea9bf568766ab454e3ee.zip |
localmodconfig: Fix localyesconfig to set to 'y' not 'm'
commit 4eae518d4b01b0cbf2f0d8edb5a6f3d6245ee8fb upstream.
The kbuild target 'localyesconfig' has been same as 'localmodconfig'
since the commit 50bce3e "kconfig/streamline_config.pl: merge
local{mod,yes}config". The commit expects this script generates
different configure depending on target, but it was not yet implemented.
So I added code that sets to 'yes' when target is 'localyesconfig'.
Link: http://lkml.kernel.org/r/1349101470-12243-1-git-send-email-yuta.and@gmail.com
Signed-off-by: Yuta Ando <yuta.and@gmail.com>
Cc: linux-kbuild@vger.kernel.org
Signed-off-by: Steven Rostedt <rostedt@rostedt.homelinux.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | scripts/kconfig/streamline_config.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index bccf07ddd0b..3346f4236eb 100644 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -463,6 +463,8 @@ while(<CIN>) { if (defined($configs{$1})) { if ($localyesconfig) { $setconfigs{$1} = 'y'; + print "$1=y\n"; + next; } else { $setconfigs{$1} = $2; } |