summaryrefslogtreecommitdiff
path: root/scripts/kconfig/conf.c
authorkergoth <kergoth>2003-01-16 18:04:11 (UTC)
committer kergoth <kergoth>2003-01-16 18:04:11 (UTC)
commit3904d85eac20dfd21cf2a3245977f9946865fd92 (patch) (side-by-side diff)
tree8d5b2217c1b54a0c439815ec02db3f5235c99daa /scripts/kconfig/conf.c
parent0eec393ef2dd8b43db96c86e80e307f73a771fae (diff)
downloadopie-3904d85eac20dfd21cf2a3245977f9946865fd92.zip
opie-3904d85eac20dfd21cf2a3245977f9946865fd92.tar.gz
opie-3904d85eac20dfd21cf2a3245977f9946865fd92.tar.bz2
Update LinuxKernelConf to 1.3, latest available.
Diffstat (limited to 'scripts/kconfig/conf.c') (more/less context) (show whitespace changes)
-rw-r--r--scripts/kconfig/conf.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c
index 74c94c2..1602d5f 100644
--- a/scripts/kconfig/conf.c
+++ b/scripts/kconfig/conf.c
@@ -117,2 +117,3 @@ static void conf_askvalue(struct symbol *sym, const char *def)
case ask_all:
+ fflush(stdout);
fgets(line, 128, stdin);
@@ -344,2 +345,4 @@ static int conf_choice(struct menu *menu)
case ask_all:
+ if (is_new)
+ sym->flags |= SYMBOL_NEW;
conf_askvalue(sym, menu_get_prompt(def_menu));
@@ -359,3 +362,3 @@ static int conf_choice(struct menu *menu)
if (line[0]) {
- len = strlen(line) - 1;
+ len = strlen(line);
line[len] = 0;
@@ -366,3 +369,3 @@ static int conf_choice(struct menu *menu)
continue;
- if (!strncmp(line, menu_get_prompt(cmenu), len)) {
+ if (!strncasecmp(line, menu_get_prompt(cmenu), len)) {
def_menu = cmenu;