From e852f8e504a70348fe0259078db9926a452dacd1 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 5 Dec 2006 10:14:58 +0000 Subject: [PATCH] Slightly tidied up console messages. --- src/commandline/cmdline.c | 9 +++------ src/commandline/cmdlinelib.c | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/commandline/cmdline.c b/src/commandline/cmdline.c index 28632196..6ae33bd3 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 e38d729e..d49bad30 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; }