renamed lspci to pci_devices and specified it linux only

This commit is contained in:
Akshay Dixit 2014-11-01 01:33:27 +05:30 committed by Teddy Reed
parent afd9d5e160
commit 6c418507e6
3 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ else()
system/linux/processes.cpp
system/linux/users.cpp
system/linux/groups.cpp
system/linux/lspci.cpp
system/linux/mounts.cpp
system/linux/pci_devices.cpp
)
# CentOS specific tables

View File

@ -1,8 +1,8 @@
table_name("lspci")
table_name("pci_devices")
schema([
Column(name="slot", type="std::string"),
Column(name="device_class", type="std::string"),
Column(name="vendor", type="std::string"),
Column(name="model", type="std::string"),
])
implementation("lspci@genLspci")
implementation("pci_devices@genLspci")