diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-08-01 16:53:17 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-08-05 13:51:21 +0100 |
commit | b76885165e64a836ac1e2ea987bdb1b724b7b2b3 (patch) | |
tree | 60c8c270ca58655656b0fe752b8d8f285b8798a5 /src/config/config.c | |
parent | 6d910559b3855e3b09f7475a42c67b5bcf39327f (diff) | |
download | ipxe-b76885165e64a836ac1e2ea987bdb1b724b7b2b3.tar.gz |
[cmdline] Add "pciscan" command to allow iteration over PCI devices
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r-- | src/config/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c index b17b335b7..437f61339 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -260,6 +260,9 @@ REQUIRE_OBJECT ( sync_cmd ); #ifdef NSLOOKUP_CMD REQUIRE_OBJECT ( nslookup_cmd ); #endif +#ifdef PCI_CMD +REQUIRE_OBJECT ( pci_cmd ); +#endif /* * Drag in miscellaneous objects |