linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / scripts / kconfig / conf.c
index 175e593..10eeae5 100644 (file)
@@ -5,7 +5,6 @@
 
 #include <ctype.h>
 #include <stdlib.h>
-#include <stdio.h>
 #include <string.h>
 #include <unistd.h>
 #include <time.h>
@@ -21,7 +20,6 @@ enum {
        ask_all,
        ask_new,
        ask_silent,
-       dont_ask,
        set_default,
        set_yes,
        set_mod,
@@ -38,8 +36,6 @@ static struct menu *rootEntry;
 
 static char nohelp_text[] = N_("Sorry, no help available for this option yet.\n");
 
-static int return_value = 0;
-
 static void strip(char *str)
 {
        char *p = str;
@@ -67,6 +63,20 @@ static void check_stdin(void)
        }
 }
 
+static char *fgets_check_stream(char *s, int size, FILE *stream)
+{
+       char *ret = fgets(s, size, stream);
+
+       if (ret == NULL && feof(stream)) {
+               printf(_("aborted!\n\n"));
+               printf(_("Console input is closed. "));
+               printf(_("Run 'make oldconfig' to update configuration.\n\n"));
+               exit(1);
+       }
+
+       return ret;
+}
+
 static void conf_askvalue(struct symbol *sym, const char *def)
 {
        enum symbol_type type = sym_get_type(sym);
@@ -104,13 +114,7 @@ static void conf_askvalue(struct symbol *sym, const char *def)
                check_stdin();
        case ask_all:
                fflush(stdout);
-               fgets(line, 128, stdin);
-               return;
-       case dont_ask:
-               if (!sym_has_value(sym)) {
-                       fprintf(stderr,"CONFIG_%s\n",sym->name);
-                       return_value++;
-               }
+               fgets_check_stream(line, 128, stdin);
                return;
        case set_default:
                printf("%s\n", def);
@@ -324,7 +328,8 @@ static int conf_choice(struct menu *menu)
                printf("%*s%s\n", indent - 1, "", menu_get_prompt(menu));
                def_sym = sym_get_choice_value(sym);
                cnt = def = 0;
-               line[0] = 0;
+               line[0] = '0';
+               line[1] = 0;
                for (child = menu->list; child; child = child->next) {
                        if (!menu_is_visible(child))
                                continue;
@@ -355,10 +360,6 @@ static int conf_choice(struct menu *menu)
                        printf("?");
                printf("]: ");
                switch (input_mode) {
-               case dont_ask:
-                       cnt = def;
-                       printf("%d\n", cnt);
-                       break;
                case ask_new:
                case ask_silent:
                        if (!is_new) {
@@ -369,7 +370,7 @@ static int conf_choice(struct menu *menu)
                        check_stdin();
                case ask_all:
                        fflush(stdout);
-                       fgets(line, 128, stdin);
+                       fgets_check_stream(line, 128, stdin);
                        strip(line);
                        if (line[0] == '?') {
                                printf("\n%s\n", menu->sym->help ?
@@ -495,10 +496,7 @@ static void check_conf(struct menu *menu)
                        if (!conf_cnt++)
                                printf(_("*\n* Restart config...\n*\n"));
                        rootEntry = menu_get_parent_menu(menu);
-                       if (input_mode == dont_ask)
-                               fprintf(stderr,"CONFIG_%s\n",sym->name);
-                       else
-                               conf(rootEntry);
+                       conf(rootEntry);
                }
        }
 
@@ -517,9 +515,6 @@ int main(int ac, char **av)
                case 'o':
                        input_mode = ask_new;
                        break;
-               case 'b':
-                       input_mode = dont_ask;
-                       break;
                case 's':
                        input_mode = ask_silent;
                        valid_stdin = isatty(0) && isatty(1) && isatty(2);
@@ -551,14 +546,13 @@ int main(int ac, char **av)
                        break;
                case 'h':
                case '?':
-                       fprintf(stderr, "See README for usage info\n");
+                       printf("%s [-o|-s] config\n", av[0]);
                        exit(0);
                }
        }
        name = av[i];
        if (!name) {
                printf(_("%s: Kconfig file missing\n"), av[0]);
-               exit(1);
        }
        conf_parse(name);
        //zconfdump(stdout);
@@ -585,7 +579,6 @@ int main(int ac, char **av)
                }
        case ask_all:
        case ask_new:
-       case dont_ask:
                conf_read(NULL);
                break;
        case set_no:
@@ -594,7 +587,7 @@ int main(int ac, char **av)
        case set_random:
                name = getenv("KCONFIG_ALLCONFIG");
                if (name && !stat(name, &tmpstat)) {
-                       conf_read_simple(name, S_DEF_USER);
+                       conf_read_simple(name);
                        break;
                }
                switch (input_mode) {
@@ -605,9 +598,9 @@ int main(int ac, char **av)
                default: break;
                }
                if (!stat(name, &tmpstat))
-                       conf_read_simple(name, S_DEF_USER);
+                       conf_read_simple(name);
                else if (!stat("all.config", &tmpstat))
-                       conf_read_simple("all.config", S_DEF_USER);
+                       conf_read_simple("all.config");
                break;
        default:
                break;
@@ -620,28 +613,14 @@ int main(int ac, char **av)
                        input_mode = ask_silent;
                        valid_stdin = 1;
                }
-       } else if (sym_change_count) {
-               name = getenv("KCONFIG_NOSILENTUPDATE");
-               if (name && *name) {
-                       fprintf(stderr, _("\n*** Kernel configuration requires explicit update.\n\n"));
-                       return 1;
-               }
-       } else
-               goto skip_check;
-
+       }
        do {
                conf_cnt = 0;
                check_conf(&rootmenu);
-       } while ((conf_cnt) && (input_mode != dont_ask));
+       } while (conf_cnt);
        if (conf_write(NULL)) {
                fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
                return 1;
        }
-skip_check:
-       if (input_mode == ask_silent && conf_write_autoconf()) {
-               fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
-               return 1;
-       }
-
-       return return_value;
+       return 0;
 }