summaryrefslogtreecommitdiffstats
path: root/src/hci/commands/image_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hci/commands/image_cmd.c')
-rw-r--r--src/hci/commands/image_cmd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c
index befa5a64..6d8b5908 100644
--- a/src/hci/commands/image_cmd.c
+++ b/src/hci/commands/image_cmd.c
@@ -222,13 +222,13 @@ static int kernel_exec ( int argc, char **argv ) {
}
/**
- * The "imgauto" command
+ * The "chain" command
*
* @v argc Argument count
* @v argv Argument list
* @ret rc Exit code
*/
-static int imgauto_exec ( int argc, char **argv) {
+static int chain_exec ( int argc, char **argv) {
int rc;
if ( ( rc = imgfetch_core_exec ( NULL, IMG_EXEC, argc, argv ) ) != 0 )
@@ -563,8 +563,8 @@ struct command image_commands[] __command = {
.exec = kernel_exec,
},
{
- .name = "imgauto",
- .exec = imgauto_exec,
+ .name = "chain",
+ .exec = chain_exec,
},
{
.name = "imgload",