aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-03-01 01:34:37 -0500
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-03-25 13:04:00 -0400
commit911a91c39cabcb6adb2a78f4f9777abb4c032b75 (patch)
treecb3cf799e4dbcbaaa1d6331aeac6928d16e6d570 /Makefile
parent81d2bc2273052e49c46a791f45aeb09802d76b93 (diff)
kconfig: rename silentoldconfig to syncconfig
As commit cedd55d49dee ("kconfig: Remove silentoldconfig from help and docs; fix kconfig/conf's help") mentioned, 'silentoldconfig' is a historical misnomer. That commit removed it from help and docs since it is an internal interface. If so, it should be allowed to rename it to something more intuitive. 'syncconfig' is the one I came up with because it updates the .config if necessary, then synchronize include/generated/autoconf.h and include/config/* with it. You should not manually invoke 'silentoldcofig'. Display warning if used in case existing scripts are doing wrong. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Ulf Magnusson <ulfalizer@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e02d092bc2d6..5675aa15ae84 100644
--- a/Makefile
+++ b/Makefile
@@ -588,7 +588,7 @@ $(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
588# include/generated/ and include/config/. Update them if .config is newer than 588# include/generated/ and include/config/. Update them if .config is newer than
589# include/config/auto.conf (which mirrors .config). 589# include/config/auto.conf (which mirrors .config).
590include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd 590include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
591 $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig 591 $(Q)$(MAKE) -f $(srctree)/Makefile syncconfig
592else 592else
593# external modules needs include/generated/autoconf.h and include/config/auto.conf 593# external modules needs include/generated/autoconf.h and include/config/auto.conf
594# but do not care if they are up-to-date. Use auto.conf to trigger the test 594# but do not care if they are up-to-date. Use auto.conf to trigger the test