diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-06-09 01:12:45 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-09 01:31:30 -0400 |
commit | face4374e288372fba67c865eb0c92337f50d5a4 (patch) | |
tree | 81a9535cc6af701a9fd1d23338449268498447ed /scripts/kconfig/zconf.tab.c_shipped | |
parent | f6a88aa86027bdecfc74ef7c6bf6c68233e86bb3 (diff) |
kconfig: add defconfig_list/module option
This makes it possible to change two options which were hardcoded sofar.
1. Any symbol can now take the role of CONFIG_MODULES
2. The more useful option is to change the list of default file names,
which kconfig uses to load the base configuration if .config isn't
available.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig/zconf.tab.c_shipped')
-rw-r--r-- | scripts/kconfig/zconf.tab.c_shipped | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.tab.c_shipped b/scripts/kconfig/zconf.tab.c_shipped index 137426e507ec..2fb0a4fc61d0 100644 --- a/scripts/kconfig/zconf.tab.c_shipped +++ b/scripts/kconfig/zconf.tab.c_shipped | |||
@@ -2112,7 +2112,9 @@ void conf_parse(const char *name) | |||
2112 | 2112 | ||
2113 | sym_init(); | 2113 | sym_init(); |
2114 | menu_init(); | 2114 | menu_init(); |
2115 | modules_sym = sym_lookup("MODULES", 0); | 2115 | modules_sym = sym_lookup(NULL, 0); |
2116 | modules_sym->type = S_BOOLEAN; | ||
2117 | modules_sym->flags |= SYMBOL_AUTO; | ||
2116 | rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL); | 2118 | rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL); |
2117 | 2119 | ||
2118 | #if YYDEBUG | 2120 | #if YYDEBUG |
@@ -2122,6 +2124,12 @@ void conf_parse(const char *name) | |||
2122 | zconfparse(); | 2124 | zconfparse(); |
2123 | if (zconfnerrs) | 2125 | if (zconfnerrs) |
2124 | exit(1); | 2126 | exit(1); |
2127 | if (!modules_sym->prop) { | ||
2128 | struct property *prop; | ||
2129 | |||
2130 | prop = prop_alloc(P_DEFAULT, modules_sym); | ||
2131 | prop->expr = expr_alloc_symbol(sym_lookup("MODULES", 0)); | ||
2132 | } | ||
2125 | menu_finalize(&rootmenu); | 2133 | menu_finalize(&rootmenu); |
2126 | for_all_symbols(i, sym) { | 2134 | for_all_symbols(i, sym) { |
2127 | sym_check_deps(sym); | 2135 | sym_check_deps(sym); |