OK, did the make, then the make install and it is in the /lib/../net/ directroy. The module was not loaded so I did an insmod 3c2000.o and got the message from the mssage log. still won't appear under the Network configuration utility, not is there an entry in modules.conf. ifconfig shows that the driver is loaded but there is no IP addresses assigned to it. ifconfig eth0 up doesn't appear to yeild further results. Thanks for your assistance and being sooo patient with me Dave ----- Original Message ----- From: "yavorsky gaetan" <gaetan.yavorsky@xxxxxxxxxxxxxxx> > Forget the make load > do a make then a make install > At this time you should find the 3c2000.o in the > /lib/modules/your_kernel/... > If you don't find it the build procedure is not correct. > Gaetan > > > Dave a écrit : > > >I edited the beginning of the makefile to have the compiler CC = gcc32 as > >with the base FC1 install. Everything appears to compile properly but there > >is no 3c2000.o in the /lib ..../net/ directory. (Note: This was the 3rd > >time that I ran the make load command, I removed all of the ".o" files first > >before re-compiling) > > > >At the end of the compile the command "insmod $(TARGET)" from the makefile > >runs loading the 3c2000.o > > > >When I try running the network configuration utility I do not see the > >3c2000, nor is there any alias in the /etc/modules.conf > > > >/var/log/messages has: > >: 3c2000 3COM Gigabit NIC Driver Version All > >: Copyright ... > >: Copyright... > >: eth0: 3com Gigabit LOM (3C940) > >: PrefPort:A RlmtMode Check Link State > > > >When I check the network configuration utility for a 3c940 it is not their > >either. > >This part of the makefile does not appear to be run: > > > > # Module installation > > # > > .PHONY : install > > install: $(TARGET) > > @echo "Found kernel version $(KERNEL_VER)" > > @echo "Install directory is $(INSTALL_DIR)" > > mkdir -p $(INSTALL_DIR) > > install -m 644 $(TARGET) $(INSTALL_DIR) > > depmod -a