From owner-cvs-src-old@FreeBSD.ORG Tue Jun 23 01:05:07 2009 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 A66B01065738 for ; Tue, 23 Jun 2009 01:05:07 +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 797D68FC16 for ; Tue, 23 Jun 2009 01:05:06 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n5N156j5007307 for ; Tue, 23 Jun 2009 01:05:06 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n5N1565k007306 for cvs-src-old@freebsd.org; Tue, 23 Jun 2009 01:05:06 GMT (envelope-from thompsa@repoman.freebsd.org) Message-Id: <200906230105.n5N1565k007306@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to thompsa@repoman.freebsd.org using -f From: Andrew Thompson Date: Tue, 23 Jun 2009 01:04:58 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libusb libusb.h libusb10.c libusb10.h libusb10_desc.c libusb10_io.c 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: Tue, 23 Jun 2009 01:05:08 -0000 thompsa 2009-06-23 01:04:58 UTC FreeBSD src repository Added files: lib/libusb libusb.h libusb10.c libusb10.h libusb10_desc.c libusb10_io.c Log: SVN rev 194676 on 2009-06-23 01:04:58Z by thompsa Add files missed in r194674. Add libusb 1.0 support which is compatible with the latest revision on Sourceforge. Libusb 1.0 is a portable usb api released December 2008 and supersedes the original libusb released 10 years ago, it supports isochronous endpoints and asynchronous I/O. Many applications have already started using the interfaces. This has been developed as part of Google Summer of Code this year by Sylvestre Gallon and has been cribbed early due to it being desirable in FreeBSD 8.0 Submitted by: Sylvestre Gallon Sponsored by: Google Summer of Code 2009 Reviewed by: Hans Petter Selasky Revision Changes Path 1.7 +427 -0 src/lib/libusb/libusb.h (new) 1.1 +1140 -0 src/lib/libusb/libusb10.c (new) 1.1 +245 -0 src/lib/libusb/libusb10.h (new) 1.1 +301 -0 src/lib/libusb/libusb10_desc.c (new) 1.1 +748 -0 src/lib/libusb/libusb10_io.c (new)