diff options
author | Michael Brown <mcb30@ipxe.org> | 2010-12-04 02:51:26 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2010-12-09 13:08:39 +0000 |
commit | a4bb95599cfafe131ec8d63acd6d144a9b831a35 (patch) | |
tree | 4ae61179a031e97320995acc289d072b19c08ba2 /src/config/config.c | |
parent | 88b9b776cfe29ef6b1b4411bca89bac6000e44c5 (diff) | |
download | ipxe-a4bb95599cfafe131ec8d63acd6d144a9b831a35.tar.gz |
[cmdline] Add "reboot" command
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 5d2188812..b53af42db 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -237,6 +237,9 @@ REQUIRE_OBJECT ( lotest_cmd ); #ifdef VLAN_CMD REQUIRE_OBJECT ( vlan_cmd ); #endif +#ifdef REBOOT_CMD +REQUIRE_OBJECT ( reboot_cmd ); +#endif /* * Drag in miscellaneous objects |