Re: [Etherboot-developers] ADMTek Comet 683
Brought to you by:
marty_connor,
stefanhajnoczi
|
From: <ke...@us...> - 2002-02-15 22:49:52
|
>I successfully used etherboot with $subject, after:
>s/681/683/
>and replacing 681's pci id with:
>1113:1216 (which is the pci id of comet683).
>
>So it seems that you can add the 683 card to the source without any
>coding. It'll be an easy way to increment the supported cards in
>etherboot. ;)
>
>Thanks,
>Gergely
>
>PS: Oh, I didn't said that this is in tulip.c
Can you please confirm that these are the correct changes? Thanks.
diff -cr ../../etherboot-5.0.5/src/NIC ./NIC
*** ../../etherboot-5.0.5/src/NIC Mon Dec 17 18:22:46 2001
--- ./NIC Sat Feb 16 09:38:55 2002
***************
*** 108,113 ****
--- 108,115 ----
mx98725 tulip 0x10d9,0x0531
# Another Macronix clone?
mxic-98715 tulip 0x1113,0x1217
+ # ADMTek Comet 683 (reported by RISKO Gergely)
+ an683 tulip 0x1113,0x1216
# ADMtek Centaur-P, found on stmicro NIC by Ranjan Parthasarathy
an981 tulip 0x1317,0x0981
# ADMtek Centaur-P Tulip clones
diff -cr ../../etherboot-5.0.5/src/config.c ./config.c
*** ../../etherboot-5.0.5/src/config.c Mon Dec 10 17:43:30 2001
--- ./config.c Sat Feb 16 09:40:25 2002
***************
*** 150,155 ****
--- 152,159 ----
"Davicom 9102", 0, 0, 0, 0},
{ PCI_VENDOR_ID_DAVICOM, PCI_DEVICE_ID_DM9009,
"Davicom 9009", 0, 0, 0, 0},
+ { PCI_VENDOR_ID_MACRONIX, 0x1216,
+ "ADMTek Comet 683", 0, 0, 0, 0},
{ PCI_VENDOR_ID_ADMTEK, PCI_DEVICE_ID_ADMTEK_0985,
"ADMtek Centaur-P", 0, 0, 0, 0},
{ PCI_VENDOR_ID_ADMTEK, 0x0981,
diff -cr ../../etherboot-5.0.5/src/tulip.c ./tulip.c
*** ../../etherboot-5.0.5/src/tulip.c Sun Dec 2 16:48:27 2001
--- ./tulip.c Sat Feb 16 09:43:15 2002
***************
*** 228,233 ****
--- 228,235 ----
TULIP_IOTYPE, 0x80, DC21140 },
{ "Macronix mxic-98715 (EN1217)", { 0x12171113, 0xffffffff, 0, 0, 0, 0 },
TULIP_IOTYPE, 256, MX98715 },
+ { "ADMTek Comet 683", { 0x12161113, 0xffffffff, 0, 0, 0, 0 },
+ TULIP_IOTYPE, 256, MX98715 },
{ 0, { 0, 0, 0, 0, 0, 0 }, 0, 0, 0 },
};
|