Home | History | Annotate | only in /external/libusb
Up to higher level directory
NameDateSize
.gitattributes22-Oct-2020307
.private/22-Oct-2020
.travis.yml22-Oct-2020615
android/22-Oct-2020
Android.bp22-Oct-20202.1K
Android.mk22-Oct-202090
appveyor.yml22-Oct-2020962
appveyor_cygwin.bat22-Oct-2020475
appveyor_minGW.bat22-Oct-2020992
AUTHORS22-Oct-20201.8K
autogen.sh22-Oct-2020140
bootstrap.sh22-Oct-202076
ChangeLog22-Oct-20209.9K
configure.ac22-Oct-202010.6K
COPYING22-Oct-202025.8K
darwin/22-Oct-2020
doc/22-Oct-2020
examples/22-Oct-2020
include/22-Oct-2020
INSTALL22-Oct-20209.2K
INSTALL_WIN.txt22-Oct-20202.9K
libusb/22-Oct-2020
libusb-1.0.pc.in22-Oct-2020312
linux/22-Oct-2020
Makefile.am22-Oct-2020672
MODULE_LICENSE_LGPL22-Oct-20200
msvc/22-Oct-2020
NEWS22-Oct-202095
NOTICE22-Oct-202025.8K
OWNERS22-Oct-2020192
PORTING22-Oct-20203.8K
README22-Oct-20201.3K
README.git22-Oct-20201.8K
README.md22-Oct-20201.3K
README.version22-Oct-2020112
tests/22-Oct-2020
TODO22-Oct-2020126
travis-autogen.sh22-Oct-2020971
windows/22-Oct-2020
Xcode/22-Oct-2020

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