From owner-freebsd-doc@FreeBSD.ORG Thu Jan 5 23:35:12 2006 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3000416A420 for ; Thu, 5 Jan 2006 23:35:12 +0000 (GMT) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62D8643D5A for ; Thu, 5 Jan 2006 23:35:10 +0000 (GMT) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from transport.cksoft.de (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 5E9B01FF9AC for ; Fri, 6 Jan 2006 00:35:08 +0100 (CET) Received: by transport.cksoft.de (Postfix, from userid 66) id 91E291FF9A7; Fri, 6 Jan 2006 00:35:05 +0100 (CET) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id 35EE844487E for ; Thu, 5 Jan 2006 23:33:54 +0000 (UTC) Date: Thu, 5 Jan 2006 23:33:54 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: freebsd-doc@freebsd.org Message-ID: <20060105232911.O24703@maildrop.int.zabbadoz.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by AMaViS cksoft-s20020300-20031204bz on transport.cksoft.de Subject: [patch] HARDWARE sections nge(4) -> re(4) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jan 2006 23:35:12 -0000 Hi, after a posting from Robert Huff on current@ and some private mails it turned out that there is a documentation error. The LinkSys EG1032 is supported by re(4) not nge(4). I couldn't find the ID for the EG1064 anywhere in our sources so I removed the reference. We might for sure support it if someone adds the ID to the correct driver but I don't know. Looks like there might be more cleanup needed in this area, maybe with help from someone who know all the history of those drivers? Greetings bz@ Index: sys/conf/NOTES =================================================================== RCS file: /shared/mirror/FreeBSD/r/ncvs/src/sys/conf/NOTES,v retrieving revision 1.1341 diff -u -p -r1.1341 NOTES --- sys/conf/NOTES 31 Dec 2005 14:39:19 -0000 1.1341 +++ sys/conf/NOTES 5 Jan 2006 23:28:00 -0000 @@ -1729,8 +1729,8 @@ device miibus # nge: Support for PCI gigabit ethernet adapters based on the National # Semiconductor DP83820 and DP83821 chipset. This includes the # SMC EZ Card 1000 (SMC9462TX), D-Link DGE-500T, Asante FriendlyNet -# GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the LinkSys -# EG1032 and EG1064, the Surecom EP-320G-TX and the Netgear GA622T. +# GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the Surecom +# EP-320G-TX and the Netgear GA622T. # pcn: Support for PCI fast ethernet adapters based on the AMD Am79c97x # chipsets, including the PCnet/FAST, PCnet/FAST+, PCnet/PRO and # PCnet/Home. These were previously handled by the lnc driver (and Index: share/man/man4/nge.4 =================================================================== RCS file: /shared/mirror/FreeBSD/r/ncvs/src/share/man/man4/nge.4,v retrieving revision 1.19 diff -u -p -r1.19 nge.4 --- share/man/man4/nge.4 7 Oct 2005 02:32:15 -0000 1.19 +++ share/man/man4/nge.4 5 Jan 2006 23:28:00 -0000 @@ -31,7 +31,7 @@ .\" .\" $FreeBSD: src/share/man/man4/nge.4,v 1.19 2005/10/07 02:32:15 trhodes Exp $ .\" -.Dd July 16, 2005 +.Dd January 5, 2006 .Dt NGE 4 .Os .Sh NAME @@ -170,8 +170,6 @@ Asante FriendlyNet GigaNIX 1000TA and 10 .It D-Link DGE-500T .It -LinkSys EG1032 (32-bit PCI) and EG1064 (64-bit PCI) -.It Netgear GA621 .It Netgear GA622T Index: share/man/man4/re.4 =================================================================== RCS file: /shared/mirror/FreeBSD/r/ncvs/src/share/man/man4/re.4,v retrieving revision 1.16 diff -u -p -r1.16 re.4 --- share/man/man4/re.4 7 Oct 2005 02:32:15 -0000 1.16 +++ share/man/man4/re.4 5 Jan 2006 23:28:00 -0000 @@ -30,7 +30,7 @@ .\" .\" $FreeBSD: src/share/man/man4/re.4,v 1.16 2005/10/07 02:32:15 trhodes Exp $ .\" -.Dd July 16, 2004 +.Dd January 5, 2006 .Dt RE 4 .Os .Sh NAME @@ -160,6 +160,8 @@ Gigabyte 7N400 Pro2 Integrated Gigabit E .It LevelOne GNC-0105T (8169S) .It +LinkSys EG1032 (32-bit PCI) +.It PLANEX COMMUNICATIONS Inc.\& GN-1200TC (8169S) .It Xterasys XN-152 10/100/1000 NIC (8169) -- Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT