From: Steven Rostedt <rostedt@goodmis.org> To: linux-kernel@vger.kernel.org Cc: Ingo Molnar <mingo@elte.hu>, Andrew Morton <akpm@linux-foundation.org>, Linus Torvalds <torvalds@linux-foundation.org>, Peter Zijlstra <peterz@infradead.org>, Thomas Gleixner <tglx@linutronix.de>, Theodore Tso <tytso@mit.edu>, Arnaldo Carvalho de Melo <acme@redhat.com>, zippel@linux-m68k.org, linux-kbuild@vger.kernel.org, Sam Ravnborg <sam@ravnborg.org>, Jonathan Corbet <corbet@lwn.net> Subject: [PATCH 3/3] kconfig: add make localyesconfig option Date: Wed, 29 Apr 2009 23:08:24 -0400 [thread overview] Message-ID: <20090430031946.963964381@goodmis.org> (raw) In-Reply-To: <20090430030821.523327994@goodmis.org> [-- Attachment #1: 0003-kconfig-add-make-localyesconfig-option.patch --] [-- Type: text/plain, Size: 2148 bytes --] From: Steven Rostedt <srostedt@redhat.com> This adds the option localyesconfig to make. This is similar to localmodconfig, but after it removes unnecessary modules it runs sed -i s/=m/=y/ on the .config file. It then runs "make silentoldconfig" to fix any wholes that were created by the conversion of modules to core. [ Impact: facilitate making a moduleless config ] Signed-off-by: Steven Rostedt <rostedt@goodmis.org> --- scripts/kconfig/Makefile | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 4b289ad..c080424 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -3,7 +3,7 @@ # These targets are used from top-level makefile PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \ - localmodconfig + localmodconfig localyesconfig ifdef KBUILD_KCONFIG Kconfig := $(KBUILD_KCONFIG) @@ -38,6 +38,16 @@ localmodconfig: $(obj)/streamline_config.pl $(obj)/conf mv -f .config.old.1 .config.old) $(Q)rm -f .tmp.config +localyesconfig: $(obj)/streamline_config.pl + $(Q)perl $< $(Kconfig) > .tmp.config + $(Q)sed -i s/=m/=y/ .tmp.config + $(Q)cmp -s .tmp.config .config || \ + (mv -f .config .config.old.1; \ + mv -f .tmp.config .config; \ + $(obj)/conf -s $(Kconfig); \ + mv -f .config.old.1 .config.old) + $(Q)rm -f .tmp.config + # Create new linux.pot file # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files # The symlink is used to repair a deficiency in arch/um @@ -94,6 +104,7 @@ help: @echo ' gconfig - Update current config utilising a GTK based front-end' @echo ' oldconfig - Update current config utilising a provided .config as base' @echo ' localmodconfig - Update current config disabling modules not loaded' + @echo ' localyesconfig - Update current config converting local mods to core' @echo ' silentoldconfig - Same as oldconfig, but quietly' @echo ' randconfig - New config with random answer to all options' @echo ' defconfig - New config with default answer to all options' -- 1.6.2.1 --
next prev parent reply other threads:[~2009-04-30 3:21 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2009-04-30 3:08 [PATCH 0/3] removing unwanted module configs Steven Rostedt 2009-04-30 3:08 ` [PATCH 1/3] kconfig: add streamline_config.pl to scripts Steven Rostedt 2009-04-30 3:08 ` [PATCH 2/3] kconfig: make localmodconfig to run streamline_config.pl Steven Rostedt 2009-04-30 3:08 ` Steven Rostedt [this message] 2009-04-30 7:18 ` [PATCH 0/3] removing unwanted module configs Ingo Molnar 2009-04-30 13:17 ` Steven Rostedt 2009-04-30 13:26 ` Ingo Molnar 2009-04-30 13:42 ` Steven Rostedt 2009-04-30 13:47 ` Steven Rostedt 2009-04-30 14:43 ` Ingo Molnar 2009-04-30 14:42 ` Ingo Molnar
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=20090430031946.963964381@goodmis.org \ --to=rostedt@goodmis.org \ --cc=acme@redhat.com \ --cc=akpm@linux-foundation.org \ --cc=corbet@lwn.net \ --cc=linux-kbuild@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=mingo@elte.hu \ --cc=peterz@infradead.org \ --cc=sam@ravnborg.org \ --cc=tglx@linutronix.de \ --cc=torvalds@linux-foundation.org \ --cc=tytso@mit.edu \ --cc=zippel@linux-m68k.org \ --subject='Re: [PATCH 3/3] kconfig: add make localyesconfig option' \ /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
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.