From owner-cvs-all Sat May 26 2:27:16 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A67537B422; Sat, 26 May 2001 02:27:10 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f4Q9RAE94781; Sat, 26 May 2001 02:27:10 -0700 (PDT) (envelope-from phk) Message-Id: <200105260927.f4Q9RAE94781@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sat, 26 May 2001 02:27:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig Makefile ifconfig.8 ifconfig.c ifconfig.h ifmedia.c src/sys/dev/an if_aironet_ieee.h if_an.c if_an_isa.c if_an_pccard.c if_an_pci.c if_anreg.h src/sys/dev/awi awi.c src/sys/dev/wi if_wavelan_ieee.h if_wi.c src/sys/net ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2001/05/26 02:27:10 PDT Modified files: sbin/ifconfig Makefile ifconfig.8 ifconfig.c ifconfig.h ifmedia.c sys/dev/an if_aironet_ieee.h if_an.c if_an_isa.c if_an_pccard.c if_an_pci.c if_anreg.h sys/dev/awi awi.c sys/dev/wi if_wavelan_ieee.h if_wi.c sys/net if_ieee80211.h if_media.c if_media.h share/man/man4 Makefile Log: Currently, each wireless networking driver has it's own control program despite the fact that most people want to set exactly the same settings regardless of which card they have. It has been repeatidly suggested that this configuration should be done via ifconfig. This patch implements the required functionality in ifconfig and add support to the wi and an drivers. It also provides partial, untested support for the awi driver. PR: 25577 Submitted by: Brooks Davis Revision Changes Path 1.18 +5 -1 src/sbin/ifconfig/Makefile 1.38 +106 -1 src/sbin/ifconfig/ifconfig.8 1.61 +27 -1 src/sbin/ifconfig/ifconfig.c 1.6 +15 -1 src/sbin/ifconfig/ifconfig.h 1.7 +34 -4 src/sbin/ifconfig/ifmedia.c 1.5 +3 -1 src/sys/dev/an/if_aironet_ieee.h 1.17 +499 -5 src/sys/dev/an/if_an.c 1.5 +4 -2 src/sys/dev/an/if_an_isa.c 1.8 +4 -2 src/sys/dev/an/if_an_pccard.c 1.9 +4 -2 src/sys/dev/an/if_an_pci.c 1.7 +4 -3 src/sys/dev/an/if_anreg.h 1.13 +182 -1 src/sys/dev/awi/awi.c 1.6 +4 -2 src/sys/dev/wi/if_wavelan_ieee.h 1.54 +377 -1 src/sys/dev/wi/if_wi.c 1.5 +40 -1 src/sys/net/if_ieee80211.h 1.15 +11 -1 src/sys/net/if_media.c 1.12 +52 -4 src/sys/net/if_media.h 1.122 +2 -1 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message