From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>,
Benjamin Poirier <bpoirier@suse.com>
Subject: [for-next][PATCH 6/6] localmodconfig: Fix whitespace repeat count after "tristate"
Date: Tue, 26 Apr 2016 18:44:16 -0400 [thread overview]
Message-ID: <20160426224443.319130385@goodmis.org> (raw)
In-Reply-To: <20160426224410.186640776@goodmis.org>
[-- Attachment #1: 0006-localmodconfig-Fix-whitespace-repeat-count-after-tri.patch --]
[-- Type: text/plain, Size: 1281 bytes --]
From: Benjamin Poirier <bpoirier@suse.com>
Also recognize standalone "prompt".
Before this patch we incorrectly identified some symbols as not having a
prompt and potentially needing to be selected by something else.
Note that this patch could theoretically change the resulting .config,
causing it to have fewer symbols turned on. However, given the current set
of Kconfig files, this situation does not occur because the symbols newly
added to %prompts are absent from %selects.
Link: http://lkml.kernel.org/r/1461696998-3953-1-git-send-email-bpoirier@suse.com
Signed-off-by: Benjamin Poirier <bpoirier@suse.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
scripts/kconfig/streamline_config.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 95a6f2b888d4..b8c7b29affc5 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -237,7 +237,7 @@ sub read_kconfig {
}
# configs without prompts must be selected
- } elsif ($state ne "NONE" && /^\s*tristate\s\S/) {
+ } elsif ($state ne "NONE" && /^\s*(tristate\s+\S|prompt\b)/) {
# note if the config has a prompt
$prompts{$config} = 1;
--
2.8.0.rc3
prev parent reply other threads:[~2016-04-26 22:44 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-26 22:44 [for-next][PATCH 0/6] localmodconfig: Updates for 4.7 Steven Rostedt
2016-04-26 22:44 ` [for-next][PATCH 1/6] localmodconfig: Fix parsing of Kconfig "source" statements Steven Rostedt
2016-04-26 22:44 ` [for-next][PATCH 2/6] localmodconfig: Recognize more keywords that end a menu entry Steven Rostedt
2016-04-26 22:44 ` [for-next][PATCH 3/6] localmodconfig: Fix parsing of "help" text Steven Rostedt
2016-04-26 22:44 ` [for-next][PATCH 4/6] localmodconfig: Add missing $ to reference a variable Steven Rostedt
2016-04-26 22:44 ` [for-next][PATCH 5/6] localmodconfig: Reset certificate paths Steven Rostedt
2016-04-26 22:44 ` Steven Rostedt [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160426224443.319130385@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=bpoirier@suse.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome