aboutsummaryrefslogtreecommitdiffstats
path: root/src/hci/commands/image_cmd.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-01-14 00:08:13 +0000
committerMichael Brown <mcb30@etherboot.org>2007-01-14 00:08:13 +0000
commitc088ecf042dd87d3022aed22c7b0914eba41f27f (patch)
treed0c38ee5ceb0cf88916157c9ba180ecf5aef475b /src/hci/commands/image_cmd.c
parentbeb941ed81f87d85e6ca9238622681cfbddbc142 (diff)
downloadipxe-c088ecf042dd87d3022aed22c7b0914eba41f27f.tar.gz
Make "boot" a synonym for "imgexec", to match grub
Diffstat (limited to 'src/hci/commands/image_cmd.c')
-rw-r--r--src/hci/commands/image_cmd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c
index c40d42a98..095e266e6 100644
--- a/src/hci/commands/image_cmd.c
+++ b/src/hci/commands/image_cmd.c
@@ -486,6 +486,10 @@ struct command image_commands[] __command = {
.exec = imgexec_exec,
},
{
+ .name = "boot", /* synonym for "imgexec" */
+ .exec = imgexec_exec,
+ },
+ {
.name = "imgstat",
.exec = imgstat_exec,
},