summaryrefslogtreecommitdiffstats
path: root/rules/pciutils.in
blob: 9f9e93ee7ed912e7df07b90cb37b8064bbcd1650 (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
## SECTION=shell_and_console
menuconfig PCIUTILS
	select ZLIB	if PCIUTILS_COMPRESS
	select LIBKMOD	if PCIUTILS_LIBKMOD
	tristate
	prompt "pciutils                      "
	help
	  The PCI Utilities package contains a library for portable access
	  to PCI bus configuration registers and several utilities based on
	  this library.

if PCIUTILS

config PCIUTILS_TOOLS
	bool
	default y
	depends on !BUSYBOX_LSPCI || ALLYES
	prompt "pciutils binaries"
	help
	  This option install the pciutils binary tools lspci, setpci and
	  update-pciids.

comment "busybox' lspci is selected"
	depends on BUSYBOX_LSPCI

config PCIUTILS_LIBKMOD
	bool
	prompt "libkmod support"
	depends on PCIUTILS_TOOLS
	help
	  Use libkmod to resolve kernel modules on Linux.

config PCIUTILS_LIBPCI
	bool
	prompt "libpci support"
	help
	  Generate and install the shared libpci library.

config PCIUTILS_COMPRESS
	bool
	default y
	prompt "compress pci_ids"
	help
	  Save storage space by compressing the pci-id database. Access will
	  be a little bit slower then.

endif