From owner-cvs-src@FreeBSD.ORG Wed Mar 17 04:42:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 519EC16A4CE; Wed, 17 Mar 2004 04:42:53 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD48043D7D; Wed, 17 Mar 2004 04:42:50 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i2HCgkkj000587; Wed, 17 Mar 2004 05:42:47 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 17 Mar 2004 20:43:01 +0800 (CST) Message-Id: <20040317.204301.67883204.imp@bsdimp.com> To: fjoe@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200403152224.i2FMOSQh002806@repoman.freebsd.org> References: <200403152224.i2FMOSQh002806@repoman.freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile src/usr.sbin Makefile src/share/man/man4/man4.i386 Makefile arl.4 src/sys/conf files.i386 src/sys/i386/conf NOTES src/sys/dev/arl if_arl.c if_arl_isa.c if_arlreg.h src/sys/modules/arl Makefile ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Mar 2004 12:42:53 -0000 In message: <200403152224.i2FMOSQh002806@repoman.freebsd.org> Max Khon writes: : fjoe 2004/03/15 14:24:28 PST : : FreeBSD src repository : : Modified files: : sys/modules Makefile : usr.sbin Makefile : share/man/man4/man4.i386 Makefile : sys/conf files.i386 : sys/i386/conf NOTES : Added files: : share/man/man4/man4.i386 arl.4 : sys/dev/arl if_arl.c if_arl_isa.c if_arlreg.h : sys/modules/arl Makefile : usr.sbin/arlconfig Makefile arlconfig.8 arlconfig.c : Log: : Add arl(4): driver for Aironet Arlan 655 wireless adapters. : : MFC after: 2 weeks : : Revision Changes Path : 1.164 +1 -0 src/share/man/man4/man4.i386/Makefile : 1.1 +78 -0 src/share/man/man4/man4.i386/arl.4 (new) : 1.479 +2 -0 src/sys/conf/files.i386 : 1.1 +973 -0 src/sys/dev/arl/if_arl.c (new) : 1.1 +354 -0 src/sys/dev/arl/if_arl_isa.c (new) : 1.1 +310 -0 src/sys/dev/arl/if_arlreg.h (new) : 1.1148 +5 -0 src/sys/i386/conf/NOTES : 1.371 +2 -0 src/sys/modules/Makefile : 1.1 +10 -0 src/sys/modules/arl/Makefile (new) : 1.293 +2 -0 src/usr.sbin/Makefile : 1.1 +11 -0 src/usr.sbin/arlconfig/Makefile (new) : 1.1 +236 -0 src/usr.sbin/arlconfig/arlconfig.8 (new) : 1.1 +612 -0 src/usr.sbin/arlconfig/arlconfig.c (new) So why do we need a new fooconfig for wireless cards? What's wrong if ifconfig? Warner