Re: [Etherboot-developers] ADMTek Comet 683 (fwd)
Brought to you by:
marty_connor,
stefanhajnoczi
|
From: <ke...@us...> - 2002-04-06 12:18:12
|
Checked into CVS.
------- Forwarded Message
Date: Sat, 6 Apr 2002 13:38:42 +0200
From: RISKO Gergely <ri...@at...>
To: ke...@us...
Subject: Re: [Etherboot-developers] ADMTek Comet 683 (fwd)
Hello!
Sorry for the late response, I only now had got time to probe this out
(amd comet 983 with your code). In the released 5.0.6 I found it doesn't
work, but only because two simple and silly typos:
diff -ur etherboot-5.0.6/src/config.c etherboot-5.0.6.good/src/config.c
- --- etherboot-5.0.6/src/config.c Fri Mar 15 15:25:55 2002
+++ etherboot-5.0.6.good/src/config.c Sat Apr 6 13:29:27 2002
@@ -193,7 +193,7 @@
"ADMtek Centaur-P" },
{ PCI_VENDOR_ID_ADMTEK, 0x0981,
"ADMtek AN981 Comet" },
- { PCI_VENDOR_ID_MACRONIX, 0x1216,
+ { PCI_VENDOR_ID_SMC_1211, 0x1216,
"ADMTek AN983 Comet" },
{ 0x125B, 0x1400,
"ASIX AX88140"},
diff -ur etherboot-5.0.6/src/tulip.c etherboot-5.0.6.good/src/tulip.c
--- etherboot-5.0.6/src/tulip.c Tue Feb 19 06:48:26 2002
+++ etherboot-5.0.6.good/src/tulip.c Sat Apr 6 13:31:04 2002
@@ -213,7 +213,7 @@
{ "ADMtek AN981 Comet", { 0x09811317, 0xffffffff, 0, 0, 0, 0 },
TULIP_IOTYPE, 256, COMET },
{ "ADMTek AN983 Comet", { 0x12161113, 0xffffffff, 0, 0, 0, 0 },
- TULIP_IOTYPE, 256, MX98715 },
+ TULIP_IOTYPE, 256, COMET },
{ "ADMtek Centaur-P", { 0x09851317, 0xffffffff, 0, 0, 0, 0 },
TULIP_IOTYPE, 256, COMET },
{ "ADMtek Centaur-C", { 0x19851317, 0xffffffff, 0, 0, 0, 0 },
The first change is needed, because it is 1113 -> smc_1211. The second
is also seems to need, because if it leaved with MX98715, it can't found
the dhcp server.
Please change this in CVS, so the next release will be good for this
card also.
Thanks,
Gergely
------- End of Forwarded Message
|