Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 11 Dec 2002 15:21:18 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 11 Dec 2002 15:21:18 -0500 Received: from chaos.physics.uiowa.edu ([128.255.34.189]:30696 "EHLO chaos.physics.uiowa.edu") by vger.kernel.org with ESMTP id ; Wed, 11 Dec 2002 15:21:16 -0500 Date: Wed, 11 Dec 2002 14:28:53 -0600 (CST) From: Kai Germaschewski X-X-Sender: kai@chaos.physics.uiowa.edu To: Jeff Garzik cc: Dave Jones , Linux Kernel Subject: Re: 2.5 Changes doc update. In-Reply-To: <20021211181337.GD2612@gtf.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1958 Lines: 47 On Wed, 11 Dec 2002, Jeff Garzik wrote: > On Wed, Dec 11, 2002 at 06:07:19PM +0000, Dave Jones wrote: > > On Wed, Dec 11, 2002 at 12:58:10PM -0500, Jeff Garzik wrote: > > > I think the coolest things (to me) of the new build system need to be > > > noted too, > > > > > > - "make" is now the preferred target; it does and modules. > > > - "make -jN" is now the preferred parallel-make execution. Do not > > > bother to provide "MAKE=xxx". > > > > Yup. Added. Thanks. > > Something else that I've noticed (but not found documented) is that > > make dep seems to be automagickly done somewhen. An explicit make dep > > takes about a second, and doesn't seem to do much at all. > > I would check with Kai on that... IIRC there _is_ a purpose to "make > dep", creating some file that's needed before the build process begins. > Maybe that's fixed now... There's really only one reason why "make dep" is still there, i.e. the future of modversions isn't quite figured out yet. - When modversions was still working, "make dep" did regenerate the versioning checksums, it was run automatically the first time, but to rerun it, one had to manually do "make dep". Currently, it really isn't necessary to run "make dep" at all, but as I said, it's not impossible that this changes again. When Rusty's plans w.r.t modversions work out, "make dep" should be history by 2.6, though. Additional points to consider for davej's document: - Try "make KBUILD_VERBOSE=0