2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
14 #define LKC_DIRECT_LINK
17 static void conf(struct menu *menu);
18 static void check_conf(struct menu *menu);
29 } input_mode = ask_all;
32 static int indent = 1;
33 static int valid_stdin = 1;
35 static char line[128];
36 static struct menu *rootEntry;
38 static char nohelp_text[] = N_("Sorry, no help available for this option yet.\n");
40 static const char *get_help(struct menu *menu)
42 if (menu_has_help(menu))
43 return menu_get_help(menu);
48 static void strip(char *str)
57 memmove(str, p, l + 1);
65 static void check_stdin(void)
67 if (!valid_stdin && input_mode == ask_silent) {
68 printf(_("aborted!\n\n"));
69 printf(_("Console input/output is redirected. "));
70 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
75 static int conf_askvalue(struct symbol *sym, const char *def)
77 enum symbol_type type = sym_get_type(sym);
80 if (!sym_has_value(sym))
86 if (!sym_is_changable(sym)) {
98 if (sym_has_value(sym)) {
105 if (sym_has_value(sym)) {
112 fgets(line, 128, stdin);
130 switch (input_mode) {
132 if (sym_tristate_within_range(sym, yes)) {
139 if (type == S_TRISTATE) {
140 if (sym_tristate_within_range(sym, mod)) {
147 if (sym_tristate_within_range(sym, yes)) {
155 if (sym_tristate_within_range(sym, no)) {
163 val = (tristate)(random() % 3);
164 } while (!sym_tristate_within_range(sym, val));
166 case no: line[0] = 'n'; break;
167 case mod: line[0] = 'm'; break;
168 case yes: line[0] = 'y'; break;
180 int conf_string(struct menu *menu)
182 struct symbol *sym = menu->sym;
186 printf("%*s%s ", indent - 1, "", menu->prompt->text);
187 printf("(%s) ", sym->name);
188 def = sym_get_string_value(sym);
189 if (sym_get_string_value(sym))
190 printf("[%s] ", def);
191 if (!conf_askvalue(sym, def))
198 if (line[1] == '\n') {
199 printf("\n%s\n", get_help(menu));
204 line[strlen(line)-1] = 0;
207 if (def && sym_set_string_value(sym, def))
212 static int conf_sym(struct menu *menu)
214 struct symbol *sym = menu->sym;
216 tristate oldval, newval;
219 printf("%*s%s ", indent - 1, "", menu->prompt->text);
221 printf("(%s) ", sym->name);
222 type = sym_get_type(sym);
224 oldval = sym_get_tristate_value(sym);
236 if (oldval != no && sym_tristate_within_range(sym, no))
238 if (oldval != mod && sym_tristate_within_range(sym, mod))
240 if (oldval != yes && sym_tristate_within_range(sym, yes))
242 if (menu_has_help(menu))
245 if (!conf_askvalue(sym, sym_get_string_value(sym)))
253 if (!line[1] || !strcmp(&line[1], "o"))
265 if (!line[1] || !strcmp(&line[1], "es"))
276 if (sym_set_tristate_value(sym, newval))
279 printf("\n%s\n", get_help(menu));
283 static int conf_choice(struct menu *menu)
285 struct symbol *sym, *def_sym;
291 type = sym_get_type(sym);
292 is_new = !sym_has_value(sym);
293 if (sym_is_changable(sym)) {
296 switch (sym_get_tristate_value(sym)) {
305 switch (sym_get_tristate_value(sym)) {
309 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu));
319 printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu));
320 def_sym = sym_get_choice_value(sym);
323 for (child = menu->list; child; child = child->next) {
324 if (!menu_is_visible(child))
327 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
331 if (child->sym == def_sym) {
333 printf("%*c", indent, '>');
335 printf("%*c", indent, ' ');
336 printf(" %d. %s", cnt, menu_get_prompt(child));
337 if (child->sym->name)
338 printf(" (%s)", child->sym->name);
339 if (!sym_has_value(child->sym))
343 printf("%*schoice", indent - 1, "");
348 printf("[1-%d", cnt);
349 if (menu_has_help(menu))
352 switch (input_mode) {
363 fgets(line, 128, stdin);
365 if (line[0] == '?') {
366 printf("\n%s\n", get_help(menu));
371 else if (isdigit(line[0]))
378 def = (random() % cnt) + 1;
389 for (child = menu->list; child; child = child->next) {
390 if (!child->sym || !menu_is_visible(child))
397 if (line[strlen(line) - 1] == '?') {
398 printf("\n%s\n", get_help(child));
401 sym_set_choice_value(sym, child->sym);
411 static void conf(struct menu *menu)
414 struct property *prop;
417 if (!menu_is_visible(menu))
425 switch (prop->type) {
427 if (input_mode == ask_silent && rootEntry != menu) {
432 prompt = menu_get_prompt(menu);
434 printf("%*c\n%*c %s\n%*c\n",
446 if (sym_is_choice(sym)) {
448 if (sym->curr.tri != mod)
467 for (child = menu->list; child; child = child->next)
473 static void check_conf(struct menu *menu)
478 if (!menu_is_visible(menu))
482 if (sym && !sym_has_value(sym)) {
483 if (sym_is_changable(sym) ||
484 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
486 printf(_("*\n* Restart config...\n*\n"));
487 rootEntry = menu_get_parent_menu(menu);
492 for (child = menu->list; child; child = child->next)
496 int main(int ac, char **av)
502 if (ac > i && av[i][0] == '-') {
503 switch (av[i++][1]) {
505 input_mode = ask_new;
508 input_mode = ask_silent;
509 valid_stdin = isatty(0) && isatty(1) && isatty(2);
512 input_mode = set_default;
515 input_mode = set_default;
516 defconfig_file = av[i++];
517 if (!defconfig_file) {
518 printf(_("%s: No default config file specified\n"),
527 input_mode = set_mod;
530 input_mode = set_yes;
533 input_mode = set_random;
538 fprintf(stderr, "See README for usage info\n");
544 printf(_("%s: Kconfig file missing\n"), av[0]);
549 switch (input_mode) {
552 defconfig_file = conf_get_default_confname();
553 if (conf_read(defconfig_file)) {
555 "*** Can't find default configuration \"%s\"!\n"
556 "***\n", defconfig_file);
561 if (stat(".config", &tmpstat)) {
563 "*** You have not yet configured your kernel!\n"
564 "*** (missing kernel .config file)\n"
566 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
567 "*** \"make menuconfig\" or \"make xconfig\").\n"
579 name = getenv("KCONFIG_ALLCONFIG");
580 if (name && !stat(name, &tmpstat)) {
581 conf_read_simple(name, S_DEF_USER);
584 switch (input_mode) {
585 case set_no: name = "allno.config"; break;
586 case set_mod: name = "allmod.config"; break;
587 case set_yes: name = "allyes.config"; break;
588 case set_random: name = "allrandom.config"; break;
591 if (!stat(name, &tmpstat))
592 conf_read_simple(name, S_DEF_USER);
593 else if (!stat("all.config", &tmpstat))
594 conf_read_simple("all.config", S_DEF_USER);
600 if (input_mode != ask_silent) {
601 rootEntry = &rootmenu;
603 if (input_mode == ask_all) {
604 input_mode = ask_silent;
607 } else if (conf_get_changed()) {
608 name = getenv("KCONFIG_NOSILENTUPDATE");
610 fprintf(stderr, _("\n*** Kernel configuration requires explicit update.\n\n"));
618 check_conf(&rootmenu);
620 if (conf_write(NULL)) {
621 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
625 if (input_mode == ask_silent && conf_write_autoconf()) {
626 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));