zephyr/drivers/pci/CMakeLists.txt
Anas Nashif c41b236a14 shell: add PCI shell
Add basic 'lspci' command to list PCI devices. This command can be
enabled with the new Kconfig PCI_SHELL.

Example:

uart:~$ lspci
0:1 8086:7010 class: 0x1, 1, 4, I/O, addrs: 0xC000-0xC00F, IRQ -1

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2018-11-05 09:32:38 -05:00

8 lines
175 B
CMake

zephyr_sources(
pci.c
pci_config.c
pci_interface.c
)
zephyr_sources_ifdef(CONFIG_PCI_LEGACY_BRIDGE pci_legacy_bridge.c)
zephyr_sources_ifdef(CONFIG_PCI_SHELL pci_shell.c)