make switch work, use ROOTFSUSERTARBALL where appropriate
[openadk.git] / config / conf.c
blob74be7e77917f20231262fb6ff34191959ef0dcde
1 /*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
6 #include <locale.h>
7 #include <ctype.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <time.h>
12 #include <unistd.h>
13 #include <sys/stat.h>
14 #include <sys/time.h>
16 #define LKC_DIRECT_LINK
17 #include "lkc.h"
19 static void conf(struct menu *menu);
20 static void check_conf(struct menu *menu);
22 enum {
23 ask_all,
24 ask_new,
25 ask_silent,
26 set_default,
27 set_yes,
28 set_mod,
29 set_no,
30 set_random
31 } input_mode = ask_all;
32 char *defconfig_file;
34 static int indent = 1;
35 static int valid_stdin = 1;
36 static int sync_kconfig;
37 static int conf_cnt;
38 static char line[128];
39 static struct menu *rootEntry;
41 static char nohelp_text[] = N_("Sorry, no help available for this option yet.\n");
43 static const char *get_help(struct menu *menu)
45 if (menu_has_help(menu))
46 return _(menu_get_help(menu));
47 else
48 return nohelp_text;
51 static void strip(char *str)
53 char *p = str;
54 int l;
56 while ((isspace(*p)))
57 p++;
58 l = strlen(p);
59 if (p != str)
60 memmove(str, p, l + 1);
61 if (!l)
62 return;
63 p = str + l - 1;
64 while ((isspace(*p)))
65 *p-- = 0;
68 static void check_stdin(void)
70 if (!valid_stdin) {
71 printf(_("aborted!\n\n"));
72 printf(_("Console input/output is redirected. "));
73 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
74 exit(1);
78 static int conf_askvalue(struct symbol *sym, const char *def)
80 enum symbol_type type = sym_get_type(sym);
82 if (!sym_has_value(sym))
83 printf(_("(NEW) "));
85 line[0] = '\n';
86 line[1] = 0;
88 if (!sym_is_changable(sym)) {
89 printf("%s\n", def);
90 line[0] = '\n';
91 line[1] = 0;
92 return 0;
95 switch (input_mode) {
96 case ask_new:
97 case ask_silent:
98 if (sym_has_value(sym)) {
99 printf("%s\n", def);
100 return 0;
102 check_stdin();
103 case ask_all:
104 fflush(stdout);
105 fgets(line, 128, stdin);
106 return 1;
107 default:
108 break;
111 switch (type) {
112 case S_INT:
113 case S_HEX:
114 case S_STRING:
115 printf("%s\n", def);
116 return 1;
117 default:
120 printf("%s", line);
121 return 1;
124 int conf_string(struct menu *menu)
126 struct symbol *sym = menu->sym;
127 const char *def;
129 while (1) {
130 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
131 printf("(%s) ", sym->name);
132 def = sym_get_string_value(sym);
133 if (sym_get_string_value(sym))
134 printf("[%s] ", def);
135 if (!conf_askvalue(sym, def))
136 return 0;
137 switch (line[0]) {
138 case '\n':
139 break;
140 case '?':
141 /* print help */
142 if (line[1] == '\n') {
143 printf("\n%s\n", get_help(menu));
144 def = NULL;
145 break;
147 default:
148 line[strlen(line)-1] = 0;
149 def = line;
151 if (def && sym_set_string_value(sym, def))
152 return 0;
156 static int conf_sym(struct menu *menu)
158 struct symbol *sym = menu->sym;
159 int type;
160 tristate oldval, newval;
162 while (1) {
163 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
164 if (sym->name)
165 printf("(%s) ", sym->name);
166 type = sym_get_type(sym);
167 putchar('[');
168 oldval = sym_get_tristate_value(sym);
169 switch (oldval) {
170 case no:
171 putchar('N');
172 break;
173 case mod:
174 putchar('M');
175 break;
176 case yes:
177 putchar('Y');
178 break;
180 if (oldval != no && sym_tristate_within_range(sym, no))
181 printf("/n");
182 if (oldval != mod && sym_tristate_within_range(sym, mod))
183 printf("/m");
184 if (oldval != yes && sym_tristate_within_range(sym, yes))
185 printf("/y");
186 if (menu_has_help(menu))
187 printf("/?");
188 printf("] ");
189 if (!conf_askvalue(sym, sym_get_string_value(sym)))
190 return 0;
191 strip(line);
193 switch (line[0]) {
194 case 'n':
195 case 'N':
196 newval = no;
197 if (!line[1] || !strcmp(&line[1], "o"))
198 break;
199 continue;
200 case 'm':
201 case 'M':
202 newval = mod;
203 if (!line[1])
204 break;
205 continue;
206 case 'y':
207 case 'Y':
208 newval = yes;
209 if (!line[1] || !strcmp(&line[1], "es"))
210 break;
211 continue;
212 case 0:
213 newval = oldval;
214 break;
215 case '?':
216 goto help;
217 default:
218 continue;
220 if (sym_set_tristate_value(sym, newval))
221 return 0;
222 help:
223 printf("\n%s\n", get_help(menu));
227 static int conf_choice(struct menu *menu)
229 struct symbol *sym, *def_sym;
230 struct menu *child;
231 int type;
232 bool is_new;
234 sym = menu->sym;
235 type = sym_get_type(sym);
236 is_new = !sym_has_value(sym);
237 if (sym_is_changable(sym)) {
238 conf_sym(menu);
239 sym_calc_value(sym);
240 switch (sym_get_tristate_value(sym)) {
241 case no:
242 return 1;
243 case mod:
244 return 0;
245 case yes:
246 break;
248 } else {
249 switch (sym_get_tristate_value(sym)) {
250 case no:
251 return 1;
252 case mod:
253 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
254 return 0;
255 case yes:
256 break;
260 while (1) {
261 int cnt, def;
263 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
264 def_sym = sym_get_choice_value(sym);
265 cnt = def = 0;
266 line[0] = 0;
267 for (child = menu->list; child; child = child->next) {
268 if (!menu_is_visible(child))
269 continue;
270 if (!child->sym) {
271 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child)));
272 continue;
274 cnt++;
275 if (child->sym == def_sym) {
276 def = cnt;
277 printf("%*c", indent, '>');
278 } else
279 printf("%*c", indent, ' ');
280 printf(" %d. %s", cnt, _(menu_get_prompt(child)));
281 if (child->sym->name)
282 printf(" (%s)", child->sym->name);
283 if (!sym_has_value(child->sym))
284 printf(_(" (NEW)"));
285 printf("\n");
287 printf(_("%*schoice"), indent - 1, "");
288 if (cnt == 1) {
289 printf("[1]: 1\n");
290 goto conf_childs;
292 printf("[1-%d", cnt);
293 if (menu_has_help(menu))
294 printf("?");
295 printf("]: ");
296 switch (input_mode) {
297 case ask_new:
298 case ask_silent:
299 if (!is_new) {
300 cnt = def;
301 printf("%d\n", cnt);
302 break;
304 check_stdin();
305 case ask_all:
306 fflush(stdout);
307 fgets(line, 128, stdin);
308 strip(line);
309 if (line[0] == '?') {
310 printf("\n%s\n", get_help(menu));
311 continue;
313 if (!line[0])
314 cnt = def;
315 else if (isdigit(line[0]))
316 cnt = atoi(line);
317 else
318 continue;
319 break;
320 default:
321 break;
324 conf_childs:
325 for (child = menu->list; child; child = child->next) {
326 if (!child->sym || !menu_is_visible(child))
327 continue;
328 if (!--cnt)
329 break;
331 if (!child)
332 continue;
333 if (line[strlen(line) - 1] == '?') {
334 printf("\n%s\n", get_help(child));
335 continue;
337 sym_set_choice_value(sym, child->sym);
338 for (child = child->list; child; child = child->next) {
339 indent += 2;
340 conf(child);
341 indent -= 2;
343 return 1;
347 static void conf(struct menu *menu)
349 struct symbol *sym;
350 struct property *prop;
351 struct menu *child;
353 if (!menu_is_visible(menu))
354 return;
356 sym = menu->sym;
357 prop = menu->prompt;
358 if (prop) {
359 const char *prompt;
361 switch (prop->type) {
362 case P_MENU:
363 if (input_mode == ask_silent && rootEntry != menu) {
364 check_conf(menu);
365 return;
367 case P_COMMENT:
368 prompt = menu_get_prompt(menu);
369 if (prompt)
370 printf("%*c\n%*c %s\n%*c\n",
371 indent, '*',
372 indent, '*', _(prompt),
373 indent, '*');
374 default:
379 if (!sym)
380 goto conf_childs;
382 if (sym_is_choice(sym)) {
383 conf_choice(menu);
384 if (sym->curr.tri != mod)
385 return;
386 goto conf_childs;
389 switch (sym->type) {
390 case S_INT:
391 case S_HEX:
392 case S_STRING:
393 conf_string(menu);
394 break;
395 default:
396 conf_sym(menu);
397 break;
400 conf_childs:
401 if (sym)
402 indent += 2;
403 for (child = menu->list; child; child = child->next)
404 conf(child);
405 if (sym)
406 indent -= 2;
409 static void check_conf(struct menu *menu)
411 struct symbol *sym;
412 struct menu *child;
414 if (!menu_is_visible(menu))
415 return;
417 sym = menu->sym;
418 if (sym && !sym_has_value(sym)) {
419 if (sym_is_changable(sym) ||
420 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
421 if (!conf_cnt++)
422 printf(_("*\n* Restart config...\n*\n"));
423 rootEntry = menu_get_parent_menu(menu);
424 conf(rootEntry);
428 for (child = menu->list; child; child = child->next)
429 check_conf(child);
432 int main(int ac, char **av)
434 int opt;
435 const char *name;
436 struct stat tmpstat;
438 #ifndef KBUILD_NO_NLS
439 setlocale(LC_ALL, "");
440 bindtextdomain(PACKAGE, LOCALEDIR);
441 textdomain(PACKAGE);
442 #endif
444 while ((opt = getopt(ac, av, "osdD:nmyrh")) != -1) {
445 switch (opt) {
446 case 'o':
447 input_mode = ask_silent;
448 break;
449 case 's':
450 input_mode = ask_silent;
451 sync_kconfig = 1;
452 break;
453 case 'd':
454 input_mode = set_default;
455 break;
456 case 'D':
457 input_mode = set_default;
458 defconfig_file = optarg;
459 break;
460 case 'n':
461 input_mode = set_no;
462 break;
463 case 'm':
464 input_mode = set_mod;
465 break;
466 case 'y':
467 input_mode = set_yes;
468 break;
469 case 'r':
471 struct timeval now;
472 unsigned int seed;
475 * Use microseconds derived seed,
476 * compensate for systems where it may be zero
478 gettimeofday(&now, NULL);
480 seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1));
481 srand(seed);
483 input_mode = set_random;
484 break;
486 case 'h':
487 printf(_("See README for usage info\n"));
488 exit(0);
489 break;
490 default:
491 fprintf(stderr, _("See README for usage info\n"));
492 exit(1);
495 if (ac == optind) {
496 printf(_("%s: Kconfig file missing\n"), av[0]);
497 exit(1);
499 name = av[optind];
500 conf_parse(name);
501 //zconfdump(stdout);
502 if (sync_kconfig) {
503 name = conf_get_configname();
504 if (stat(name, &tmpstat)) {
505 fprintf(stderr, _("***\n"
506 "*** You have not yet configured your kernel!\n"
507 "*** (missing kernel config file \"%s\")\n"
508 "***\n"
509 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
510 "*** \"make menuconfig\" or \"make xconfig\").\n"
511 "***\n"), name);
512 exit(1);
516 switch (input_mode) {
517 case set_default:
518 if (!defconfig_file)
519 defconfig_file = conf_get_default_confname();
520 if (conf_read(defconfig_file)) {
521 printf(_("***\n"
522 "*** Can't find default configuration \"%s\"!\n"
523 "***\n"), defconfig_file);
524 exit(1);
526 break;
527 case ask_silent:
528 case ask_all:
529 case ask_new:
530 conf_read(NULL);
531 break;
532 case set_no:
533 case set_mod:
534 case set_yes:
535 case set_random:
536 name = getenv("KCONFIG_ALLCONFIG");
537 if (name && !stat(name, &tmpstat)) {
538 conf_read_simple(name, S_DEF_USER);
539 break;
541 switch (input_mode) {
542 case set_no: name = "allno.config"; break;
543 case set_mod: name = "allmod.config"; break;
544 case set_yes: name = "allyes.config"; break;
545 case set_random: name = "allrandom.config"; break;
546 default: break;
548 if (!stat(name, &tmpstat))
549 conf_read_simple(name, S_DEF_USER);
550 else if (!stat("all.config", &tmpstat))
551 conf_read_simple("all.config", S_DEF_USER);
552 break;
553 default:
554 break;
557 if (sync_kconfig) {
558 if (conf_get_changed()) {
559 name = getenv("KCONFIG_NOSILENTUPDATE");
560 if (name && *name) {
561 fprintf(stderr,
562 _("\n*** Kernel configuration requires explicit update.\n\n"));
563 return 1;
566 valid_stdin = isatty(0) && isatty(1) && isatty(2);
569 switch (input_mode) {
570 case set_no:
571 conf_set_all_new_symbols(def_no);
572 break;
573 case set_yes:
574 conf_set_all_new_symbols(def_yes);
575 break;
576 case set_mod:
577 conf_set_all_new_symbols(def_mod);
578 break;
579 case set_random:
580 conf_set_all_new_symbols(def_random);
581 break;
582 case set_default:
583 conf_set_all_new_symbols(def_default);
584 break;
585 case ask_new:
586 case ask_all:
587 rootEntry = &rootmenu;
588 conf(&rootmenu);
589 input_mode = ask_silent;
590 /* fall through */
591 case ask_silent:
592 /* Update until a loop caused no more changes */
593 do {
594 conf_cnt = 0;
595 check_conf(&rootmenu);
596 } while (conf_cnt);
597 break;
600 if (sync_kconfig) {
601 /* silentoldconfig is used during the build so we shall update autoconf.
602 * All other commands are only used to generate a config.
604 if (conf_get_changed() && conf_write(NULL)) {
605 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
606 exit(1);
608 if (conf_write_autoconf()) {
609 fprintf(stderr, _("\n*** Error during update of the kernel configuration.\n\n"));
610 return 1;
612 } else {
613 if (conf_write(NULL)) {
614 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
615 exit(1);
618 return 0;