aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/Makefile13
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
5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \ 5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
6 localmodconfig 6 localmodconfig localyesconfig
7 7
8ifdef KBUILD_KCONFIG 8ifdef KBUILD_KCONFIG
9Kconfig := $(KBUILD_KCONFIG) 9Kconfig := $(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
41localyesconfig: $(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'