[kbuild-devel] Re: [PATCH] [kbuild] Possibility to sanely link against off-directory .so

2002-11-06 Thread Sam Ravnborg
On Wed, Nov 06, 2002 at 07:52:30PM +0100, Petr Baudis wrote: > Hello, > > this patch (against 2.5.46) introduces two special variables which make it > actually possible to have .so as the only product of build in some directory > and to link something against .so being built in another directo

Re: [kbuild-devel] string and if

2002-11-06 Thread Roman Zippel
Robert Schwebel wrote: > config GNU_TARGET > string "i386-linux" if OPT_I386 > string "i486-linux" if OPT_I486 > string "i686-linux" if OPT_I686 > string "arm-linux" if OPT_ARM4 > default "-not configured-" > > for example give > > GNU_TARGET="arm-linux

Re: [kbuild-devel] [upatch] tweak for !KBUILD_VERBOSE output

2002-11-06 Thread Kai Germaschewski
On Mon, 4 Nov 2002, Peter Samuelson wrote: > > Now we only need to convince Peter. > > I just sent you a patch with all [M], so I guess you can consider me > sufficiently convinced. I'm not, really, but it's hardly an important > issue, so I figured I'd stop wasting all of our time. Besides, I

Re: [kbuild-devel] A hole in kernel space!

2002-11-06 Thread Peter Samuelson
Note: this question really belongs on <[EMAIL PROTECTED]>. [Pannaga Bhushan] > I am looking for a setup where I need to have a certain amount > of data always available to the kernel. The size of data I am looking > at is abt 40MB(preferably, but I will settle for 20MB too) . So the > nor

[kbuild-devel] string and if

2002-11-06 Thread Robert Schwebel
Hi, I'm currently trying to port a program which used CML1 to lkc/kconfig. Now I need a string variable which is dependend on a bool. Shouldn't this: config GNU_TARGET string "i386-linux" if OPT_I386 string "i486-linux" if OPT_I486 string "i686-linux" if OPT_I686