From c088ecf042dd87d3022aed22c7b0914eba41f27f Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 14 Jan 2007 00:08:13 +0000 Subject: [PATCH] Make "boot" a synonym for "imgexec", to match grub --- src/hci/commands/image_cmd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c index c40d42a9..095e266e 100644 --- a/src/hci/commands/image_cmd.c +++ b/src/hci/commands/image_cmd.c @@ -485,6 +485,10 @@ struct command image_commands[] __command = { .name = "imgexec", .exec = imgexec_exec, }, + { + .name = "boot", /* synonym for "imgexec" */ + .exec = imgexec_exec, + }, { .name = "imgstat", .exec = imgstat_exec,