mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 07:11:32 +00:00
Slightly tidied up console messages.
This commit is contained in:
parent
cb883b3faf
commit
e852f8e504
@ -17,6 +17,7 @@ void cmdl_start()
|
||||
|
||||
//printf("gPXE %s (GPL) etherboot.org ... ", VERSION);
|
||||
printf("gPXE %s (GPL) etherboot.org\n", VERSION);
|
||||
printf("Press Ctrl-B for gPXE command line...");
|
||||
|
||||
stop = currticks() + CMDL_DELAY;
|
||||
|
||||
@ -29,12 +30,11 @@ void cmdl_start()
|
||||
|
||||
if(iskey()){
|
||||
if(getchar() == 2){
|
||||
putchar('\n');
|
||||
printf("\n\n");
|
||||
cmdl_exec_cmdline();
|
||||
break;
|
||||
}else{
|
||||
putchar('\n');
|
||||
printf("Skipping command line.\n");
|
||||
printf("skipping.\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -71,9 +71,6 @@ void cmdl_exec_cmdline(){
|
||||
|
||||
cmdl_setpropmt(cmd, "gPXE>");
|
||||
|
||||
printf("Welcome to Etherboot\n\n");
|
||||
|
||||
|
||||
cmdl_enterloop(cmd);
|
||||
|
||||
cmdl_free(cmd);
|
||||
|
@ -548,11 +548,11 @@ cmd_line* cmdl_create()
|
||||
|
||||
struct command *cmd;
|
||||
|
||||
printf ( "Compiled in commands: ");
|
||||
printf ( "Available commands: ");
|
||||
for ( cmd = cmd_start ; cmd < cmd_end ; cmd++ ) {
|
||||
printf("%s ", cmd->name);
|
||||
}
|
||||
printf("\n");
|
||||
printf("exit\n\n");
|
||||
|
||||
return this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user