From owner-cvs-all@FreeBSD.ORG Fri Jan 27 08:00:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C958B16A420; Fri, 27 Jan 2006 08:00:40 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DBC443D48; Fri, 27 Jan 2006 08:00:40 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k0R80ehF088638; Fri, 27 Jan 2006 08:00:40 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0R80euH088635; Fri, 27 Jan 2006 08:00:40 GMT (envelope-from imp) Message-Id: <200601270800.k0R80euH088635@repoman.freebsd.org> From: Warner Losh Date: Fri, 27 Jan 2006 08:00:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ed if_ed.c if_ed_hpp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jan 2006 08:00:41 -0000 imp 2006-01-27 08:00:40 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed.c if_ed_hpp.c Log: Transition from ALTPHYS to LINK2. We already document in the ed(4) man page that the ifconfig option link2 is used to disable the AUI transceiver on the 3com boards (should also say HP PC Lan+). This makes the connection clearer. Add a note about why we set this flag prior to attaching the device. We never set or clear the flag later, only test it. There can be no races here, but this might be asthetically displeasing to some. Also note that we may no longer need to have this knob at all as we may be able to do it with the more sophisticated rc.d scripts we have today I think the only reason it is there is because we didn't used to allow its proper setting when configured to get the IP address via DHCP. I'll note that this would be better handled by using ifmedia for all ed cards, not just those with a miibus... Revision Changes Path 1.267 +13 -9 src/sys/dev/ed/if_ed.c 1.4 +1 -1 src/sys/dev/ed/if_ed_hpp.c