|
@@ -17,6 +17,7 @@ void cmdl_start()
|
17
|
17
|
|
18
|
18
|
//printf("gPXE %s (GPL) etherboot.org ... ", VERSION);
|
19
|
19
|
printf("gPXE %s (GPL) etherboot.org\n", VERSION);
|
|
20
|
+ printf("Press Ctrl-B for gPXE command line...");
|
20
|
21
|
|
21
|
22
|
stop = currticks() + CMDL_DELAY;
|
22
|
23
|
|
|
@@ -29,12 +30,11 @@ void cmdl_start()
|
29
|
30
|
|
30
|
31
|
if(iskey()){
|
31
|
32
|
if(getchar() == 2){
|
32
|
|
- putchar('\n');
|
|
33
|
+ printf("\n\n");
|
33
|
34
|
cmdl_exec_cmdline();
|
34
|
35
|
break;
|
35
|
36
|
}else{
|
36
|
|
- putchar('\n');
|
37
|
|
- printf("Skipping command line.\n");
|
|
37
|
+ printf("skipping.\n");
|
38
|
38
|
break;
|
39
|
39
|
}
|
40
|
40
|
}
|
|
@@ -71,9 +71,6 @@ void cmdl_exec_cmdline(){
|
71
|
71
|
|
72
|
72
|
cmdl_setpropmt(cmd, "gPXE>");
|
73
|
73
|
|
74
|
|
- printf("Welcome to Etherboot\n\n");
|
75
|
|
-
|
76
|
|
-
|
77
|
74
|
cmdl_enterloop(cmd);
|
78
|
75
|
|
79
|
76
|
cmdl_free(cmd);
|