[PATCH 3/9] kconfig: preset config during all*config

From: Roman Zippel
Date: Thu Nov 03 2005 - 10:07:25 EST



Allow to force setting of config variables during
all{no,mod,yes,random}config to a specific value. For that conf first
checks the KCONFIG_ALLCONFIG environment variable for a file name,
otherwise it checks for all{no,mod,yes,random}.config and all.config. The
file is a normal config file, which presets the config variables, but they
are still subject to normal dependency checks.

Signed-off-by: Roman Zippel <zippel@xxxxxxxxxxxxxx>

---

scripts/kconfig/conf.c | 30 ++++++++++++++++++++++++++++++
scripts/kconfig/confdata.c | 17 ++++++++++++++---
scripts/kconfig/lkc_proto.h | 1 +
3 files changed, 45 insertions(+), 3 deletions(-)

Index: linux-2.6/scripts/kconfig/conf.c
===================================================================
--- linux-2.6.orig/scripts/kconfig/conf.c 2005-11-03 13:22:59.000000000 +0100
+++ linux-2.6/scripts/kconfig/conf.c 2005-11-03 13:23:06.000000000 +0100
@@ -82,6 +82,15 @@ static void conf_askvalue(struct symbol
}

switch (input_mode) {
+ case set_no:
+ case set_mod:
+ case set_yes:
+ case set_random:
+ if (sym_has_value(sym)) {
+ printf("%s\n", def);
+ return;
+ }
+ break;
case ask_new:
case ask_silent:
if (sym_has_value(sym)) {
@@ -560,6 +569,27 @@ int main(int ac, char **av)
case ask_new:
conf_read(NULL);
break;
+ case set_no:
+ case set_mod:
+ case set_yes:
+ case set_random:
+ name = getenv("KCONFIG_ALLCONFIG");
+ if (name && !stat(name, &tmpstat)) {
+ conf_read_simple(name);
+ break;
+ }
+ switch (input_mode) {
+ case set_no: name = "allno.config"; break;
+ case set_mod: name = "allmod.config"; break;
+ case set_yes: name = "allyes.config"; break;
+ case set_random: name = "allrandom.config"; break;
+ default: break;
+ }
+ if (!stat(name, &tmpstat))
+ conf_read_simple(name);
+ else if (!stat("all.config", &tmpstat))
+ conf_read_simple("all.config");
+ break;
default:
break;
}
Index: linux-2.6/scripts/kconfig/confdata.c
===================================================================
--- linux-2.6.orig/scripts/kconfig/confdata.c 2005-11-03 13:19:34.000000000 +0100
+++ linux-2.6/scripts/kconfig/confdata.c 2005-11-03 13:23:06.000000000 +0100
@@ -69,15 +69,13 @@ char *conf_get_default_confname(void)
return name;
}

-int conf_read(const char *name)
+int conf_read_simple(const char *name)
{
FILE *in = NULL;
char line[1024];
char *p, *p2;
int lineno = 0;
struct symbol *sym;
- struct property *prop;
- struct expr *e;
int i;

if (name) {
@@ -232,6 +230,19 @@ int conf_read(const char *name)

if (modules_sym)
sym_calc_value(modules_sym);
+ return 0;
+}
+
+int conf_read(const char *name)
+{
+ struct symbol *sym;
+ struct property *prop;
+ struct expr *e;
+ int i;
+
+ if (conf_read_simple(name))
+ return 1;
+
for_all_symbols(i, sym) {
sym_calc_value(sym);
if (sym_has_value(sym) && !sym_is_choice_value(sym)) {
Index: linux-2.6/scripts/kconfig/lkc_proto.h
===================================================================
--- linux-2.6.orig/scripts/kconfig/lkc_proto.h 2005-11-03 13:19:34.000000000 +0100
+++ linux-2.6/scripts/kconfig/lkc_proto.h 2005-11-03 13:23:06.000000000 +0100
@@ -2,6 +2,7 @@
/* confdata.c */
P(conf_parse,void,(const char *name));
P(conf_read,int,(const char *name));
+P(conf_read_simple,int,(const char *name));
P(conf_write,int,(const char *name));

/* menu.c */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/