Date: Wed, 23 Mar 2005 18:42:53 +0100 From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) To: Andrew Robinson <andrewr@uidaho.edu> Cc: jason henson <jason@ec.rr.com> Subject: Re: NIC detected, but won't DHCP or configure Message-ID: <867jjyjm1u.fsf@xps.des.no> In-Reply-To: <d890bed8c6cd.d8c6cdd890be@uidaho.edu> References: <d890bed8c6cd.d8c6cdd890be@uidaho.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
--Boundary_(ID_yu3Tj5ISv/0TlSodvxbTyA) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: quoted-printable Andrew Robinson <andrewr@uidaho.edu> writes: > re_probe(): vid 10ec did 8169 hwrev 10000000 That's an 8169SB, which is supported in -CURRENT. Try the attached patch. I'll try to get it merged before 5.4-RELEASE. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no --Boundary_(ID_yu3Tj5ISv/0TlSodvxbTyA) Content-type: text/x-patch; NAME=if_re.diff Content-transfer-encoding: 7BIT Content-disposition: attachment; filename=if_re.diff Index: sys/pci/if_rlreg.h =================================================================== RCS file: /home/ncvs/src/sys/pci/if_rlreg.h,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- sys/pci/if_rlreg.h 7 Jan 2005 02:29:18 -0000 1.49 +++ sys/pci/if_rlreg.h 22 Jan 2005 22:40:52 -0000 1.50 @@ -147,6 +147,7 @@ #define RL_HWREV_8169 0x00000000 #define RL_HWREV_8169S 0x04000000 +#define RL_HWREV_8169SB 0x10000000 #define RL_HWREV_8110S 0x00800000 #define RL_HWREV_8139 0x60000000 #define RL_HWREV_8139A 0x70000000 Index: sys/dev/re/if_re.c =================================================================== RCS file: /home/ncvs/src/sys/dev/re/if_re.c,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- sys/dev/re/if_re.c 6 Jan 2005 01:43:10 -0000 1.38 +++ sys/dev/re/if_re.c 22 Jan 2005 22:40:53 -0000 1.39 @@ -166,6 +166,8 @@ "RealTek 8169 Gigabit Ethernet" }, { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169S, "RealTek 8169S Single-chip Gigabit Ethernet" }, + { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169SB, + "RealTek 8169SB Single-chip Gigabit Ethernet" }, { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8110S, "RealTek 8110S Single-chip Gigabit Ethernet" }, { COREGA_VENDORID, COREGA_DEVICEID_CGLAPCIGT, RL_HWREV_8169S, @@ -184,6 +186,7 @@ { RL_HWREV_8139CPLUS, RL_8139CPLUS, "C+"}, { RL_HWREV_8169, RL_8169, "8169"}, { RL_HWREV_8169S, RL_8169, "8169S"}, + { RL_HWREV_8169SB, RL_8169, "8169SB"}, { RL_HWREV_8110S, RL_8169, "8110S"}, { RL_HWREV_8100, RL_8139, "8100"}, { RL_HWREV_8101, RL_8139, "8101"}, --Boundary_(ID_yu3Tj5ISv/0TlSodvxbTyA)--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?867jjyjm1u.fsf>