[kbuild-devel] Re: CML2 1.9.9 ia64

2001-12-17 Thread Keith Owens
On Mon, 17 Dec 2001 02:35:52 -0500, "Eric S. Raymond" <[EMAIL PROTECTED]> wrote: >The right answer looks like this: >private VMLINUX_X86 VMLINUZ_X86 BZIMAGE_X86 ZIMAGE_X86 >choices kernel_format_x86 # The format that the kernel is to be compiled in > VMLINUX_X86 VMLINUZ_X86 BZIMAGE_X86 ZI

[kbuild-devel] Re: Announce: Kernel Build for 2.5, Release 1.11 is available

2001-12-17 Thread Ben Collins
On Mon, Dec 17, 2001 at 04:54:53PM +1100, Keith Owens wrote: > On Mon, 17 Dec 2001 00:28:12 -0500, > Ben Collins <[EMAIL PROTECTED]> wrote: > >If anyone needs them, I can provide a small diff for the sparc/sparc64 > >Vger CVS changes to apply on top of the main kbuild-2.5 patch. Very > >minor cha

[kbuild-devel] Re: CML2 with python1

2001-12-17 Thread Pavel Machek
Hi > > But it _is_ entirely practical to run CML2 with a bog-standard python > > 1.5 interpreter. I just did a search/replace for the python2-ism's like > > > > +==> = + , and > > .() => string.(, ) > > > > Worked around some missing functionality in the older shlex and curses

Re: [kbuild-devel] Re: CML2 1.9.9 ia64

2001-12-17 Thread Tom Rini
On Mon, Dec 17, 2001 at 10:03:11PM +1100, Keith Owens wrote: > On Mon, 17 Dec 2001 02:35:52 -0500, > "Eric S. Raymond" <[EMAIL PROTECTED]> wrote: > >The right answer looks like this: > >private VMLINUX_X86 VMLINUZ_X86 BZIMAGE_X86 ZIMAGE_X86 > >choices kernel_format_x86 # The format that the kerne

[kbuild-devel] CML2 1,9.10 is available

2001-12-17 Thread Eric S. Raymond
The latest version is always available at http://www.tuxedo.org/~esr/cml2/ Release 1.9.10: Mon Dec 17 16:23:01 EST 2001 * Rulebase and help sync with 2.4.17-rc1/2.5.1. * Configure.help now covers every live symbol in these kernels. * SuperH port update by Niibe Yutaka.

[kbuild-devel] .tmp_targets failing?

2001-12-17 Thread Tom Rini
Hey all. I'm trying to get PPC going again with kbuild-2.5, but I'm runnign into some wierd errors. Anyone know what would cause the .tmp_targets rule to fail with an error 139? If I change: # Must extract delayed knowledge about targets before phase 5, otherwise # a few # targets are not mar

Re: [kbuild-devel] .tmp_targets failing?

2001-12-17 Thread Keith Owens
On Mon, 17 Dec 2001 15:46:30 -0700, Tom Rini <[EMAIL PROTECTED]> wrote: >Hey all. I'm trying to get PPC going again with kbuild-2.5, but I'm >runnign into some wierd errors. Anyone know what would cause the >.tmp_targets rule to fail with an error 139? If I change: 139 = 128+11 -> sig 11 ->

Re: [kbuild-devel] .tmp_targets failing?

2001-12-17 Thread Tom Rini
On Tue, Dec 18, 2001 at 10:31:51AM +1100, Keith Owens wrote: > On Mon, 17 Dec 2001 15:46:30 -0700, > Tom Rini <[EMAIL PROTECTED]> wrote: > >Hey all. I'm trying to get PPC going again with kbuild-2.5, but I'm > >runnign into some wierd errors. Anyone know what would cause the > >.tmp_targets ru

Re: [kbuild-devel] Re: CML2 1.9.9 ia64

2001-12-17 Thread Keith Owens
On Mon, 17 Dec 2001 11:20:11 -0700, Tom Rini <[EMAIL PROTECTED]> wrote: >On Mon, Dec 17, 2001 at 10:03:11PM +1100, Keith Owens wrote: >> I can live with that - just. The help text for each of the build >> formats must be duplicated, even though VMLINUZ_X86 is _identical_ to >> VMLINUZ_IA64. Peo

Re: [kbuild-devel] Re: CML2 1.9.9 ia64

2001-12-17 Thread Tom Rini
On Tue, Dec 18, 2001 at 10:51:55AM +1100, Keith Owens wrote: > On Mon, 17 Dec 2001 11:20:11 -0700, > Tom Rini <[EMAIL PROTECTED]> wrote: > >On Mon, Dec 17, 2001 at 10:03:11PM +1100, Keith Owens wrote: > >> I can live with that - just. The help text for each of the build > >> formats must be dupl

[kbuild-devel] kbuild 2.5 on alpha - take 2

2001-12-17 Thread Ghozlane Toumi
Hi all... updated version of kbuild for alpha . the patch is against kbuild-2.5-2.4.16-2 new this week: - reworked arch/alpha/Makefile.defs.config , this is hopefully both right and more readable - added initrd script support - reworked arch/alpha/lib/Makefile.in, since lib.a order don't matte

Re: [kbuild-devel] Re: CML2 1.9.9 ia64

2001-12-17 Thread Greg Banks
Keith Owens wrote: > > I can live with that - just. The help text for each of the build > formats must be duplicated, even though VMLINUZ_X86 is _identical_ to > VMLINUZ_IA64. People who read the rules might think that VMLINUZ has > different formats on the two architectures. I see lots of com

[kbuild-devel] 'distclean' on kbuild-2.5?

2001-12-17 Thread Tom Rini
Where'd the 'distclean' target go in kbuild-2.5? Shouldn't it be at least a synonym for mrproper now? -- Tom Rini (TR1265) http://gate.crashing.org/~trini/ ___ kbuild-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/k

Re: [kbuild-devel] .tmp_targets failing?

2001-12-17 Thread Keith Owens
arch_head must be defined in arch/$(ARCH)/Makefile.defs.noconfig. The value of arch_head is used by pp_makefile2 to generate the global makefile, Makefile.defs.config is not read until after the global makefile is created, in fact Makefile.defs.config is only read by the global makefile. There i

Re: [kbuild-devel] 'distclean' on kbuild-2.5?

2001-12-17 Thread Keith Owens
On Mon, 17 Dec 2001 20:28:43 -0700, Tom Rini <[EMAIL PROTECTED]> wrote: >Where'd the 'distclean' target go in kbuild-2.5? Shouldn't it be at >least a synonym for mrproper now? Why? With separate source and object trees there is no need for any clean, the source is always pure. With common sou

Re: [kbuild-devel] .tmp_targets failing?

2001-12-17 Thread Keith Owens
On Tue, 18 Dec 2001 14:38:05 +1100, Keith Owens <[EMAIL PROTECTED]> wrote: >arch_head must be defined in arch/$(ARCH)/Makefile.defs.noconfig. The >value of arch_head is used by pp_makefile2 to generate the global >makefile, Makefile.defs.config is not read until after the global >makefile is cre

[kbuild-devel] Re: Announce: Kernel Build for 2.5, Release 1.11 is available

2001-12-17 Thread Keith Owens
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Content-Type: text/plain; charset=us-ascii Patch for IA64 support using kbuild 2.5 for 2.4.16-ia64-011214. Build the kbuild 2.5 for ia64-011214 tree in this order: Linus's 2.4.16 kernel. kbuild-2.5-2.4.16-2 (common and ix86 patches). linux-2.4