From owner-cvs-src-old@FreeBSD.ORG Thu Jan 28 22:38:34 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9A49106566C for ; Thu, 28 Jan 2010 22:38:34 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B40528FC0C for ; Thu, 28 Jan 2010 22:38:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0SMcYU5025588 for ; Thu, 28 Jan 2010 22:38:34 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0SMcYK6025587 for cvs-src-old@freebsd.org; Thu, 28 Jan 2010 22:38:34 GMT (envelope-from thompsa@repoman.freebsd.org) Message-Id: <201001282238.o0SMcYK6025587@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to thompsa@repoman.freebsd.org using -f From: Andrew Thompson Date: Thu, 28 Jan 2010 22:24:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 run.4 src/sys/conf files src/sys/contrib/dev/run LICENSE run-rt2870 src/sys/dev/usb usbdevs src/sys/dev/usb/wlan if_run.c if_runreg.h if_runvar.h src/sys/modules Makefile src/sys/modules/runfw Makefile ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jan 2010 22:38:34 -0000 thompsa 2010-01-28 22:24:54 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/usb usbdevs sys/modules Makefile sys/modules/usb Makefile Added files: share/man/man4 run.4 sys/contrib/dev/run LICENSE run-rt2870 sys/dev/usb/wlan if_run.c if_runreg.h if_runvar.h sys/modules/runfw Makefile sys/modules/usb/run Makefile Log: SVN rev 203134 on 2010-01-28 22:24:54Z by thompsa Add run(4), a driver for Ralink RT2700U/RT2800U/RT3000U USB 802.11agn devices. This driver was written for OpenBSD by Damien Bergamini and ported over by Akinori Furukoshi. Revision Changes Path 1.1 +219 -0 src/share/man/man4/run.4 (new) 1.1495 +1 -0 src/sys/conf/files 1.1 +39 -0 src/sys/contrib/dev/run/LICENSE (new) 1.1 +7 -0 src/sys/contrib/dev/run/run-rt2870 (new) 1.440 +208 -1 src/sys/dev/usb/usbdevs 1.1 +4143 -0 src/sys/dev/usb/wlan/if_run.c (new) 1.1 +1130 -0 src/sys/dev/usb/wlan/if_runreg.h (new) 1.1 +222 -0 src/sys/dev/usb/wlan/if_runvar.h (new) 1.638 +1 -0 src/sys/modules/Makefile 1.1 +8 -0 src/sys/modules/runfw/Makefile (new) 1.32 +1 -1 src/sys/modules/usb/Makefile 1.1 +36 -0 src/sys/modules/usb/run/Makefile (new)