Subject: Re: Hawking Cardbus 10/100 support?
To: Mike Cheponis <mac@Wireless.Com>
From: Manuel Bouyer <bouyer@antioche.lip6.fr>
List: port-i386
Date: 01/25/2002 17:50:17
--17pEHd4RhPHOinZp
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Can you try the attached patch (for current, but it should be easy to
adapt for 1.5.2) ?
You need to run 'make -f Makefile.cardbusdevs' after patching cardbusdevs.
--
Manuel Bouyer, LIP6, Universite Paris VI. Manuel.Bouyer@lip6.fr
{Net,Free}BSD: 23 ans d'experience feront toujours la difference
--
--17pEHd4RhPHOinZp
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=hawking-diff
Index: cardbusdevs
===================================================================
RCS file: /cvsroot/syssrc/sys/dev/cardbus/cardbusdevs,v
retrieving revision 1.20
diff -u -r1.20 cardbusdevs
--- cardbusdevs 2002/01/04 15:22:41 1.20
+++ cardbusdevs 2002/01/25 16:48:24
@@ -53,6 +53,7 @@
vendor COREGA 0x1259 Corega
vendor ALLIEDTELESYN 0x1259 Allied Telesyn International
vendor ABOCOM 0x13d1 AboCom Systems
+vendor HAWKING 0x17b3 Hawking
vendor INTEL 0x8086 Intel
vendor ADP 0x9004 Adaptec
vendor ADP2 0x9005 Adaptec (2nd PCI Vendor ID)
@@ -110,6 +111,9 @@
/* AboCom products */
product ABOCOM FE2500 0xab02 FE2500 10/100 Ethernet
product ABOCOM PCM200 0xab03 FE2500 10/100 Ethernet
+
+/* Hawking products */
+product HAWKING PN672TX 0xab08 PN672TX 10/100 Ethernet
/* Intel products */
product INTEL 82557 0x1229 82557 Fast Ethernet LAN Controller
Index: if_rtk_cardbus.c
===================================================================
RCS file: /cvsroot/syssrc/sys/dev/cardbus/if_rtk_cardbus.c,v
retrieving revision 1.7
diff -u -r1.7 if_rtk_cardbus.c
--- if_rtk_cardbus.c 2002/01/04 15:24:24 1.7
+++ if_rtk_cardbus.c 2002/01/25 16:48:24
@@ -114,6 +114,8 @@
"RealTek 8139 10/100BaseTX", RTK_8139 },
{ CARDBUS_VENDOR_COREGA, CARDBUS_PRODUCT_COREGA_CB_TXD,
"Corega FEther CB-TXD 10/100BaseTX", RTK_8139 },
+ { CARDBUS_VENDOR_HAWKING, CARDBUS_PRODUCT_HAWKING_PN672TX,
+ "Hawking PN672TX 10/100 Ethernet", RTK_8139 },
{ 0, 0, NULL, 0 }
};
--17pEHd4RhPHOinZp--