blob: 3e1057f885c6a2496e981e6180611aa6878cede0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <sys/stat.h>
14
15#define LKC_DIRECT_LINK
16#include "lkc.h"
17
18static void conf(struct menu *menu);
19static void check_conf(struct menu *menu);
20
21enum {
22 ask_all,
23 ask_new,
24 ask_silent,
25 set_default,
26 set_yes,
27 set_mod,
28 set_no,
29 set_random
30} input_mode = ask_all;
31char *defconfig_file;
32
33static int indent = 1;
34static int valid_stdin = 1;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +020035static int sync_kconfig;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int conf_cnt;
J.A. Magallon48b9d032005-06-25 14:59:22 -070037static char line[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static struct menu *rootEntry;
39
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070040static char nohelp_text[] = N_("Sorry, no help available for this option yet.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Sam Ravnborg03d29122007-07-21 00:00:36 +020042static const char *get_help(struct menu *menu)
43{
44 if (menu_has_help(menu))
EGRY Gabor534a4502008-01-11 23:44:39 +010045 return _(menu_get_help(menu));
Sam Ravnborg03d29122007-07-21 00:00:36 +020046 else
47 return nohelp_text;
48}
49
J.A. Magallon48b9d032005-06-25 14:59:22 -070050static void strip(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
J.A. Magallon48b9d032005-06-25 14:59:22 -070052 char *p = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int l;
54
55 while ((isspace(*p)))
56 p++;
57 l = strlen(p);
58 if (p != str)
59 memmove(str, p, l + 1);
60 if (!l)
61 return;
62 p = str + l - 1;
63 while ((isspace(*p)))
64 *p-- = 0;
65}
66
67static void check_stdin(void)
68{
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +020069 if (!valid_stdin) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -070070 printf(_("aborted!\n\n"));
71 printf(_("Console input/output is redirected. "));
72 printf(_("Run 'make oldconfig' to update configuration.\n\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 exit(1);
74 }
75}
76
Roman Zippelf82f3f92007-08-30 05:06:17 +020077static int conf_askvalue(struct symbol *sym, const char *def)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 enum symbol_type type = sym_get_type(sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 if (!sym_has_value(sym))
EGRY Gabor534a4502008-01-11 23:44:39 +010082 printf(_("(NEW) "));
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 line[0] = '\n';
85 line[1] = 0;
86
87 if (!sym_is_changable(sym)) {
88 printf("%s\n", def);
89 line[0] = '\n';
90 line[1] = 0;
Roman Zippelf82f3f92007-08-30 05:06:17 +020091 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93
94 switch (input_mode) {
95 case ask_new:
96 case ask_silent:
97 if (sym_has_value(sym)) {
98 printf("%s\n", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +020099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101 check_stdin();
102 case ask_all:
103 fflush(stdout);
Roman Zippel59c6a3f2006-04-09 17:26:50 +0200104 fgets(line, 128, stdin);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200105 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 default:
107 break;
108 }
109
110 switch (type) {
111 case S_INT:
112 case S_HEX:
113 case S_STRING:
114 printf("%s\n", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200115 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 default:
117 ;
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 printf("%s", line);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200120 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123int conf_string(struct menu *menu)
124{
125 struct symbol *sym = menu->sym;
Sam Ravnborg03d29122007-07-21 00:00:36 +0200126 const char *def;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 while (1) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100129 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 printf("(%s) ", sym->name);
131 def = sym_get_string_value(sym);
132 if (sym_get_string_value(sym))
133 printf("[%s] ", def);
Roman Zippelf82f3f92007-08-30 05:06:17 +0200134 if (!conf_askvalue(sym, def))
135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 switch (line[0]) {
137 case '\n':
138 break;
139 case '?':
140 /* print help */
141 if (line[1] == '\n') {
Sam Ravnborg03d29122007-07-21 00:00:36 +0200142 printf("\n%s\n", get_help(menu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 def = NULL;
144 break;
145 }
146 default:
147 line[strlen(line)-1] = 0;
148 def = line;
149 }
150 if (def && sym_set_string_value(sym, def))
151 return 0;
152 }
153}
154
155static int conf_sym(struct menu *menu)
156{
157 struct symbol *sym = menu->sym;
158 int type;
159 tristate oldval, newval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 while (1) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100162 printf("%*s%s ", indent - 1, "", _(menu->prompt->text));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (sym->name)
164 printf("(%s) ", sym->name);
165 type = sym_get_type(sym);
166 putchar('[');
167 oldval = sym_get_tristate_value(sym);
168 switch (oldval) {
169 case no:
170 putchar('N');
171 break;
172 case mod:
173 putchar('M');
174 break;
175 case yes:
176 putchar('Y');
177 break;
178 }
179 if (oldval != no && sym_tristate_within_range(sym, no))
180 printf("/n");
181 if (oldval != mod && sym_tristate_within_range(sym, mod))
182 printf("/m");
183 if (oldval != yes && sym_tristate_within_range(sym, yes))
184 printf("/y");
Sam Ravnborg03d29122007-07-21 00:00:36 +0200185 if (menu_has_help(menu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 printf("/?");
187 printf("] ");
Roman Zippelf82f3f92007-08-30 05:06:17 +0200188 if (!conf_askvalue(sym, sym_get_string_value(sym)))
189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 strip(line);
191
192 switch (line[0]) {
193 case 'n':
194 case 'N':
195 newval = no;
196 if (!line[1] || !strcmp(&line[1], "o"))
197 break;
198 continue;
199 case 'm':
200 case 'M':
201 newval = mod;
202 if (!line[1])
203 break;
204 continue;
205 case 'y':
206 case 'Y':
207 newval = yes;
208 if (!line[1] || !strcmp(&line[1], "es"))
209 break;
210 continue;
211 case 0:
212 newval = oldval;
213 break;
214 case '?':
215 goto help;
216 default:
217 continue;
218 }
219 if (sym_set_tristate_value(sym, newval))
220 return 0;
221help:
Sam Ravnborg03d29122007-07-21 00:00:36 +0200222 printf("\n%s\n", get_help(menu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224}
225
226static int conf_choice(struct menu *menu)
227{
228 struct symbol *sym, *def_sym;
229 struct menu *child;
230 int type;
231 bool is_new;
232
233 sym = menu->sym;
234 type = sym_get_type(sym);
235 is_new = !sym_has_value(sym);
236 if (sym_is_changable(sym)) {
237 conf_sym(menu);
238 sym_calc_value(sym);
239 switch (sym_get_tristate_value(sym)) {
240 case no:
241 return 1;
242 case mod:
243 return 0;
244 case yes:
245 break;
246 }
247 } else {
248 switch (sym_get_tristate_value(sym)) {
249 case no:
250 return 1;
251 case mod:
EGRY Gabor534a4502008-01-11 23:44:39 +0100252 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254 case yes:
255 break;
256 }
257 }
258
259 while (1) {
260 int cnt, def;
261
EGRY Gabor534a4502008-01-11 23:44:39 +0100262 printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 def_sym = sym_get_choice_value(sym);
264 cnt = def = 0;
Roman Zippel40aee722006-04-09 17:26:39 +0200265 line[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 for (child = menu->list; child; child = child->next) {
267 if (!menu_is_visible(child))
268 continue;
269 if (!child->sym) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100270 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 continue;
272 }
273 cnt++;
274 if (child->sym == def_sym) {
275 def = cnt;
276 printf("%*c", indent, '>');
277 } else
278 printf("%*c", indent, ' ');
EGRY Gabor534a4502008-01-11 23:44:39 +0100279 printf(" %d. %s", cnt, _(menu_get_prompt(child)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (child->sym->name)
281 printf(" (%s)", child->sym->name);
282 if (!sym_has_value(child->sym))
EGRY Gabor534a4502008-01-11 23:44:39 +0100283 printf(_(" (NEW)"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 printf("\n");
285 }
EGRY Gabor534a4502008-01-11 23:44:39 +0100286 printf(_("%*schoice"), indent - 1, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (cnt == 1) {
288 printf("[1]: 1\n");
289 goto conf_childs;
290 }
291 printf("[1-%d", cnt);
Sam Ravnborg03d29122007-07-21 00:00:36 +0200292 if (menu_has_help(menu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 printf("?");
294 printf("]: ");
295 switch (input_mode) {
296 case ask_new:
297 case ask_silent:
298 if (!is_new) {
299 cnt = def;
300 printf("%d\n", cnt);
301 break;
302 }
303 check_stdin();
304 case ask_all:
305 fflush(stdout);
Roman Zippel59c6a3f2006-04-09 17:26:50 +0200306 fgets(line, 128, stdin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 strip(line);
308 if (line[0] == '?') {
Sam Ravnborg03d29122007-07-21 00:00:36 +0200309 printf("\n%s\n", get_help(menu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 continue;
311 }
312 if (!line[0])
313 cnt = def;
314 else if (isdigit(line[0]))
315 cnt = atoi(line);
316 else
317 continue;
318 break;
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200319 default:
320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
323 conf_childs:
324 for (child = menu->list; child; child = child->next) {
325 if (!child->sym || !menu_is_visible(child))
326 continue;
327 if (!--cnt)
328 break;
329 }
330 if (!child)
331 continue;
332 if (line[strlen(line) - 1] == '?') {
Sam Ravnborg03d29122007-07-21 00:00:36 +0200333 printf("\n%s\n", get_help(child));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 continue;
335 }
336 sym_set_choice_value(sym, child->sym);
Jan Beulichf5eaa322008-01-24 11:54:23 +0000337 for (child = child->list; child; child = child->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 indent += 2;
Jan Beulichf5eaa322008-01-24 11:54:23 +0000339 conf(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 indent -= 2;
341 }
342 return 1;
343 }
344}
345
346static void conf(struct menu *menu)
347{
348 struct symbol *sym;
349 struct property *prop;
350 struct menu *child;
351
352 if (!menu_is_visible(menu))
353 return;
354
355 sym = menu->sym;
356 prop = menu->prompt;
357 if (prop) {
358 const char *prompt;
359
360 switch (prop->type) {
361 case P_MENU:
362 if (input_mode == ask_silent && rootEntry != menu) {
363 check_conf(menu);
364 return;
365 }
366 case P_COMMENT:
367 prompt = menu_get_prompt(menu);
368 if (prompt)
369 printf("%*c\n%*c %s\n%*c\n",
370 indent, '*',
EGRY Gabor534a4502008-01-11 23:44:39 +0100371 indent, '*', _(prompt),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 indent, '*');
373 default:
374 ;
375 }
376 }
377
378 if (!sym)
379 goto conf_childs;
380
381 if (sym_is_choice(sym)) {
382 conf_choice(menu);
383 if (sym->curr.tri != mod)
384 return;
385 goto conf_childs;
386 }
387
388 switch (sym->type) {
389 case S_INT:
390 case S_HEX:
391 case S_STRING:
392 conf_string(menu);
393 break;
394 default:
395 conf_sym(menu);
396 break;
397 }
398
399conf_childs:
400 if (sym)
401 indent += 2;
402 for (child = menu->list; child; child = child->next)
403 conf(child);
404 if (sym)
405 indent -= 2;
406}
407
408static void check_conf(struct menu *menu)
409{
410 struct symbol *sym;
411 struct menu *child;
412
413 if (!menu_is_visible(menu))
414 return;
415
416 sym = menu->sym;
Roman Zippel3f23ca22005-11-08 21:34:48 -0800417 if (sym && !sym_has_value(sym)) {
418 if (sym_is_changable(sym) ||
419 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!conf_cnt++)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700421 printf(_("*\n* Restart config...\n*\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 rootEntry = menu_get_parent_menu(menu);
423 conf(rootEntry);
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
427 for (child = menu->list; child; child = child->next)
428 check_conf(child);
429}
430
431int main(int ac, char **av)
432{
Andres Salomon2f4b4892007-12-17 01:34:58 -0500433 int opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 const char *name;
435 struct stat tmpstat;
436
EGRY Gabor534a4502008-01-11 23:44:39 +0100437 setlocale(LC_ALL, "");
438 bindtextdomain(PACKAGE, LOCALEDIR);
439 textdomain(PACKAGE);
440
Andres Salomon2f4b4892007-12-17 01:34:58 -0500441 while ((opt = getopt(ac, av, "osdD:nmyrh")) != -1) {
442 switch (opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 case 'o':
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200444 input_mode = ask_silent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446 case 's':
447 input_mode = ask_silent;
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200448 sync_kconfig = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 break;
450 case 'd':
451 input_mode = set_default;
452 break;
453 case 'D':
454 input_mode = set_default;
Andres Salomon2f4b4892007-12-17 01:34:58 -0500455 defconfig_file = optarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 break;
457 case 'n':
458 input_mode = set_no;
459 break;
460 case 'm':
461 input_mode = set_mod;
462 break;
463 case 'y':
464 input_mode = set_yes;
465 break;
466 case 'r':
467 input_mode = set_random;
Ladislav Michl07f76682008-01-09 16:36:19 +0100468 srand(time(NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case 'h':
EGRY Gabor534a4502008-01-11 23:44:39 +0100471 printf(_("See README for usage info\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 exit(0);
Andres Salomon2f4b4892007-12-17 01:34:58 -0500473 break;
474 default:
EGRY Gabor534a4502008-01-11 23:44:39 +0100475 fprintf(stderr, _("See README for usage info\n"));
Andres Salomon2f4b4892007-12-17 01:34:58 -0500476 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500479 if (ac == optind) {
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700480 printf(_("%s: Kconfig file missing\n"), av[0]);
Randy Dunlap250725a2006-06-08 22:12:50 -0700481 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Andres Salomon2f4b4892007-12-17 01:34:58 -0500483 name = av[optind];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 conf_parse(name);
485 //zconfdump(stdout);
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200486 if (sync_kconfig) {
487 if (stat(".config", &tmpstat)) {
488 fprintf(stderr, _("***\n"
489 "*** You have not yet configured your kernel!\n"
490 "*** (missing kernel .config file)\n"
491 "***\n"
492 "*** Please run some configurator (e.g. \"make oldconfig\" or\n"
493 "*** \"make menuconfig\" or \"make xconfig\").\n"
494 "***\n"));
495 exit(1);
496 }
497 }
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 switch (input_mode) {
500 case set_default:
501 if (!defconfig_file)
502 defconfig_file = conf_get_default_confname();
503 if (conf_read(defconfig_file)) {
EGRY Gabor534a4502008-01-11 23:44:39 +0100504 printf(_("***\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 "*** Can't find default configuration \"%s\"!\n"
EGRY Gabor534a4502008-01-11 23:44:39 +0100506 "***\n"), defconfig_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 exit(1);
508 }
509 break;
510 case ask_silent:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 case ask_all:
512 case ask_new:
513 conf_read(NULL);
514 break;
Roman Zippel90389162005-11-08 21:34:49 -0800515 case set_no:
516 case set_mod:
517 case set_yes:
518 case set_random:
519 name = getenv("KCONFIG_ALLCONFIG");
520 if (name && !stat(name, &tmpstat)) {
Roman Zippel669bfad2006-06-08 22:12:42 -0700521 conf_read_simple(name, S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800522 break;
523 }
524 switch (input_mode) {
525 case set_no: name = "allno.config"; break;
526 case set_mod: name = "allmod.config"; break;
527 case set_yes: name = "allyes.config"; break;
528 case set_random: name = "allrandom.config"; break;
529 default: break;
530 }
531 if (!stat(name, &tmpstat))
Roman Zippel669bfad2006-06-08 22:12:42 -0700532 conf_read_simple(name, S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800533 else if (!stat("all.config", &tmpstat))
Roman Zippel669bfad2006-06-08 22:12:42 -0700534 conf_read_simple("all.config", S_DEF_USER);
Roman Zippel90389162005-11-08 21:34:49 -0800535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 default:
537 break;
538 }
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200539
540 if (sync_kconfig) {
541 if (conf_get_changed()) {
542 name = getenv("KCONFIG_NOSILENTUPDATE");
543 if (name && *name) {
544 fprintf(stderr,
545 _("\n*** Kernel configuration requires explicit update.\n\n"));
546 return 1;
547 }
548 }
549 valid_stdin = isatty(0) && isatty(1) && isatty(2);
550 }
551
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200552 switch (input_mode) {
553 case set_no:
554 conf_set_all_new_symbols(def_no);
555 break;
556 case set_yes:
557 conf_set_all_new_symbols(def_yes);
558 break;
559 case set_mod:
560 conf_set_all_new_symbols(def_mod);
561 break;
562 case set_random:
563 conf_set_all_new_symbols(def_random);
564 break;
Sam Ravnborg09748e12008-06-30 23:02:59 +0200565 case set_default:
566 conf_set_all_new_symbols(def_default);
567 break;
Sam Ravnborgcd9140e1e2008-06-30 22:53:04 +0200568 case ask_new:
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200569 case ask_all:
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200570 rootEntry = &rootmenu;
571 conf(&rootmenu);
572 input_mode = ask_silent;
573 /* fall through */
574 case ask_silent:
575 /* Update until a loop caused no more changes */
576 do {
577 conf_cnt = 0;
578 check_conf(&rootmenu);
579 } while (conf_cnt);
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200580 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Sam Ravnborgf443d2e2008-06-30 22:45:38 +0200582
zippel@linux-m68k.org204c96f2008-09-29 05:27:10 +0200583 if (sync_kconfig) {
584 /* silentoldconfig is used during the build so we shall update autoconf.
585 * All other commands are only used to generate a config.
586 */
587 if (conf_get_changed() && conf_write(NULL)) {
588 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
589 exit(1);
590 }
591 if (conf_write_autoconf()) {
592 fprintf(stderr, _("\n*** Error during update of the kernel configuration.\n\n"));
593 return 1;
594 }
595 } else {
596 if (conf_write(NULL)) {
597 fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
598 exit(1);
599 }
Roman Zippelc955cca2006-06-08 22:12:39 -0700600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return 0;
602}