diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-08-13 22:32:45 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-08-19 17:22:58 +0100 |
commit | 430c3fb90069b2e8bcdeeb5cd75671108b14991d (patch) | |
tree | cd8440de8b632453b7478032b8c2dc5e3992e381 /src/config | |
parent | 564419c7e10e4ccec61b759b5d9ba7c59b8ff3b2 (diff) | |
download | ipxe-430c3fb90069b2e8bcdeeb5cd75671108b14991d.tar.gz |
[cmdline] Add "params" and "param" commands to manage form parameter lists
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 c8cb5399..f063523c 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -263,6 +263,9 @@ REQUIRE_OBJECT ( nslookup_cmd ); #ifdef PCI_CMD REQUIRE_OBJECT ( pci_cmd ); #endif +#ifdef PARAM_CMD +REQUIRE_OBJECT ( param_cmd ); +#endif /* * Drag in miscellaneous objects diff --git a/src/config/general.h b/src/config/general.h index 645f1341..ae14ed3d 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -130,6 +130,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); //#define POWEROFF_CMD /* Power off command */ //#define IMAGE_TRUST_CMD /* Image trust management commands */ //#define PCI_CMD /* PCI commands */ +//#define PARAM_CMD /* Form parameter commands */ /* * ROM-specific options |