|
@@ -2,7 +2,7 @@
|
2
|
2
|
#include <gpxe/command.h>
|
3
|
3
|
#include <usr/autoboot.h>
|
4
|
4
|
|
5
|
|
-static int boot_exec ( int argc, char **argv ) {
|
|
5
|
+static int autoboot_exec ( int argc, char **argv ) {
|
6
|
6
|
|
7
|
7
|
if ( argc != 1 ) {
|
8
|
8
|
printf ( "Usage:\n"
|
|
@@ -19,7 +19,7 @@ static int boot_exec ( int argc, char **argv ) {
|
19
|
19
|
return 1;
|
20
|
20
|
}
|
21
|
21
|
|
22
|
|
-struct command boot_command __command = {
|
23
|
|
- .name = "boot",
|
24
|
|
- .exec = boot_exec,
|
|
22
|
+struct command autoboot_command __command = {
|
|
23
|
+ .name = "autoboot",
|
|
24
|
+ .exec = autoboot_exec,
|
25
|
25
|
};
|