summaryrefslogtreecommitdiffstats
path: root/rules/usbutils.in
blob: f259f9c4e5607d0af8784bc671ec577d7f7e3c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
## SECTION=shell_and_console

menuconfig USBUTILS
	select LIBUSB
	tristate
	prompt "usbutils                      "
	help
	  Linux USB utilities

	  This package contains the lsusb utility for inspecting the
	  devices connected to the USB bus. It shows a graphical
	  representation of the devices that are currently plugged
	  in, showing the topology of the USB bus. It also displays
	  information on each individual device on the bus.

	  More information can be found at the Linux USB web site
	  http://www.linux-usb.org/usbutils

if USBUTILS

config USBUTILS_LSUSB
	bool
	depends on !BUSYBOX_LSUSB || ALLYES
	prompt "lsusb"
	help
	  lsusb - list the devices connected to a host

	  Note: To use lsusb don't forget to enable kernel's usb
	  filesystem and to mount it at runtime at /proc/bus/usb. An
	  entry like:

	  "usbfs /proc/bus/usb usbfs devgid=14,devmode=0660 0 0"

	  in the /etc/fstab does the job.

comment "busybox' lsusb is selected"
	depends on BUSYBOX_LSUSB

config USBUTILS_USBHIDDUMP
	bool
	prompt "usbhid-dump"
	help
	  A tool to dump USB device HID report descriptors and/or streams.

config USBUTILS_USBDEVICES
	bool
	prompt "usbdevices"
	help
	  Print out sysfs information about usb devices.

endif