Re: [uml-devel] [PATCH 1/3] UML - Fix stub address calculations

2007-10-08 Thread Jeff Dike
On Tue, Oct 02, 2007 at 08:43:00AM +0200, Geert Uytterhoeven wrote: > Hmm, perhaps you can use _AC() (from ) to defined the original > constants instead, so you don't need the #ifdefs? Ah, neat. Those are exactly what I need. Jeff -- Work email - jdike at linux

Re: [uml-devel] [PATCH 1/3] UML - Fix stub address calculations

2007-10-01 Thread Geert Uytterhoeven
On Mon, 1 Oct 2007, Jeff Dike wrote: > The Kconfig language seems not to allow calculation of hex constants, > so I moved this to as-layout.h. CONFIG_STUB_CODE, CONFIG_STUB_DATA, > and CONFIG_STUB_START are now gone. In their place are STUB_CODE, > STUB_DATA, and STUB_START in as-layout.h. Hmm,