diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-04-29 22:52:23 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-08-18 21:55:49 -0400 |
commit | 281c9dadc31ffd9f3cf637553134fefe75e849da (patch) | |
tree | b82f99ea127089502e588959f7799b253c93704b /scripts | |
parent | 03fa25da8335a942161a8070b3298cfd4edf9b6a (diff) |
kconfig: add make localyesconfig option
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.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index e4d8394ff75e..12a4d9e2cadb 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -3,7 +3,7 @@ | |||
3 | # These targets are used from top-level makefile | 3 | # These targets are used from top-level makefile |
4 | 4 | ||
5 | PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \ | 5 | PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \ |
6 | localmodconfig | 6 | localmodconfig localyesconfig |
7 | 7 | ||
8 | ifdef KBUILD_KCONFIG | 8 | ifdef KBUILD_KCONFIG |
9 | Kconfig := $(KBUILD_KCONFIG) | 9 | Kconfig := $(KBUILD_KCONFIG) |
@@ -38,6 +38,16 @@ localmodconfig: $(obj)/streamline_config.pl $(obj)/conf | |||
38 | mv -f .config.old.1 .config.old) | 38 | mv -f .config.old.1 .config.old) |
39 | $(Q)rm -f .tmp.config | 39 | $(Q)rm -f .tmp.config |
40 | 40 | ||
41 | localyesconfig: $(obj)/streamline_config.pl | ||
42 | $(Q)perl $< $(Kconfig) > .tmp.config | ||
43 | $(Q)sed -i s/=m/=y/ .tmp.config | ||
44 | $(Q)cmp -s .tmp.config .config || \ | ||
45 | (mv -f .config .config.old.1; \ | ||
46 | mv -f .tmp.config .config; \ | ||
47 | $(obj)/conf -s $(Kconfig); \ | ||
48 | mv -f .config.old.1 .config.old) | ||
49 | $(Q)rm -f .tmp.config | ||
50 | |||
41 | # Create new linux.pot file | 51 | # Create new linux.pot file |
42 | # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files | 52 | # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files |
43 | # The symlink is used to repair a deficiency in arch/um | 53 | # The symlink is used to repair a deficiency in arch/um |
@@ -94,6 +104,7 @@ help: | |||
94 | @echo ' gconfig - Update current config utilising a GTK based front-end' | 104 | @echo ' gconfig - Update current config utilising a GTK based front-end' |
95 | @echo ' oldconfig - Update current config utilising a provided .config as base' | 105 | @echo ' oldconfig - Update current config utilising a provided .config as base' |
96 | @echo ' localmodconfig - Update current config disabling modules not loaded' | 106 | @echo ' localmodconfig - Update current config disabling modules not loaded' |
107 | @echo ' localyesconfig - Update current config converting local mods to core' | ||
97 | @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps' | 108 | @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps' |
98 | @echo ' randconfig - New config with random answer to all options' | 109 | @echo ' randconfig - New config with random answer to all options' |
99 | @echo ' defconfig - New config with default answer to all options' | 110 | @echo ' defconfig - New config with default answer to all options' |