From owner-freebsd-questions@FreeBSD.ORG Wed Mar 2 16:15:10 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80C5716A4D0; Wed, 2 Mar 2005 16:15:10 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42B8C43D49; Wed, 2 Mar 2005 16:15:09 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.13.3/8.13.1) with ESMTP id j22GDuDX056935; Wed, 2 Mar 2005 09:14:02 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 02 Mar 2005 09:14:15 -0700 (MST) Message-Id: <20050302.091415.101560664.imp@bsdimp.com> To: sirmoo@cowbert.2y.net From: "M. Warner Losh" In-Reply-To: <20050224145622.GE261@cowbert.2y.net> References: <20050224145622.GE261@cowbert.2y.net> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-stable@freebsd.org cc: freebsd-questions@freebsd.org Subject: Re: building KLDs in RELENG_4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Mar 2005 16:15:10 -0000 In message: <20050224145622.GE261@cowbert.2y.net> "Peter C. Lai" writes: : Is there a way to build kernel modules by themselves without having to : build the entire kernel? I am adding umass support to a 4.x machine but : I don't want to build the entire kernel. I already have scbus, but I need : da and of course, umass. cd src/sys/modules/umass ; make all install clean This assumes that the sources match what's on the system. Warner