• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.private/23-Nov-2023-285187

Xcode/23-Nov-2023-1,5681,507

android/23-Nov-2023-503249

doc/23-Nov-2023-2,5161,947

examples/23-Nov-2023-3,8432,875

include/libusb/23-Nov-2023-3,6141,360

libusb/23-Nov-2023-30,79819,235

msvc/23-Nov-2023-8,7338,087

tests/23-Nov-2023-437264

.gitattributesD23-Nov-2023179 87

.gitignoreD23-Nov-2023721 6968

.travis.ymlD23-Nov-20231.4 KiB6054

AUTHORSD23-Nov-20232.9 KiB170168

Android.bpD23-Nov-20233.8 KiB150128

Android.mkD23-Nov-202390 20

COPYINGD23-Nov-202325.8 KiB505418

ChangeLogD23-Nov-202312.8 KiB308271

INSTALL_WIN.txtD23-Nov-20231.7 KiB5239

METADATAD23-Nov-2023404 2019

MODULE_LICENSE_LGPLD23-Nov-20230

Makefile.amD23-Nov-20231.4 KiB5136

NEWSD23-Nov-202395 32

NOTICED23-Nov-202325.8 KiB505418

OWNERSD23-Nov-202346 21

PORTINGD23-Nov-20233.8 KiB9566

READMED23-Nov-20231.3 KiB3324

README.gitD23-Nov-20231.8 KiB4230

README.mdD23-Nov-20231.3 KiB3324

README.versionD23-Nov-2023112 54

TODOD23-Nov-2023126 32

appveyor.ymlD23-Nov-20232 KiB7367

autogen.shD23-Nov-2023139 95

bootstrap.shD23-Nov-202377 95

configure.acD23-Nov-202313.7 KiB386357

libusb-1.0.pc.inD23-Nov-2023312 1210

testD23-Nov-20230

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
7libusb is a library for USB device access from Linux, macOS,
8Windows, OpenBSD/NetBSD, Haiku and Solaris userspace.
9It is written in C (Haiku backend in C++) and licensed under the GNU
10Lesser General Public License version 2.1 or, at your option, any later
11version (see [COPYING](COPYING)).
12
13libusb is abstracted internally in such a way that it can hopefully
14be ported to other operating systems. Please see the [PORTING](PORTING)
15file for more information.
16
17libusb homepage:
18http://libusb.info/
19
20Developers will wish to consult the API documentation:
21http://api.libusb.info
22
23Use the mailing list for questions, comments, etc:
24http://mailing-list.libusb.info
25
26- Hans de Goede <hdegoede@redhat.com>
27- Xiaofan Chen <xiaofanc@gmail.com>
28- Ludovic Rousseau <ludovic.rousseau@gmail.com>
29- Nathan Hjelm <hjelmn@cs.unm.edu>
30- Chris Dickens <christopher.a.dickens@gmail.com>
31
32(Please use the mailing list rather than mailing developers directly)
33

README.git

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

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
7libusb is a library for USB device access from Linux, macOS,
8Windows, OpenBSD/NetBSD, Haiku and Solaris userspace.
9It is written in C (Haiku backend in C++) and licensed under the GNU
10Lesser General Public License version 2.1 or, at your option, any later
11version (see [COPYING](COPYING)).
12
13libusb is abstracted internally in such a way that it can hopefully
14be ported to other operating systems. Please see the [PORTING](PORTING)
15file for more information.
16
17libusb homepage:
18http://libusb.info/
19
20Developers will wish to consult the API documentation:
21http://api.libusb.info
22
23Use the mailing list for questions, comments, etc:
24http://mailing-list.libusb.info
25
26- Hans de Goede <hdegoede@redhat.com>
27- Xiaofan Chen <xiaofanc@gmail.com>
28- Ludovic Rousseau <ludovic.rousseau@gmail.com>
29- Nathan Hjelm <hjelmn@cs.unm.edu>
30- Chris Dickens <christopher.a.dickens@gmail.com>
31
32(Please use the mailing list rather than mailing developers directly)
33

README.version

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