From: Michael Brown Date: Sun, 14 Jan 2007 00:08:13 +0000 (+0000) Subject: Make "boot" a synonym for "imgexec", to match grub X-Git-Tag: v0.9.3~610 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c088ecf042dd87d3022aed22c7b0914eba41f27f;p=thirdparty%2Fipxe.git Make "boot" a synonym for "imgexec", to match grub --- 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 @@ -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,