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. TIA, pete -- Peter C. Lai University of Connecticut Dept. of Molecular and Cell Biology Yale University School of Medicine SenseLab | Research Assistant http://cowbert.2y.net/
On Thu, 24 Feb 2005 09:56:22 -0500, Peter C. Lai <sirmoo@cowbert.2y.net> wrote:> 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. >Yes you can build modules seperately from a kernel build cd /usr/src/sys/modules/umass make obj make make install Scot
I believe you can cd /usr/src/sys/modules/umass, compile/install/load umass.ko. On Thu, 24 Feb 2005 09:56:22 -0500, Peter C. Lai <sirmoo@cowbert.2y.net> wrote:> 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. > > TIA, > pete > > -- > Peter C. Lai > University of Connecticut > Dept. of Molecular and Cell Biology > Yale University School of Medicine > SenseLab | Research Assistant > http://cowbert.2y.net/ > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >
In message: <20050224145622.GE261@cowbert.2y.net> "Peter C. Lai" <sirmoo@cowbert.2y.net> 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