summaryrefslogtreecommitdiffstats
path: root/src/hci/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/hci/commands')
-rw-r--r--src/hci/commands/autoboot_cmd.c (renamed from src/hci/commands/boot_cmd.c)8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hci/commands/boot_cmd.c b/src/hci/commands/autoboot_cmd.c
index fd8cba740..d7fb2e1fb 100644
--- a/src/hci/commands/boot_cmd.c
+++ b/src/hci/commands/autoboot_cmd.c
@@ -2,7 +2,7 @@
#include <gpxe/command.h>
#include <usr/autoboot.h>
-static int boot_exec ( int argc, char **argv ) {
+static int autoboot_exec ( int argc, char **argv ) {
if ( argc != 1 ) {
printf ( "Usage:\n"
@@ -19,7 +19,7 @@ static int boot_exec ( int argc, char **argv ) {
return 1;
}
-struct command boot_command __command = {
- .name = "boot",
- .exec = boot_exec,
+struct command autoboot_command __command = {
+ .name = "autoboot",
+ .exec = autoboot_exec,
};