david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Slightly tidied up console messages.

This commit is contained in:
Michael Brown 2006-12-05 10:14:58 +00:00
parent cb883b3faf
commit e852f8e504
2 changed files with 5 additions and 8 deletions

View File

@ -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);

View File

@ -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;
}