2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
20 int kconfig_warnings
= 0;
22 static void conf(struct menu
*menu
);
23 static void check_conf(struct menu
*menu
);
24 static void xfgets(char *str
, int size
, FILE *in
);
39 } input_mode
= oldaskconfig
;
41 static int indent
= 1;
43 static int valid_stdin
= 1;
44 static int sync_kconfig
;
46 static char line
[128];
47 static struct menu
*rootEntry
;
49 static void print_help(struct menu
*menu
)
51 struct gstr help
= str_new();
53 menu_get_ext_help(menu
, &help
);
55 printf("\n%s\n", str_get(&help
));
59 static void strip(char *str
)
68 memmove(str
, p
, l
+ 1);
76 static void check_stdin(void)
79 printf(_("aborted!\n\n"));
80 printf(_("Console input/output is redirected. "));
81 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
86 static int conf_askvalue(struct symbol
*sym
, const char *def
)
88 enum symbol_type type
= sym_get_type(sym
);
90 if (!sym_has_value(sym
))
96 if (!sym_is_changable(sym
)) {
103 switch (input_mode
) {
105 case silentoldconfig
:
106 if (sym_has_value(sym
)) {
114 xfgets(line
, 128, stdin
);
135 static int conf_string(struct menu
*menu
)
137 struct symbol
*sym
= menu
->sym
;
141 printf("%*s%s ", indent
- 1, "", _(menu
->prompt
->text
));
142 printf("(%s) ", sym
->name
);
143 def
= sym_get_string_value(sym
);
144 if (sym_get_string_value(sym
))
145 printf("[%s] ", def
);
146 if (!conf_askvalue(sym
, def
))
153 if (line
[1] == '\n') {
160 line
[strlen(line
)-1] = 0;
163 if (def
&& sym_set_string_value(sym
, def
))
168 static int conf_sym(struct menu
*menu
)
170 struct symbol
*sym
= menu
->sym
;
171 tristate oldval
, newval
;
174 printf("%*s%s ", indent
- 1, "", _(menu
->prompt
->text
));
176 printf("(%s) ", sym
->name
);
178 oldval
= sym_get_tristate_value(sym
);
190 if (oldval
!= no
&& sym_tristate_within_range(sym
, no
))
192 if (oldval
!= mod
&& sym_tristate_within_range(sym
, mod
))
194 if (oldval
!= yes
&& sym_tristate_within_range(sym
, yes
))
196 if (menu_has_help(menu
))
199 if (!conf_askvalue(sym
, sym_get_string_value(sym
)))
207 if (!line
[1] || !strcmp(&line
[1], "o"))
219 if (!line
[1] || !strcmp(&line
[1], "es"))
230 if (sym_set_tristate_value(sym
, newval
))
237 static int conf_choice(struct menu
*menu
)
239 struct symbol
*sym
, *def_sym
;
244 is_new
= !sym_has_value(sym
);
245 if (sym_is_changable(sym
)) {
248 switch (sym_get_tristate_value(sym
)) {
257 switch (sym_get_tristate_value(sym
)) {
261 printf("%*s%s\n", indent
- 1, "", _(menu_get_prompt(menu
)));
271 printf("%*s%s\n", indent
- 1, "", _(menu_get_prompt(menu
)));
272 def_sym
= sym_get_choice_value(sym
);
275 for (child
= menu
->list
; child
; child
= child
->next
) {
276 if (!menu_is_visible(child
))
279 printf("%*c %s\n", indent
, '*', _(menu_get_prompt(child
)));
283 if (child
->sym
== def_sym
) {
285 printf("%*c", indent
, '>');
287 printf("%*c", indent
, ' ');
288 printf(" %d. %s", cnt
, _(menu_get_prompt(child
)));
289 if (child
->sym
->name
)
290 printf(" (%s)", child
->sym
->name
);
291 if (!sym_has_value(child
->sym
))
295 printf(_("%*schoice"), indent
- 1, "");
300 printf("[1-%d", cnt
);
301 if (menu_has_help(menu
))
304 switch (input_mode
) {
306 case silentoldconfig
:
316 xfgets(line
, 128, stdin
);
318 if (line
[0] == '?') {
324 else if (isdigit(line
[0]))
334 for (child
= menu
->list
; child
; child
= child
->next
) {
335 if (!child
->sym
|| !menu_is_visible(child
))
342 if (line
[0] && line
[strlen(line
) - 1] == '?') {
346 sym_set_choice_value(sym
, child
->sym
);
347 for (child
= child
->list
; child
; child
= child
->next
) {
356 static void conf(struct menu
*menu
)
359 struct property
*prop
;
362 if (!menu_is_visible(menu
))
370 switch (prop
->type
) {
372 if ((input_mode
== silentoldconfig
||
373 input_mode
== listnewconfig
||
374 input_mode
== olddefconfig
) &&
381 prompt
= menu_get_prompt(menu
);
383 printf("%*c\n%*c %s\n%*c\n",
385 indent
, '*', _(prompt
),
395 if (sym_is_choice(sym
)) {
397 if (sym
->curr
.tri
!= mod
)
416 for (child
= menu
->list
; child
; child
= child
->next
)
422 static void check_conf(struct menu
*menu
)
427 if (!menu_is_visible(menu
))
431 if (sym
&& !sym_has_value(sym
)) {
432 if (sym_is_changable(sym
) ||
433 (sym_is_choice(sym
) && sym_get_tristate_value(sym
) == yes
)) {
434 if (input_mode
== listnewconfig
) {
435 if (sym
->name
&& !sym_is_choice_value(sym
)) {
436 printf("%s%s\n", CONFIG_
, sym
->name
);
438 } else if (input_mode
!= olddefconfig
) {
440 printf(_("*\n* Restart config...\n*\n"));
441 rootEntry
= menu_get_parent_menu(menu
);
447 for (child
= menu
->list
; child
; child
= child
->next
)
451 static struct option long_opts
[] = {
452 {"oldaskconfig", no_argument
, NULL
, oldaskconfig
},
453 {"oldconfig", no_argument
, NULL
, oldconfig
},
454 {"silentoldconfig", no_argument
, NULL
, silentoldconfig
},
455 {"defconfig", optional_argument
, NULL
, defconfig
},
456 {"savedefconfig", required_argument
, NULL
, savedefconfig
},
457 {"allnoconfig", no_argument
, NULL
, allnoconfig
},
458 {"allyesconfig", no_argument
, NULL
, allyesconfig
},
459 {"allmodconfig", no_argument
, NULL
, allmodconfig
},
460 {"alldefconfig", no_argument
, NULL
, alldefconfig
},
461 {"randconfig", no_argument
, NULL
, randconfig
},
462 {"listnewconfig", no_argument
, NULL
, listnewconfig
},
463 {"olddefconfig", no_argument
, NULL
, olddefconfig
},
465 * oldnoconfig is an alias of olddefconfig, because people already
466 * are dependent on its behavior(sets new symbols to their default
467 * value but not 'n') with the counter-intuitive name.
469 {"oldnoconfig", no_argument
, NULL
, olddefconfig
},
473 static void conf_usage(const char *progname
)
476 printf("Usage: %s [option] <kconfig-file>\n", progname
);
477 printf("[option] is _one_ of the following:\n");
478 printf(" --listnewconfig List new options\n");
479 printf(" --oldaskconfig Start a new configuration using a line-oriented program\n");
480 printf(" --oldconfig Update a configuration using a provided .config as base\n");
481 printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n");
482 printf(" --olddefconfig Same as silentoldconfig but sets new symbols to their default value\n");
483 printf(" --oldnoconfig An alias of olddefconfig\n");
484 printf(" --defconfig <file> New config with default defined in <file>\n");
485 printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n");
486 printf(" --allnoconfig New config where all options are answered with no\n");
487 printf(" --allyesconfig New config where all options are answered with yes\n");
488 printf(" --allmodconfig New config where all options are answered with mod\n");
489 printf(" --alldefconfig New config with all symbols set to default\n");
490 printf(" --randconfig New config with random answer to all options\n");
493 int main(int ac
, char **av
)
495 const char *progname
= av
[0];
497 const char *name
, *defconfig_file
= NULL
/* gcc uninit */;
501 setlocale(LC_ALL
, "");
502 bindtextdomain(PACKAGE
, LOCALEDIR
);
505 tty_stdio
= isatty(0) && isatty(1) && isatty(2);
507 while ((opt
= getopt_long(ac
, av
, "", long_opts
, NULL
)) != -1) {
508 input_mode
= (enum input_mode
)opt
;
510 case silentoldconfig
:
515 defconfig_file
= optarg
;
524 * Use microseconds derived seed,
525 * compensate for systems where it may be zero
527 gettimeofday(&now
, NULL
);
528 seed
= (unsigned int)((now
.tv_sec
+ 1) * (now
.tv_usec
+ 1));
530 seed_env
= getenv("KCONFIG_SEED");
531 if( seed_env
&& *seed_env
) {
533 int tmp
= (int)strtol(seed_env
, &endp
, 0);
538 fprintf( stderr
, "KCONFIG_SEED=0x%X\n", seed
);
552 conf_usage(progname
);
558 printf(_("%s: Kconfig file missing\n"), av
[0]);
559 conf_usage(progname
);
566 name
= conf_get_configname();
567 if (stat(name
, &tmpstat
)) {
568 fprintf(stderr
, _("***\n"
569 "*** Configuration file \"%s\" not found!\n"
571 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
572 "*** \"make menuconfig\" or \"make xconfig\").\n"
578 switch (input_mode
) {
581 defconfig_file
= conf_get_default_confname();
582 if (conf_read(defconfig_file
)) {
584 "*** Can't find default configuration \"%s\"!\n"
585 "***\n"), defconfig_file
);
590 case silentoldconfig
:
602 name
= getenv("KCONFIG_ALLCONFIG");
605 if ((strcmp(name
, "") != 0) && (strcmp(name
, "1") != 0)) {
606 if (conf_read_simple(name
, S_DEF_USER
)) {
608 _("*** Can't read seed configuration \"%s\"!\n"),
614 switch (input_mode
) {
615 case allnoconfig
: name
= "allno.config"; break;
616 case allyesconfig
: name
= "allyes.config"; break;
617 case allmodconfig
: name
= "allmod.config"; break;
618 case alldefconfig
: name
= "alldef.config"; break;
619 case randconfig
: name
= "allrandom.config"; break;
622 if (conf_read_simple(name
, S_DEF_USER
) &&
623 conf_read_simple("all.config", S_DEF_USER
)) {
625 _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"),
635 if (conf_get_changed()) {
636 name
= getenv("KCONFIG_NOSILENTUPDATE");
639 _("\n*** The configuration requires explicit update.\n\n"));
643 valid_stdin
= tty_stdio
;
646 switch (input_mode
) {
648 conf_set_all_new_symbols(def_no
);
651 conf_set_all_new_symbols(def_yes
);
654 conf_set_all_new_symbols(def_mod
);
657 conf_set_all_new_symbols(def_default
);
660 /* Really nothing to do in this loop */
661 while (conf_set_all_new_symbols(def_random
)) ;
664 conf_set_all_new_symbols(def_default
);
669 rootEntry
= &rootmenu
;
671 input_mode
= silentoldconfig
;
676 case silentoldconfig
:
677 /* Update until a loop caused no more changes */
680 check_conf(&rootmenu
);
682 (input_mode
!= listnewconfig
&&
683 input_mode
!= olddefconfig
));
687 env
= getenv("KCONFIG_STRICT");
688 if (env
&& *env
&& kconfig_warnings
) {
689 fprintf(stderr
, _("\n*** ERROR: %d warnings encountered, and "
690 "warnings are errors.\n\n"), kconfig_warnings
);
695 /* silentoldconfig is used during the build so we shall update autoconf.
696 * All other commands are only used to generate a config.
698 if (conf_get_changed() && conf_write(NULL
)) {
699 fprintf(stderr
, _("\n*** Error during writing of the configuration.\n\n"));
702 if (conf_write_autoconf()) {
703 fprintf(stderr
, _("\n*** Error during update of the configuration.\n\n"));
706 } else if (input_mode
== savedefconfig
) {
707 if (conf_write_defconfig(defconfig_file
)) {
708 fprintf(stderr
, _("\n*** Error while saving defconfig to: %s\n\n"),
712 } else if (input_mode
!= listnewconfig
) {
713 if (conf_write(NULL
)) {
714 fprintf(stderr
, _("\n*** Error during writing of the configuration.\n\n"));
722 * Helper function to facilitate fgets() by Jean Sacren.
724 void xfgets(char *str
, int size
, FILE *in
)
726 if (fgets(str
, size
, in
) == NULL
)
727 fprintf(stderr
, "\nError in reading or end of file.\n");