blob: 4da3b4adfad233cb97728b0e0278f8143919cee3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
EGRY Gabor534a4502008-01-11 23:44:39 +01006#include <locale.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <ctype.h>
Randy Dunlap9dfb5632006-04-18 22:21:53 -07008#include <stdio.h>
Ladislav Michl75ff4302008-01-09 16:36:19 +01009#include <stdlib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <time.h>
Ladislav Michl75ff4302008-01-09 16:36:19 +010012#include <unistd.h>
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020013#include <getopt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <sys/stat.h>
Ingo Molnarb0fe5512009-03-12 15:15:31 +010015#include <sys/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "lkc.h"
18
19static void conf(struct menu *menu);
20static void check_conf(struct menu *menu);
Arnaud Lacombeab63f582011-07-02 00:59:41 -040021static void xfgets(char *str, int size, FILE *in);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020023enum input_mode {
24 oldaskconfig,
25 silentoldconfig,
26 oldconfig,
27 allnoconfig,
28 allyesconfig,
29 allmodconfig,
Sam Ravnborg0748cb32010-07-31 23:35:31 +020030 alldefconfig,
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020031 randconfig,
32 defconfig,
Sam Ravnborg7cf3d732010-07-31 23:35:34 +020033 savedefconfig,
Sam Ravnborg861b4ea2010-07-31 23:35:28 +020034 listnewconfig,
Adam Leefb16d892012-09-01 01:05:17 +080035 olddefconfig,
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020036} input_mode = oldaskconfig;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static int indent = 1;
39static int valid_stdin = 1;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +020040static int sync_kconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static int conf_cnt;
J.A. Magallon48b9d032005-06-25 14:59:22 -070042static char line[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static struct menu *rootEntry;
44
Cheng Renquan66c4bd82009-07-12 16:11:48 +080045static void print_help(struct menu *menu)
Sam Ravnborg03d29122007-07-21 00:00:36 +020046{
Cheng Renquan66c4bd82009-07-12 16:11:48 +080047 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 Ravnborg03d29122007-07-21 00:00:36 +020053}
54
J.A. Magallon48b9d032005-06-25 14:59:22 -070055static void strip(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
J.A. Magallon48b9d032005-06-25 14:59:22 -070057 char *p = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 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
72static void check_stdin(void)
73{
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +020074 if (!valid_stdin) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070075 printf(_("aborted!\n\n"));
76 printf(_("Console input/output is redirected. "));
77 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 exit(1);
79 }
80}
81
Roman Zippelf82f3f92007-08-30 05:06:17 +020082static int conf_askvalue(struct symbol *sym, const char *def)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 enum symbol_type type = sym_get_type(sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 if (!sym_has_value(sym))
EGRY Gabor534a4502008-01-11 23:44:39 +010087 printf(_("(NEW) "));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
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 Zippelf82f3f92007-08-30 05:06:17 +020096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
99 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200100 case oldconfig:
101 case silentoldconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (sym_has_value(sym)) {
103 printf("%s\n", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200104 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106 check_stdin();
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400107 /* fall through */
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200108 case oldaskconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 fflush(stdout);
Jean Sacren4418a2b2010-08-04 16:03:16 -0600110 xfgets(line, 128, stdin);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200111 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 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 Zippelf82f3f92007-08-30 05:06:17 +0200121 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 default:
123 ;
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 printf("%s", line);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200126 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Trevor Keith4356f482009-09-18 12:49:23 -0700129static int conf_string(struct menu *menu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 struct symbol *sym = menu->sym;
Sam Ravnborg03d29122007-07-21 00:00:36 +0200132 const char *def;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 while (1) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100135 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 printf("(%s) ", sym->name);
137 def = sym_get_string_value(sym);
138 if (sym_get_string_value(sym))
139 printf("[%s] ", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200140 if (!conf_askvalue(sym, def))
141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 switch (line[0]) {
143 case '\n':
144 break;
145 case '?':
146 /* print help */
147 if (line[1] == '\n') {
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800148 print_help(menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 def = NULL;
150 break;
151 }
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400152 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 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
162static int conf_sym(struct menu *menu)
163{
164 struct symbol *sym = menu->sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 tristate oldval, newval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 while (1) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100168 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (sym->name)
170 printf("(%s) ", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 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 Ravnborg03d29122007-07-21 00:00:36 +0200190 if (menu_has_help(menu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 printf("/?");
192 printf("] ");
Roman Zippelf82f3f92007-08-30 05:06:17 +0200193 if (!conf_askvalue(sym, sym_get_string_value(sym)))
194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 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;
226help:
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800227 print_help(menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229}
230
231static int conf_choice(struct menu *menu)
232{
233 struct symbol *sym, *def_sym;
234 struct menu *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 bool is_new;
236
237 sym = menu->sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 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 Gabor534a4502008-01-11 23:44:39 +0100255 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return 0;
257 case yes:
258 break;
259 }
260 }
261
262 while (1) {
263 int cnt, def;
264
EGRY Gabor534a4502008-01-11 23:44:39 +0100265 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 def_sym = sym_get_choice_value(sym);
267 cnt = def = 0;
Roman Zippel40aee722006-04-09 17:26:39 +0200268 line[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 for (child = menu->list; child; child = child->next) {
270 if (!menu_is_visible(child))
271 continue;
272 if (!child->sym) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100273 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 continue;
275 }
276 cnt++;
277 if (child->sym == def_sym) {
278 def = cnt;
279 printf("%*c", indent, '>');
280 } else
281 printf("%*c", indent, ' ');
EGRY Gabor534a4502008-01-11 23:44:39 +0100282 printf(" %d. %s", cnt, _(menu_get_prompt(child)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (child->sym->name)
284 printf(" (%s)", child->sym->name);
285 if (!sym_has_value(child->sym))
EGRY Gabor534a4502008-01-11 23:44:39 +0100286 printf(_(" (NEW)"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 printf("\n");
288 }
EGRY Gabor534a4502008-01-11 23:44:39 +0100289 printf(_("%*schoice"), indent - 1, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (cnt == 1) {
291 printf("[1]: 1\n");
292 goto conf_childs;
293 }
294 printf("[1-%d", cnt);
Sam Ravnborg03d29122007-07-21 00:00:36 +0200295 if (menu_has_help(menu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 printf("?");
297 printf("]: ");
298 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200299 case oldconfig:
300 case silentoldconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!is_new) {
302 cnt = def;
303 printf("%d\n", cnt);
304 break;
305 }
306 check_stdin();
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400307 /* fall through */
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200308 case oldaskconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 fflush(stdout);
Jean Sacren4418a2b2010-08-04 16:03:16 -0600310 xfgets(line, 128, stdin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 strip(line);
312 if (line[0] == '?') {
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800313 print_help(menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 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 Ravnborgf443d2e2008-06-30 22:45:38 +0200323 default:
324 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
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 Hutchings3ba41622011-04-23 18:42:56 +0100336 if (line[0] && line[strlen(line) - 1] == '?') {
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800337 print_help(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 continue;
339 }
340 sym_set_choice_value(sym, child->sym);
Jan Beulichf5eaa322008-01-24 11:54:23 +0000341 for (child = child->list; child; child = child->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 indent += 2;
Jan Beulichf5eaa322008-01-24 11:54:23 +0000343 conf(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 indent -= 2;
345 }
346 return 1;
347 }
348}
349
350static 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 Ravnborg4062f1a2010-07-31 23:35:26 +0200366 if ((input_mode == silentoldconfig ||
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200367 input_mode == listnewconfig ||
Adam Leefb16d892012-09-01 01:05:17 +0800368 input_mode == olddefconfig) &&
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400369 rootEntry != menu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 check_conf(menu);
371 return;
372 }
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400373 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 case P_COMMENT:
375 prompt = menu_get_prompt(menu);
376 if (prompt)
377 printf("%*c\n%*c %s\n%*c\n",
378 indent, '*',
EGRY Gabor534a4502008-01-11 23:44:39 +0100379 indent, '*', _(prompt),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 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
407conf_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
416static 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 Zippel3f23ca22005-11-08 21:34:48 -0800425 if (sym && !sym_has_value(sym)) {
426 if (sym_is_changable(sym) ||
427 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200428 if (input_mode == listnewconfig) {
429 if (sym->name && !sym_is_choice_value(sym)) {
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400430 printf("%s%s\n", CONFIG_, sym->name);
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400431 }
Adam Leefb16d892012-09-01 01:05:17 +0800432 } else if (input_mode != olddefconfig) {
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400433 if (!conf_cnt++)
434 printf(_("*\n* Restart config...\n*\n"));
435 rootEntry = menu_get_parent_menu(menu);
436 conf(rootEntry);
437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
441 for (child = menu->list; child; child = child->next)
442 check_conf(child);
443}
444
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200445static 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 Ravnborg7cf3d732010-07-31 23:35:34 +0200450 {"savedefconfig", required_argument, NULL, savedefconfig},
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200451 {"allnoconfig", no_argument, NULL, allnoconfig},
452 {"allyesconfig", no_argument, NULL, allyesconfig},
453 {"allmodconfig", no_argument, NULL, allmodconfig},
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200454 {"alldefconfig", no_argument, NULL, alldefconfig},
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200455 {"randconfig", no_argument, NULL, randconfig},
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200456 {"listnewconfig", no_argument, NULL, listnewconfig},
Adam Leefb16d892012-09-01 01:05:17 +0800457 {"olddefconfig", no_argument, NULL, olddefconfig},
458 /*
459 * oldnoconfig is an alias of olddefconfig, because people already
460 * are dependent on its behavior(sets new symbols to their default
461 * value but not 'n') with the counter-intuitive name.
462 */
463 {"oldnoconfig", no_argument, NULL, olddefconfig},
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200464 {NULL, 0, NULL, 0}
465};
466
Arnaud Lacombe32543992010-11-02 00:26:33 -0400467static void conf_usage(const char *progname)
468{
469
470 printf("Usage: %s [option] <kconfig-file>\n", progname);
471 printf("[option] is _one_ of the following:\n");
472 printf(" --listnewconfig List new options\n");
473 printf(" --oldaskconfig Start a new configuration using a line-oriented program\n");
474 printf(" --oldconfig Update a configuration using a provided .config as base\n");
475 printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n");
Adam Leefb16d892012-09-01 01:05:17 +0800476 printf(" --olddefconfig Same as silentoldconfig but sets new symbols to their default value\n");
477 printf(" --oldnoconfig An alias of olddefconfig\n");
Arnaud Lacombe32543992010-11-02 00:26:33 -0400478 printf(" --defconfig <file> New config with default defined in <file>\n");
479 printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n");
480 printf(" --allnoconfig New config where all options are answered with no\n");
481 printf(" --allyesconfig New config where all options are answered with yes\n");
482 printf(" --allmodconfig New config where all options are answered with mod\n");
483 printf(" --alldefconfig New config with all symbols set to default\n");
484 printf(" --randconfig New config with random answer to all options\n");
485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487int main(int ac, char **av)
488{
Arnaud Lacombe32543992010-11-02 00:26:33 -0400489 const char *progname = av[0];
Andres Salomon2f4b4892007-12-17 01:34:58 -0500490 int opt;
Arnaud Lacombe275744c2010-10-13 20:43:28 -0400491 const char *name, *defconfig_file = NULL /* gcc uninit */;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct stat tmpstat;
493
EGRY Gabor534a4502008-01-11 23:44:39 +0100494 setlocale(LC_ALL, "");
495 bindtextdomain(PACKAGE, LOCALEDIR);
496 textdomain(PACKAGE);
497
Arnaud Lacombec94d3fb2010-08-23 12:01:24 -0400498 while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200499 input_mode = (enum input_mode)opt;
Andres Salomon2f4b4892007-12-17 01:34:58 -0500500 switch (opt) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200501 case silentoldconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200502 sync_kconfig = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200504 case defconfig:
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200505 case savedefconfig:
Andres Salomon2f4b4892007-12-17 01:34:58 -0500506 defconfig_file = optarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200508 case randconfig:
Ingo Molnarb0fe5512009-03-12 15:15:31 +0100509 {
510 struct timeval now;
511 unsigned int seed;
512
513 /*
514 * Use microseconds derived seed,
515 * compensate for systems where it may be zero
516 */
517 gettimeofday(&now, NULL);
518
519 seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1));
520 srand(seed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 break;
Ingo Molnarb0fe5512009-03-12 15:15:31 +0100522 }
Arnaud Lacombe32543992010-11-02 00:26:33 -0400523 case oldaskconfig:
524 case oldconfig:
525 case allnoconfig:
526 case allyesconfig:
527 case allmodconfig:
528 case alldefconfig:
529 case listnewconfig:
Adam Leefb16d892012-09-01 01:05:17 +0800530 case olddefconfig:
Arnaud Lacombe32543992010-11-02 00:26:33 -0400531 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200532 case '?':
Arnaud Lacombe32543992010-11-02 00:26:33 -0400533 conf_usage(progname);
Andres Salomon2f4b4892007-12-17 01:34:58 -0500534 exit(1);
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500538 if (ac == optind) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700539 printf(_("%s: Kconfig file missing\n"), av[0]);
Arnaud Lacombe32543992010-11-02 00:26:33 -0400540 conf_usage(progname);
Randy Dunlap250725a2006-06-08 22:12:50 -0700541 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500543 name = av[optind];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 conf_parse(name);
545 //zconfdump(stdout);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200546 if (sync_kconfig) {
Markus Heidelberg284026c2009-05-18 01:36:53 +0200547 name = conf_get_configname();
548 if (stat(name, &tmpstat)) {
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200549 fprintf(stderr, _("***\n"
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400550 "*** Configuration file \"%s\" not found!\n"
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200551 "***\n"
552 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
553 "*** \"make menuconfig\" or \"make xconfig\").\n"
Markus Heidelberg284026c2009-05-18 01:36:53 +0200554 "***\n"), name);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200555 exit(1);
556 }
557 }
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200560 case defconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (!defconfig_file)
562 defconfig_file = conf_get_default_confname();
563 if (conf_read(defconfig_file)) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100564 printf(_("***\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 "*** Can't find default configuration \"%s\"!\n"
EGRY Gabor534a4502008-01-11 23:44:39 +0100566 "***\n"), defconfig_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 exit(1);
568 }
569 break;
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200570 case savedefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200571 case silentoldconfig:
572 case oldaskconfig:
573 case oldconfig:
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200574 case listnewconfig:
Adam Leefb16d892012-09-01 01:05:17 +0800575 case olddefconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 conf_read(NULL);
577 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200578 case allnoconfig:
579 case allyesconfig:
580 case allmodconfig:
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200581 case alldefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200582 case randconfig:
Roman Zippel90389162005-11-08 21:34:49 -0800583 name = getenv("KCONFIG_ALLCONFIG");
Eric W. Biederman9f420bf2012-05-07 05:37:45 -0700584 if (!name)
585 break;
586 if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) {
Eric W. Biederman5efe2412012-04-26 01:51:32 -0700587 if (conf_read_simple(name, S_DEF_USER)) {
588 fprintf(stderr,
589 _("*** Can't read seed configuration \"%s\"!\n"),
590 name);
591 exit(1);
592 }
Roman Zippel90389162005-11-08 21:34:49 -0800593 break;
594 }
595 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200596 case allnoconfig: name = "allno.config"; break;
597 case allyesconfig: name = "allyes.config"; break;
598 case allmodconfig: name = "allmod.config"; break;
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200599 case alldefconfig: name = "alldef.config"; break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200600 case randconfig: name = "allrandom.config"; break;
Roman Zippel90389162005-11-08 21:34:49 -0800601 default: break;
602 }
Eric W. Biederman5efe2412012-04-26 01:51:32 -0700603 if (conf_read_simple(name, S_DEF_USER) &&
604 conf_read_simple("all.config", S_DEF_USER)) {
605 fprintf(stderr,
606 _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"),
607 name);
608 exit(1);
609 }
Roman Zippel90389162005-11-08 21:34:49 -0800610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 default:
612 break;
613 }
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200614
615 if (sync_kconfig) {
616 if (conf_get_changed()) {
617 name = getenv("KCONFIG_NOSILENTUPDATE");
618 if (name && *name) {
619 fprintf(stderr,
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400620 _("\n*** The configuration requires explicit update.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200621 return 1;
622 }
623 }
624 valid_stdin = isatty(0) && isatty(1) && isatty(2);
625 }
626
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200627 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200628 case allnoconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200629 conf_set_all_new_symbols(def_no);
630 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200631 case allyesconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200632 conf_set_all_new_symbols(def_yes);
633 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200634 case allmodconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200635 conf_set_all_new_symbols(def_mod);
636 break;
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200637 case alldefconfig:
638 conf_set_all_new_symbols(def_default);
639 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200640 case randconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200641 conf_set_all_new_symbols(def_random);
642 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200643 case defconfig:
Sam Ravnborg09748e12008-06-30 23:02:59 +0200644 conf_set_all_new_symbols(def_default);
645 break;
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200646 case savedefconfig:
647 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200648 case oldaskconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200649 rootEntry = &rootmenu;
650 conf(&rootmenu);
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200651 input_mode = silentoldconfig;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200652 /* fall through */
Sam Ravnborg14828342010-08-06 07:13:54 +0200653 case oldconfig:
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200654 case listnewconfig:
Adam Leefb16d892012-09-01 01:05:17 +0800655 case olddefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200656 case silentoldconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200657 /* Update until a loop caused no more changes */
658 do {
659 conf_cnt = 0;
660 check_conf(&rootmenu);
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400661 } while (conf_cnt &&
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200662 (input_mode != listnewconfig &&
Adam Leefb16d892012-09-01 01:05:17 +0800663 input_mode != olddefconfig));
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200664 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200666
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200667 if (sync_kconfig) {
668 /* silentoldconfig is used during the build so we shall update autoconf.
669 * All other commands are only used to generate a config.
670 */
671 if (conf_get_changed() && conf_write(NULL)) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400672 fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200673 exit(1);
674 }
675 if (conf_write_autoconf()) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400676 fprintf(stderr, _("\n*** Error during update of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200677 return 1;
678 }
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200679 } else if (input_mode == savedefconfig) {
680 if (conf_write_defconfig(defconfig_file)) {
681 fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
682 defconfig_file);
683 return 1;
684 }
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200685 } else if (input_mode != listnewconfig) {
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200686 if (conf_write(NULL)) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400687 fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200688 exit(1);
689 }
Roman Zippelc955cca2006-06-08 22:12:39 -0700690 }
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
Arnaud Lacombeab63f582011-07-02 00:59:41 -0400693
Jean Sacren4418a2b2010-08-04 16:03:16 -0600694/*
695 * Helper function to facilitate fgets() by Jean Sacren.
696 */
Arnaud Lacombeab63f582011-07-02 00:59:41 -0400697void xfgets(char *str, int size, FILE *in)
Jean Sacren4418a2b2010-08-04 16:03:16 -0600698{
699 if (fgets(str, size, in) == NULL)
700 fprintf(stderr, "\nError in reading or end of file.\n");
701}