Date: Tue, 19 Jan 1999 09:37:48 +0000 (GMT) From: Doug Rabson <dfr@nlsystems.com> To: Julian Elischer <julian@whistle.com> Cc: current@FreeBSD.ORG Subject: Re: KLD cannot load dependent modules Message-ID: <Pine.BSF.4.01.9901190933530.40696-100000@herring.nlsystems.com> In-Reply-To: <Pine.BSF.3.95.990119004101.9336F-100000@current1.whistle.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 19 Jan 1999, Julian Elischer wrote: > > If I load a module A > then try load a module B that requires a function in A > it fails because it cannot find the symbol.. > is this a known problem? > > (A real bummer if so) The module B needs to have A as a dependancy. Use KMODDEPS to do this. Something like this should work in the Makefile: KMOD= modB SRCS= ... KMODDEPS= modA KLDMOD=t NOMAN=t .include <bsd.kmod.mk> The linker will only resolve symbols against the files in the dependancy list (and the kernel). -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 181 442 9037 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.01.9901190933530.40696-100000>