summaryrefslogtreecommitdiffstats
path: root/src/hci
diff options
context:
space:
mode:
authorMichael Brown2007-01-14 01:06:23 +0100
committerMichael Brown2007-01-14 01:06:23 +0100
commitbeb941ed81f87d85e6ca9238622681cfbddbc142 (patch)
treecc4d03823895590e2fe8b68d2c84ef3c52e22b53 /src/hci
parentUse _text, rather than assuming _text==0. (diff)
downloadipxe-beb941ed81f87d85e6ca9238622681cfbddbc142.tar.gz
ipxe-beb941ed81f87d85e6ca9238622681cfbddbc142.tar.xz
ipxe-beb941ed81f87d85e6ca9238622681cfbddbc142.zip
Rename "boot" to "autoboot"
Diffstat (limited to 'src/hci')
-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 fd8cba74..d7fb2e1f 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,
};