| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> | 
|  | 3 | * Released under the terms of the GNU GPL v2.0. | 
|  | 4 | */ | 
|  | 5 |  | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 6 | #include <locale.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <ctype.h> | 
| Randy Dunlap | 9dfb563 | 2006-04-18 22:21:53 -0700 | [diff] [blame] | 8 | #include <stdio.h> | 
| Ladislav Michl | 75ff430 | 2008-01-09 16:36:19 +0100 | [diff] [blame] | 9 | #include <stdlib.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <time.h> | 
| Ladislav Michl | 75ff430 | 2008-01-09 16:36:19 +0100 | [diff] [blame] | 12 | #include <unistd.h> | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 13 | #include <getopt.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <sys/stat.h> | 
| Ingo Molnar | b0fe551 | 2009-03-12 15:15:31 +0100 | [diff] [blame] | 15 | #include <sys/time.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "lkc.h" | 
|  | 18 |  | 
|  | 19 | static void conf(struct menu *menu); | 
|  | 20 | static void check_conf(struct menu *menu); | 
| Arnaud Lacombe | ab63f58 | 2011-07-02 00:59:41 -0400 | [diff] [blame] | 21 | static void xfgets(char *str, int size, FILE *in); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 |  | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 23 | enum input_mode { | 
|  | 24 | oldaskconfig, | 
|  | 25 | silentoldconfig, | 
|  | 26 | oldconfig, | 
|  | 27 | allnoconfig, | 
|  | 28 | allyesconfig, | 
|  | 29 | allmodconfig, | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 30 | alldefconfig, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 31 | randconfig, | 
|  | 32 | defconfig, | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 33 | savedefconfig, | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 34 | listnewconfig, | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 35 | oldnoconfig, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 36 | } input_mode = oldaskconfig; | 
|  | 37 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | static int indent = 1; | 
|  | 39 | static int valid_stdin = 1; | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 40 | static int sync_kconfig; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | static int conf_cnt; | 
| J.A. Magallon | 48b9d03 | 2005-06-25 14:59:22 -0700 | [diff] [blame] | 42 | static char line[128]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | static struct menu *rootEntry; | 
|  | 44 |  | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 45 | static void print_help(struct menu *menu) | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 46 | { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 47 | struct gstr help = str_new(); | 
|  | 48 |  | 
|  | 49 | menu_get_ext_help(menu, &help); | 
|  | 50 |  | 
|  | 51 | printf("\n%s\n", str_get(&help)); | 
|  | 52 | str_free(&help); | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 53 | } | 
|  | 54 |  | 
| J.A. Magallon | 48b9d03 | 2005-06-25 14:59:22 -0700 | [diff] [blame] | 55 | static void strip(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { | 
| J.A. Magallon | 48b9d03 | 2005-06-25 14:59:22 -0700 | [diff] [blame] | 57 | char *p = str; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | int l; | 
|  | 59 |  | 
|  | 60 | while ((isspace(*p))) | 
|  | 61 | p++; | 
|  | 62 | l = strlen(p); | 
|  | 63 | if (p != str) | 
|  | 64 | memmove(str, p, l + 1); | 
|  | 65 | if (!l) | 
|  | 66 | return; | 
|  | 67 | p = str + l - 1; | 
|  | 68 | while ((isspace(*p))) | 
|  | 69 | *p-- = 0; | 
|  | 70 | } | 
|  | 71 |  | 
|  | 72 | static void check_stdin(void) | 
|  | 73 | { | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 74 | if (!valid_stdin) { | 
| Arnaldo Carvalho de Melo | 3b9fa09 | 2005-05-05 15:09:46 -0700 | [diff] [blame] | 75 | printf(_("aborted!\n\n")); | 
|  | 76 | printf(_("Console input/output is redirected. ")); | 
|  | 77 | printf(_("Run 'make oldconfig' to update configuration.\n\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | exit(1); | 
|  | 79 | } | 
|  | 80 | } | 
|  | 81 |  | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 82 | static int conf_askvalue(struct symbol *sym, const char *def) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { | 
|  | 84 | enum symbol_type type = sym_get_type(sym); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
|  | 86 | if (!sym_has_value(sym)) | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 87 | printf(_("(NEW) ")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 |  | 
|  | 89 | line[0] = '\n'; | 
|  | 90 | line[1] = 0; | 
|  | 91 |  | 
|  | 92 | if (!sym_is_changable(sym)) { | 
|  | 93 | printf("%s\n", def); | 
|  | 94 | line[0] = '\n'; | 
|  | 95 | line[1] = 0; | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 96 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } | 
|  | 98 |  | 
|  | 99 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 100 | case oldconfig: | 
|  | 101 | case silentoldconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | if (sym_has_value(sym)) { | 
|  | 103 | printf("%s\n", def); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 104 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } | 
|  | 106 | check_stdin(); | 
| Arnaud Lacombe | d8fc320 | 2011-05-31 12:30:26 -0400 | [diff] [blame] | 107 | /* fall through */ | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 108 | case oldaskconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | fflush(stdout); | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 110 | xfgets(line, 128, stdin); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 111 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | default: | 
|  | 113 | break; | 
|  | 114 | } | 
|  | 115 |  | 
|  | 116 | switch (type) { | 
|  | 117 | case S_INT: | 
|  | 118 | case S_HEX: | 
|  | 119 | case S_STRING: | 
|  | 120 | printf("%s\n", def); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 121 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | default: | 
|  | 123 | ; | 
|  | 124 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | printf("%s", line); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 126 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } | 
|  | 128 |  | 
| Trevor Keith | 4356f48 | 2009-09-18 12:49:23 -0700 | [diff] [blame] | 129 | static int conf_string(struct menu *menu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { | 
|  | 131 | struct symbol *sym = menu->sym; | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 132 | const char *def; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 |  | 
|  | 134 | while (1) { | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 135 | printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | printf("(%s) ", sym->name); | 
|  | 137 | def = sym_get_string_value(sym); | 
|  | 138 | if (sym_get_string_value(sym)) | 
|  | 139 | printf("[%s] ", def); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 140 | if (!conf_askvalue(sym, def)) | 
|  | 141 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | switch (line[0]) { | 
|  | 143 | case '\n': | 
|  | 144 | break; | 
|  | 145 | case '?': | 
|  | 146 | /* print help */ | 
|  | 147 | if (line[1] == '\n') { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 148 | print_help(menu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | def = NULL; | 
|  | 150 | break; | 
|  | 151 | } | 
| Arnaud Lacombe | d8fc320 | 2011-05-31 12:30:26 -0400 | [diff] [blame] | 152 | /* fall through */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | default: | 
|  | 154 | line[strlen(line)-1] = 0; | 
|  | 155 | def = line; | 
|  | 156 | } | 
|  | 157 | if (def && sym_set_string_value(sym, def)) | 
|  | 158 | return 0; | 
|  | 159 | } | 
|  | 160 | } | 
|  | 161 |  | 
|  | 162 | static int conf_sym(struct menu *menu) | 
|  | 163 | { | 
|  | 164 | struct symbol *sym = menu->sym; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | tristate oldval, newval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 |  | 
|  | 167 | while (1) { | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 168 | printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | if (sym->name) | 
|  | 170 | printf("(%s) ", sym->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | putchar('['); | 
|  | 172 | oldval = sym_get_tristate_value(sym); | 
|  | 173 | switch (oldval) { | 
|  | 174 | case no: | 
|  | 175 | putchar('N'); | 
|  | 176 | break; | 
|  | 177 | case mod: | 
|  | 178 | putchar('M'); | 
|  | 179 | break; | 
|  | 180 | case yes: | 
|  | 181 | putchar('Y'); | 
|  | 182 | break; | 
|  | 183 | } | 
|  | 184 | if (oldval != no && sym_tristate_within_range(sym, no)) | 
|  | 185 | printf("/n"); | 
|  | 186 | if (oldval != mod && sym_tristate_within_range(sym, mod)) | 
|  | 187 | printf("/m"); | 
|  | 188 | if (oldval != yes && sym_tristate_within_range(sym, yes)) | 
|  | 189 | printf("/y"); | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 190 | if (menu_has_help(menu)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | printf("/?"); | 
|  | 192 | printf("] "); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 193 | if (!conf_askvalue(sym, sym_get_string_value(sym))) | 
|  | 194 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | strip(line); | 
|  | 196 |  | 
|  | 197 | switch (line[0]) { | 
|  | 198 | case 'n': | 
|  | 199 | case 'N': | 
|  | 200 | newval = no; | 
|  | 201 | if (!line[1] || !strcmp(&line[1], "o")) | 
|  | 202 | break; | 
|  | 203 | continue; | 
|  | 204 | case 'm': | 
|  | 205 | case 'M': | 
|  | 206 | newval = mod; | 
|  | 207 | if (!line[1]) | 
|  | 208 | break; | 
|  | 209 | continue; | 
|  | 210 | case 'y': | 
|  | 211 | case 'Y': | 
|  | 212 | newval = yes; | 
|  | 213 | if (!line[1] || !strcmp(&line[1], "es")) | 
|  | 214 | break; | 
|  | 215 | continue; | 
|  | 216 | case 0: | 
|  | 217 | newval = oldval; | 
|  | 218 | break; | 
|  | 219 | case '?': | 
|  | 220 | goto help; | 
|  | 221 | default: | 
|  | 222 | continue; | 
|  | 223 | } | 
|  | 224 | if (sym_set_tristate_value(sym, newval)) | 
|  | 225 | return 0; | 
|  | 226 | help: | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 227 | print_help(menu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } | 
|  | 229 | } | 
|  | 230 |  | 
|  | 231 | static int conf_choice(struct menu *menu) | 
|  | 232 | { | 
|  | 233 | struct symbol *sym, *def_sym; | 
|  | 234 | struct menu *child; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | bool is_new; | 
|  | 236 |  | 
|  | 237 | sym = menu->sym; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | is_new = !sym_has_value(sym); | 
|  | 239 | if (sym_is_changable(sym)) { | 
|  | 240 | conf_sym(menu); | 
|  | 241 | sym_calc_value(sym); | 
|  | 242 | switch (sym_get_tristate_value(sym)) { | 
|  | 243 | case no: | 
|  | 244 | return 1; | 
|  | 245 | case mod: | 
|  | 246 | return 0; | 
|  | 247 | case yes: | 
|  | 248 | break; | 
|  | 249 | } | 
|  | 250 | } else { | 
|  | 251 | switch (sym_get_tristate_value(sym)) { | 
|  | 252 | case no: | 
|  | 253 | return 1; | 
|  | 254 | case mod: | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 255 | printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | return 0; | 
|  | 257 | case yes: | 
|  | 258 | break; | 
|  | 259 | } | 
|  | 260 | } | 
|  | 261 |  | 
|  | 262 | while (1) { | 
|  | 263 | int cnt, def; | 
|  | 264 |  | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 265 | printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | def_sym = sym_get_choice_value(sym); | 
|  | 267 | cnt = def = 0; | 
| Roman Zippel | 40aee72 | 2006-04-09 17:26:39 +0200 | [diff] [blame] | 268 | line[0] = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | for (child = menu->list; child; child = child->next) { | 
|  | 270 | if (!menu_is_visible(child)) | 
|  | 271 | continue; | 
|  | 272 | if (!child->sym) { | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 273 | printf("%*c %s\n", indent, '*', _(menu_get_prompt(child))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | continue; | 
|  | 275 | } | 
|  | 276 | cnt++; | 
|  | 277 | if (child->sym == def_sym) { | 
|  | 278 | def = cnt; | 
|  | 279 | printf("%*c", indent, '>'); | 
|  | 280 | } else | 
|  | 281 | printf("%*c", indent, ' '); | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 282 | printf(" %d. %s", cnt, _(menu_get_prompt(child))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | if (child->sym->name) | 
|  | 284 | printf(" (%s)", child->sym->name); | 
|  | 285 | if (!sym_has_value(child->sym)) | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 286 | printf(_(" (NEW)")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | printf("\n"); | 
|  | 288 | } | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 289 | printf(_("%*schoice"), indent - 1, ""); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | if (cnt == 1) { | 
|  | 291 | printf("[1]: 1\n"); | 
|  | 292 | goto conf_childs; | 
|  | 293 | } | 
|  | 294 | printf("[1-%d", cnt); | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 295 | if (menu_has_help(menu)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | printf("?"); | 
|  | 297 | printf("]: "); | 
|  | 298 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 299 | case oldconfig: | 
|  | 300 | case silentoldconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | if (!is_new) { | 
|  | 302 | cnt = def; | 
|  | 303 | printf("%d\n", cnt); | 
|  | 304 | break; | 
|  | 305 | } | 
|  | 306 | check_stdin(); | 
| Arnaud Lacombe | d8fc320 | 2011-05-31 12:30:26 -0400 | [diff] [blame] | 307 | /* fall through */ | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 308 | case oldaskconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | fflush(stdout); | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 310 | xfgets(line, 128, stdin); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | strip(line); | 
|  | 312 | if (line[0] == '?') { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 313 | print_help(menu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | continue; | 
|  | 315 | } | 
|  | 316 | if (!line[0]) | 
|  | 317 | cnt = def; | 
|  | 318 | else if (isdigit(line[0])) | 
|  | 319 | cnt = atoi(line); | 
|  | 320 | else | 
|  | 321 | continue; | 
|  | 322 | break; | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 323 | default: | 
|  | 324 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } | 
|  | 326 |  | 
|  | 327 | conf_childs: | 
|  | 328 | for (child = menu->list; child; child = child->next) { | 
|  | 329 | if (!child->sym || !menu_is_visible(child)) | 
|  | 330 | continue; | 
|  | 331 | if (!--cnt) | 
|  | 332 | break; | 
|  | 333 | } | 
|  | 334 | if (!child) | 
|  | 335 | continue; | 
| Ben Hutchings | 3ba4162 | 2011-04-23 18:42:56 +0100 | [diff] [blame] | 336 | if (line[0] && line[strlen(line) - 1] == '?') { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 337 | print_help(child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | continue; | 
|  | 339 | } | 
|  | 340 | sym_set_choice_value(sym, child->sym); | 
| Jan Beulich | f5eaa32 | 2008-01-24 11:54:23 +0000 | [diff] [blame] | 341 | for (child = child->list; child; child = child->next) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | indent += 2; | 
| Jan Beulich | f5eaa32 | 2008-01-24 11:54:23 +0000 | [diff] [blame] | 343 | conf(child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | indent -= 2; | 
|  | 345 | } | 
|  | 346 | return 1; | 
|  | 347 | } | 
|  | 348 | } | 
|  | 349 |  | 
|  | 350 | static void conf(struct menu *menu) | 
|  | 351 | { | 
|  | 352 | struct symbol *sym; | 
|  | 353 | struct property *prop; | 
|  | 354 | struct menu *child; | 
|  | 355 |  | 
|  | 356 | if (!menu_is_visible(menu)) | 
|  | 357 | return; | 
|  | 358 |  | 
|  | 359 | sym = menu->sym; | 
|  | 360 | prop = menu->prompt; | 
|  | 361 | if (prop) { | 
|  | 362 | const char *prompt; | 
|  | 363 |  | 
|  | 364 | switch (prop->type) { | 
|  | 365 | case P_MENU: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 366 | if ((input_mode == silentoldconfig || | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 367 | input_mode == listnewconfig || | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 368 | input_mode == oldnoconfig) && | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 369 | rootEntry != menu) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | check_conf(menu); | 
|  | 371 | return; | 
|  | 372 | } | 
| Arnaud Lacombe | d8fc320 | 2011-05-31 12:30:26 -0400 | [diff] [blame] | 373 | /* fall through */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | case P_COMMENT: | 
|  | 375 | prompt = menu_get_prompt(menu); | 
|  | 376 | if (prompt) | 
|  | 377 | printf("%*c\n%*c %s\n%*c\n", | 
|  | 378 | indent, '*', | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 379 | indent, '*', _(prompt), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | indent, '*'); | 
|  | 381 | default: | 
|  | 382 | ; | 
|  | 383 | } | 
|  | 384 | } | 
|  | 385 |  | 
|  | 386 | if (!sym) | 
|  | 387 | goto conf_childs; | 
|  | 388 |  | 
|  | 389 | if (sym_is_choice(sym)) { | 
|  | 390 | conf_choice(menu); | 
|  | 391 | if (sym->curr.tri != mod) | 
|  | 392 | return; | 
|  | 393 | goto conf_childs; | 
|  | 394 | } | 
|  | 395 |  | 
|  | 396 | switch (sym->type) { | 
|  | 397 | case S_INT: | 
|  | 398 | case S_HEX: | 
|  | 399 | case S_STRING: | 
|  | 400 | conf_string(menu); | 
|  | 401 | break; | 
|  | 402 | default: | 
|  | 403 | conf_sym(menu); | 
|  | 404 | break; | 
|  | 405 | } | 
|  | 406 |  | 
|  | 407 | conf_childs: | 
|  | 408 | if (sym) | 
|  | 409 | indent += 2; | 
|  | 410 | for (child = menu->list; child; child = child->next) | 
|  | 411 | conf(child); | 
|  | 412 | if (sym) | 
|  | 413 | indent -= 2; | 
|  | 414 | } | 
|  | 415 |  | 
|  | 416 | static void check_conf(struct menu *menu) | 
|  | 417 | { | 
|  | 418 | struct symbol *sym; | 
|  | 419 | struct menu *child; | 
|  | 420 |  | 
|  | 421 | if (!menu_is_visible(menu)) | 
|  | 422 | return; | 
|  | 423 |  | 
|  | 424 | sym = menu->sym; | 
| Roman Zippel | 3f23ca2 | 2005-11-08 21:34:48 -0800 | [diff] [blame] | 425 | if (sym && !sym_has_value(sym)) { | 
|  | 426 | if (sym_is_changable(sym) || | 
|  | 427 | (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) { | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 428 | if (input_mode == listnewconfig) { | 
|  | 429 | if (sym->name && !sym_is_choice_value(sym)) { | 
| Arnaud Lacombe | ffb5957 | 2010-08-14 23:57:43 -0400 | [diff] [blame] | 430 | printf("%s%s\n", CONFIG_, sym->name); | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 431 | } | 
| Kyle McMartin | 71d8066 | 2010-09-01 11:21:30 -0400 | [diff] [blame] | 432 | } else if (input_mode != oldnoconfig) { | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 433 | if (!conf_cnt++) | 
|  | 434 | printf(_("*\n* Restart config...\n*\n")); | 
|  | 435 | rootEntry = menu_get_parent_menu(menu); | 
|  | 436 | conf(rootEntry); | 
|  | 437 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } | 
|  | 440 |  | 
|  | 441 | for (child = menu->list; child; child = child->next) | 
|  | 442 | check_conf(child); | 
|  | 443 | } | 
|  | 444 |  | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 445 | static struct option long_opts[] = { | 
|  | 446 | {"oldaskconfig",    no_argument,       NULL, oldaskconfig}, | 
|  | 447 | {"oldconfig",       no_argument,       NULL, oldconfig}, | 
|  | 448 | {"silentoldconfig", no_argument,       NULL, silentoldconfig}, | 
|  | 449 | {"defconfig",       optional_argument, NULL, defconfig}, | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 450 | {"savedefconfig",   required_argument, NULL, savedefconfig}, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 451 | {"allnoconfig",     no_argument,       NULL, allnoconfig}, | 
|  | 452 | {"allyesconfig",    no_argument,       NULL, allyesconfig}, | 
|  | 453 | {"allmodconfig",    no_argument,       NULL, allmodconfig}, | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 454 | {"alldefconfig",    no_argument,       NULL, alldefconfig}, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 455 | {"randconfig",      no_argument,       NULL, randconfig}, | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 456 | {"listnewconfig",   no_argument,       NULL, listnewconfig}, | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 457 | {"oldnoconfig",     no_argument,       NULL, oldnoconfig}, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 458 | {NULL, 0, NULL, 0} | 
|  | 459 | }; | 
|  | 460 |  | 
| Arnaud Lacombe | 3254399 | 2010-11-02 00:26:33 -0400 | [diff] [blame] | 461 | static void conf_usage(const char *progname) | 
|  | 462 | { | 
|  | 463 |  | 
|  | 464 | printf("Usage: %s [option] <kconfig-file>\n", progname); | 
|  | 465 | printf("[option] is _one_ of the following:\n"); | 
|  | 466 | printf("  --listnewconfig         List new options\n"); | 
|  | 467 | printf("  --oldaskconfig          Start a new configuration using a line-oriented program\n"); | 
|  | 468 | printf("  --oldconfig             Update a configuration using a provided .config as base\n"); | 
|  | 469 | printf("  --silentoldconfig       Same as oldconfig, but quietly, additionally update deps\n"); | 
|  | 470 | printf("  --oldnoconfig           Same as silentoldconfig but set new symbols to no\n"); | 
|  | 471 | printf("  --defconfig <file>      New config with default defined in <file>\n"); | 
|  | 472 | printf("  --savedefconfig <file>  Save the minimal current configuration to <file>\n"); | 
|  | 473 | printf("  --allnoconfig           New config where all options are answered with no\n"); | 
|  | 474 | printf("  --allyesconfig          New config where all options are answered with yes\n"); | 
|  | 475 | printf("  --allmodconfig          New config where all options are answered with mod\n"); | 
|  | 476 | printf("  --alldefconfig          New config with all symbols set to default\n"); | 
|  | 477 | printf("  --randconfig            New config with random answer to all options\n"); | 
|  | 478 | } | 
|  | 479 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | int main(int ac, char **av) | 
|  | 481 | { | 
| Arnaud Lacombe | 3254399 | 2010-11-02 00:26:33 -0400 | [diff] [blame] | 482 | const char *progname = av[0]; | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 483 | int opt; | 
| Arnaud Lacombe | 275744c | 2010-10-13 20:43:28 -0400 | [diff] [blame] | 484 | const char *name, *defconfig_file = NULL /* gcc uninit */; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | struct stat tmpstat; | 
|  | 486 |  | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 487 | setlocale(LC_ALL, ""); | 
|  | 488 | bindtextdomain(PACKAGE, LOCALEDIR); | 
|  | 489 | textdomain(PACKAGE); | 
|  | 490 |  | 
| Arnaud Lacombe | c94d3fb | 2010-08-23 12:01:24 -0400 | [diff] [blame] | 491 | while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 492 | input_mode = (enum input_mode)opt; | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 493 | switch (opt) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 494 | case silentoldconfig: | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 495 | sync_kconfig = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 497 | case defconfig: | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 498 | case savedefconfig: | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 499 | defconfig_file = optarg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 501 | case randconfig: | 
| Ingo Molnar | b0fe551 | 2009-03-12 15:15:31 +0100 | [diff] [blame] | 502 | { | 
|  | 503 | struct timeval now; | 
|  | 504 | unsigned int seed; | 
|  | 505 |  | 
|  | 506 | /* | 
|  | 507 | * Use microseconds derived seed, | 
|  | 508 | * compensate for systems where it may be zero | 
|  | 509 | */ | 
|  | 510 | gettimeofday(&now, NULL); | 
|  | 511 |  | 
|  | 512 | seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1)); | 
|  | 513 | srand(seed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | break; | 
| Ingo Molnar | b0fe551 | 2009-03-12 15:15:31 +0100 | [diff] [blame] | 515 | } | 
| Arnaud Lacombe | 3254399 | 2010-11-02 00:26:33 -0400 | [diff] [blame] | 516 | case oldaskconfig: | 
|  | 517 | case oldconfig: | 
|  | 518 | case allnoconfig: | 
|  | 519 | case allyesconfig: | 
|  | 520 | case allmodconfig: | 
|  | 521 | case alldefconfig: | 
|  | 522 | case listnewconfig: | 
|  | 523 | case oldnoconfig: | 
|  | 524 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 525 | case '?': | 
| Arnaud Lacombe | 3254399 | 2010-11-02 00:26:33 -0400 | [diff] [blame] | 526 | conf_usage(progname); | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 527 | exit(1); | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 528 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | } | 
|  | 530 | } | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 531 | if (ac == optind) { | 
| Arnaldo Carvalho de Melo | 3b9fa09 | 2005-05-05 15:09:46 -0700 | [diff] [blame] | 532 | printf(_("%s: Kconfig file missing\n"), av[0]); | 
| Arnaud Lacombe | 3254399 | 2010-11-02 00:26:33 -0400 | [diff] [blame] | 533 | conf_usage(progname); | 
| Randy Dunlap | 250725a | 2006-06-08 22:12:50 -0700 | [diff] [blame] | 534 | exit(1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | } | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 536 | name = av[optind]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | conf_parse(name); | 
|  | 538 | //zconfdump(stdout); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 539 | if (sync_kconfig) { | 
| Markus Heidelberg | 284026c | 2009-05-18 01:36:53 +0200 | [diff] [blame] | 540 | name = conf_get_configname(); | 
|  | 541 | if (stat(name, &tmpstat)) { | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 542 | fprintf(stderr, _("***\n" | 
| Arnaud Lacombe | 652cf98 | 2010-08-14 23:51:40 -0400 | [diff] [blame] | 543 | "*** Configuration file \"%s\" not found!\n" | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 544 | "***\n" | 
|  | 545 | "*** Please run some configurator (e.g. \"make oldconfig\" or\n" | 
|  | 546 | "*** \"make menuconfig\" or \"make xconfig\").\n" | 
| Markus Heidelberg | 284026c | 2009-05-18 01:36:53 +0200 | [diff] [blame] | 547 | "***\n"), name); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 548 | exit(1); | 
|  | 549 | } | 
|  | 550 | } | 
|  | 551 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 553 | case defconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | if (!defconfig_file) | 
|  | 555 | defconfig_file = conf_get_default_confname(); | 
|  | 556 | if (conf_read(defconfig_file)) { | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 557 | printf(_("***\n" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | "*** Can't find default configuration \"%s\"!\n" | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 559 | "***\n"), defconfig_file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | exit(1); | 
|  | 561 | } | 
|  | 562 | break; | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 563 | case savedefconfig: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 564 | case silentoldconfig: | 
|  | 565 | case oldaskconfig: | 
|  | 566 | case oldconfig: | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 567 | case listnewconfig: | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 568 | case oldnoconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | conf_read(NULL); | 
|  | 570 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 571 | case allnoconfig: | 
|  | 572 | case allyesconfig: | 
|  | 573 | case allmodconfig: | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 574 | case alldefconfig: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 575 | case randconfig: | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 576 | name = getenv("KCONFIG_ALLCONFIG"); | 
|  | 577 | if (name && !stat(name, &tmpstat)) { | 
| Roman Zippel | 669bfad | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 578 | conf_read_simple(name, S_DEF_USER); | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 579 | break; | 
|  | 580 | } | 
|  | 581 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 582 | case allnoconfig:	name = "allno.config"; break; | 
|  | 583 | case allyesconfig:	name = "allyes.config"; break; | 
|  | 584 | case allmodconfig:	name = "allmod.config"; break; | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 585 | case alldefconfig:	name = "alldef.config"; break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 586 | case randconfig:	name = "allrandom.config"; break; | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 587 | default: break; | 
|  | 588 | } | 
|  | 589 | if (!stat(name, &tmpstat)) | 
| Roman Zippel | 669bfad | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 590 | conf_read_simple(name, S_DEF_USER); | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 591 | else if (!stat("all.config", &tmpstat)) | 
| Roman Zippel | 669bfad | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 592 | conf_read_simple("all.config", S_DEF_USER); | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 593 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | default: | 
|  | 595 | break; | 
|  | 596 | } | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 597 |  | 
|  | 598 | if (sync_kconfig) { | 
|  | 599 | if (conf_get_changed()) { | 
|  | 600 | name = getenv("KCONFIG_NOSILENTUPDATE"); | 
|  | 601 | if (name && *name) { | 
|  | 602 | fprintf(stderr, | 
| Arnaud Lacombe | 652cf98 | 2010-08-14 23:51:40 -0400 | [diff] [blame] | 603 | _("\n*** The configuration requires explicit update.\n\n")); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 604 | return 1; | 
|  | 605 | } | 
|  | 606 | } | 
|  | 607 | valid_stdin = isatty(0) && isatty(1) && isatty(2); | 
|  | 608 | } | 
|  | 609 |  | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 610 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 611 | case allnoconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 612 | conf_set_all_new_symbols(def_no); | 
|  | 613 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 614 | case allyesconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 615 | conf_set_all_new_symbols(def_yes); | 
|  | 616 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 617 | case allmodconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 618 | conf_set_all_new_symbols(def_mod); | 
|  | 619 | break; | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 620 | case alldefconfig: | 
|  | 621 | conf_set_all_new_symbols(def_default); | 
|  | 622 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 623 | case randconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 624 | conf_set_all_new_symbols(def_random); | 
|  | 625 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 626 | case defconfig: | 
| Sam Ravnborg | 09748e1 | 2008-06-30 23:02:59 +0200 | [diff] [blame] | 627 | conf_set_all_new_symbols(def_default); | 
|  | 628 | break; | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 629 | case savedefconfig: | 
|  | 630 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 631 | case oldaskconfig: | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 632 | rootEntry = &rootmenu; | 
|  | 633 | conf(&rootmenu); | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 634 | input_mode = silentoldconfig; | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 635 | /* fall through */ | 
| Sam Ravnborg | 1482834 | 2010-08-06 07:13:54 +0200 | [diff] [blame] | 636 | case oldconfig: | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 637 | case listnewconfig: | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 638 | case oldnoconfig: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 639 | case silentoldconfig: | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 640 | /* Update until a loop caused no more changes */ | 
|  | 641 | do { | 
|  | 642 | conf_cnt = 0; | 
|  | 643 | check_conf(&rootmenu); | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 644 | } while (conf_cnt && | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 645 | (input_mode != listnewconfig && | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 646 | input_mode != oldnoconfig)); | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 647 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | } | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 649 |  | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 650 | if (sync_kconfig) { | 
|  | 651 | /* silentoldconfig is used during the build so we shall update autoconf. | 
|  | 652 | * All other commands are only used to generate a config. | 
|  | 653 | */ | 
|  | 654 | if (conf_get_changed() && conf_write(NULL)) { | 
| Arnaud Lacombe | 652cf98 | 2010-08-14 23:51:40 -0400 | [diff] [blame] | 655 | fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n")); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 656 | exit(1); | 
|  | 657 | } | 
|  | 658 | if (conf_write_autoconf()) { | 
| Arnaud Lacombe | 652cf98 | 2010-08-14 23:51:40 -0400 | [diff] [blame] | 659 | fprintf(stderr, _("\n*** Error during update of the configuration.\n\n")); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 660 | return 1; | 
|  | 661 | } | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 662 | } else if (input_mode == savedefconfig) { | 
|  | 663 | if (conf_write_defconfig(defconfig_file)) { | 
|  | 664 | fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"), | 
|  | 665 | defconfig_file); | 
|  | 666 | return 1; | 
|  | 667 | } | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 668 | } else if (input_mode != listnewconfig) { | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 669 | if (conf_write(NULL)) { | 
| Arnaud Lacombe | 652cf98 | 2010-08-14 23:51:40 -0400 | [diff] [blame] | 670 | fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n")); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 671 | exit(1); | 
|  | 672 | } | 
| Roman Zippel | c955cca | 2006-06-08 22:12:39 -0700 | [diff] [blame] | 673 | } | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 674 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } | 
| Arnaud Lacombe | ab63f58 | 2011-07-02 00:59:41 -0400 | [diff] [blame] | 676 |  | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 677 | /* | 
|  | 678 | * Helper function to facilitate fgets() by Jean Sacren. | 
|  | 679 | */ | 
| Arnaud Lacombe | ab63f58 | 2011-07-02 00:59:41 -0400 | [diff] [blame] | 680 | void xfgets(char *str, int size, FILE *in) | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 681 | { | 
|  | 682 | if (fgets(str, size, in) == NULL) | 
|  | 683 | fprintf(stderr, "\nError in reading or end of file.\n"); | 
|  | 684 | } |