aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2010-07-31 17:35:28 -0400
committerMichal Marek <mmarek@suse.cz>2010-08-03 07:49:31 -0400
commit861b4ea4cc0eade661480f1ce197ae747f22a918 (patch)
treed74219b8e36235774cd99a7a61a0f53f4cb15c1d /scripts/kconfig/Makefile
parentef61ca88c511154d6bead23c08f9a021cfdfeb01 (diff)
kconfig: change nonint_oldconfig to listnewconfig
Rename to a name that better match the other kconfig targets. listnewconfig shall read as: - list new options compared to current configuration New options are now written to stdout so one can redirect the output. Do not exit with an error code if there is new options. These are feature changes compared to the original nonint_oldconfig - but as this feature has not yet been in a released kernel it should not matter. It is still possible to do: make listnewconfig lookup new config options in Kconfig* edit .config Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Aristeu Rozanski <aris@redhat.com> Acked-by: Aristeu Rozanski <aris@redhat.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r--scripts/kconfig/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index 2142afb0a13..01bad1bd255 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -90,9 +90,9 @@ PHONY += allnoconfig allyesconfig allmodconfig randconfig
90allnoconfig allyesconfig allmodconfig randconfig: $(obj)/conf 90allnoconfig allyesconfig allmodconfig randconfig: $(obj)/conf
91 $< --$@ $(Kconfig) 91 $< --$@ $(Kconfig)
92 92
93PHONY += nonint_oldconfig oldnoconfig defconfig 93PHONY += listnewconfig oldnoconfig defconfig
94 94
95nonint_oldconfig oldnoconfig: $(obj)/conf 95listnewconfig oldnoconfig: $(obj)/conf
96 $< --$@ $(Kconfig) 96 $< --$@ $(Kconfig)
97 97
98defconfig: $(obj)/conf 98defconfig: $(obj)/conf
@@ -122,8 +122,7 @@ help:
122 @echo ' allmodconfig - New config selecting modules when possible' 122 @echo ' allmodconfig - New config selecting modules when possible'
123 @echo ' allyesconfig - New config where all options are accepted with yes' 123 @echo ' allyesconfig - New config where all options are accepted with yes'
124 @echo ' allnoconfig - New config where all options are answered with no' 124 @echo ' allnoconfig - New config where all options are answered with no'
125 @echo ' nonint_oldconfig - Checks the current configuration and fails if an option is ' 125 @echo ' listnewconfig - List new options'
126 @echo ' not set'
127 @echo ' oldnoconfig - Same as silentoldconfig but set new symbols to n (unset)' 126 @echo ' oldnoconfig - Same as silentoldconfig but set new symbols to n (unset)'
128 127
129# lxdialog stuff 128# lxdialog stuff