blob: 6431f5c004d96a62bf442a05d4c12c6adac3ca58 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460int main(int ac, char **av)
461{
Andres Salomon2f4b4892007-12-17 01:34:58 -0500462 int opt;
Arnaud Lacombe275744c2010-10-13 20:43:28 -0400463 const char *name, *defconfig_file = NULL /* gcc uninit */;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct stat tmpstat;
465
EGRY Gabor534a4502008-01-11 23:44:39 +0100466 setlocale(LC_ALL, "");
467 bindtextdomain(PACKAGE, LOCALEDIR);
468 textdomain(PACKAGE);
469
Arnaud Lacombec94d3fb2010-08-23 12:01:24 -0400470 while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200471 input_mode = (enum input_mode)opt;
Andres Salomon2f4b4892007-12-17 01:34:58 -0500472 switch (opt) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200473 case silentoldconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200474 sync_kconfig = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200476 case defconfig:
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200477 case savedefconfig:
Andres Salomon2f4b4892007-12-17 01:34:58 -0500478 defconfig_file = optarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200480 case randconfig:
Ingo Molnarb0fe5512009-03-12 15:15:31 +0100481 {
482 struct timeval now;
483 unsigned int seed;
484
485 /*
486 * Use microseconds derived seed,
487 * compensate for systems where it may be zero
488 */
489 gettimeofday(&now, NULL);
490
491 seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1));
492 srand(seed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
Ingo Molnarb0fe5512009-03-12 15:15:31 +0100494 }
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200495 case '?':
EGRY Gabor534a4502008-01-11 23:44:39 +0100496 fprintf(stderr, _("See README for usage info\n"));
Andres Salomon2f4b4892007-12-17 01:34:58 -0500497 exit(1);
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200498 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500501 if (ac == optind) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700502 printf(_("%s: Kconfig file missing\n"), av[0]);
Randy Dunlap250725a2006-06-08 22:12:50 -0700503 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500505 name = av[optind];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 conf_parse(name);
507 //zconfdump(stdout);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200508 if (sync_kconfig) {
Markus Heidelberg284026c2009-05-18 01:36:53 +0200509 name = conf_get_configname();
510 if (stat(name, &tmpstat)) {
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200511 fprintf(stderr, _("***\n"
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400512 "*** Configuration file \"%s\" not found!\n"
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200513 "***\n"
514 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
515 "*** \"make menuconfig\" or \"make xconfig\").\n"
Markus Heidelberg284026c2009-05-18 01:36:53 +0200516 "***\n"), name);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200517 exit(1);
518 }
519 }
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200522 case defconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (!defconfig_file)
524 defconfig_file = conf_get_default_confname();
525 if (conf_read(defconfig_file)) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100526 printf(_("***\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 "*** Can't find default configuration \"%s\"!\n"
EGRY Gabor534a4502008-01-11 23:44:39 +0100528 "***\n"), defconfig_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 exit(1);
530 }
531 break;
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200532 case savedefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200533 case silentoldconfig:
534 case oldaskconfig:
535 case oldconfig:
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200536 case listnewconfig:
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200537 case oldnoconfig:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 conf_read(NULL);
539 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200540 case allnoconfig:
541 case allyesconfig:
542 case allmodconfig:
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200543 case alldefconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200544 case randconfig:
Roman Zippel90389162005-11-08 21:34:49 -0800545 name = getenv("KCONFIG_ALLCONFIG");
546 if (name && !stat(name, &tmpstat)) {
Roman Zippel669bfad92006-06-08 22:12:42 -0700547 conf_read_simple(name, S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800548 break;
549 }
550 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200551 case allnoconfig: name = "allno.config"; break;
552 case allyesconfig: name = "allyes.config"; break;
553 case allmodconfig: name = "allmod.config"; break;
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200554 case alldefconfig: name = "alldef.config"; break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200555 case randconfig: name = "allrandom.config"; break;
Roman Zippel90389162005-11-08 21:34:49 -0800556 default: break;
557 }
558 if (!stat(name, &tmpstat))
Roman Zippel669bfad92006-06-08 22:12:42 -0700559 conf_read_simple(name, S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800560 else if (!stat("all.config", &tmpstat))
Roman Zippel669bfad92006-06-08 22:12:42 -0700561 conf_read_simple("all.config", S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800562 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 default:
564 break;
565 }
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200566
567 if (sync_kconfig) {
568 if (conf_get_changed()) {
569 name = getenv("KCONFIG_NOSILENTUPDATE");
570 if (name && *name) {
571 fprintf(stderr,
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400572 _("\n*** The configuration requires explicit update.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200573 return 1;
574 }
575 }
576 valid_stdin = isatty(0) && isatty(1) && isatty(2);
577 }
578
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200579 switch (input_mode) {
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200580 case allnoconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200581 conf_set_all_new_symbols(def_no);
582 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200583 case allyesconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200584 conf_set_all_new_symbols(def_yes);
585 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200586 case allmodconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200587 conf_set_all_new_symbols(def_mod);
588 break;
Sam Ravnborg0748cb32010-07-31 23:35:31 +0200589 case alldefconfig:
590 conf_set_all_new_symbols(def_default);
591 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200592 case randconfig:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200593 conf_set_all_new_symbols(def_random);
594 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200595 case defconfig:
Sam Ravnborg09748e12008-06-30 23:02:59 +0200596 conf_set_all_new_symbols(def_default);
597 break;
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200598 case savedefconfig:
599 break;
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200600 case oldaskconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200601 rootEntry = &rootmenu;
602 conf(&rootmenu);
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200603 input_mode = silentoldconfig;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200604 /* fall through */
Sam Ravnborg14828342010-08-06 07:13:54 +0200605 case oldconfig:
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200606 case listnewconfig:
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200607 case oldnoconfig:
Sam Ravnborg4062f1a2010-07-31 23:35:26 +0200608 case silentoldconfig:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200609 /* Update until a loop caused no more changes */
610 do {
611 conf_cnt = 0;
612 check_conf(&rootmenu);
Aristeu Rozanskif0778c82010-05-06 12:48:34 -0400613 } while (conf_cnt &&
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200614 (input_mode != listnewconfig &&
Sam Ravnborgef61ca82010-07-31 23:35:27 +0200615 input_mode != oldnoconfig));
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200616 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200618
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200619 if (sync_kconfig) {
620 /* silentoldconfig is used during the build so we shall update autoconf.
621 * All other commands are only used to generate a config.
622 */
623 if (conf_get_changed() && conf_write(NULL)) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400624 fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200625 exit(1);
626 }
627 if (conf_write_autoconf()) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400628 fprintf(stderr, _("\n*** Error during update of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200629 return 1;
630 }
Sam Ravnborg7cf3d732010-07-31 23:35:34 +0200631 } else if (input_mode == savedefconfig) {
632 if (conf_write_defconfig(defconfig_file)) {
633 fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"),
634 defconfig_file);
635 return 1;
636 }
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200637 } else if (input_mode != listnewconfig) {
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200638 if (conf_write(NULL)) {
Arnaud Lacombe652cf982010-08-14 23:51:40 -0400639 fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200640 exit(1);
641 }
Roman Zippelc955cca2006-06-08 22:12:39 -0700642 }
Sam Ravnborg861b4ea2010-07-31 23:35:28 +0200643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
Jean Sacren4418a2b2010-08-04 16:03:16 -0600645/*
646 * Helper function to facilitate fgets() by Jean Sacren.
647 */
648void xfgets(str, size, in)
649 char *str;
650 int size;
651 FILE *in;
652{
653 if (fgets(str, size, in) == NULL)
654 fprintf(stderr, "\nError in reading or end of file.\n");
655}