Go to file
Emil Velikov affc79b65f meson: fold usbhid-dump/meson.build in
The usbhid-dump project effectively lives in this repo (it was a git
module ages ago), so there's little point in the separate build file(s).

People can still build usbhid-dump alone, as below:
    ninja -C builddir/ usbhid-dump

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2024-09-30 19:53:52 +02:00
.github Merge pull request #199 from evelikov/monthly-dependabot 2024-09-24 14:52:30 +02:00
LICENSES LICENSE: add LGPL-2.1 license text 2024-09-24 15:15:09 +02:00
usbhid-dump meson: fold usbhid-dump/meson.build in 2024-09-30 19:53:52 +02:00
.gitignore Update .gitignore files 2024-09-19 18:04:23 +01:00
.gitmodules rename "GPL-2.0+" to "GPL-2.0-or-later" 2021-02-22 14:25:02 +01:00
autogen.sh autogen.sh: use valid email for 2024 copyright 2024-09-18 22:09:08 +01:00
build-dev.ini ci: add SPDX copyright/licence identifiers 2024-09-23 20:42:30 +01:00
desc-defs.c lsusb: const annotate most data, re-enable -Wdiscarded-qualifiers 2024-09-24 10:46:56 +01:00
desc-defs.h rename "GPL-2.0+" to "GPL-2.0-or-later" 2021-02-22 14:25:02 +01:00
desc-dump.c meson: always include config.h first, use -include 2024-09-18 23:15:10 +01:00
desc-dump.h rename "GPL-2.0+" to "GPL-2.0-or-later" 2021-02-22 14:25:02 +01:00
justfile justfile: add one 2024-09-08 17:26:50 +02:00
list.h SPDX header cleanups from GPL-2.0 -> GPL-2.0-only 2021-02-22 15:09:07 +01:00
lsusb-t.c lsusb: add fallback names for 'lsusb -v' output 2023-10-30 12:26:33 +01:00
lsusb.8 Rename .in files to their final state 2024-09-19 17:45:09 +01:00
lsusb.c lsusb: const annotate most data, re-enable -Wdiscarded-qualifiers 2024-09-24 10:46:56 +01:00
lsusb.h rename "GPL-2.0+" to "GPL-2.0-or-later" 2021-02-22 14:25:02 +01:00
lsusb.py Rename .in files to their final state 2024-09-19 17:45:09 +01:00
lsusb.py.1 Rename .in files to their final state 2024-09-19 17:45:09 +01:00
meson.build meson: fold usbhid-dump/meson.build in 2024-09-30 19:53:52 +02:00
names.c meson: always include config.h first, use -include 2024-09-18 23:15:10 +01:00
names.h lsusb: add fallback names for 'lsusb -v' output 2023-10-30 12:26:33 +01:00
NEWS usbutils 017 release 2023-10-30 16:37:05 +01:00
README.md README.md: add the linux-usb mailing list to the README. 2024-09-24 14:50:54 +02:00
sysfs.c lsusb: make internal API const-aware 2024-09-24 10:46:56 +01:00
sysfs.h lsusb: make internal API const-aware 2024-09-24 10:46:56 +01:00
usb-devices usb-devices: Fix usb-devices with busybox 2024-09-05 08:46:52 +02:00
usb-devices.1 Rename .in files to their final state 2024-09-19 17:45:09 +01:00
usb-spec.h Fix a typo in usb-spec.h 2023-04-16 19:30:57 +02:00
usbhid-dump.8 Rename .in files to their final state 2024-09-19 17:45:09 +01:00
usbmisc.c meson: always include config.h first, use -include 2024-09-18 23:15:10 +01:00
usbmisc.h rename "GPL-2.0+" to "GPL-2.0-or-later" 2021-02-22 14:25:02 +01:00
usbreset.1 Rename .in files to their final state 2024-09-19 17:45:09 +01:00
usbreset.c usbreset: Allow idProduct and idVendor to be 0 2023-03-01 14:38:22 +01:00
usbutils.spdx usbutils.spdx: update the data 2024-09-24 15:17:20 +02:00

usbutils

This is a collection of USB tools for use on Linux and BSD systems to query what type of USB devices are connected to the system. This is to be run on a USB host (i.e. a machine you plug USB devices into), not on a USB device (i.e. a device you plug into a USB host.)

Building and installing

Note, usbutils depends on libusb and libudev, be sure that libraries are properly installed first.

To work with the "raw" repo, after cloning it just do:

./autogen.sh

which will build everything and place the binaries into the build/ subdirectory.

usbutils uses meson to build, so if you wish to just build by hand you can do:

meson setup build
cd build/
meson compile

Source location

The source for usbutils can be found in many places, depending on the git hosting site you prefer. Here are the primary locations, in order of preference by the maintainer:

https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils.git/
https://git.sr.ht/~gregkh/usbutils
https://github.com/gregkh/usbutils

Contributing

If you have patches or suggestions, you can submit them either via email to the maintainer or to the linux-usb mailing list or via a pull request.

Please note that commits must include a Signed-off-by trailer, indicating that you comply with the Developer Certificate of Origin v1.1.

In addition, when adding new files or contributing to existing ones, ensure that the SPDX tags SPDX-FileCopyrightText and SPDX-License-Identifier are available and are kept up-to date. You can learn more and do that via reuse-tool.