I've come across this same issue, and  have discovered the following:

The device is an Intel 82567 Gigabit network card, which should be
supported by the e1000e driver. However, as of 7/10/08, the most recent
version, e1000e-0.4.1.7, does not support this device.  I created the
following patch to add support for this device - It works, but is not
very clean; It would be better to add a #define for the device in
e1000_hw.h, but I'm not sure what the "correct" device name is (ie,
E1000_DEV_ID_???):

--- e1000e-0.4.1.7/src/netdev.c.orig 2008-06-23 10:27:33.000000000 -0600
+++ e1000e-0.4.1.7/src/netdev.c   2008-07-05 12:25:30.000000000 -0600
@@ -5550,6 +5550,7 @@ static struct pci_device_id e1000e_pci_t
   { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
   { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
   { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
+  { PCI_VDEVICE(INTEL, 0x10BE), board_ich9lan },

   { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
   { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },

-- 
network driver not loaded for PCI ID 8086:10be
https://bugs.launchpad.net/bugs/221164
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to