Date: Mon, 27 Oct 2003 01:09:25 +0400 From: "Sergey V. Belov" <bsv@csite.ru> To: freebsd-hackers@freebsd.org Subject: Intel PILA 8460B LAN adapter Message-ID: <20031027010925.661d3edd.bsv@csite.ru>
index | next in thread | raw e-mail
[-- Attachment #1 --]
Hello all,
I had an experience of install this LAN adapter on latest FreeBSD RELENG_4_8 (4.8p13):
PILA 8460B \ EtherExpress PRO/100+ Server Adapter (PCI; TPE; 100 / 10 Mbps).
After install, this card has not been responsed; but with following patch card is worked
perfectly over three weeks.
Comments?
Finally, I should be glad to see this changes in the main source tree.
--
Sergey V. Belov (aka Argail) \ UNIX: Live free or die.
Now listening: No CD in /dev/acd0a
[-- Attachment #2 --]
--- if_fxp.c.orig Mon Oct 27 01:06:27 2003
+++ if_fxp.c Mon Oct 27 01:06:22 2003
@@ -160,6 +160,7 @@
{ 0x1037, "Intel Pro/100 Ethernet" },
{ 0x1038, "Intel Pro/100 Ethernet" },
{ 0x1039, "Intel Pro/100 Ethernet" },
+ { 0x1050, "Intel Pro/100 Ethernet" },
{ 0x103A, "Intel Pro/100 Ethernet" },
{ 0x103B, "Intel Pro/100 Ethernet" },
{ 0x103C, "Intel Pro/100 Ethernet" },
@@ -540,7 +541,7 @@
* See Intel 82801BA/82801BAM Specification Update, Errata #30.
*/
i = pci_get_device(dev);
- if (i == 0x2449 || (i > 0x1030 && i < 0x1039) ||
+ if (i == 0x2449 || (i > 0x1030 && i < 0x1050) ||
sc->revision >= FXP_REV_82559_A0) {
fxp_read_eeprom(sc, &data, 10, 1);
if (data & 0x02) { /* STB enable */
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031027010925.661d3edd.bsv>
