dde_ipxe: enable Intel I218-LM/I218-V PCI ID

Commit inspired by patch from @alex-ab/@cnuke but uses only one patch
file for all added NICs.

Issue #1220
This commit is contained in:
Alexander Boettcher 2014-09-08 11:53:54 +02:00 committed by Christian Helmuth
parent cf358b5db1
commit 68abf0616a
3 changed files with 6 additions and 4 deletions

View File

@ -1,12 +1,14 @@
diff --git a/src/drivers/net/intel.c b/src/drivers/net/intel.c
index c3a7d40..1522492 100644
index c3a7d40..c85f070 100644
--- a/src/drivers/net/intel.c
+++ b/src/drivers/net/intel.c
@@ -953,6 +953,7 @@ static struct pci_device_id intel_nics[] = {
@@ -953,6 +953,9 @@ static struct pci_device_id intel_nics[] = {
PCI_ROM ( 0x8086, 0x1526, "82576-5", "82576", 0 ),
PCI_ROM ( 0x8086, 0x1527, "82580-f2", "82580 Fiber", 0 ),
PCI_ROM ( 0x8086, 0x1533, "i210", "I210", 0 ),
+ PCI_ROM ( 0x8086, 0x153a, "i217lm", "I217LM", 0 ),
+ PCI_ROM ( 0x8086, 0x1559, "i218v", "I218V", 0 ),
+ PCI_ROM ( 0x8086, 0x155a, "i218lm", "I218LM", 0 ),
PCI_ROM ( 0x8086, 0x294c, "82566dc-2", "82566DC-2", 0 ),
PCI_ROM ( 0x8086, 0x2e6e, "cemedia", "CE Media Processor", 0 ),
};

View File

@ -1 +1 @@
3229f4723b776b76bad989017213f9393b26a74a
7f8c6baa921f6939d49c2804b5b8c4b16981f261

View File

@ -7,7 +7,7 @@ REV(ipxe) := c4bce43c3c4d3c5ebb2d926b58ad16dc9642c19d
DIR(ipxe) := src/lib/dde_ipxe
PATCHES := patches/dde_ipxe.patch \
patches/i217lm.patch
patches/add_devices.patch
PATCH_OPT := -p1 -d ${DIR(ipxe)}
# vi: set ft=make :