2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
13 #define LKC_DIRECT_LINK
16 static void conf(struct menu *menu);
17 static void check_conf(struct menu *menu);
28 } input_mode = ask_all;
31 static int indent = 1;
32 static int valid_stdin = 1;
34 static char line[128];
35 static struct menu *rootEntry;
37 static char nohelp_text[] = N_("Sorry, no help available for this option yet.\n");
39 static void strip(char *str)
48 memmove(str, p, l + 1);
56 static void check_stdin(void)
58 if (!valid_stdin && input_mode == ask_silent) {
59 printf(_("aborted!\n\n"));
60 printf(_("Console input/output is redirected. "));
61 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
66 static void conf_askvalue(struct symbol *sym, const char *def)
68 enum symbol_type type = sym_get_type(sym);
71 if (!sym_has_value(sym))
77 if (!sym_is_changable(sym)) {
89 if (sym_has_value(sym)) {
96 if (sym_has_value(sym)) {
103 fgets(line, 128, stdin);
121 switch (input_mode) {
123 if (sym_tristate_within_range(sym, yes)) {
130 if (type == S_TRISTATE) {
131 if (sym_tristate_within_range(sym, mod)) {
138 if (sym_tristate_within_range(sym, yes)) {
146 if (sym_tristate_within_range(sym, no)) {
154 val = (tristate)(random() % 3);
155 } while (!sym_tristate_within_range(sym, val));
157 case no: line[0] = 'n'; break;
158 case mod: line[0] = 'm'; break;
159 case yes: line[0] = 'y'; break;
170 int conf_string(struct menu *menu)
172 struct symbol *sym = menu->sym;
173 const char *def, *help;
176 printf("%*s%s ", indent - 1, "", menu->prompt->text);
177 printf("(%s) ", sym->name);
178 def = sym_get_string_value(sym);
179 if (sym_get_string_value(sym))
180 printf("[%s] ", def);
181 conf_askvalue(sym, def);
187 if (line[1] == '\n') {
190 help = menu->sym->help;
191 printf("\n%s\n", menu->sym->help);
196 line[strlen(line)-1] = 0;
199 if (def && sym_set_string_value(sym, def))
204 static int conf_sym(struct menu *menu)
206 struct symbol *sym = menu->sym;
208 tristate oldval, newval;
212 printf("%*s%s ", indent - 1, "", menu->prompt->text);
214 printf("(%s) ", sym->name);
215 type = sym_get_type(sym);
217 oldval = sym_get_tristate_value(sym);
229 if (oldval != no && sym_tristate_within_range(sym, no))
231 if (oldval != mod && sym_tristate_within_range(sym, mod))
233 if (oldval != yes && sym_tristate_within_range(sym, yes))
238 conf_askvalue(sym, sym_get_string_value(sym));
245 if (!line[1] || !strcmp(&line[1], "o"))
257 if (!line[1] || !strcmp(&line[1], "es"))
268 if (sym_set_tristate_value(sym, newval))
274 printf("\n%s\n", help);
278 static int conf_choice(struct menu *menu)
280 struct symbol *sym, *def_sym;
286 type = sym_get_type(sym);
287 is_new = !sym_has_value(sym);
288 if (sym_is_changable(sym)) {
291 switch (sym_get_tristate_value(sym)) {
300 switch (sym_get_tristate_value(sym)) {
304 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu));
314 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu));
315 def_sym = sym_get_choice_value(sym);
319 for (child = menu->list; child; child = child->next) {
320 if (!menu_is_visible(child))
323 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
327 if (child->sym == def_sym) {
329 printf("%*c", indent, '>');
331 printf("%*c", indent, ' ');
332 printf(" %d. %s", cnt, menu_get_prompt(child));
333 if (child->sym->name)
334 printf(" (%s)", child->sym->name);
335 if (!sym_has_value(child->sym))
339 printf("%*schoice", indent - 1, "");
344 printf("[1-%d", cnt);
348 switch (input_mode) {
359 fgets(line, 128, stdin);
361 if (line[0] == '?') {
362 printf("\n%s\n", menu->sym->help ?
363 menu->sym->help : nohelp_text);
368 else if (isdigit(line[0]))
374 def = (random() % cnt) + 1;
385 for (child = menu->list; child; child = child->next) {
386 if (!child->sym || !menu_is_visible(child))
393 if (line[strlen(line) - 1] == '?') {
394 printf("\n%s\n", child->sym->help ?
395 child->sym->help : nohelp_text);
398 sym_set_choice_value(sym, child->sym);
408 static void conf(struct menu *menu)
411 struct property *prop;
414 if (!menu_is_visible(menu))
422 switch (prop->type) {
424 if (input_mode == ask_silent && rootEntry != menu) {
429 prompt = menu_get_prompt(menu);
431 printf("%*c\n%*c %s\n%*c\n",
443 if (sym_is_choice(sym)) {
445 if (sym->curr.tri != mod)
464 for (child = menu->list; child; child = child->next)
470 static void check_conf(struct menu *menu)
475 if (!menu_is_visible(menu))
479 if (sym && !sym_has_value(sym)) {
480 if (sym_is_changable(sym) ||
481 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
483 printf(_("*\n* Restart config...\n*\n"));
484 rootEntry = menu_get_parent_menu(menu);
489 for (child = menu->list; child; child = child->next)
493 int main(int ac, char **av)
499 if (ac > i && av[i][0] == '-') {
500 switch (av[i++][1]) {
502 input_mode = ask_new;
505 input_mode = ask_silent;
506 valid_stdin = isatty(0) && isatty(1) && isatty(2);
509 input_mode = set_default;
512 input_mode = set_default;
513 defconfig_file = av[i++];
514 if (!defconfig_file) {
515 printf(_("%s: No default config file specified\n"),
524 input_mode = set_mod;
527 input_mode = set_yes;
530 input_mode = set_random;
535 printf("%s [-o|-s] config\n", av[0]);
541 printf(_("%s: Kconfig file missing\n"), av[0]);
545 switch (input_mode) {
548 defconfig_file = conf_get_default_confname();
549 if (conf_read(defconfig_file)) {
551 "*** Can't find default configuration \"%s\"!\n"
552 "***\n", defconfig_file);
557 if (stat(".config", &tmpstat)) {
559 "*** You have not yet configured your kernel!\n"
561 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
562 "*** \"make menuconfig\" or \"make xconfig\").\n"
574 name = getenv("KCONFIG_ALLCONFIG");
575 if (name && !stat(name, &tmpstat)) {
576 conf_read_simple(name);
579 switch (input_mode) {
580 case set_no: name = "allno.config"; break;
581 case set_mod: name = "allmod.config"; break;
582 case set_yes: name = "allyes.config"; break;
583 case set_random: name = "allrandom.config"; break;
586 if (!stat(name, &tmpstat))
587 conf_read_simple(name);
588 else if (!stat("all.config", &tmpstat))
589 conf_read_simple("all.config");
595 if (input_mode != ask_silent) {
596 rootEntry = &rootmenu;
598 if (input_mode == ask_all) {
599 input_mode = ask_silent;
605 check_conf(&rootmenu);
607 if (conf_write(NULL)) {
608 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));