This is a note to let you know that I've just added the patch titled

    localmodconfig: Fix localyesconfig to set to 'y' not 'm'

to the 3.4-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     localmodconfig-fix-localyesconfig-to-set-to-y-not-m.patch
and it can be found in the queue-3.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 4eae518d4b01b0cbf2f0d8edb5a6f3d6245ee8fb Mon Sep 17 00:00:00 2001
From: Yuta Ando <[email protected]>
Date: Mon, 1 Oct 2012 23:24:30 +0900
Subject: localmodconfig: Fix localyesconfig to set to 'y' not 'm'

From: Yuta Ando <[email protected]>

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/[email protected]

Signed-off-by: Yuta Ando <[email protected]>
Cc: [email protected]
Signed-off-by: Steven Rostedt <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 scripts/kconfig/streamline_config.pl |    2 ++
 1 file changed, 2 insertions(+)

--- 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;
            }


Patches currently in stable-queue which might be from [email protected] are

queue-3.4/localmodconfig-fix-localyesconfig-to-set-to-y-not-m.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to