summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2006-12-05 11:14:58 +0100
committerMichael Brown2006-12-05 11:14:58 +0100
commite852f8e504a70348fe0259078db9926a452dacd1 (patch)
tree1b37aa28151cd06eefbd87a0fae4e20fb160fb0e
parentChange some debugging messages to use DBG() (diff)
downloadipxe-e852f8e504a70348fe0259078db9926a452dacd1.tar.gz
ipxe-e852f8e504a70348fe0259078db9926a452dacd1.tar.xz
ipxe-e852f8e504a70348fe0259078db9926a452dacd1.zip
Slightly tidied up console messages.
-rw-r--r--src/commandline/cmdline.c9
-rw-r--r--src/commandline/cmdlinelib.c4
2 files changed, 5 insertions, 8 deletions
diff --git a/src/commandline/cmdline.c b/src/commandline/cmdline.c
index 286321967..6ae33bd37 100644
--- a/src/commandline/cmdline.c
+++ b/src/commandline/cmdline.c
@@ -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);
diff --git a/src/commandline/cmdlinelib.c b/src/commandline/cmdlinelib.c
index e38d729e3..d49bad300 100644
--- a/src/commandline/cmdlinelib.c
+++ b/src/commandline/cmdlinelib.c
@@ -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;
}