LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* Menuconfig has butterfly effects?
@ 2007-02-27 23:12 Rob Landley
  2007-02-27 23:36 ` Randy Dunlap
  2007-02-27 23:43 ` Gregor Jasny
  0 siblings, 2 replies; 5+ messages in thread
From: Rob Landley @ 2007-02-27 23:12 UTC (permalink / raw)
  To: linux-kernel

I ran "make ARCH=x86_64 menuconfig", did a lot of editing, and saved 
the .config.  Then I copied that to a backup, ran "make oldconfig" on the 
config I'd just saved, and compared it with the backup:

--- .config     2007-02-27 18:10:01.000000000 -0500
+++ tryit       2007-02-27 18:09:09.000000000 -0500
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
 # Linux kernel version: 2.6.20
-# Tue Feb 27 18:10:01 2007
+# Tue Feb 27 18:08:41 2007
 #
 CONFIG_X86_64=y
 CONFIG_64BIT=y
@@ -120,6 +120,9 @@
 # CONFIG_PREEMPT_VOLUNTARY is not set
 # CONFIG_PREEMPT is not set
 CONFIG_ARCH_FLATMEM_ENABLE=y
+# CONFIG_FLATMEM_MANUAL is not set
+# CONFIG_DISCONTIGMEM_MANUAL is not set
+# CONFIG_SPARSEMEM_MANUAL is not set
 CONFIG_FLATMEM=y
 CONFIG_FLAT_NODE_MEM_MAP=y
 # CONFIG_SPARSEMEM_STATIC is not set

The first hunk I expect, the second I did not.  Anybody care to venture a 
guess why the visibility logic is unstable?

Rob
-- 
"Perfection is reached, not when there is no longer anything to add, but
when there is no longer anything to take away." - Antoine de Saint-Exupery

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

* Re: Menuconfig has butterfly effects?
  2007-02-27 23:12 Menuconfig has butterfly effects? Rob Landley
@ 2007-02-27 23:36 ` Randy Dunlap
  2007-03-01  0:15   ` Rob Landley
  2007-02-27 23:43 ` Gregor Jasny
  1 sibling, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2007-02-27 23:36 UTC (permalink / raw)
  To: Rob Landley; +Cc: linux-kernel

On Tue, 27 Feb 2007 18:12:42 -0500 Rob Landley wrote:

> I ran "make ARCH=x86_64 menuconfig", did a lot of editing, and saved 
> the .config.  Then I copied that to a backup, ran "make oldconfig" on the 
> config I'd just saved, and compared it with the backup:
> 
> --- .config     2007-02-27 18:10:01.000000000 -0500
> +++ tryit       2007-02-27 18:09:09.000000000 -0500
> @@ -1,7 +1,7 @@
>  #
>  # Automatically generated make config: don't edit
>  # Linux kernel version: 2.6.20
> -# Tue Feb 27 18:10:01 2007
> +# Tue Feb 27 18:08:41 2007
>  #
>  CONFIG_X86_64=y
>  CONFIG_64BIT=y
> @@ -120,6 +120,9 @@
>  # CONFIG_PREEMPT_VOLUNTARY is not set
>  # CONFIG_PREEMPT is not set
>  CONFIG_ARCH_FLATMEM_ENABLE=y
> +# CONFIG_FLATMEM_MANUAL is not set
> +# CONFIG_DISCONTIGMEM_MANUAL is not set
> +# CONFIG_SPARSEMEM_MANUAL is not set
>  CONFIG_FLATMEM=y
>  CONFIG_FLAT_NODE_MEM_MAP=y
>  # CONFIG_SPARSEMEM_STATIC is not set
> 
> The first hunk I expect, the second I did not.  Anybody care to venture a 
> guess why the visibility logic is unstable?

can we get .config^Wtryit ?  (version 0, not version 1)

---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: Menuconfig has butterfly effects?
  2007-02-27 23:12 Menuconfig has butterfly effects? Rob Landley
  2007-02-27 23:36 ` Randy Dunlap
@ 2007-02-27 23:43 ` Gregor Jasny
  2007-03-01  0:07   ` Rob Landley
  1 sibling, 1 reply; 5+ messages in thread
From: Gregor Jasny @ 2007-02-27 23:43 UTC (permalink / raw)
  To: Rob Landley; +Cc: linux-kernel

Hi,

2007/2/28, Rob Landley <rob@landley.net>:
> I ran "make ARCH=x86_64 menuconfig", did a lot of editing, and saved
> the .config.  Then I copied that to a backup, ran "make oldconfig" on the

I'd try with "make ARCH=x86_64 oldconfig"

Gregor

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

* Re: Menuconfig has butterfly effects?
  2007-02-27 23:43 ` Gregor Jasny
@ 2007-03-01  0:07   ` Rob Landley
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Landley @ 2007-03-01  0:07 UTC (permalink / raw)
  To: Gregor Jasny; +Cc: linux-kernel

On Tuesday 27 February 2007 6:43 pm, Gregor Jasny wrote:
> Hi,
> 
> 2007/2/28, Rob Landley <rob@landley.net>:
> > I ran "make ARCH=x86_64 menuconfig", did a lot of editing, and saved
> > the .config.  Then I copied that to a backup, ran "make oldconfig" on the
> 
> I'd try with "make ARCH=x86_64 oldconfig"

I did.  Sorry for the confusion there.  (If I'd gotten that wrong, there'd 
have been a bit more change. :)

Rob
-- 
"Perfection is reached, not when there is no longer anything to add, but
when there is no longer anything to take away." - Antoine de Saint-Exupery

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

* Re: Menuconfig has butterfly effects?
  2007-02-27 23:36 ` Randy Dunlap
@ 2007-03-01  0:15   ` Rob Landley
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Landley @ 2007-03-01  0:15 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel

On Tuesday 27 February 2007 6:36 pm, Randy Dunlap wrote:
> > The first hunk I expect, the second I did not.  Anybody care to venture a 
> > guess why the visibility logic is unstable?
> 
> can we get .config^Wtryit ?  (version 0, not version 1)

Unfortunately, the first .config was generated by me tooling around in 
menuconfig, and then overwritten by a later build.  And now I can't reproduce 
the problem. :(

Rob
-- 
"Perfection is reached, not when there is no longer anything to add, but
when there is no longer anything to take away." - Antoine de Saint-Exupery

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

end of thread, other threads:[~2007-03-01  0:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-27 23:12 Menuconfig has butterfly effects? Rob Landley
2007-02-27 23:36 ` Randy Dunlap
2007-03-01  0:15   ` Rob Landley
2007-02-27 23:43 ` Gregor Jasny
2007-03-01  0:07   ` Rob Landley

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).