(no subject)

Henrik Brix Andersen brix at FreeBSD.org
Tue Dec 4 09:22:42 PST 2007


On Tue, Dec 04, 2007 at 02:14:28PM +0100, Micha? Januszewski wrote:
> I've got one question about the new releases: will the
> 
> Marvell Yukon 88E8039 Gigabit Ethernet be supported?

Not according to src/sys/dev/msk/if_msk.c - the device ID of the
88E8039 is not present.

Could you please try this small, but untested patch and let me know if
it works for you? The patch is against -current:

Index: if_msk.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/msk/if_msk.c,v
retrieving revision 1.25
diff -u -p -r1.25 if_msk.c
--- if_msk.c	22 Nov 2007 02:44:58 -0000	1.25
+++ if_msk.c	4 Dec 2007 17:18:31 -0000
@@ -193,6 +193,8 @@ static struct msk_product {
 	    "Marvell Yukon 88E8036 Gigabit Ethernet" },
 	{ VENDORID_MARVELL, DEVICEID_MRVL_8038,
 	    "Marvell Yukon 88E8038 Gigabit Ethernet" },
+	{ VENDORID_MARVELL, DEVICEID_MRVL_8039,
+	    "Marvell Yukon 88E8039 Gigabit Ethernet" },
 	{ VENDORID_MARVELL, DEVICEID_MRVL_4361,
 	    "Marvell Yukon 88E8050 Gigabit Ethernet" },
 	{ VENDORID_MARVELL, DEVICEID_MRVL_4360,
Index: if_mskreg.h
===================================================================
RCS file: /home/ncvs/src/sys/dev/msk/if_mskreg.h,v
retrieving revision 1.10
diff -u -p -r1.10 if_mskreg.h
--- if_mskreg.h	20 Nov 2007 07:47:32 -0000	1.10
+++ if_mskreg.h	4 Dec 2007 17:18:32 -0000
@@ -130,6 +130,7 @@
 #define DEVICEID_MRVL_8035	0x4350
 #define DEVICEID_MRVL_8036	0x4351
 #define DEVICEID_MRVL_8038	0x4352
+#define DEVICEID_MRVL_8039	0x4353
 #define DEVICEID_MRVL_4360	0x4360
 #define DEVICEID_MRVL_4361	0x4361
 #define DEVICEID_MRVL_4362	0x4362

Brix
-- 
Henrik Brix Andersen <brix at FreeBSD.org>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 209 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-current/attachments/20071204/8a47a45e/attachment.pgp


More information about the freebsd-current mailing list