Difference between revisions of "PCI Utilities"
m |
|||
Line 10: | Line 10: | ||
== Dependencies == | == Dependencies == | ||
+ | |||
+ | === Optional === | ||
+ | |||
+ | [[pkg-config]] | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 22: | Line 26: | ||
make PREFIX=/usr install | make PREFIX=/usr install | ||
− | Some packages require the PCI static library. To install the library and headers, issue the following | + | Some packages require the PCI static library. To install the library and headers, issue the following command: |
− | + | make PREFIX=/usr install-lib | |
− | |||
− | |||
=== Command Explanations === | === Command Explanations === | ||
Line 33: | Line 35: | ||
'''ZLIB=no''': This will make the '''pci.ids''' file usable for anything that expects an uncompressed version of the '''pci.ids''' file. Without this command the file would be called '''pci.ids.gz''', which is not compatbile with some programs. Compression of '''pci.ids''' was added with the 2.2.4 release. | '''ZLIB=no''': This will make the '''pci.ids''' file usable for anything that expects an uncompressed version of the '''pci.ids''' file. Without this command the file would be called '''pci.ids.gz''', which is not compatbile with some programs. Compression of '''pci.ids''' was added with the 2.2.4 release. | ||
+ | If compressed support is enabled by '''ZLIB=yes''', pciutils will use pci.ids.gz in preference to pci.ids, even if the | ||
+ | pci.ids file is newer. If the pci.ids.gz file is missing, it will use pci.ids instead. | ||
+ | You can turn on compression support and uncompress '''pci.ids.gz''' to '''pci.ids''' after every update manually. | ||
== Multilib == | == Multilib == | ||
Line 49: | Line 54: | ||
Some packages require the PCI static library. To install the library and headers, issue the following commands: | Some packages require the PCI static library. To install the library and headers, issue the following commands: | ||
− | + | make PREFIX=/usr install-lib | |
− | |||
− | |||
=== N32 === | === N32 === | ||
Line 58: | Line 61: | ||
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && | sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && | ||
− | make PREFIX=/usr CC="gcc ${BUILDN32}" ZLIB=no | + | make PREFIX=/usr LIBDIR=/usr/lib32 CC="gcc ${BUILDN32}" ZLIB=no |
Install the package | Install the package | ||
− | make PREFIX=/usr install | + | make PREFIX=/usr LIBDIR=/usr/lib32 install |
− | Some packages require the PCI static library. To install the library and headers, issue the following | + | Some packages require the PCI static library. To install the library and headers, issue the following command: |
− | + | make PREFIX=/usr LIBDIR=/usr/lib32 install-lib | |
− | |||
− | |||
=== 64Bit === | === 64Bit === | ||
Line 75: | Line 76: | ||
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && | sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && | ||
− | make PREFIX=/usr CC="gcc ${BUILD64}" ZLIB=no | + | make PREFIX=/usr LIBDIR=/usr/lib64 CC="gcc ${BUILD64}" ZLIB=no |
Install the package | Install the package | ||
− | make PREFIX=/usr install | + | make PREFIX=/usr LIBDIR=/usr/lib64 install |
− | Some packages require the PCI static library. To install the library and headers, issue the following | + | Some packages require the PCI static library. To install the library and headers, issue the following command: |
− | + | make PREFIX=/usr LIBDIR=/usr/lib64 install-lib | |
− | |||
− | |||
== Configuring == | == Configuring == |
Revision as of 17:44, 21 June 2007
Download Source: | http://www.kernel.org/pub/software/utils/pciutils/pciutils-3.1.10.tar.bz2 |
---|
Contents
Introduction to PCI Utilities
PCI Utilities are various utilities that allow inspection and setting of devices connected to the PCI bus.
Project Homepage: Unknown
Dependencies
Optional
Non-Multilib
Compile the package:
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && make PREFIX=/usr ZLIB=no
Install the package
make PREFIX=/usr install
Some packages require the PCI static library. To install the library and headers, issue the following command:
make PREFIX=/usr install-lib
Command Explanations
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh: This command suppresses some unneeded screen output from the update-pciids command if you don't have either Lynx or Wget installed by redirecting the stderr output of the embedded which command to /dev/null.
ZLIB=no: This will make the pci.ids file usable for anything that expects an uncompressed version of the pci.ids file. Without this command the file would be called pci.ids.gz, which is not compatbile with some programs. Compression of pci.ids was added with the 2.2.4 release. If compressed support is enabled by ZLIB=yes, pciutils will use pci.ids.gz in preference to pci.ids, even if the pci.ids file is newer. If the pci.ids.gz file is missing, it will use pci.ids instead. You can turn on compression support and uncompress pci.ids.gz to pci.ids after every update manually.
Multilib
32Bit
Compile the package:
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && make PREFIX=/usr CC="gcc ${BUILD32}" ZLIB=no
Install the package
make PREFIX=/usr install
Some packages require the PCI static library. To install the library and headers, issue the following commands:
make PREFIX=/usr install-lib
N32
Compile the package:
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && make PREFIX=/usr LIBDIR=/usr/lib32 CC="gcc ${BUILDN32}" ZLIB=no
Install the package
make PREFIX=/usr LIBDIR=/usr/lib32 install
Some packages require the PCI static library. To install the library and headers, issue the following command:
make PREFIX=/usr LIBDIR=/usr/lib32 install-lib
64Bit
Compile the package:
sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh && make PREFIX=/usr LIBDIR=/usr/lib64 CC="gcc ${BUILD64}" ZLIB=no
Install the package
make PREFIX=/usr LIBDIR=/usr/lib64 install
Some packages require the PCI static library. To install the library and headers, issue the following command:
make PREFIX=/usr LIBDIR=/usr/lib64 install-lib
Configuring
pci.ids
The pci.ids data file is constantly being updated. To get a current version of this file run update-pciids. This program requires Which to find Curl, Wget, or Lynx which is used to download the most current file.
Contents
Installed Programs: | lspci, setpci and update-pciids |
---|---|
Installed Libraries: | libpci.a |
Installed Directories: | /usr/include/pci |
Short Descriptions
lspci | is a utility for displaying information about all PCI buses in the system and all devices connected to them. |
---|---|
setpci | is a utility for querying and configuring PCI devices. |
update-pciids | fetches the current version of the PCI ID list. Requires Curl, Wget or Lynx. |
libpci.a | is the static library that allows applications to access the PCI subsystem. |