|
@@ -41,6 +41,13 @@ const char *conf_get_configname(void)
|
|
return name ? name : ".config";
|
|
return name ? name : ".config";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+const char *conf_get_autoconfig_name(void)
|
|
|
|
+{
|
|
|
|
+ char *name = getenv("KCONFIG_AUTOCONFIG");
|
|
|
|
+
|
|
|
|
+ return name ? name : "include/config/auto.conf";
|
|
|
|
+}
|
|
|
|
+
|
|
static char *conf_expand_value(const char *in)
|
|
static char *conf_expand_value(const char *in)
|
|
{
|
|
{
|
|
struct symbol *sym;
|
|
struct symbol *sym;
|
|
@@ -555,15 +562,14 @@ int conf_write(const char *name)
|
|
|
|
|
|
int conf_split_config(void)
|
|
int conf_split_config(void)
|
|
{
|
|
{
|
|
- char *name, path[128];
|
|
|
|
|
|
+ const char *name;
|
|
|
|
+ char path[128];
|
|
char *s, *d, c;
|
|
char *s, *d, c;
|
|
struct symbol *sym;
|
|
struct symbol *sym;
|
|
struct stat sb;
|
|
struct stat sb;
|
|
int res, i, fd;
|
|
int res, i, fd;
|
|
|
|
|
|
- name = getenv("KCONFIG_AUTOCONFIG");
|
|
|
|
- if (!name)
|
|
|
|
- name = "include/config/auto.conf";
|
|
|
|
|
|
+ name = conf_get_autoconfig_name();
|
|
conf_read_simple(name, S_DEF_AUTO);
|
|
conf_read_simple(name, S_DEF_AUTO);
|
|
|
|
|
|
if (chdir("include/config"))
|
|
if (chdir("include/config"))
|
|
@@ -670,7 +676,7 @@ int conf_write_autoconf(void)
|
|
{
|
|
{
|
|
struct symbol *sym;
|
|
struct symbol *sym;
|
|
const char *str;
|
|
const char *str;
|
|
- char *name;
|
|
|
|
|
|
+ const char *name;
|
|
FILE *out, *out_h;
|
|
FILE *out, *out_h;
|
|
time_t now;
|
|
time_t now;
|
|
int i, l;
|
|
int i, l;
|
|
@@ -773,9 +779,7 @@ int conf_write_autoconf(void)
|
|
name = "include/linux/autoconf.h";
|
|
name = "include/linux/autoconf.h";
|
|
if (rename(".tmpconfig.h", name))
|
|
if (rename(".tmpconfig.h", name))
|
|
return 1;
|
|
return 1;
|
|
- name = getenv("KCONFIG_AUTOCONFIG");
|
|
|
|
- if (!name)
|
|
|
|
- name = "include/config/auto.conf";
|
|
|
|
|
|
+ name = conf_get_autoconfig_name();
|
|
/*
|
|
/*
|
|
* This must be the last step, kbuild has a dependency on auto.conf
|
|
* This must be the last step, kbuild has a dependency on auto.conf
|
|
* and this marks the successful completion of the previous steps.
|
|
* and this marks the successful completion of the previous steps.
|