
Found this with a Google search:evster wrote:Does anyone know what setting I need to have my kernel config to support this card?
So that would be:class: NETWORK
bus: PCI
detached: 0
device: eth
driver: tulip
desc: "Linksys|Network Everywhere Fast Ethernet 10/100 model NC100"
vendorId: 1317
deviceId: 0985
subVendorId: 1113
subDeviceId: 1216
pciType: 1
Code: Select all
Device Drivers-->Network Device Support-->Ethernet (10 or 100MBit)--->Tulip Family Network Device Support-->[M]"Tulip" family network device support
I can't seem to get the tulip module, it doesn't let me set the "Tulip" family network device support as a module and none of the options under that create the tulip module.EzInKy wrote:So that would be:Code: Select all
Device Drivers-->Network Device Support-->Ethernet (10 or 100MBit)--->Tulip Family Network Device Support-->[M]"Tulip" family network device support

Just in case anyone wonders what the answer to this is, I got it working with this driver:evster wrote:I just built them all in and it works....now I will remove them one by one to figure out which it was.
Code: Select all
DECchip Tulip (dc2114x) PCI support 

Code: Select all
# /etc/modules.autoload.d/kernel-2.6: kernel modules to load when system boots.
#
# Note that this file is for 2.6 kernels.
#
# Add the names of modules that you'd like to load when the system
# starts into this file, one per line. Comments begin with # and
# are ignored. Read man modules.autoload for additional details.
# For example:
# 3c59x
tulip


Code: Select all
jgraham@ceres ~ $ lsmod
Module Size Used by
tulip 40480 0
jgraham@ceres ~ $


Code: Select all
00:0b.0 Ethernet controller: Linksys NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)Code: Select all
/etc/init.d/net.eth0 start
and I've got the tulip module loading by default. The tulip card is a second card and the other one works on stuff built into the kernel so lsmod for me only shows tulip, maybe I have something built in that you are missing.00:0a.0 Ethernet controller: Linksys NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
This probably has nothing to do with the card not working but if it helps, my PID file is written to /var/run/dhcpcd-eth0.pidError, writePidFile: fopen: No such file or directory.

my /etc/conf.d/net is blank because I am using DHCP.john_r_graham wrote:Well, let's get back to basics. I think we've confirmed that you do have a "Tulip" card, but, for reference, the exact output of my lspci is as follows:I suspect that yours is the same.Code: Select all
00:0b.0 Ethernet controller: Linksys NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
Next, please post the output ofand the contents of your /etc/conf.d/net file.Code: Select all
/etc/init.d/net.eth0 start
- John





Code: Select all
config_eth0=( "dhcp" )
Code: Select all
ceres ~ # ls -l /var
total 9
drwxr-xr-x 6 root root 7 May 19 00:52 cache
drwxr-xr-x 3 root root 3 Oct 15 2005 db
drwxr-xr-x 2 root root 3 Jun 20 18:48 empty
drwxr-xr-x 15 root root 16 Jun 13 11:48 lib
drwxrwxr-x 3 root uucp 4 Jun 16 15:40 lock
drwxr-xr-x 8 root root 22 Jun 12 03:10 log
lrwxrwxrwx 1 root root 15 Jun 1 15:52 mail -> /var/spool/mail
drwxr-xr-x 7 root root 17 Jun 16 15:48 run
drwxr-xr-x 4 root root 5 Aug 3 2005 spool
drwxr-xr-x 2 root root 3 Feb 18 2004 state
drwxrwxrwt 8 root root 10 Jun 19 11:22 tmpCode: Select all
ceres ~ # cd /var/log
ceres log # ls -l dmesg wtmp
-rw-r----- 1 root root 5213 Jun 16 15:42 dmesg
-rw-rw-r-- 1 root utmp 150912 Jun 21 11:21 wtmp
Ok John, I appreciate all of the help you and everyone else on here has provided me. One more dumb question and I should be finished with THIS problem (I have a few others) How do you set the permissions in Gentoo?john_r_graham wrote:Well, here's a minimal /etc/conf.d/net that should suppress the "Configuration not set..." message:Regarding the messages about /var/log/wtmp and /var/log/dmesg, can you confirm that the /var/log directory exists and has the correct permissions? For reference, here my full /var directory (some of which you may not have):Code: Select all
config_eth0=( "dhcp" )Permissions on those individual logs are as follows:Code: Select all
ceres ~ # ls -l /var total 9 drwxr-xr-x 6 root root 7 May 19 00:52 cache drwxr-xr-x 3 root root 3 Oct 15 2005 db drwxr-xr-x 2 root root 3 Jun 20 18:48 empty drwxr-xr-x 15 root root 16 Jun 13 11:48 lib drwxrwxr-x 3 root uucp 4 Jun 16 15:40 lock drwxr-xr-x 8 root root 22 Jun 12 03:10 log lrwxrwxrwx 1 root root 15 Jun 1 15:52 mail -> /var/spool/mail drwxr-xr-x 7 root root 17 Jun 16 15:48 run drwxr-xr-x 4 root root 5 Aug 3 2005 spool drwxr-xr-x 2 root root 3 Feb 18 2004 state drwxrwxrwt 8 root root 10 Jun 19 11:22 tmp- JohnCode: Select all
ceres ~ # cd /var/log ceres log # ls -l dmesg wtmp -rw-r----- 1 root root 5213 Jun 16 15:42 dmesg -rw-rw-r-- 1 root utmp 150912 Jun 21 11:21 wtmp



