linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [2.5.70-bk-20030603] oldconfig always asking for machine type (x86)
@ 2003-06-03 19:34 Witold Krecicki
  2003-06-03 23:55 ` Roman Zippel
  2003-06-04  0:20 ` Roman Zippel
  0 siblings, 2 replies; 4+ messages in thread
From: Witold Krecicki @ 2003-06-03 19:34 UTC (permalink / raw)
  To: linux-kernel

On today snap of 2.5.70 from linux-2.5 bk tree while making make
oldconfig I always get:
Subarchitecture Type
> 1. PC-compatible (X86_PC)
  2. Voyager (NCR) (X86_VOYAGER)
  3. NUMAQ (IBM/Sequent) (X86_NUMAQ)
  4. SGI 320/540 (Visual Workstation) (X86_VISWS)
choice[1-4]:
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.
WK


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [2.5.70-bk-20030603] oldconfig always asking for machine type (x86)
  2003-06-03 19:34 [2.5.70-bk-20030603] oldconfig always asking for machine type (x86) Witold Krecicki
@ 2003-06-03 23:55 ` Roman Zippel
  2003-06-04  0:20 ` Roman Zippel
  1 sibling, 0 replies; 4+ messages in thread
From: Roman Zippel @ 2003-06-03 23:55 UTC (permalink / raw)
  To: Witold Krecicki; +Cc: linux-kernel

Hi,

On 3 Jun 2003, Witold Krecicki wrote:

> choice[1-4]:
> 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.

Could you send me your .config?
Thanks.

bye, Roman


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [2.5.70-bk-20030603] oldconfig always asking for machine type (x86)
  2003-06-03 19:34 [2.5.70-bk-20030603] oldconfig always asking for machine type (x86) Witold Krecicki
  2003-06-03 23:55 ` Roman Zippel
@ 2003-06-04  0:20 ` Roman Zippel
  2003-06-05  8:49   ` Witold Krecicki
  1 sibling, 1 reply; 4+ messages in thread
From: Roman Zippel @ 2003-06-04  0:20 UTC (permalink / raw)
  To: Witold Krecicki; +Cc: linux-kernel

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;


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [2.5.70-bk-20030603] oldconfig always asking for machine type (x86)
  2003-06-04  0:20 ` Roman Zippel
@ 2003-06-05  8:49   ` Witold Krecicki
  0 siblings, 0 replies; 4+ messages in thread
From: Witold Krecicki @ 2003-06-05  8:49 UTC (permalink / raw)
  To: linux-kernel

W liście z ?ro, 04-06-2003, godz. 02:20, Roman Zippel pisze: 
> 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?
OK, it's working now :) 
WK


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-06-05  8:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-03 19:34 [2.5.70-bk-20030603] oldconfig always asking for machine type (x86) Witold Krecicki
2003-06-03 23:55 ` Roman Zippel
2003-06-04  0:20 ` Roman Zippel
2003-06-05  8:49   ` Witold Krecicki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).