Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Adrian Bunk
On Fri, Jan 18, 2008 at 10:06:33PM +0100, Ingo Molnar wrote: > > * Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > > > thx, i've added this to x86.git. > > > > > > this broke "make ARCH=i386 randconfig" from working when there's a > > > 64-bit .config present. (it will not properly generate a

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > thx, i've added this to x86.git. > > > > this broke "make ARCH=i386 randconfig" from working when there's a > > 64-bit .config present. (it will not properly generate a 32-bit > > config, but still a 64-bit config) > > Does it always generate a

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Adrian Bunk
On Fri, Jan 18, 2008 at 06:00:37PM +0100, Ingo Molnar wrote: > > * Ingo Molnar <[EMAIL PROTECTED]> wrote: > > > > > * Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > > > # Select 32 or 64 bit > > > config 64BIT > > > - bool "64-bit kernel" if ARCH = "x86" > > > + bool "64-bit kernel" > > >

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Ingo Molnar <[EMAIL PROTECTED]> wrote: > > * Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > # Select 32 or 64 bit > > config 64BIT > > - bool "64-bit kernel" if ARCH = "x86" > > + bool "64-bit kernel" > > default ARCH = "x86_64" > > help > > Say yes to build a 64-bit kernel

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Adrian Bunk
On Fri, Jan 18, 2008 at 01:02:48PM +0100, Ingo Molnar wrote: > > * Sam Ravnborg <[EMAIL PROTECTED]> wrote: > > > > Style question, would the following be preferred? > > > > > > config 64BIT > > > def_bool ARCH = "x86_64" > > > prompt "64-bit kernel" > > > help... > > > > No. > > It is

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Sam Ravnborg <[EMAIL PROTECTED]> wrote: > > Style question, would the following be preferred? > > > > config 64BIT > > def_bool ARCH = "x86_64" > > prompt "64-bit kernel" > > help... > > No. > It is most common to let the prompt follow the type and not > as a separate property.

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Harvey Harrison <[EMAIL PROTECTED]> wrote: > > On Fri, 2008-01-18 at 11:44 +0100, Ingo Molnar wrote: > > * Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > > > # Select 32 or 64 bit > > > config 64BIT > > > - bool "64-bit kernel" if ARCH = "x86" > > > + bool "64-bit kernel" > > > default

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Sam Ravnborg
On Fri, Jan 18, 2008 at 02:50:48AM -0800, Harvey Harrison wrote: > > On Fri, 2008-01-18 at 11:44 +0100, Ingo Molnar wrote: > > * Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > > > # Select 32 or 64 bit > > > config 64BIT > > > - bool "64-bit kernel" if ARCH = "x86" > > > + bool "64-bit kernel" >

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Harvey Harrison
On Fri, 2008-01-18 at 11:44 +0100, Ingo Molnar wrote: > * Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > # Select 32 or 64 bit > > config 64BIT > > - bool "64-bit kernel" if ARCH = "x86" > > + bool "64-bit kernel" > > default ARCH = "x86_64" > > help > > Say yes to build a

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Adrian Bunk <[EMAIL PROTECTED]> wrote: > # Select 32 or 64 bit > config 64BIT > - bool "64-bit kernel" if ARCH = "x86" > + bool "64-bit kernel" > default ARCH = "x86_64" > help > Say yes to build a 64-bit kernel - formerly known as x86_64 thx, i've added this to

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Harvey Harrison
On Fri, 2008-01-18 at 11:44 +0100, Ingo Molnar wrote: * Adrian Bunk [EMAIL PROTECTED] wrote: # Select 32 or 64 bit config 64BIT - bool 64-bit kernel if ARCH = x86 + bool 64-bit kernel default ARCH = x86_64 help Say yes to build a 64-bit kernel - formerly known

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Harvey Harrison [EMAIL PROTECTED] wrote: On Fri, 2008-01-18 at 11:44 +0100, Ingo Molnar wrote: * Adrian Bunk [EMAIL PROTECTED] wrote: # Select 32 or 64 bit config 64BIT - bool 64-bit kernel if ARCH = x86 + bool 64-bit kernel default ARCH = x86_64 help Say

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Sam Ravnborg
On Fri, Jan 18, 2008 at 02:50:48AM -0800, Harvey Harrison wrote: On Fri, 2008-01-18 at 11:44 +0100, Ingo Molnar wrote: * Adrian Bunk [EMAIL PROTECTED] wrote: # Select 32 or 64 bit config 64BIT - bool 64-bit kernel if ARCH = x86 + bool 64-bit kernel default ARCH = x86_64

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Adrian Bunk [EMAIL PROTECTED] wrote: # Select 32 or 64 bit config 64BIT - bool 64-bit kernel if ARCH = x86 + bool 64-bit kernel default ARCH = x86_64 help Say yes to build a 64-bit kernel - formerly known as x86_64 thx, i've added this to x86.git.

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Sam Ravnborg [EMAIL PROTECTED] wrote: Style question, would the following be preferred? config 64BIT def_bool ARCH = x86_64 prompt 64-bit kernel help... No. It is most common to let the prompt follow the type and not as a separate property. hm, ok. I guess

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Adrian Bunk
On Fri, Jan 18, 2008 at 01:02:48PM +0100, Ingo Molnar wrote: * Sam Ravnborg [EMAIL PROTECTED] wrote: Style question, would the following be preferred? config 64BIT def_bool ARCH = x86_64 prompt 64-bit kernel help... No. It is most common to let the prompt

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Ingo Molnar
* Ingo Molnar [EMAIL PROTECTED] wrote: * Adrian Bunk [EMAIL PROTECTED] wrote: # Select 32 or 64 bit config 64BIT - bool 64-bit kernel if ARCH = x86 + bool 64-bit kernel default ARCH = x86_64 help Say yes to build a 64-bit kernel - formerly known as x86_64

Re: [2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-18 Thread Adrian Bunk
On Fri, Jan 18, 2008 at 06:00:37PM +0100, Ingo Molnar wrote: * Ingo Molnar [EMAIL PROTECTED] wrote: * Adrian Bunk [EMAIL PROTECTED] wrote: # Select 32 or 64 bit config 64BIT - bool 64-bit kernel if ARCH = x86 + bool 64-bit kernel default ARCH = x86_64 help

[2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-17 Thread Adrian Bunk
Recently someone told me he had a bug on x86 and to reproduce it I should "'make allyesconfig' and disable CONFIG_HOTPLUG=y". But I didn't see it. "make allyesconfig" is ambiguous on x86 and he had a 64bit computer. There go another two hours compile time. It makes sense to have the Kconfig

[2.6.24 patch] x86: allow 64bit setting in Kconfig

2008-01-17 Thread Adrian Bunk
Recently someone told me he had a bug on x86 and to reproduce it I should 'make allyesconfig' and disable CONFIG_HOTPLUG=y. But I didn't see it. make allyesconfig is ambiguous on x86 and he had a 64bit computer. There go another two hours compile time. It makes sense to have the Kconfig