kconfig: rename conf_split_config() to conf_touch_deps()

According to commit 2e3646e51b ("kconfig: integrate split config
into silentoldconfig"), this function was named after split-include
tool, which used to exist in old versions of Linux.

Setting aside the historical reason, rename it into a more intuitive
name. This function touches timestamp files under include/config/
in order to interact with the fixdep tool.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada 2018-11-30 18:15:49 +09:00
parent 75889e9be7
commit 0849d212e3
1 changed files with 2 additions and 2 deletions

View File

@ -906,7 +906,7 @@ static int conf_write_dep(const char *name)
return 0;
}
static int conf_split_config(void)
static int conf_touch_deps(void)
{
const char *name;
char path[PATH_MAX+1];
@ -1028,7 +1028,7 @@ int conf_write_autoconf(int overwrite)
conf_write_dep("include/config/auto.conf.cmd");
if (conf_split_config())
if (conf_touch_deps())
return 1;
out = fopen(".tmpconfig", "w");