On Wed, Feb 11, 2004 at 10:47:47AM -0500, Clint Moyer wrote:
It's network attached, but it doesn't use a standard protocol. The RPM is supposed to install two modules, nd.o and lpx.o, but they don't show up with lsmod. When I try to load them with insmod or modprobe, I get a bunch of error messages about "unresolved symbols". I though it may have been a dependency problem, so I recompiled to load network block device (nbd.o), but that had no effect.
I'd attack this two ways. First, did you drop them into /lib/modules/whatever and run "depmod -a"? You'll need that to figure out the dependencies, so that modprobe can auto-load dependent modules. Second, if you have the kernel source, you can search for the names of the unresolved symbols and find out what drivers provide them. -Chuck