Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation/kbuild/kconfig.txt: 'make listnewconfig' replaces: yes "" | make oldconfig

Signed-off-by: Regid Ichira <regid23@nt1.in>
Acked-by: Rob Landley <rob@landley.net>
[yann.morin.1998@free.fr: fix trailing whitespace, commit subject]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

authored by

Regid Ichira and committed by
Yann E. MORIN
560909d4 86eb7818

+2 -9
+2 -9
Documentation/kbuild/kconfig.txt
··· 20 20 To see a list of new config symbols when using "make oldconfig", use 21 21 22 22 cp user/some/old.config .config 23 - yes "" | make oldconfig >conf.new 23 + make listnewconfig 24 24 25 - and the config program will list as (NEW) any new symbols that have 26 - unknown values. Of course, the .config file is also updated with 27 - new (default) values, so you can use: 28 - 29 - grep "(NEW)" conf.new 30 - 31 - to see the new config symbols or you can use diffconfig to see the 32 - differences between the previous and new .config files: 25 + and the config program will list any new symbols, one per line. 33 26 34 27 scripts/diffconfig .config.old .config | less 35 28