Home | History | Annotate | only in /external/libusb
Up to higher level directory
NameDateSize
.gitattributes21-Aug-2018307
.private/21-Aug-2018
.travis.yml21-Aug-2018615
android/21-Aug-2018
Android.bp21-Aug-20181.9K
Android.mk21-Aug-201890
appveyor.yml21-Aug-2018962
appveyor_cygwin.bat21-Aug-2018475
appveyor_minGW.bat21-Aug-2018992
AUTHORS21-Aug-20181.8K
autogen.sh21-Aug-2018140
bootstrap.sh21-Aug-201876
ChangeLog21-Aug-20189.9K
configure.ac21-Aug-201810.6K
COPYING21-Aug-201825.8K
darwin/21-Aug-2018
doc/21-Aug-2018
examples/21-Aug-2018
include/21-Aug-2018
INSTALL21-Aug-20189.2K
INSTALL_WIN.txt21-Aug-20182.9K
libusb/21-Aug-2018
libusb-1.0.pc.in21-Aug-2018312
linux/21-Aug-2018
Makefile.am21-Aug-2018672
MODULE_LICENSE_LGPL21-Aug-20180
msvc/21-Aug-2018
NEWS21-Aug-201895
NOTICE21-Aug-201825.8K
PORTING21-Aug-20183.8K
README21-Aug-20181.3K
README.git21-Aug-20181.8K
README.md21-Aug-20181.3K
README.version21-Aug-2018112
tests/21-Aug-2018
TODO21-Aug-2018126
travis-autogen.sh21-Aug-2018971
windows/21-Aug-2018
Xcode/21-Aug-2018

README

      1 # libusb
      2 
      3 [![Build Status](https://travis-ci.org/libusb/libusb.svg?branch=master)](https://travis-ci.org/libusb/libusb)
      4 [![Build status](https://ci.appveyor.com/api/projects/status/xvrfam94jii4a6lw?svg=true)](https://ci.appveyor.com/project/LudovicRousseau/libusb)
      5 [![Coverity Scan Build Status](https://scan.coverity.com/projects/2180/badge.svg)](https://scan.coverity.com/projects/libusb-libusb)
      6 
      7 libusb is a library for USB device access from Linux, Mac OS X,
      8 Windows, OpenBSD/NetBSD and Haiku userspace.
      9 It is written in C (Haiku backend in C++) and licensed under the GNU
     10 Lesser General Public License version 2.1 or, at your option, any later
     11 version (see [COPYING](COPYING)).
     12 
     13 libusb is abstracted internally in such a way that it can hopefully
     14 be ported to other operating systems. Please see the [PORTING](PORTING)
     15 file for more information.
     16 
     17 libusb homepage:
     18 http://libusb.info/
     19 
     20 Developers will wish to consult the API documentation:
     21 http://api.libusb.info
     22 
     23 Use the mailing list for questions, comments, etc:
     24 http://mailing-list.libusb.info
     25 
     26 - Pete Batard <pete (a] akeo.ie>
     27 - Hans de Goede <hdegoede (a] redhat.com>
     28 - Xiaofan Chen <xiaofanc (a] gmail.com>
     29 - Ludovic Rousseau <ludovic.rousseau (a] gmail.com>
     30 - Nathan Hjelm <hjelmn (a] cs.unm.edu>
     31 - Chris Dickens <christopher.a.dickens (a] gmail.com>
     32 
     33 (Please use the mailing list rather than mailing developers directly)
     34 

README.git

      1 Notes related to git compilation:
      2 --------------------------------
      3 
      4 If you retrieved the libusb repository from git and are using a gcc based
      5 toolchain, be mindful that you should have the autotools installed (autoconf,
      6 automake) and will need to run either ./autogen.sh or ./bootstrap.sh to produce
      7 the configure file.
      8 
      9 The difference between autogen.sh and bootstrap.sh is that the former invokes
     10 configure with a default set of options, and will therefore generate a Makefile,
     11 whereas the latter does not invoke configure at all. If using autogen.sh, note
     12 that you can also append options, that will be passed as is to configure.
     13 
     14 OS X-specific notes:
     15 -------------------
     16 
     17 Starting with Xcode 4.3, neither Xcode.app nor the Xcode 'command line tools'
     18 includes autotools and so running either autogen.sh or bootstrap.sh will result
     19 in the message:
     20 
     21 libtoolize or glibtoolize was not found! Please install libtool.
     22 
     23 To proceed, you must find and install it from somewhere.
     24 
     25 Alternatively, you can use the Xcode project at Xcode/libusb.xcodeproj.
     26 
     27 Notes related to submitting new developments:
     28 --------------------------------------------
     29 
     30 If you submit a new development to libusb (eg: new backend), that is unlikely
     31 to fit in a couple of small patches, we would kindly suggest that you create a
     32 public account on github, if you don't have one already, and then fork a new
     33 libusb repository under this account from https://github.com/libusb/libusb.
     34 
     35 Then you can create a git branch for your work, that we will be able to better
     36 reference and test. 
     37 
     38 We also suggest that, if you are planning to bring in a large development, you
     39 try to involve the libusb community early by letting the mailing list know, as
     40 you may find that other people might be eager to help you out. 
     41 See http://mailing-list.libusb.info for details on how to join the mailing list.

README.md

      1 # libusb
      2 
      3 [![Build Status](https://travis-ci.org/libusb/libusb.svg?branch=master)](https://travis-ci.org/libusb/libusb)
      4 [![Build status](https://ci.appveyor.com/api/projects/status/xvrfam94jii4a6lw?svg=true)](https://ci.appveyor.com/project/LudovicRousseau/libusb)
      5 [![Coverity Scan Build Status](https://scan.coverity.com/projects/2180/badge.svg)](https://scan.coverity.com/projects/libusb-libusb)
      6 
      7 libusb is a library for USB device access from Linux, Mac OS X,
      8 Windows, OpenBSD/NetBSD and Haiku userspace.
      9 It is written in C (Haiku backend in C++) and licensed under the GNU
     10 Lesser General Public License version 2.1 or, at your option, any later
     11 version (see [COPYING](COPYING)).
     12 
     13 libusb is abstracted internally in such a way that it can hopefully
     14 be ported to other operating systems. Please see the [PORTING](PORTING)
     15 file for more information.
     16 
     17 libusb homepage:
     18 http://libusb.info/
     19 
     20 Developers will wish to consult the API documentation:
     21 http://api.libusb.info
     22 
     23 Use the mailing list for questions, comments, etc:
     24 http://mailing-list.libusb.info
     25 
     26 - Pete Batard <pete (a] akeo.ie>
     27 - Hans de Goede <hdegoede (a] redhat.com>
     28 - Xiaofan Chen <xiaofanc (a] gmail.com>
     29 - Ludovic Rousseau <ludovic.rousseau (a] gmail.com>
     30 - Nathan Hjelm <hjelmn (a] cs.unm.edu>
     31 - Chris Dickens <christopher.a.dickens (a] gmail.com>
     32 
     33 (Please use the mailing list rather than mailing developers directly)
     34 

README.version

      1 URL: https://github.com/libusb/libusb
      2 Version: Rolling from upstream
      3 BugComponent: 1352
      4 Owners: jmgao, adb-bugs
      5