blob: 819ab18961febba879b07812c071d81df7741642 [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);
21
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020022enum input_mode {
23 oldaskconfig,
24 silentoldconfig,
25 oldconfig,
26 allnoconfig,
27 allyesconfig,
28 allmodconfig,
Sam Ravnborg0748cb32010-07-31 23:35:31 +020029 alldefconfig,
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020030 randconfig,
31 defconfig,
Sam Ravnborg7cf3d732010-07-31 23:35:34 +020032 savedefconfig,
Sam Ravnborg861b4ea2010-07-31 23:35:28 +020033 listnewconfig,
Sam Ravnborgef61ca82010-07-31 23:35:27 +020034 oldnoconfig,
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020035} input_mode = oldaskconfig;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static int indent = 1;
38static int valid_stdin = 1;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +020039static int sync_kconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static int conf_cnt;
J.A. Magallon48b9d032005-06-25 14:59:22 -070041static char line[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static struct menu *rootEntry;
43
Cheng Renquan66c4bd82009-07-12 16:11:48 +080044static void print_help(struct menu *menu)
Sam Ravnborg03d29122007-07-21 00:00:36 +020045{
Cheng Renquan66c4bd82009-07-12 16:11:48 +080046 struct gstr help = str_new();
47
48 menu_get_ext_help(menu, &help);
49
50 printf("\n%s\n", str_get(&help));
51 str_free(&help);
Sam Ravnborg03d29122007-07-21 00:00:36 +020052}
53
J.A. Magallon48b9d032005-06-25 14:59:22 -070054static void strip(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
J.A. Magallon48b9d032005-06-25 14:59:22 -070056 char *p = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int l;
58
59 while ((isspace(*p)))
60 p++;
61 l = strlen(p);
62 if (p != str)
63 memmove(str, p, l + 1);
64 if (!l)
65 return;
66 p = str + l - 1;
67 while ((isspace(*p)))
68 *p-- = 0;
69}
70
71static void check_stdin(void)
72{
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +020073 if (!valid_stdin) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070074 printf(_("aborted!\n\n"));
75 printf(_("Console input/output is redirected. "));
76 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 exit(1);
78 }
79}
80
Roman Zippelf82f3f92007-08-30 05:06:17 +020081static int conf_askvalue(struct symbol *sym, const char *def)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 enum symbol_type type = sym_get_type(sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 if (!sym_has_value(sym))
EGRY Gabor534a4502008-01-11 23:44:39 +010086 printf(_("(NEW) "));
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 line[0] = '\n';
89 line[1] = 0;
90
91 if (!sym_is_changable(sym)) {
92 printf("%s\n", def);
93 line[0] = '\n';
94 line[1] = 0;
Roman Zippelf82f3f92007-08-30 05:06:17 +020095 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97
98 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +020099 case oldconfig:
100 case silentoldconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (sym_has_value(sym)) {
102 printf("%s\n", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105 check_stdin();
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400106 /* fall through */
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200107 case oldaskconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 fflush(stdout);
Jean Sacren4418a2b2010-08-04 16:03:16 -0600109 xfgets(line, 128, stdin);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200110 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 default:
112 break;
113 }
114
115 switch (type) {
116 case S_INT:
117 case S_HEX:
118 case S_STRING:
119 printf("%s\n", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200120 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 default:
122 ;
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 printf("%s", line);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200125 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Trevor Keith4356f482009-09-18 12:49:23 -0700128static int conf_string(struct menu *menu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct symbol *sym = menu->sym;
Sam Ravnborg03d29122007-07-21 00:00:36 +0200131 const char *def;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 while (1) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100134 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 printf("(%s) ", sym->name);
136 def = sym_get_string_value(sym);
137 if (sym_get_string_value(sym))
138 printf("[%s] ", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200139 if (!conf_askvalue(sym, def))
140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 switch (line[0]) {
142 case '\n':
143 break;
144 case '?':
145 /* print help */
146 if (line[1] == '\n') {
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800147 print_help(menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 def = NULL;
149 break;
150 }
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400151 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 default:
153 line[strlen(line)-1] = 0;
154 def = line;
155 }
156 if (def && sym_set_string_value(sym, def))
157 return 0;
158 }
159}
160
161static int conf_sym(struct menu *menu)
162{
163 struct symbol *sym = menu->sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 tristate oldval, newval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 while (1) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100167 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (sym->name)
169 printf("(%s) ", sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 putchar('[');
171 oldval = sym_get_tristate_value(sym);
172 switch (oldval) {
173 case no:
174 putchar('N');
175 break;
176 case mod:
177 putchar('M');
178 break;
179 case yes:
180 putchar('Y');
181 break;
182 }
183 if (oldval != no && sym_tristate_within_range(sym, no))
184 printf("/n");
185 if (oldval != mod && sym_tristate_within_range(sym, mod))
186 printf("/m");
187 if (oldval != yes && sym_tristate_within_range(sym, yes))
188 printf("/y");
Sam Ravnborg03d29122007-07-21 00:00:36 +0200189 if (menu_has_help(menu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 printf("/?");
191 printf("] ");
Roman Zippelf82f3f92007-08-30 05:06:17 +0200192 if (!conf_askvalue(sym, sym_get_string_value(sym)))
193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 strip(line);
195
196 switch (line[0]) {
197 case 'n':
198 case 'N':
199 newval = no;
200 if (!line[1] || !strcmp(&line[1], "o"))
201 break;
202 continue;
203 case 'm':
204 case 'M':
205 newval = mod;
206 if (!line[1])
207 break;
208 continue;
209 case 'y':
210 case 'Y':
211 newval = yes;
212 if (!line[1] || !strcmp(&line[1], "es"))
213 break;
214 continue;
215 case 0:
216 newval = oldval;
217 break;
218 case '?':
219 goto help;
220 default:
221 continue;
222 }
223 if (sym_set_tristate_value(sym, newval))
224 return 0;
225help:
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800226 print_help(menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228}
229
230static int conf_choice(struct menu *menu)
231{
232 struct symbol *sym, *def_sym;
233 struct menu *child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 bool is_new;
235
236 sym = menu->sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 is_new = !sym_has_value(sym);
238 if (sym_is_changable(sym)) {
239 conf_sym(menu);
240 sym_calc_value(sym);
241 switch (sym_get_tristate_value(sym)) {
242 case no:
243 return 1;
244 case mod:
245 return 0;
246 case yes:
247 break;
248 }
249 } else {
250 switch (sym_get_tristate_value(sym)) {
251 case no:
252 return 1;
253 case mod:
EGRY Gabor534a4502008-01-11 23:44:39 +0100254 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return 0;
256 case yes:
257 break;
258 }
259 }
260
261 while (1) {
262 int cnt, def;
263
EGRY Gabor534a4502008-01-11 23:44:39 +0100264 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 def_sym = sym_get_choice_value(sym);
266 cnt = def = 0;
Roman Zippel40aee722006-04-09 17:26:39 +0200267 line[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 for (child = menu->list; child; child = child->next) {
269 if (!menu_is_visible(child))
270 continue;
271 if (!child->sym) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100272 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 continue;
274 }
275 cnt++;
276 if (child->sym == def_sym) {
277 def = cnt;
278 printf("%*c", indent, '>');
279 } else
280 printf("%*c", indent, ' ');
EGRY Gabor534a4502008-01-11 23:44:39 +0100281 printf(" %d. %s", cnt, _(menu_get_prompt(child)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (child->sym->name)
283 printf(" (%s)", child->sym->name);
284 if (!sym_has_value(child->sym))
EGRY Gabor534a4502008-01-11 23:44:39 +0100285 printf(_(" (NEW)"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 printf("\n");
287 }
EGRY Gabor534a4502008-01-11 23:44:39 +0100288 printf(_("%*schoice"), indent - 1, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (cnt == 1) {
290 printf("[1]: 1\n");
291 goto conf_childs;
292 }
293 printf("[1-%d", cnt);
Sam Ravnborg03d29122007-07-21 00:00:36 +0200294 if (menu_has_help(menu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 printf("?");
296 printf("]: ");
297 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200298 case oldconfig:
299 case silentoldconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (!is_new) {
301 cnt = def;
302 printf("%d\n", cnt);
303 break;
304 }
305 check_stdin();
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400306 /* fall through */
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200307 case oldaskconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 fflush(stdout);
Jean Sacren4418a2b2010-08-04 16:03:16 -0600309 xfgets(line, 128, stdin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 strip(line);
311 if (line[0] == '?') {
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800312 print_help(menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 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 Ravnborgf443d2e2008-06-30 22:45:38 +0200322 default:
323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
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;
Ben Hutchings3ba41622011-04-23 18:42:56 +0100335 if (line[0] && line[strlen(line) - 1] == '?') {
Cheng Renquan66c4bd82009-07-12 16:11:48 +0800336 print_help(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 continue;
338 }
339 sym_set_choice_value(sym, child->sym);
Jan Beulichf5eaa322008-01-24 11:54:23 +0000340 for (child = child->list; child; child = child->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 indent += 2;
Jan Beulichf5eaa322008-01-24 11:54:23 +0000342 conf(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 indent -= 2;
344 }
345 return 1;
346 }
347}
348
349static 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 Ravnborg4062f1a2010-07-31 23:35:26 +0200365 if ((input_mode == silentoldconfig ||
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200366 input_mode == listnewconfig ||
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200367 input_mode == oldnoconfig) &&
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400368 rootEntry != menu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 check_conf(menu);
370 return;
371 }
Arnaud Lacombed8fc3202011-05-31 12:30:26 -0400372 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 case P_COMMENT:
374 prompt = menu_get_prompt(menu);
375 if (prompt)
376 printf("%*c\n%*c %s\n%*c\n",
377 indent, '*',
EGRY Gabor534a4502008-01-11 23:44:39 +0100378 indent, '*', _(prompt),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 indent, '*');
380 default:
381 ;
382 }
383 }
384
385 if (!sym)
386 goto conf_childs;
387
388 if (sym_is_choice(sym)) {
389 conf_choice(menu);
390 if (sym->curr.tri != mod)
391 return;
392 goto conf_childs;
393 }
394
395 switch (sym->type) {
396 case S_INT:
397 case S_HEX:
398 case S_STRING:
399 conf_string(menu);
400 break;
401 default:
402 conf_sym(menu);
403 break;
404 }
405
406conf_childs:
407 if (sym)
408 indent += 2;
409 for (child = menu->list; child; child = child->next)
410 conf(child);
411 if (sym)
412 indent -= 2;
413}
414
415static void check_conf(struct menu *menu)
416{
417 struct symbol *sym;
418 struct menu *child;
419
420 if (!menu_is_visible(menu))
421 return;
422
423 sym = menu->sym;
Roman Zippel3f23ca22005-11-08 21:34:48 -0800424 if (sym && !sym_has_value(sym)) {
425 if (sym_is_changable(sym) ||
426 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200427 if (input_mode == listnewconfig) {
428 if (sym->name && !sym_is_choice_value(sym)) {
Arnaud Lacombeffb59572010-08-14 23:57:43 -0400429 printf("%s%s\n", CONFIG_, sym->name);
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400430 }
Kyle McMartin71d80662010-09-01 11:21:30 -0400431 } else if (input_mode != oldnoconfig) {
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400432 if (!conf_cnt++)
433 printf(_("*\n* Restart config...\n*\n"));
434 rootEntry = menu_get_parent_menu(menu);
435 conf(rootEntry);
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
440 for (child = menu->list; child; child = child->next)
441 check_conf(child);
442}
443
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200444static struct option long_opts[] = {
445 {"oldaskconfig", no_argument, NULL, oldaskconfig},
446 {"oldconfig", no_argument, NULL, oldconfig},
447 {"silentoldconfig", no_argument, NULL, silentoldconfig},
448 {"defconfig", optional_argument, NULL, defconfig},
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200449 {"savedefconfig", required_argument, NULL, savedefconfig},
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200450 {"allnoconfig", no_argument, NULL, allnoconfig},
451 {"allyesconfig", no_argument, NULL, allyesconfig},
452 {"allmodconfig", no_argument, NULL, allmodconfig},
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200453 {"alldefconfig", no_argument, NULL, alldefconfig},
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200454 {"randconfig", no_argument, NULL, randconfig},
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200455 {"listnewconfig", no_argument, NULL, listnewconfig},
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200456 {"oldnoconfig", no_argument, NULL, oldnoconfig},
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200457 {NULL, 0, NULL, 0}
458};
459
Arnaud Lacombe32543992010-11-02 00:26:33 -0400460static void conf_usage(const char *progname)
461{
462
463 printf("Usage: %s [option] <kconfig-file>\n", progname);
464 printf("[option] is _one_ of the following:\n");
465 printf(" --listnewconfig List new options\n");
466 printf(" --oldaskconfig Start a new configuration using a line-oriented program\n");
467 printf(" --oldconfig Update a configuration using a provided .config as base\n");
468 printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n");
469 printf(" --oldnoconfig Same as silentoldconfig but set new symbols to no\n");
470 printf(" --defconfig <file> New config with default defined in <file>\n");
471 printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n");
472 printf(" --allnoconfig New config where all options are answered with no\n");
473 printf(" --allyesconfig New config where all options are answered with yes\n");
474 printf(" --allmodconfig New config where all options are answered with mod\n");
475 printf(" --alldefconfig New config with all symbols set to default\n");
476 printf(" --randconfig New config with random answer to all options\n");
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479int main(int ac, char **av)
480{
Arnaud Lacombe32543992010-11-02 00:26:33 -0400481 const char *progname = av[0];
Andres Salomon2f4b4892007-12-17 01:34:58 -0500482 int opt;
Arnaud Lacombe275744c2010-10-13 20:43:28 -0400483 const char *name, *defconfig_file = NULL /* gcc uninit */;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct stat tmpstat;
485
EGRY Gabor534a4502008-01-11 23:44:39 +0100486 setlocale(LC_ALL, "");
487 bindtextdomain(PACKAGE, LOCALEDIR);
488 textdomain(PACKAGE);
489
Arnaud Lacombec94d3fb2010-08-23 12:01:24 -0400490 while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200491 input_mode = (enum input_mode)opt;
Andres Salomon2f4b4892007-12-17 01:34:58 -0500492 switch (opt) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200493 case silentoldconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200494 sync_kconfig = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200496 case defconfig:
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200497 case savedefconfig:
Andres Salomon2f4b4892007-12-17 01:34:58 -0500498 defconfig_file = optarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200500 case randconfig:
Ingo Molnarb0fe5512009-03-12 15:15:31 +0100501 {
502 struct timeval now;
503 unsigned int seed;
504
505 /*
506 * Use microseconds derived seed,
507 * compensate for systems where it may be zero
508 */
509 gettimeofday(&now, NULL);
510
511 seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1));
512 srand(seed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 break;
Ingo Molnarb0fe5512009-03-12 15:15:31 +0100514 }
Arnaud Lacombe32543992010-11-02 00:26:33 -0400515 case oldaskconfig:
516 case oldconfig:
517 case allnoconfig:
518 case allyesconfig:
519 case allmodconfig:
520 case alldefconfig:
521 case listnewconfig:
522 case oldnoconfig:
523 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200524 case '?':
Arnaud Lacombe32543992010-11-02 00:26:33 -0400525 conf_usage(progname);
Andres Salomon2f4b4892007-12-17 01:34:58 -0500526 exit(1);
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500530 if (ac == optind) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700531 printf(_("%s: Kconfig file missing\n"), av[0]);
Arnaud Lacombe32543992010-11-02 00:26:33 -0400532 conf_usage(progname);
Randy Dunlap250725a2006-06-08 22:12:50 -0700533 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500535 name = av[optind];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 conf_parse(name);
537 //zconfdump(stdout);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200538 if (sync_kconfig) {
Markus Heidelberg284026c2009-05-18 01:36:53 +0200539 name = conf_get_configname();
540 if (stat(name, &tmpstat)) {
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200541 fprintf(stderr, _("***\n"
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400542 "*** Configuration file \"%s\" not found!\n"
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200543 "***\n"
544 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
545 "*** \"make menuconfig\" or \"make xconfig\").\n"
Markus Heidelberg284026c2009-05-18 01:36:53 +0200546 "***\n"), name);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200547 exit(1);
548 }
549 }
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200552 case defconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (!defconfig_file)
554 defconfig_file = conf_get_default_confname();
555 if (conf_read(defconfig_file)) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100556 printf(_("***\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 "*** Can't find default configuration \"%s\"!\n"
EGRY Gabor534a4502008-01-11 23:44:39 +0100558 "***\n"), defconfig_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 exit(1);
560 }
561 break;
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200562 case savedefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200563 case silentoldconfig:
564 case oldaskconfig:
565 case oldconfig:
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200566 case listnewconfig:
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200567 case oldnoconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 conf_read(NULL);
569 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200570 case allnoconfig:
571 case allyesconfig:
572 case allmodconfig:
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200573 case alldefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200574 case randconfig:
Roman Zippel90389162005-11-08 21:34:49 -0800575 name = getenv("KCONFIG_ALLCONFIG");
576 if (name && !stat(name, &tmpstat)) {
Roman Zippel669bfad2006-06-08 22:12:42 -0700577 conf_read_simple(name, S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800578 break;
579 }
580 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200581 case allnoconfig: name = "allno.config"; break;
582 case allyesconfig: name = "allyes.config"; break;
583 case allmodconfig: name = "allmod.config"; break;
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200584 case alldefconfig: name = "alldef.config"; break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200585 case randconfig: name = "allrandom.config"; break;
Roman Zippel90389162005-11-08 21:34:49 -0800586 default: break;
587 }
588 if (!stat(name, &tmpstat))
Roman Zippel669bfad2006-06-08 22:12:42 -0700589 conf_read_simple(name, S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800590 else if (!stat("all.config", &tmpstat))
Roman Zippel669bfad2006-06-08 22:12:42 -0700591 conf_read_simple("all.config", S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800592 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 default:
594 break;
595 }
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200596
597 if (sync_kconfig) {
598 if (conf_get_changed()) {
599 name = getenv("KCONFIG_NOSILENTUPDATE");
600 if (name && *name) {
601 fprintf(stderr,
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400602 _("\n*** The configuration requires explicit update.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200603 return 1;
604 }
605 }
606 valid_stdin = isatty(0) && isatty(1) && isatty(2);
607 }
608
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200609 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200610 case allnoconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200611 conf_set_all_new_symbols(def_no);
612 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200613 case allyesconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200614 conf_set_all_new_symbols(def_yes);
615 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200616 case allmodconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200617 conf_set_all_new_symbols(def_mod);
618 break;
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200619 case alldefconfig:
620 conf_set_all_new_symbols(def_default);
621 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200622 case randconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200623 conf_set_all_new_symbols(def_random);
624 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200625 case defconfig:
Sam Ravnborg09748e12008-06-30 23:02:59 +0200626 conf_set_all_new_symbols(def_default);
627 break;
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200628 case savedefconfig:
629 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200630 case oldaskconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200631 rootEntry = &rootmenu;
632 conf(&rootmenu);
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200633 input_mode = silentoldconfig;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200634 /* fall through */
Sam Ravnborg14828342010-08-06 07:13:54 +0200635 case oldconfig:
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200636 case listnewconfig:
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200637 case oldnoconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200638 case silentoldconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200639 /* Update until a loop caused no more changes */
640 do {
641 conf_cnt = 0;
642 check_conf(&rootmenu);
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400643 } while (conf_cnt &&
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200644 (input_mode != listnewconfig &&
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200645 input_mode != oldnoconfig));
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200646 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200648
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200649 if (sync_kconfig) {
650 /* silentoldconfig is used during the build so we shall update autoconf.
651 * All other commands are only used to generate a config.
652 */
653 if (conf_get_changed() && conf_write(NULL)) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400654 fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200655 exit(1);
656 }
657 if (conf_write_autoconf()) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400658 fprintf(stderr, _("\n*** Error during update of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200659 return 1;
660 }
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200661 } else if (input_mode == savedefconfig) {
662 if (conf_write_defconfig(defconfig_file)) {
663 fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
664 defconfig_file);
665 return 1;
666 }
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200667 } else if (input_mode != listnewconfig) {
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200668 if (conf_write(NULL)) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400669 fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200670 exit(1);
671 }
Roman Zippelc955cca2006-06-08 22:12:39 -0700672 }
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
Jean Sacren4418a2b2010-08-04 16:03:16 -0600675/*
676 * Helper function to facilitate fgets() by Jean Sacren.
677 */
678void xfgets(str, size, in)
679 char *str;
680 int size;
681 FILE *in;
682{
683 if (fgets(str, size, in) == NULL)
684 fprintf(stderr, "\nError in reading or end of file.\n");
685}