lkml.org 
[lkml]   [2003]   [Jun]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [2.5.70-bk-20030603] oldconfig always asking for machine type (x86)
Hi,

On 3 Jun 2003, Witold Krecicki wrote:

> Even if I'm doing this once after another, this a lil' bit complicates
> creating binary packages with kernel, as building it should not wait for
> any user input/interaction.

I think I found the problem, could you try the patch below?

bye, Roman

--- linux-2.5.70/scripts/kconfig/confdata.c 2003-05-28 22:47:05.000000000 +0200
+++ linux-2.5.70/scripts/kconfig/confdata.c 2003-06-04 02:13:38.000000000 +0200
@@ -243,7 +243,8 @@ int conf_read(const char *name)
prop = sym_get_choice_prop(sym);
sym->flags &= ~SYMBOL_NEW;
for (e = prop->expr; e; e = e->left.expr)
- sym->flags |= e->right.sym->flags & SYMBOL_NEW;
+ if (e->right.sym->visible != no)
+ sym->flags |= e->right.sym->flags & SYMBOL_NEW;
}

sym_change_count = 1;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:36    [W:0.550 / U:0.168 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site