| 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 |  | 
|  | 17 | #define LKC_DIRECT_LINK | 
|  | 18 | #include "lkc.h" | 
|  | 19 |  | 
|  | 20 | static void conf(struct menu *menu); | 
|  | 21 | static void check_conf(struct menu *menu); | 
|  | 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 | char *defconfig_file; | 
|  | 39 |  | 
|  | 40 | static int indent = 1; | 
|  | 41 | static int valid_stdin = 1; | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 42 | static int sync_kconfig; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | static int conf_cnt; | 
| J.A. Magallon | 48b9d03 | 2005-06-25 14:59:22 -0700 | [diff] [blame] | 44 | static char line[128]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | static struct menu *rootEntry; | 
|  | 46 |  | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 47 | static void print_help(struct menu *menu) | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 48 | { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 49 | struct gstr help = str_new(); | 
|  | 50 |  | 
|  | 51 | menu_get_ext_help(menu, &help); | 
|  | 52 |  | 
|  | 53 | printf("\n%s\n", str_get(&help)); | 
|  | 54 | str_free(&help); | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 55 | } | 
|  | 56 |  | 
| J.A. Magallon | 48b9d03 | 2005-06-25 14:59:22 -0700 | [diff] [blame] | 57 | static void strip(char *str) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { | 
| J.A. Magallon | 48b9d03 | 2005-06-25 14:59:22 -0700 | [diff] [blame] | 59 | char *p = str; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | int l; | 
|  | 61 |  | 
|  | 62 | while ((isspace(*p))) | 
|  | 63 | p++; | 
|  | 64 | l = strlen(p); | 
|  | 65 | if (p != str) | 
|  | 66 | memmove(str, p, l + 1); | 
|  | 67 | if (!l) | 
|  | 68 | return; | 
|  | 69 | p = str + l - 1; | 
|  | 70 | while ((isspace(*p))) | 
|  | 71 | *p-- = 0; | 
|  | 72 | } | 
|  | 73 |  | 
|  | 74 | static void check_stdin(void) | 
|  | 75 | { | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 76 | if (!valid_stdin) { | 
| Arnaldo Carvalho de Melo | 3b9fa09 | 2005-05-05 15:09:46 -0700 | [diff] [blame] | 77 | printf(_("aborted!\n\n")); | 
|  | 78 | printf(_("Console input/output is redirected. ")); | 
|  | 79 | printf(_("Run 'make oldconfig' to update configuration.\n\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | exit(1); | 
|  | 81 | } | 
|  | 82 | } | 
|  | 83 |  | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 84 | static int conf_askvalue(struct symbol *sym, const char *def) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { | 
|  | 86 | enum symbol_type type = sym_get_type(sym); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
|  | 88 | if (!sym_has_value(sym)) | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 89 | printf(_("(NEW) ")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 |  | 
|  | 91 | line[0] = '\n'; | 
|  | 92 | line[1] = 0; | 
|  | 93 |  | 
|  | 94 | if (!sym_is_changable(sym)) { | 
|  | 95 | printf("%s\n", def); | 
|  | 96 | line[0] = '\n'; | 
|  | 97 | line[1] = 0; | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 98 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } | 
|  | 100 |  | 
|  | 101 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 102 | case oldconfig: | 
|  | 103 | case silentoldconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | if (sym_has_value(sym)) { | 
|  | 105 | printf("%s\n", def); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 106 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } | 
|  | 108 | check_stdin(); | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 109 | case oldaskconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | fflush(stdout); | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 111 | xfgets(line, 128, stdin); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 112 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | default: | 
|  | 114 | break; | 
|  | 115 | } | 
|  | 116 |  | 
|  | 117 | switch (type) { | 
|  | 118 | case S_INT: | 
|  | 119 | case S_HEX: | 
|  | 120 | case S_STRING: | 
|  | 121 | printf("%s\n", def); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 122 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | default: | 
|  | 124 | ; | 
|  | 125 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | printf("%s", line); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 127 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } | 
|  | 129 |  | 
| Trevor Keith | 4356f48 | 2009-09-18 12:49:23 -0700 | [diff] [blame] | 130 | static int conf_string(struct menu *menu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { | 
|  | 132 | struct symbol *sym = menu->sym; | 
| Sam Ravnborg | 03d2912 | 2007-07-21 00:00:36 +0200 | [diff] [blame] | 133 | const char *def; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 |  | 
|  | 135 | while (1) { | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 136 | printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | printf("(%s) ", sym->name); | 
|  | 138 | def = sym_get_string_value(sym); | 
|  | 139 | if (sym_get_string_value(sym)) | 
|  | 140 | printf("[%s] ", def); | 
| Roman Zippel | f82f3f9 | 2007-08-30 05:06:17 +0200 | [diff] [blame] | 141 | if (!conf_askvalue(sym, def)) | 
|  | 142 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | switch (line[0]) { | 
|  | 144 | case '\n': | 
|  | 145 | break; | 
|  | 146 | case '?': | 
|  | 147 | /* print help */ | 
|  | 148 | if (line[1] == '\n') { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 149 | print_help(menu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | def = NULL; | 
|  | 151 | break; | 
|  | 152 | } | 
|  | 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(); | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 307 | case oldaskconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | fflush(stdout); | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 309 | xfgets(line, 128, stdin); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | strip(line); | 
|  | 311 | if (line[0] == '?') { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 312 | print_help(menu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | continue; | 
|  | 314 | } | 
|  | 315 | if (!line[0]) | 
|  | 316 | cnt = def; | 
|  | 317 | else if (isdigit(line[0])) | 
|  | 318 | cnt = atoi(line); | 
|  | 319 | else | 
|  | 320 | continue; | 
|  | 321 | break; | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 322 | default: | 
|  | 323 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | } | 
|  | 325 |  | 
|  | 326 | conf_childs: | 
|  | 327 | for (child = menu->list; child; child = child->next) { | 
|  | 328 | if (!child->sym || !menu_is_visible(child)) | 
|  | 329 | continue; | 
|  | 330 | if (!--cnt) | 
|  | 331 | break; | 
|  | 332 | } | 
|  | 333 | if (!child) | 
|  | 334 | continue; | 
|  | 335 | if (line[strlen(line) - 1] == '?') { | 
| Cheng Renquan | 66c4bd8 | 2009-07-12 16:11:48 +0800 | [diff] [blame] | 336 | print_help(child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | continue; | 
|  | 338 | } | 
|  | 339 | sym_set_choice_value(sym, child->sym); | 
| Jan Beulich | f5eaa32 | 2008-01-24 11:54:23 +0000 | [diff] [blame] | 340 | for (child = child->list; child; child = child->next) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | indent += 2; | 
| Jan Beulich | f5eaa32 | 2008-01-24 11:54:23 +0000 | [diff] [blame] | 342 | conf(child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | indent -= 2; | 
|  | 344 | } | 
|  | 345 | return 1; | 
|  | 346 | } | 
|  | 347 | } | 
|  | 348 |  | 
|  | 349 | static void conf(struct menu *menu) | 
|  | 350 | { | 
|  | 351 | struct symbol *sym; | 
|  | 352 | struct property *prop; | 
|  | 353 | struct menu *child; | 
|  | 354 |  | 
|  | 355 | if (!menu_is_visible(menu)) | 
|  | 356 | return; | 
|  | 357 |  | 
|  | 358 | sym = menu->sym; | 
|  | 359 | prop = menu->prompt; | 
|  | 360 | if (prop) { | 
|  | 361 | const char *prompt; | 
|  | 362 |  | 
|  | 363 | switch (prop->type) { | 
|  | 364 | case P_MENU: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 365 | if ((input_mode == silentoldconfig || | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 366 | input_mode == listnewconfig || | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 367 | input_mode == oldnoconfig) && | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 368 | rootEntry != menu) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | check_conf(menu); | 
|  | 370 | return; | 
|  | 371 | } | 
|  | 372 | case P_COMMENT: | 
|  | 373 | prompt = menu_get_prompt(menu); | 
|  | 374 | if (prompt) | 
|  | 375 | printf("%*c\n%*c %s\n%*c\n", | 
|  | 376 | indent, '*', | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 377 | indent, '*', _(prompt), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | indent, '*'); | 
|  | 379 | default: | 
|  | 380 | ; | 
|  | 381 | } | 
|  | 382 | } | 
|  | 383 |  | 
|  | 384 | if (!sym) | 
|  | 385 | goto conf_childs; | 
|  | 386 |  | 
|  | 387 | if (sym_is_choice(sym)) { | 
|  | 388 | conf_choice(menu); | 
|  | 389 | if (sym->curr.tri != mod) | 
|  | 390 | return; | 
|  | 391 | goto conf_childs; | 
|  | 392 | } | 
|  | 393 |  | 
|  | 394 | switch (sym->type) { | 
|  | 395 | case S_INT: | 
|  | 396 | case S_HEX: | 
|  | 397 | case S_STRING: | 
|  | 398 | conf_string(menu); | 
|  | 399 | break; | 
|  | 400 | default: | 
|  | 401 | conf_sym(menu); | 
|  | 402 | break; | 
|  | 403 | } | 
|  | 404 |  | 
|  | 405 | conf_childs: | 
|  | 406 | if (sym) | 
|  | 407 | indent += 2; | 
|  | 408 | for (child = menu->list; child; child = child->next) | 
|  | 409 | conf(child); | 
|  | 410 | if (sym) | 
|  | 411 | indent -= 2; | 
|  | 412 | } | 
|  | 413 |  | 
|  | 414 | static void check_conf(struct menu *menu) | 
|  | 415 | { | 
|  | 416 | struct symbol *sym; | 
|  | 417 | struct menu *child; | 
|  | 418 |  | 
|  | 419 | if (!menu_is_visible(menu)) | 
|  | 420 | return; | 
|  | 421 |  | 
|  | 422 | sym = menu->sym; | 
| Roman Zippel | 3f23ca2 | 2005-11-08 21:34:48 -0800 | [diff] [blame] | 423 | if (sym && !sym_has_value(sym)) { | 
|  | 424 | if (sym_is_changable(sym) || | 
|  | 425 | (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) { | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 426 | if (input_mode == listnewconfig) { | 
|  | 427 | if (sym->name && !sym_is_choice_value(sym)) { | 
|  | 428 | printf("CONFIG_%s\n", sym->name); | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 429 | } | 
| Kyle McMartin | e9203c9 | 2010-09-01 11:21:30 -0400 | [diff] [blame] | 430 | } else if (input_mode != oldnoconfig) { | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 431 | if (!conf_cnt++) | 
|  | 432 | printf(_("*\n* Restart config...\n*\n")); | 
|  | 433 | rootEntry = menu_get_parent_menu(menu); | 
|  | 434 | conf(rootEntry); | 
|  | 435 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } | 
|  | 438 |  | 
|  | 439 | for (child = menu->list; child; child = child->next) | 
|  | 440 | check_conf(child); | 
|  | 441 | } | 
|  | 442 |  | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 443 | static struct option long_opts[] = { | 
|  | 444 | {"oldaskconfig",    no_argument,       NULL, oldaskconfig}, | 
|  | 445 | {"oldconfig",       no_argument,       NULL, oldconfig}, | 
|  | 446 | {"silentoldconfig", no_argument,       NULL, silentoldconfig}, | 
|  | 447 | {"defconfig",       optional_argument, NULL, defconfig}, | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 448 | {"savedefconfig",   required_argument, NULL, savedefconfig}, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 449 | {"allnoconfig",     no_argument,       NULL, allnoconfig}, | 
|  | 450 | {"allyesconfig",    no_argument,       NULL, allyesconfig}, | 
|  | 451 | {"allmodconfig",    no_argument,       NULL, allmodconfig}, | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 452 | {"alldefconfig",    no_argument,       NULL, alldefconfig}, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 453 | {"randconfig",      no_argument,       NULL, randconfig}, | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 454 | {"listnewconfig",   no_argument,       NULL, listnewconfig}, | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 455 | {"oldnoconfig",     no_argument,       NULL, oldnoconfig}, | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 456 | {NULL, 0, NULL, 0} | 
|  | 457 | }; | 
|  | 458 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | int main(int ac, char **av) | 
|  | 460 | { | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 461 | int opt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | const char *name; | 
|  | 463 | struct stat tmpstat; | 
|  | 464 |  | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 465 | setlocale(LC_ALL, ""); | 
|  | 466 | bindtextdomain(PACKAGE, LOCALEDIR); | 
|  | 467 | textdomain(PACKAGE); | 
|  | 468 |  | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 469 | while ((opt = getopt_long_only(ac, av, "", long_opts, NULL)) != -1) { | 
|  | 470 | input_mode = (enum input_mode)opt; | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 471 | switch (opt) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 472 | case silentoldconfig: | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 473 | sync_kconfig = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 475 | case defconfig: | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 476 | case savedefconfig: | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 477 | defconfig_file = optarg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 479 | case randconfig: | 
| Ingo Molnar | b0fe551 | 2009-03-12 15:15:31 +0100 | [diff] [blame] | 480 | { | 
|  | 481 | struct timeval now; | 
|  | 482 | unsigned int seed; | 
|  | 483 |  | 
|  | 484 | /* | 
|  | 485 | * Use microseconds derived seed, | 
|  | 486 | * compensate for systems where it may be zero | 
|  | 487 | */ | 
|  | 488 | gettimeofday(&now, NULL); | 
|  | 489 |  | 
|  | 490 | seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1)); | 
|  | 491 | srand(seed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | break; | 
| Ingo Molnar | b0fe551 | 2009-03-12 15:15:31 +0100 | [diff] [blame] | 493 | } | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 494 | case '?': | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 495 | fprintf(stderr, _("See README for usage info\n")); | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 496 | exit(1); | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 497 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } | 
|  | 499 | } | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 500 | if (ac == optind) { | 
| Arnaldo Carvalho de Melo | 3b9fa09 | 2005-05-05 15:09:46 -0700 | [diff] [blame] | 501 | printf(_("%s: Kconfig file missing\n"), av[0]); | 
| Randy Dunlap | 250725a | 2006-06-08 22:12:50 -0700 | [diff] [blame] | 502 | exit(1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | } | 
| Andres Salomon | 2f4b489 | 2007-12-17 01:34:58 -0500 | [diff] [blame] | 504 | name = av[optind]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | conf_parse(name); | 
|  | 506 | //zconfdump(stdout); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 507 | if (sync_kconfig) { | 
| Markus Heidelberg | 284026c | 2009-05-18 01:36:53 +0200 | [diff] [blame] | 508 | name = conf_get_configname(); | 
|  | 509 | if (stat(name, &tmpstat)) { | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 510 | fprintf(stderr, _("***\n" | 
|  | 511 | "*** You have not yet configured your kernel!\n" | 
| Markus Heidelberg | 284026c | 2009-05-18 01:36:53 +0200 | [diff] [blame] | 512 | "*** (missing kernel config file \"%s\")\n" | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 513 | "***\n" | 
|  | 514 | "*** Please run some configurator (e.g. \"make oldconfig\" or\n" | 
|  | 515 | "*** \"make menuconfig\" or \"make xconfig\").\n" | 
| Markus Heidelberg | 284026c | 2009-05-18 01:36:53 +0200 | [diff] [blame] | 516 | "***\n"), name); | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 517 | exit(1); | 
|  | 518 | } | 
|  | 519 | } | 
|  | 520 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 522 | case defconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | if (!defconfig_file) | 
|  | 524 | defconfig_file = conf_get_default_confname(); | 
|  | 525 | if (conf_read(defconfig_file)) { | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 526 | printf(_("***\n" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | "*** Can't find default configuration \"%s\"!\n" | 
| EGRY Gabor | 534a450 | 2008-01-11 23:44:39 +0100 | [diff] [blame] | 528 | "***\n"), defconfig_file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | exit(1); | 
|  | 530 | } | 
|  | 531 | break; | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 532 | case savedefconfig: | 
|  | 533 | conf_read(NULL); | 
|  | 534 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 535 | case silentoldconfig: | 
|  | 536 | case oldaskconfig: | 
|  | 537 | case oldconfig: | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 538 | case listnewconfig: | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 539 | case oldnoconfig: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | conf_read(NULL); | 
|  | 541 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 542 | case allnoconfig: | 
|  | 543 | case allyesconfig: | 
|  | 544 | case allmodconfig: | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 545 | case alldefconfig: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 546 | case randconfig: | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 547 | name = getenv("KCONFIG_ALLCONFIG"); | 
|  | 548 | if (name && !stat(name, &tmpstat)) { | 
| Roman Zippel | 669bfad | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 549 | conf_read_simple(name, S_DEF_USER); | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 550 | break; | 
|  | 551 | } | 
|  | 552 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 553 | case allnoconfig:	name = "allno.config"; break; | 
|  | 554 | case allyesconfig:	name = "allyes.config"; break; | 
|  | 555 | case allmodconfig:	name = "allmod.config"; break; | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 556 | case alldefconfig:	name = "alldef.config"; break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 557 | case randconfig:	name = "allrandom.config"; break; | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 558 | default: break; | 
|  | 559 | } | 
|  | 560 | if (!stat(name, &tmpstat)) | 
| Roman Zippel | 669bfad | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 561 | conf_read_simple(name, S_DEF_USER); | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 562 | else if (!stat("all.config", &tmpstat)) | 
| Roman Zippel | 669bfad | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 563 | conf_read_simple("all.config", S_DEF_USER); | 
| Roman Zippel | 9038916 | 2005-11-08 21:34:49 -0800 | [diff] [blame] | 564 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | default: | 
|  | 566 | break; | 
|  | 567 | } | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 568 |  | 
|  | 569 | if (sync_kconfig) { | 
|  | 570 | if (conf_get_changed()) { | 
|  | 571 | name = getenv("KCONFIG_NOSILENTUPDATE"); | 
|  | 572 | if (name && *name) { | 
|  | 573 | fprintf(stderr, | 
|  | 574 | _("\n*** Kernel configuration requires explicit update.\n\n")); | 
|  | 575 | return 1; | 
|  | 576 | } | 
|  | 577 | } | 
|  | 578 | valid_stdin = isatty(0) && isatty(1) && isatty(2); | 
|  | 579 | } | 
|  | 580 |  | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 581 | switch (input_mode) { | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 582 | case allnoconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 583 | conf_set_all_new_symbols(def_no); | 
|  | 584 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 585 | case allyesconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 586 | conf_set_all_new_symbols(def_yes); | 
|  | 587 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 588 | case allmodconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 589 | conf_set_all_new_symbols(def_mod); | 
|  | 590 | break; | 
| Sam Ravnborg | 0748cb3 | 2010-07-31 23:35:31 +0200 | [diff] [blame] | 591 | case alldefconfig: | 
|  | 592 | conf_set_all_new_symbols(def_default); | 
|  | 593 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 594 | case randconfig: | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 595 | conf_set_all_new_symbols(def_random); | 
|  | 596 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 597 | case defconfig: | 
| Sam Ravnborg | 09748e1 | 2008-06-30 23:02:59 +0200 | [diff] [blame] | 598 | conf_set_all_new_symbols(def_default); | 
|  | 599 | break; | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 600 | case savedefconfig: | 
|  | 601 | break; | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 602 | case oldaskconfig: | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 603 | rootEntry = &rootmenu; | 
|  | 604 | conf(&rootmenu); | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 605 | input_mode = silentoldconfig; | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 606 | /* fall through */ | 
| Sam Ravnborg | 1482834 | 2010-08-06 07:13:54 +0200 | [diff] [blame] | 607 | case oldconfig: | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 608 | case listnewconfig: | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 609 | case oldnoconfig: | 
| Sam Ravnborg | 4062f1a | 2010-07-31 23:35:26 +0200 | [diff] [blame] | 610 | case silentoldconfig: | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 611 | /* Update until a loop caused no more changes */ | 
|  | 612 | do { | 
|  | 613 | conf_cnt = 0; | 
|  | 614 | check_conf(&rootmenu); | 
| Aristeu Rozanski | f0778c8 | 2010-05-06 12:48:34 -0400 | [diff] [blame] | 615 | } while (conf_cnt && | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 616 | (input_mode != listnewconfig && | 
| Sam Ravnborg | ef61ca8 | 2010-07-31 23:35:27 +0200 | [diff] [blame] | 617 | input_mode != oldnoconfig)); | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 618 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } | 
| Sam Ravnborg | f443d2e | 2008-06-30 22:45:38 +0200 | [diff] [blame] | 620 |  | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 621 | if (sync_kconfig) { | 
|  | 622 | /* silentoldconfig is used during the build so we shall update autoconf. | 
|  | 623 | * All other commands are only used to generate a config. | 
|  | 624 | */ | 
|  | 625 | if (conf_get_changed() && conf_write(NULL)) { | 
|  | 626 | fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n")); | 
|  | 627 | exit(1); | 
|  | 628 | } | 
|  | 629 | if (conf_write_autoconf()) { | 
|  | 630 | fprintf(stderr, _("\n*** Error during update of the kernel configuration.\n\n")); | 
|  | 631 | return 1; | 
|  | 632 | } | 
| Sam Ravnborg | 7cf3d73 | 2010-07-31 23:35:34 +0200 | [diff] [blame] | 633 | } else if (input_mode == savedefconfig) { | 
|  | 634 | if (conf_write_defconfig(defconfig_file)) { | 
|  | 635 | fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"), | 
|  | 636 | defconfig_file); | 
|  | 637 | return 1; | 
|  | 638 | } | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 639 | } else if (input_mode != listnewconfig) { | 
| zippel@linux-m68k.org | 204c96f | 2008-09-29 05:27:10 +0200 | [diff] [blame] | 640 | if (conf_write(NULL)) { | 
|  | 641 | fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n")); | 
|  | 642 | exit(1); | 
|  | 643 | } | 
| Roman Zippel | c955cca | 2006-06-08 22:12:39 -0700 | [diff] [blame] | 644 | } | 
| Sam Ravnborg | 861b4ea | 2010-07-31 23:35:28 +0200 | [diff] [blame] | 645 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } | 
| Jean Sacren | 4418a2b | 2010-08-04 16:03:16 -0600 | [diff] [blame] | 647 | /* | 
|  | 648 | * Helper function to facilitate fgets() by Jean Sacren. | 
|  | 649 | */ | 
|  | 650 | void xfgets(str, size, in) | 
|  | 651 | char *str; | 
|  | 652 | int size; | 
|  | 653 | FILE *in; | 
|  | 654 | { | 
|  | 655 | if (fgets(str, size, in) == NULL) | 
|  | 656 | fprintf(stderr, "\nError in reading or end of file.\n"); | 
|  | 657 | } |