| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> | 
					
						
							|  |  |  |  * Released under the terms of the GNU GPL v2.0. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | #include <locale.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <ctype.h>
 | 
					
						
							| 
									
										
										
										
											2006-04-18 22:21:53 -07:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-09 16:36:19 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-09 16:36:19 +01:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | #include <getopt.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <sys/stat.h>
 | 
					
						
							| 
									
										
										
										
											2009-03-12 15:15:31 +01:00
										 |  |  | #include <sys/time.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define LKC_DIRECT_LINK
 | 
					
						
							|  |  |  | #include "lkc.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void conf(struct menu *menu); | 
					
						
							|  |  |  | static void check_conf(struct menu *menu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | enum input_mode { | 
					
						
							|  |  |  | 	oldaskconfig, | 
					
						
							|  |  |  | 	silentoldconfig, | 
					
						
							|  |  |  | 	oldconfig, | 
					
						
							|  |  |  | 	allnoconfig, | 
					
						
							|  |  |  | 	allyesconfig, | 
					
						
							|  |  |  | 	allmodconfig, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:31 +02:00
										 |  |  | 	alldefconfig, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	randconfig, | 
					
						
							|  |  |  | 	defconfig, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:34 +02:00
										 |  |  | 	savedefconfig, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 	listnewconfig, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:27 +02:00
										 |  |  | 	oldnoconfig, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | } input_mode = oldaskconfig; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | char *defconfig_file; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int indent = 1; | 
					
						
							|  |  |  | static int valid_stdin = 1; | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | static int sync_kconfig; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static int conf_cnt; | 
					
						
							| 
									
										
										
										
											2005-06-25 14:59:22 -07:00
										 |  |  | static char line[128]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static struct menu *rootEntry; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-12 16:11:48 +08:00
										 |  |  | static void print_help(struct menu *menu) | 
					
						
							| 
									
										
										
										
											2007-07-21 00:00:36 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-12 16:11:48 +08:00
										 |  |  | 	struct gstr help = str_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	menu_get_ext_help(menu, &help); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	printf("\n%s\n", str_get(&help)); | 
					
						
							|  |  |  | 	str_free(&help); | 
					
						
							| 
									
										
										
										
											2007-07-21 00:00:36 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-25 14:59:22 -07:00
										 |  |  | static void strip(char *str) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-06-25 14:59:22 -07:00
										 |  |  | 	char *p = str; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int l; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while ((isspace(*p))) | 
					
						
							|  |  |  | 		p++; | 
					
						
							|  |  |  | 	l = strlen(p); | 
					
						
							|  |  |  | 	if (p != str) | 
					
						
							|  |  |  | 		memmove(str, p, l + 1); | 
					
						
							|  |  |  | 	if (!l) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	p = str + l - 1; | 
					
						
							|  |  |  | 	while ((isspace(*p))) | 
					
						
							|  |  |  | 		*p-- = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void check_stdin(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 	if (!valid_stdin) { | 
					
						
							| 
									
										
											  
											
												[PATCH] Kconfig i18n support
This patch adds i18n support for make *config, allowing users to have the
config process in their own language.
No printk was harmed in the process, don't worry, so all the bug reports,
kernel messages, etc, remain in english, just the user tools to configure
the kernel are internationalized.
Users not interested in translations can just unset the related LANG,
LC_ALL, etc env variables and have the config process in plain english,
something like:
LANG= make menuconfig
is enough for having the whole config process in english. Or just don't
install any translation file.
Translations for brazilian portuguese are being done by a team of
volunteers at:
http://www.visionflex.inf.br/kernel_ptbr/pmwiki.php/Principal/Traducoes
To start the translation process:
  make update-po-config
  This will generate the pot template named scripts/kconfig/linux.pot,
  copy it to, say, ~/es.po, to start the translation for spanish.
To test your translation, as root issue this command:
  msgfmt -o /usr/share/locale/es/LC_MESSAGES/linux.mo ~/es.po
  Replace "es" with your language code.
  Then execute, for instance:
  make menuconfig
The current patch doesn't use any optimization to reduce the size of the
generated .mo file, it is possible to use the config option as a key, but
this doesn't prevent the current patch from being used or the translations
done under the current scheme to be in any way lost if we chose to do any
kind of keying.
Thanks to Fabricio Vaccari for starting the pt_BR (brazilian portuguese)
translation effort, Thiago Maciera for helping me with the gconf.cc (QT
frontent) i18n coding and to all the volunteers that are already working on
the first translation, to pt_BR.
I left the question on whether to ship the translations with the stock kernel
sources to be discussed here, please share your suggestions.
Signed-off-by: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org
Signed-off-by: Andrew Morton <akpm@osdl.org>
											
										 
											2005-05-05 15:09:46 -07:00
										 |  |  | 		printf(_("aborted!\n\n")); | 
					
						
							|  |  |  | 		printf(_("Console input/output is redirected. ")); | 
					
						
							|  |  |  | 		printf(_("Run 'make oldconfig' to update configuration.\n\n")); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		exit(1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | static int conf_askvalue(struct symbol *sym, const char *def) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	enum symbol_type type = sym_get_type(sym); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!sym_has_value(sym)) | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 		printf(_("(NEW) ")); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	line[0] = '\n'; | 
					
						
							|  |  |  | 	line[1] = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!sym_is_changable(sym)) { | 
					
						
							|  |  |  | 		printf("%s\n", def); | 
					
						
							|  |  |  | 		line[0] = '\n'; | 
					
						
							|  |  |  | 		line[1] = 0; | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (input_mode) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case oldconfig: | 
					
						
							|  |  |  | 	case silentoldconfig: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (sym_has_value(sym)) { | 
					
						
							|  |  |  | 			printf("%s\n", def); | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		check_stdin(); | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case oldaskconfig: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		fflush(stdout); | 
					
						
							| 
									
										
										
										
											2010-08-04 16:03:16 -06:00
										 |  |  | 		xfgets(line, 128, stdin); | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (type) { | 
					
						
							|  |  |  | 	case S_INT: | 
					
						
							|  |  |  | 	case S_HEX: | 
					
						
							|  |  |  | 	case S_STRING: | 
					
						
							|  |  |  | 		printf("%s\n", def); | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	printf("%s", line); | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 	return 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-18 12:49:23 -07:00
										 |  |  | static int conf_string(struct menu *menu) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct symbol *sym = menu->sym; | 
					
						
							| 
									
										
										
										
											2007-07-21 00:00:36 +02:00
										 |  |  | 	const char *def; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while (1) { | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 		printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		printf("(%s) ", sym->name); | 
					
						
							|  |  |  | 		def = sym_get_string_value(sym); | 
					
						
							|  |  |  | 		if (sym_get_string_value(sym)) | 
					
						
							|  |  |  | 			printf("[%s] ", def); | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 		if (!conf_askvalue(sym, def)) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		switch (line[0]) { | 
					
						
							|  |  |  | 		case '\n': | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case '?': | 
					
						
							|  |  |  | 			/* print help */ | 
					
						
							|  |  |  | 			if (line[1] == '\n') { | 
					
						
							| 
									
										
										
										
											2009-07-12 16:11:48 +08:00
										 |  |  | 				print_help(menu); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				def = NULL; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			line[strlen(line)-1] = 0; | 
					
						
							|  |  |  | 			def = line; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (def && sym_set_string_value(sym, def)) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int conf_sym(struct menu *menu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct symbol *sym = menu->sym; | 
					
						
							|  |  |  | 	tristate oldval, newval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (1) { | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 		printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (sym->name) | 
					
						
							|  |  |  | 			printf("(%s) ", sym->name); | 
					
						
							|  |  |  | 		putchar('['); | 
					
						
							|  |  |  | 		oldval = sym_get_tristate_value(sym); | 
					
						
							|  |  |  | 		switch (oldval) { | 
					
						
							|  |  |  | 		case no: | 
					
						
							|  |  |  | 			putchar('N'); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case mod: | 
					
						
							|  |  |  | 			putchar('M'); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case yes: | 
					
						
							|  |  |  | 			putchar('Y'); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (oldval != no && sym_tristate_within_range(sym, no)) | 
					
						
							|  |  |  | 			printf("/n"); | 
					
						
							|  |  |  | 		if (oldval != mod && sym_tristate_within_range(sym, mod)) | 
					
						
							|  |  |  | 			printf("/m"); | 
					
						
							|  |  |  | 		if (oldval != yes && sym_tristate_within_range(sym, yes)) | 
					
						
							|  |  |  | 			printf("/y"); | 
					
						
							| 
									
										
										
										
											2007-07-21 00:00:36 +02:00
										 |  |  | 		if (menu_has_help(menu)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			printf("/?"); | 
					
						
							|  |  |  | 		printf("] "); | 
					
						
							| 
									
										
										
										
											2007-08-30 05:06:17 +02:00
										 |  |  | 		if (!conf_askvalue(sym, sym_get_string_value(sym))) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		strip(line); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		switch (line[0]) { | 
					
						
							|  |  |  | 		case 'n': | 
					
						
							|  |  |  | 		case 'N': | 
					
						
							|  |  |  | 			newval = no; | 
					
						
							|  |  |  | 			if (!line[1] || !strcmp(&line[1], "o")) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		case 'm': | 
					
						
							|  |  |  | 		case 'M': | 
					
						
							|  |  |  | 			newval = mod; | 
					
						
							|  |  |  | 			if (!line[1]) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		case 'y': | 
					
						
							|  |  |  | 		case 'Y': | 
					
						
							|  |  |  | 			newval = yes; | 
					
						
							|  |  |  | 			if (!line[1] || !strcmp(&line[1], "es")) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		case 0: | 
					
						
							|  |  |  | 			newval = oldval; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case '?': | 
					
						
							|  |  |  | 			goto help; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (sym_set_tristate_value(sym, newval)) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | help: | 
					
						
							| 
									
										
										
										
											2009-07-12 16:11:48 +08:00
										 |  |  | 		print_help(menu); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int conf_choice(struct menu *menu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct symbol *sym, *def_sym; | 
					
						
							|  |  |  | 	struct menu *child; | 
					
						
							|  |  |  | 	bool is_new; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sym = menu->sym; | 
					
						
							|  |  |  | 	is_new = !sym_has_value(sym); | 
					
						
							|  |  |  | 	if (sym_is_changable(sym)) { | 
					
						
							|  |  |  | 		conf_sym(menu); | 
					
						
							|  |  |  | 		sym_calc_value(sym); | 
					
						
							|  |  |  | 		switch (sym_get_tristate_value(sym)) { | 
					
						
							|  |  |  | 		case no: | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		case mod: | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		case yes: | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		switch (sym_get_tristate_value(sym)) { | 
					
						
							|  |  |  | 		case no: | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		case mod: | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 			printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return 0; | 
					
						
							|  |  |  | 		case yes: | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (1) { | 
					
						
							|  |  |  | 		int cnt, def; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 		printf("%*s%s\n", indent - 1, "", _(menu_get_prompt(menu))); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		def_sym = sym_get_choice_value(sym); | 
					
						
							|  |  |  | 		cnt = def = 0; | 
					
						
							| 
									
										
										
										
											2006-04-09 17:26:39 +02:00
										 |  |  | 		line[0] = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		for (child = menu->list; child; child = child->next) { | 
					
						
							|  |  |  | 			if (!menu_is_visible(child)) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			if (!child->sym) { | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 				printf("%*c %s\n", indent, '*', _(menu_get_prompt(child))); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			cnt++; | 
					
						
							|  |  |  | 			if (child->sym == def_sym) { | 
					
						
							|  |  |  | 				def = cnt; | 
					
						
							|  |  |  | 				printf("%*c", indent, '>'); | 
					
						
							|  |  |  | 			} else | 
					
						
							|  |  |  | 				printf("%*c", indent, ' '); | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 			printf(" %d. %s", cnt, _(menu_get_prompt(child))); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			if (child->sym->name) | 
					
						
							|  |  |  | 				printf(" (%s)", child->sym->name); | 
					
						
							|  |  |  | 			if (!sym_has_value(child->sym)) | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 				printf(_(" (NEW)")); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			printf("\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 		printf(_("%*schoice"), indent - 1, ""); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (cnt == 1) { | 
					
						
							|  |  |  | 			printf("[1]: 1\n"); | 
					
						
							|  |  |  | 			goto conf_childs; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		printf("[1-%d", cnt); | 
					
						
							| 
									
										
										
										
											2007-07-21 00:00:36 +02:00
										 |  |  | 		if (menu_has_help(menu)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			printf("?"); | 
					
						
							|  |  |  | 		printf("]: "); | 
					
						
							|  |  |  | 		switch (input_mode) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case oldconfig: | 
					
						
							|  |  |  | 		case silentoldconfig: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			if (!is_new) { | 
					
						
							|  |  |  | 				cnt = def; | 
					
						
							|  |  |  | 				printf("%d\n", cnt); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			check_stdin(); | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case oldaskconfig: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			fflush(stdout); | 
					
						
							| 
									
										
										
										
											2010-08-04 16:03:16 -06:00
										 |  |  | 			xfgets(line, 128, stdin); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			strip(line); | 
					
						
							|  |  |  | 			if (line[0] == '?') { | 
					
						
							| 
									
										
										
										
											2009-07-12 16:11:48 +08:00
										 |  |  | 				print_help(menu); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (!line[0]) | 
					
						
							|  |  |  | 				cnt = def; | 
					
						
							|  |  |  | 			else if (isdigit(line[0])) | 
					
						
							|  |  |  | 				cnt = atoi(line); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	conf_childs: | 
					
						
							|  |  |  | 		for (child = menu->list; child; child = child->next) { | 
					
						
							|  |  |  | 			if (!child->sym || !menu_is_visible(child)) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			if (!--cnt) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!child) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		if (line[strlen(line) - 1] == '?') { | 
					
						
							| 
									
										
										
										
											2009-07-12 16:11:48 +08:00
										 |  |  | 			print_help(child); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sym_set_choice_value(sym, child->sym); | 
					
						
							| 
									
										
										
										
											2008-01-24 11:54:23 +00:00
										 |  |  | 		for (child = child->list; child; child = child->next) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			indent += 2; | 
					
						
							| 
									
										
										
										
											2008-01-24 11:54:23 +00:00
										 |  |  | 			conf(child); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			indent -= 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void conf(struct menu *menu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct symbol *sym; | 
					
						
							|  |  |  | 	struct property *prop; | 
					
						
							|  |  |  | 	struct menu *child; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!menu_is_visible(menu)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sym = menu->sym; | 
					
						
							|  |  |  | 	prop = menu->prompt; | 
					
						
							|  |  |  | 	if (prop) { | 
					
						
							|  |  |  | 		const char *prompt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		switch (prop->type) { | 
					
						
							|  |  |  | 		case P_MENU: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 			if ((input_mode == silentoldconfig || | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 			     input_mode == listnewconfig || | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:27 +02:00
										 |  |  | 			     input_mode == oldnoconfig) && | 
					
						
							| 
									
										
										
										
											2010-05-06 12:48:34 -04:00
										 |  |  | 			    rootEntry != menu) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				check_conf(menu); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		case P_COMMENT: | 
					
						
							|  |  |  | 			prompt = menu_get_prompt(menu); | 
					
						
							|  |  |  | 			if (prompt) | 
					
						
							|  |  |  | 				printf("%*c\n%*c %s\n%*c\n", | 
					
						
							|  |  |  | 					indent, '*', | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 					indent, '*', _(prompt), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 					indent, '*'); | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!sym) | 
					
						
							|  |  |  | 		goto conf_childs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (sym_is_choice(sym)) { | 
					
						
							|  |  |  | 		conf_choice(menu); | 
					
						
							|  |  |  | 		if (sym->curr.tri != mod) | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		goto conf_childs; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (sym->type) { | 
					
						
							|  |  |  | 	case S_INT: | 
					
						
							|  |  |  | 	case S_HEX: | 
					
						
							|  |  |  | 	case S_STRING: | 
					
						
							|  |  |  | 		conf_string(menu); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		conf_sym(menu); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | conf_childs: | 
					
						
							|  |  |  | 	if (sym) | 
					
						
							|  |  |  | 		indent += 2; | 
					
						
							|  |  |  | 	for (child = menu->list; child; child = child->next) | 
					
						
							|  |  |  | 		conf(child); | 
					
						
							|  |  |  | 	if (sym) | 
					
						
							|  |  |  | 		indent -= 2; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void check_conf(struct menu *menu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct symbol *sym; | 
					
						
							|  |  |  | 	struct menu *child; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!menu_is_visible(menu)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sym = menu->sym; | 
					
						
							| 
									
										
										
										
											2005-11-08 21:34:48 -08:00
										 |  |  | 	if (sym && !sym_has_value(sym)) { | 
					
						
							|  |  |  | 		if (sym_is_changable(sym) || | 
					
						
							|  |  |  | 		    (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 			if (input_mode == listnewconfig) { | 
					
						
							|  |  |  | 				if (sym->name && !sym_is_choice_value(sym)) { | 
					
						
							| 
									
										
										
										
											2010-08-14 23:57:43 -04:00
										 |  |  | 					printf("%s%s\n", CONFIG_, sym->name); | 
					
						
							| 
									
										
										
										
											2010-05-06 12:48:34 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2010-09-01 11:21:30 -04:00
										 |  |  | 			} else if (input_mode != oldnoconfig) { | 
					
						
							| 
									
										
										
										
											2010-05-06 12:48:34 -04:00
										 |  |  | 				if (!conf_cnt++) | 
					
						
							|  |  |  | 					printf(_("*\n* Restart config...\n*\n")); | 
					
						
							|  |  |  | 				rootEntry = menu_get_parent_menu(menu); | 
					
						
							|  |  |  | 				conf(rootEntry); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (child = menu->list; child; child = child->next) | 
					
						
							|  |  |  | 		check_conf(child); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | static struct option long_opts[] = { | 
					
						
							|  |  |  | 	{"oldaskconfig",    no_argument,       NULL, oldaskconfig}, | 
					
						
							|  |  |  | 	{"oldconfig",       no_argument,       NULL, oldconfig}, | 
					
						
							|  |  |  | 	{"silentoldconfig", no_argument,       NULL, silentoldconfig}, | 
					
						
							|  |  |  | 	{"defconfig",       optional_argument, NULL, defconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:34 +02:00
										 |  |  | 	{"savedefconfig",   required_argument, NULL, savedefconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	{"allnoconfig",     no_argument,       NULL, allnoconfig}, | 
					
						
							|  |  |  | 	{"allyesconfig",    no_argument,       NULL, allyesconfig}, | 
					
						
							|  |  |  | 	{"allmodconfig",    no_argument,       NULL, allmodconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:31 +02:00
										 |  |  | 	{"alldefconfig",    no_argument,       NULL, alldefconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	{"randconfig",      no_argument,       NULL, randconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 	{"listnewconfig",   no_argument,       NULL, listnewconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:27 +02:00
										 |  |  | 	{"oldnoconfig",     no_argument,       NULL, oldnoconfig}, | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	{NULL, 0, NULL, 0} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | int main(int ac, char **av) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-12-17 01:34:58 -05:00
										 |  |  | 	int opt; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	const char *name; | 
					
						
							|  |  |  | 	struct stat tmpstat; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 	setlocale(LC_ALL, ""); | 
					
						
							|  |  |  | 	bindtextdomain(PACKAGE, LOCALEDIR); | 
					
						
							|  |  |  | 	textdomain(PACKAGE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-23 12:01:24 -04:00
										 |  |  | 	while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		input_mode = (enum input_mode)opt; | 
					
						
							| 
									
										
										
										
											2007-12-17 01:34:58 -05:00
										 |  |  | 		switch (opt) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case silentoldconfig: | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 			sync_kconfig = 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case defconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:34 +02:00
										 |  |  | 		case savedefconfig: | 
					
						
							| 
									
										
										
										
											2007-12-17 01:34:58 -05:00
										 |  |  | 			defconfig_file = optarg; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case randconfig: | 
					
						
							| 
									
										
										
										
											2009-03-12 15:15:31 +01:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			struct timeval now; | 
					
						
							|  |  |  | 			unsigned int seed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * Use microseconds derived seed, | 
					
						
							|  |  |  | 			 * compensate for systems where it may be zero | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			gettimeofday(&now, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1)); | 
					
						
							|  |  |  | 			srand(seed); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2009-03-12 15:15:31 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case '?': | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 			fprintf(stderr, _("See README for usage info\n")); | 
					
						
							| 
									
										
										
										
											2007-12-17 01:34:58 -05:00
										 |  |  | 			exit(1); | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-12-17 01:34:58 -05:00
										 |  |  | 	if (ac == optind) { | 
					
						
							| 
									
										
											  
											
												[PATCH] Kconfig i18n support
This patch adds i18n support for make *config, allowing users to have the
config process in their own language.
No printk was harmed in the process, don't worry, so all the bug reports,
kernel messages, etc, remain in english, just the user tools to configure
the kernel are internationalized.
Users not interested in translations can just unset the related LANG,
LC_ALL, etc env variables and have the config process in plain english,
something like:
LANG= make menuconfig
is enough for having the whole config process in english. Or just don't
install any translation file.
Translations for brazilian portuguese are being done by a team of
volunteers at:
http://www.visionflex.inf.br/kernel_ptbr/pmwiki.php/Principal/Traducoes
To start the translation process:
  make update-po-config
  This will generate the pot template named scripts/kconfig/linux.pot,
  copy it to, say, ~/es.po, to start the translation for spanish.
To test your translation, as root issue this command:
  msgfmt -o /usr/share/locale/es/LC_MESSAGES/linux.mo ~/es.po
  Replace "es" with your language code.
  Then execute, for instance:
  make menuconfig
The current patch doesn't use any optimization to reduce the size of the
generated .mo file, it is possible to use the config option as a key, but
this doesn't prevent the current patch from being used or the translations
done under the current scheme to be in any way lost if we chose to do any
kind of keying.
Thanks to Fabricio Vaccari for starting the pt_BR (brazilian portuguese)
translation effort, Thiago Maciera for helping me with the gconf.cc (QT
frontent) i18n coding and to all the volunteers that are already working on
the first translation, to pt_BR.
I left the question on whether to ship the translations with the stock kernel
sources to be discussed here, please share your suggestions.
Signed-off-by: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org
Signed-off-by: Andrew Morton <akpm@osdl.org>
											
										 
											2005-05-05 15:09:46 -07:00
										 |  |  | 		printf(_("%s: Kconfig file missing\n"), av[0]); | 
					
						
							| 
									
										
										
										
											2006-06-08 22:12:50 -07:00
										 |  |  | 		exit(1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-12-17 01:34:58 -05:00
										 |  |  | 	name = av[optind]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	conf_parse(name); | 
					
						
							|  |  |  | 	//zconfdump(stdout);
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 	if (sync_kconfig) { | 
					
						
							| 
									
										
										
										
											2009-05-18 01:36:53 +02:00
										 |  |  | 		name = conf_get_configname(); | 
					
						
							|  |  |  | 		if (stat(name, &tmpstat)) { | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 			fprintf(stderr, _("***\n" | 
					
						
							| 
									
										
										
										
											2010-08-14 23:51:40 -04:00
										 |  |  | 				"*** Configuration file \"%s\" not found!\n" | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 				"***\n" | 
					
						
							|  |  |  | 				"*** Please run some configurator (e.g. \"make oldconfig\" or\n" | 
					
						
							|  |  |  | 				"*** \"make menuconfig\" or \"make xconfig\").\n" | 
					
						
							| 
									
										
										
										
											2009-05-18 01:36:53 +02:00
										 |  |  | 				"***\n"), name); | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 			exit(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	switch (input_mode) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case defconfig: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (!defconfig_file) | 
					
						
							|  |  |  | 			defconfig_file = conf_get_default_confname(); | 
					
						
							|  |  |  | 		if (conf_read(defconfig_file)) { | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 			printf(_("***\n" | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				"*** Can't find default configuration \"%s\"!\n" | 
					
						
							| 
									
										
										
										
											2008-01-11 23:44:39 +01:00
										 |  |  | 				"***\n"), defconfig_file); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			exit(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:34 +02:00
										 |  |  | 	case savedefconfig: | 
					
						
							|  |  |  | 		conf_read(NULL); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case silentoldconfig: | 
					
						
							|  |  |  | 	case oldaskconfig: | 
					
						
							|  |  |  | 	case oldconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 	case listnewconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:27 +02:00
										 |  |  | 	case oldnoconfig: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		conf_read(NULL); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case allnoconfig: | 
					
						
							|  |  |  | 	case allyesconfig: | 
					
						
							|  |  |  | 	case allmodconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:31 +02:00
										 |  |  | 	case alldefconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case randconfig: | 
					
						
							| 
									
										
										
										
											2005-11-08 21:34:49 -08:00
										 |  |  | 		name = getenv("KCONFIG_ALLCONFIG"); | 
					
						
							|  |  |  | 		if (name && !stat(name, &tmpstat)) { | 
					
						
							| 
									
										
										
										
											2006-06-08 22:12:42 -07:00
										 |  |  | 			conf_read_simple(name, S_DEF_USER); | 
					
						
							| 
									
										
										
										
											2005-11-08 21:34:49 -08:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		switch (input_mode) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case allnoconfig:	name = "allno.config"; break; | 
					
						
							|  |  |  | 		case allyesconfig:	name = "allyes.config"; break; | 
					
						
							|  |  |  | 		case allmodconfig:	name = "allmod.config"; break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:31 +02:00
										 |  |  | 		case alldefconfig:	name = "alldef.config"; break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		case randconfig:	name = "allrandom.config"; break; | 
					
						
							| 
									
										
										
										
											2005-11-08 21:34:49 -08:00
										 |  |  | 		default: break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (!stat(name, &tmpstat)) | 
					
						
							| 
									
										
										
										
											2006-06-08 22:12:42 -07:00
										 |  |  | 			conf_read_simple(name, S_DEF_USER); | 
					
						
							| 
									
										
										
										
											2005-11-08 21:34:49 -08:00
										 |  |  | 		else if (!stat("all.config", &tmpstat)) | 
					
						
							| 
									
										
										
										
											2006-06-08 22:12:42 -07:00
										 |  |  | 			conf_read_simple("all.config", S_DEF_USER); | 
					
						
							| 
									
										
										
										
											2005-11-08 21:34:49 -08:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (sync_kconfig) { | 
					
						
							|  |  |  | 		if (conf_get_changed()) { | 
					
						
							|  |  |  | 			name = getenv("KCONFIG_NOSILENTUPDATE"); | 
					
						
							|  |  |  | 			if (name && *name) { | 
					
						
							|  |  |  | 				fprintf(stderr, | 
					
						
							| 
									
										
										
										
											2010-08-14 23:51:40 -04:00
										 |  |  | 					_("\n*** The configuration requires explicit update.\n\n")); | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 				return 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		valid_stdin = isatty(0) && isatty(1) && isatty(2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 	switch (input_mode) { | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case allnoconfig: | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 		conf_set_all_new_symbols(def_no); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case allyesconfig: | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 		conf_set_all_new_symbols(def_yes); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case allmodconfig: | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 		conf_set_all_new_symbols(def_mod); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:31 +02:00
										 |  |  | 	case alldefconfig: | 
					
						
							|  |  |  | 		conf_set_all_new_symbols(def_default); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case randconfig: | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 		conf_set_all_new_symbols(def_random); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case defconfig: | 
					
						
							| 
									
										
										
										
											2008-06-30 23:02:59 +02:00
										 |  |  | 		conf_set_all_new_symbols(def_default); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:34 +02:00
										 |  |  | 	case savedefconfig: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case oldaskconfig: | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 		rootEntry = &rootmenu; | 
					
						
							|  |  |  | 		conf(&rootmenu); | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 		input_mode = silentoldconfig; | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 		/* fall through */ | 
					
						
							| 
									
										
										
										
											2010-08-06 07:13:54 +02:00
										 |  |  | 	case oldconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 	case listnewconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:27 +02:00
										 |  |  | 	case oldnoconfig: | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:26 +02:00
										 |  |  | 	case silentoldconfig: | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 		/* Update until a loop caused no more changes */ | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			conf_cnt = 0; | 
					
						
							|  |  |  | 			check_conf(&rootmenu); | 
					
						
							| 
									
										
										
										
											2010-05-06 12:48:34 -04:00
										 |  |  | 		} while (conf_cnt && | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 			 (input_mode != listnewconfig && | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:27 +02:00
										 |  |  | 			  input_mode != oldnoconfig)); | 
					
						
							| 
									
										
										
										
											2008-06-30 22:45:38 +02:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 	if (sync_kconfig) { | 
					
						
							|  |  |  | 		/* silentoldconfig is used during the build so we shall update autoconf.
 | 
					
						
							|  |  |  | 		 * All other commands are only used to generate a config. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (conf_get_changed() && conf_write(NULL)) { | 
					
						
							| 
									
										
										
										
											2010-08-14 23:51:40 -04:00
										 |  |  | 			fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n")); | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 			exit(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (conf_write_autoconf()) { | 
					
						
							| 
									
										
										
										
											2010-08-14 23:51:40 -04:00
										 |  |  | 			fprintf(stderr, _("\n*** Error during update of the configuration.\n\n")); | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:34 +02:00
										 |  |  | 	} else if (input_mode == savedefconfig) { | 
					
						
							|  |  |  | 		if (conf_write_defconfig(defconfig_file)) { | 
					
						
							|  |  |  | 			fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"), | 
					
						
							|  |  |  | 			        defconfig_file); | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 	} else if (input_mode != listnewconfig) { | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 		if (conf_write(NULL)) { | 
					
						
							| 
									
										
										
										
											2010-08-14 23:51:40 -04:00
										 |  |  | 			fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n")); | 
					
						
							| 
									
										
										
										
											2008-09-29 05:27:10 +02:00
										 |  |  | 			exit(1); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-06-08 22:12:39 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-31 23:35:28 +02:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-08-04 16:03:16 -06:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Helper function to facilitate fgets() by Jean Sacren. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void xfgets(str, size, in) | 
					
						
							|  |  |  | 	char *str; | 
					
						
							|  |  |  | 	int size; | 
					
						
							|  |  |  | 	FILE *in; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (fgets(str, size, in) == NULL) | 
					
						
							|  |  |  | 		fprintf(stderr, "\nError in reading or end of file.\n"); | 
					
						
							|  |  |  | } |