diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-09-25 14:35:07 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-09-25 14:36:36 +0100 |
commit | 7405685df2bea9a457970d8b5a63ede08fcda6f7 (patch) | |
tree | 5dc047c66f9b97e9e0331b9267a7fe9008ad96b7 /src/config | |
parent | 37ccbd301df299880dcaeae6e48362e998f66c6a (diff) | |
download | ipxe-7405685df2bea9a457970d8b5a63ede08fcda6f7.tar.gz |
[cmdline] Add "nstat" command
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/config.c | 3 | ||||
-rw-r--r-- | src/config/general.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c index 6596e951..13fa7db4 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -269,6 +269,9 @@ REQUIRE_OBJECT ( pci_cmd ); #ifdef PARAM_CMD REQUIRE_OBJECT ( param_cmd ); #endif +#ifdef NEIGHBOUR_CMD +REQUIRE_OBJECT ( neighbour_cmd ); +#endif /* * Drag in miscellaneous objects diff --git a/src/config/general.h b/src/config/general.h index 2e93efde..00a327f2 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -132,6 +132,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); //#define IMAGE_TRUST_CMD /* Image trust management commands */ //#define PCI_CMD /* PCI commands */ //#define PARAM_CMD /* Form parameter commands */ +//#define NEIGHBOUR_CMD /* Neighbour management commands */ /* * ROM-specific options |